diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 8cefc5329f3..5899b81a8be 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -88,12 +88,12 @@ jobs:
key: ${{ secrets.BUILDS_SSH_KEY }}
script: node ~/scripts/push_to_manifest.js -fork ${{ vars.FORK_ID }} -id ${{ github.sha }}
- - name: Publish changelog (Discord)
- run: Tools/actions_changelogs_since_last_run.py
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK }}
- TRANSLATION_API_URL: ${{ secrets.CHANGELOG_TRANSLATION_API_URL }}
+# - name: Publish changelog (Discord)
+# run: Tools/actions_changelogs_since_last_run.py
+# env:
+# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+# DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK }}
+# TRANSLATION_API_URL: ${{ secrets.CHANGELOG_TRANSLATION_API_URL }}
# - name: Publish changelog (RSS)
# run: Tools/actions_changelog_rss.py
diff --git a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs
index ccf9e370e3c..b105e629cfa 100644
--- a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs
+++ b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs
@@ -241,6 +241,10 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent)
{
Orientation = BoxContainer.LayoutOrientation.Vertical
};
+ var tablePercent = new BoxContainer
+ {
+ Orientation = BoxContainer.LayoutOrientation.Vertical
+ };
dataContainer.AddChild(new BoxContainer
{
Orientation = BoxContainer.LayoutOrientation.Horizontal,
@@ -252,7 +256,13 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent)
MinSize = new Vector2(10, 0),
HorizontalExpand = true
},
- tableVal
+ tableVal,
+ new Control
+ {
+ MinSize = new Vector2(10, 0),
+ HorizontalExpand = true
+ },
+ tablePercent
}
});
// This is the gas bar thingy
@@ -260,6 +270,7 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent)
var gasBar = new SplitBar
{
MinHeight = height,
+ MinBarSize = new Vector2(12, 0)
};
// Separator
dataContainer.AddChild(new Control
@@ -274,6 +285,17 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent)
totalGasAmount += gas.Amount;
}
+ tableKey.AddChild(new Label
+ { Text = Loc.GetString("gas-analyzer-window-gas-column-name"), Align = Label.AlignMode.Center });
+ tableVal.AddChild(new Label
+ { Text = Loc.GetString("gas-analyzer-window-molarity-column-name"), Align = Label.AlignMode.Center });
+ tablePercent.AddChild(new Label
+ { Text = Loc.GetString("gas-analyzer-window-percentage-column-name"), Align = Label.AlignMode.Center });
+
+ tableKey.AddChild(new StripeBack());
+ tableVal.AddChild(new StripeBack());
+ tablePercent.AddChild(new StripeBack());
+
for (var j = 0; j < gasMix.Gases.Length; j++)
{
var gas = gasMix.Gases[j];
@@ -286,10 +308,14 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent)
tableVal.AddChild(new Label
{
Text = Loc.GetString("gas-analyzer-window-molarity-text",
- ("mol", $"{gas.Amount:0.##}"),
- ("percentage", $"{(gas.Amount / totalGasAmount * 100):0.#}")),
+ ("mol", $"{gas.Amount:0.00}")),
Align = Label.AlignMode.Right,
- HorizontalExpand = true
+ });
+ tablePercent.AddChild(new Label
+ {
+ Text = Loc.GetString("gas-analyzer-window-percentage-text",
+ ("percentage", $"{(gas.Amount / totalGasAmount * 100):0.0}")),
+ Align = Label.AlignMode.Right
});
// Add to the gas bar //TODO: highlight the currently hover one
diff --git a/Content.Client/TextScreen/TextScreenSystem.cs b/Content.Client/TextScreen/TextScreenSystem.cs
index 040e5b7d314..c14bce740a6 100644
--- a/Content.Client/TextScreen/TextScreenSystem.cs
+++ b/Content.Client/TextScreen/TextScreenSystem.cs
@@ -1,3 +1,4 @@
+using System.Linq;
using System.Numerics;
using Content.Shared.TextScreen;
using Robust.Client.GameObjects;
@@ -6,6 +7,20 @@
namespace Content.Client.TextScreen;
+/// overview:
+/// Data is passed from server to client through ,
+/// calling , which calls almost everything else.
+
+/// Data for the (at most one) timer is stored in .
+
+/// All screens have , but:
+/// the update method only updates the timers, so the timercomp is added/removed by appearance changes/timing out.
+
+/// Because the sprite component stores layers in a dict with no nesting, individual layers
+/// have to be mapped to unique ids e.g. {"textMapKey01" : }
+/// in either the visuals or timer component.
+
+
///
/// The TextScreenSystem draws text in the game world using 3x5 sprite states for each character.
///
@@ -33,13 +48,20 @@ public sealed class TextScreenSystem : VisualizerSystem
/// A string prefix for all text layers.
///
- private const string TextScreenLayerMapKey = "textScreenLayerMapKey";
+ private const string TextMapKey = "textMapKey";
+ ///
+ /// A string prefix for all timer layers.
+ ///
+ private const string TimerMapKey = "timerMapKey";
+ private const string TextPath = "Effects/text.rsi";
+ private const int CharWidth = 4;
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnInit);
+ SubscribeLocalEvent(OnTimerInit);
}
private void OnInit(EntityUid uid, TextScreenVisualsComponent component, ComponentInit args)
@@ -47,199 +69,201 @@ private void OnInit(EntityUid uid, TextScreenVisualsComponent component, Compone
if (!TryComp(uid, out SpriteComponent? sprite))
return;
- ResetTextLength(uid, component, sprite);
- PrepareLayerStatesToDraw(uid, component, sprite);
- UpdateLayersToDraw(uid, component, sprite);
+ // awkward to specify a textoffset of e.g. 0.1875 in the prototype
+ component.TextOffset = Vector2.Multiply(TextScreenVisualsComponent.PixelSize, component.TextOffset);
+ component.TimerOffset = Vector2.Multiply(TextScreenVisualsComponent.PixelSize, component.TimerOffset);
+
+ ResetText(uid, component, sprite);
+ BuildTextLayers(uid, component, sprite);
}
///
- /// Resets all TextScreenComponent sprite layers, through removing them and then creating new ones.
+ /// Instantiates with { + int : } pairs.
///
- public void ResetTextLength(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null)
+ private void OnTimerInit(EntityUid uid, TextScreenTimerComponent timer, ComponentInit args)
{
- if (!Resolve(uid, ref sprite))
+ if (!TryComp(uid, out var sprite) || !TryComp(uid, out var screen))
return;
- foreach (var (key, _) in component.LayerStatesToDraw)
+ for (var i = 0; i < screen.RowLength; i++)
{
- sprite.RemoveLayer(key);
+ sprite.LayerMapReserveBlank(TimerMapKey + i);
+ timer.LayerStatesToDraw.Add(TimerMapKey + i, null);
+ sprite.LayerSetRSI(TimerMapKey + i, new ResPath(TextPath));
+ sprite.LayerSetColor(TimerMapKey + i, screen.Color);
+ sprite.LayerSetState(TimerMapKey + i, DefaultState);
}
-
- component.LayerStatesToDraw.Clear();
-
- var length = component.TextLength;
- component.TextLength = 0;
- SetTextLength(uid, component, length, sprite);
}
///
- /// Sets , adding or removing sprite layers if necessary.
+ /// Called by to handle text updates,
+ /// and spawn a if necessary
///
- public void SetTextLength(EntityUid uid, TextScreenVisualsComponent component, int newLength, SpriteComponent? sprite = null)
+ protected override void OnAppearanceChange(EntityUid uid, TextScreenVisualsComponent component, ref AppearanceChangeEvent args)
{
- if (newLength == component.TextLength)
+ if (!Resolve(uid, ref args.Sprite))
return;
- if (!Resolve(uid, ref sprite))
- return;
+ var appearance = args.Component;
- if (newLength > component.TextLength)
+ if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.TargetTime, out TimeSpan time, appearance))
{
- for (var i = component.TextLength; i < newLength; i++)
+ if (time > _gameTiming.CurTime)
{
- sprite.LayerMapReserveBlank(TextScreenLayerMapKey + i);
- component.LayerStatesToDraw.Add(TextScreenLayerMapKey + i, null);
- sprite.LayerSetRSI(TextScreenLayerMapKey + i, new ResPath("Effects/text.rsi"));
- sprite.LayerSetColor(TextScreenLayerMapKey + i, component.Color);
- sprite.LayerSetState(TextScreenLayerMapKey + i, DefaultState);
+ var timer = EnsureComp(uid);
+ timer.Target = time;
+ BuildTimerLayers(uid, timer, component);
+ DrawLayers(uid, timer.LayerStatesToDraw);
}
- }
- else
- {
- for (var i = component.TextLength; i > newLength; i--)
+ else
{
- sprite.LayerMapGet(TextScreenLayerMapKey + (i - 1));
- component.LayerStatesToDraw.Remove(TextScreenLayerMapKey + (i - 1));
- sprite.RemoveLayer(TextScreenLayerMapKey + (i - 1));
+ OnTimerFinish(uid, component);
}
}
- UpdateOffsets(uid, component, sprite);
-
- component.TextLength = newLength;
- }
-
- ///
- /// Updates the layers offsets based on the text length, so it is drawn correctly.
- ///
- public void UpdateOffsets(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null)
- {
- if (!Resolve(uid, ref sprite))
- return;
-
- for (var i = 0; i < component.LayerStatesToDraw.Count; i++)
+ if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.ScreenText, out string?[] text, appearance))
{
- var offset = i - (component.LayerStatesToDraw.Count - 1) / 2.0f;
- sprite.LayerSetOffset(TextScreenLayerMapKey + i, new Vector2(offset * TextScreenVisualsComponent.PixelSize * 4f, 0.0f) + component.TextOffset);
+ component.TextToDraw = text;
+ ResetText(uid, component);
+ BuildTextLayers(uid, component, args.Sprite);
+ DrawLayers(uid, component.LayerStatesToDraw);
}
}
- protected override void OnAppearanceChange(EntityUid uid, TextScreenVisualsComponent component, ref AppearanceChangeEvent args)
+ ///
+ /// Removes the timer component, clears the sprite layer dict,
+ /// and draws
+ ///
+ private void OnTimerFinish(EntityUid uid, TextScreenVisualsComponent screen)
{
- UpdateAppearance(uid, component, args.Component, args.Sprite);
- }
+ screen.TextToDraw = screen.Text;
- public void UpdateAppearance(EntityUid uid, TextScreenVisualsComponent component, AppearanceComponent? appearance = null, SpriteComponent? sprite = null)
- {
- if (!Resolve(uid, ref appearance, ref sprite))
+ if (!TryComp(uid, out var timer) || !TryComp(uid, out var sprite))
return;
- if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.On, out bool on, appearance))
- {
- component.Activated = on;
- UpdateVisibility(uid, component, sprite);
- }
-
- if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.Mode, out TextScreenMode mode, appearance))
- {
- component.CurrentMode = mode;
- if (component.CurrentMode == TextScreenMode.Timer)
- EnsureComp(uid);
- else
- RemComp(uid);
-
- UpdateText(component);
- }
-
- if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.TargetTime, out TimeSpan time, appearance))
- {
- component.TargetTime = time;
- }
+ foreach (var key in timer.LayerStatesToDraw.Keys)
+ sprite.RemoveLayer(key);
- if (AppearanceSystem.TryGetData(uid, TextScreenVisuals.ScreenText, out string text, appearance))
- {
- component.Text = text;
- }
+ RemComp(uid);
- UpdateText(component);
- PrepareLayerStatesToDraw(uid, component, sprite);
- UpdateLayersToDraw(uid, component, sprite);
+ ResetText(uid, screen);
+ BuildTextLayers(uid, screen, sprite);
+ DrawLayers(uid, screen.LayerStatesToDraw);
}
///
- /// If currently in mode:
- /// Sets to the value of
+ /// Clears , and instantiates new blank defaults.
///
- public static void UpdateText(TextScreenVisualsComponent component)
+ public void ResetText(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null)
{
- if (component.CurrentMode == TextScreenMode.Text)
- component.TextToDraw = component.Text;
+ if (!Resolve(uid, ref sprite))
+ return;
+
+ foreach (var key in component.LayerStatesToDraw.Keys)
+ sprite.RemoveLayer(key);
+
+ component.LayerStatesToDraw.Clear();
+
+ for (var row = 0; row < component.Rows; row++)
+ for (var i = 0; i < component.RowLength; i++)
+ {
+ sprite.LayerMapReserveBlank(TextMapKey + row + i);
+ component.LayerStatesToDraw.Add(TextMapKey + row + i, null);
+ sprite.LayerSetRSI(TextMapKey + row + i, new ResPath(TextPath));
+ sprite.LayerSetColor(TextMapKey + row + i, component.Color);
+ sprite.LayerSetState(TextMapKey + row + i, DefaultState);
+ }
}
///
- /// Sets visibility of text to .
+ /// Sets the states in the to match the component
+ /// string?[].
///
- public void UpdateVisibility(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null)
+ ///
+ /// Remember to set to a string?[] first.
+ ///
+ public void BuildTextLayers(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null)
{
if (!Resolve(uid, ref sprite))
return;
- foreach (var (key, _) in component.LayerStatesToDraw)
+ for (var rowIdx = 0; rowIdx < Math.Min(component.TextToDraw.Length, component.Rows); rowIdx++)
{
- sprite.LayerSetVisible(key, component.Activated);
+ var row = component.TextToDraw[rowIdx];
+ if (row == null)
+ continue;
+ var min = Math.Min(row.Length, component.RowLength);
+
+ for (var chr = 0; chr < min; chr++)
+ {
+ component.LayerStatesToDraw[TextMapKey + rowIdx + chr] = GetStateFromChar(row[chr]);
+ sprite.LayerSetOffset(
+ TextMapKey + rowIdx + chr,
+ Vector2.Multiply(
+ new Vector2((chr - min / 2f + 0.5f) * CharWidth, -rowIdx * component.RowOffset),
+ TextScreenVisualsComponent.PixelSize
+ ) + component.TextOffset
+ );
+ }
}
}
///
- /// Sets the states in the to match the component string.
+ /// Populates timer.LayerStatesToDraw & the sprite component's layer dict with calculated offsets.
///
- ///
- /// Remember to set to a string first.
- ///
- public void PrepareLayerStatesToDraw(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null)
+ public void BuildTimerLayers(EntityUid uid, TextScreenTimerComponent timer, TextScreenVisualsComponent screen)
{
- if (!Resolve(uid, ref sprite))
+ if (!TryComp(uid, out var sprite))
return;
- for (var i = 0; i < component.TextLength; i++)
+ string time = TimeToString(
+ (_gameTiming.CurTime - timer.Target).Duration(),
+ false,
+ screen.HourFormat, screen.MinuteFormat, screen.SecondFormat
+ );
+
+ int min = Math.Min(time.Length, screen.RowLength);
+
+ for (int i = 0; i < min; i++)
{
- if (i >= component.TextToDraw.Length)
- {
- component.LayerStatesToDraw[TextScreenLayerMapKey + i] = DefaultState;
- continue;
- }
- component.LayerStatesToDraw[TextScreenLayerMapKey + i] = GetStateFromChar(component.TextToDraw[i]);
+ timer.LayerStatesToDraw[TimerMapKey + i] = GetStateFromChar(time[i]);
+ sprite.LayerSetOffset(
+ TimerMapKey + i,
+ Vector2.Multiply(
+ new Vector2((i - min / 2f + 0.5f) * CharWidth, 0f),
+ TextScreenVisualsComponent.PixelSize
+ ) + screen.TimerOffset
+ );
}
}
///
- /// Iterates through , setting sprite states to the appropriate layers.
+ /// Draws a LayerStates dict by setting the sprite states individually.
///
- public void UpdateLayersToDraw(EntityUid uid, TextScreenVisualsComponent component, SpriteComponent? sprite = null)
+ private void DrawLayers(EntityUid uid, Dictionary layerStates, SpriteComponent? sprite = null)
{
if (!Resolve(uid, ref sprite))
return;
- foreach (var (key, state) in component.LayerStatesToDraw)
- {
- if (state == null)
- continue;
+ foreach (var (key, state) in layerStates.Where(pairs => pairs.Value != null))
sprite.LayerSetState(key, state);
- }
}
public override void Update(float frameTime)
{
base.Update(frameTime);
- var query = EntityQueryEnumerator();
- while (query.MoveNext(out var uid, out var comp, out _))
+ var query = EntityQueryEnumerator();
+ while (query.MoveNext(out var uid, out var timer, out var screen))
{
- // Basically Abs(TimeSpan, TimeSpan) -> Gives the difference between the current time and the target time.
- var timeToShow = _gameTiming.CurTime > comp.TargetTime ? _gameTiming.CurTime - comp.TargetTime : comp.TargetTime - _gameTiming.CurTime;
- comp.TextToDraw = TimeToString(timeToShow, false);
- PrepareLayerStatesToDraw(uid, comp);
- UpdateLayersToDraw(uid, comp);
+ if (timer.Target < _gameTiming.CurTime)
+ {
+ OnTimerFinish(uid, screen);
+ continue;
+ }
+
+ BuildTimerLayers(uid, timer, screen);
+ DrawLayers(uid, timer.LayerStatesToDraw);
}
}
@@ -248,28 +272,29 @@ public override void Update(float frameTime)
///
/// TimeSpan to convert into string.
/// Should the string be ss:ms if minutes are less than 1?
- public static string TimeToString(TimeSpan timeSpan, bool getMilliseconds = true)
+ ///
+ /// hours, minutes, seconds, and centiseconds are each set to 2 decimal places by default.
+ ///
+ public static string TimeToString(TimeSpan timeSpan, bool getMilliseconds = true, string hours = "D2", string minutes = "D2", string seconds = "D2", string cs = "D2")
{
string firstString;
string lastString;
if (timeSpan.TotalHours >= 1)
{
- firstString = timeSpan.Hours.ToString("D2");
- lastString = timeSpan.Minutes.ToString("D2");
+ firstString = timeSpan.Hours.ToString(hours);
+ lastString = timeSpan.Minutes.ToString(minutes);
}
else if (timeSpan.TotalMinutes >= 1 || !getMilliseconds)
{
- firstString = timeSpan.Minutes.ToString("D2");
- // It's nicer to see a timer set at 5 seconds actually start at 00:05 instead of 00:04.
- var seconds = timeSpan.Seconds + (timeSpan.Milliseconds > 500 ? 1 : 0);
- lastString = seconds.ToString("D2");
+ firstString = timeSpan.Minutes.ToString(minutes);
+ lastString = timeSpan.Seconds.ToString(seconds);
}
else
{
- firstString = timeSpan.Seconds.ToString("D2");
+ firstString = timeSpan.Seconds.ToString(seconds);
var centiseconds = timeSpan.Milliseconds / 10;
- lastString = centiseconds.ToString("D2");
+ lastString = centiseconds.ToString(cs);
}
return firstString + ':' + lastString;
diff --git a/Content.Client/TextScreen/TextScreenTimerComponent.cs b/Content.Client/TextScreen/TextScreenTimerComponent.cs
index 9034f763d17..96081452e52 100644
--- a/Content.Client/TextScreen/TextScreenTimerComponent.cs
+++ b/Content.Client/TextScreen/TextScreenTimerComponent.cs
@@ -1,10 +1,14 @@
-namespace Content.Client.TextScreen;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
+
+namespace Content.Client.TextScreen;
///
-/// This is an active component for tracking
+/// Added to an entity already containing a to track frame-by-frame timer updates
///
[RegisterComponent]
public sealed partial class TextScreenTimerComponent : Component
{
-
+ [DataField("targetTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
+ public TimeSpan Target = TimeSpan.Zero;
+ public Dictionary LayerStatesToDraw = new();
}
diff --git a/Content.Client/TextScreen/TextScreenVisualsComponent.cs b/Content.Client/TextScreen/TextScreenVisualsComponent.cs
index c3ee23928ce..cf3619024c6 100644
--- a/Content.Client/TextScreen/TextScreenVisualsComponent.cs
+++ b/Content.Client/TextScreen/TextScreenVisualsComponent.cs
@@ -1,7 +1,6 @@
using System.Numerics;
using Content.Shared.TextScreen;
using Robust.Client.Graphics;
-using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Client.TextScreen;
@@ -16,52 +15,63 @@ public sealed partial class TextScreenVisualsComponent : Component
///
/// The color of the text drawn.
///
- [DataField("color")]
- public Color Color { get; set; } = Color.FloralWhite;
+ ///
+ /// 15,151,251 is the old ss13 color, from tg
+ ///
+ [DataField("color"), ViewVariables(VVAccess.ReadWrite)]
+ public Color Color = new Color(15, 151, 251);
///
- /// Whether the screen is on.
+ /// Offset for centering the text.
///
- [DataField("activated")]
- public bool Activated;
+ [DataField("textOffset"), ViewVariables(VVAccess.ReadWrite)]
+ public Vector2 TextOffset = Vector2.Zero;
///
- /// The current mode of the screen - is it showing text, or currently counting?
+ /// Offset for centering the timer.
///
- [DataField("currentMode")]
- public TextScreenMode CurrentMode = TextScreenMode.Text;
+ [DataField("timerOffset"), ViewVariables(VVAccess.ReadWrite)]
+ public Vector2 TimerOffset = Vector2.Zero;
///
- /// The time it is counting to or from.
+ /// Number of rows of text this screen can render.
///
- [DataField("targetTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
- public TimeSpan TargetTime = TimeSpan.Zero;
+ [DataField("rows")]
+ public int Rows = 1;
///
- /// Offset for drawing the text.
- /// (0, 8) pixels is the default for the Structures\Wallmounts\textscreen.rsi
+ /// Spacing between each text row
///
- [DataField("textOffset"), ViewVariables(VVAccess.ReadWrite)]
- public Vector2 TextOffset = new(0f, 8f * PixelSize);
+ [DataField("rowOffset")]
+ public int RowOffset = 7;
///
- /// The amount of characters this component can show.
+ /// The amount of characters this component can show per row.
///
- [DataField("textLength")]
- public int TextLength = 5;
+ [DataField("rowLength")]
+ public int RowLength = 5;
///
- /// Text the screen should show when it's not counting.
+ /// Text the screen should show when it finishes a timer.
///
[DataField("text"), ViewVariables(VVAccess.ReadWrite)]
- public string Text = "";
+ public string?[] Text = new string?[2];
- public string TextToDraw = "";
+ ///
+ /// Text the screen will draw whenever appearance is updated.
+ ///
+ public string?[] TextToDraw = new string?[2];
///
- /// The different layers for each character - this is the currently drawn states.
+ /// Per-character layers, for mapping into the sprite component.
///
[DataField("layerStatesToDraw")]
public Dictionary LayerStatesToDraw = new();
-}
+ [DataField("hourFormat")]
+ public string HourFormat = "D2";
+ [DataField("minuteFormat")]
+ public string MinuteFormat = "D2";
+ [DataField("secondFormat")]
+ public string SecondFormat = "D2";
+}
diff --git a/Content.Client/UserInterface/Controls/SplitBar.xaml.cs b/Content.Client/UserInterface/Controls/SplitBar.xaml.cs
index a7b11970e2d..7273f327bfb 100644
--- a/Content.Client/UserInterface/Controls/SplitBar.xaml.cs
+++ b/Content.Client/UserInterface/Controls/SplitBar.xaml.cs
@@ -9,6 +9,8 @@ namespace Content.Client.UserInterface.Controls
[GenerateTypedNameReferences]
public partial class SplitBar : BoxContainer
{
+ public Vector2 MinBarSize = new(24, 0);
+
public SplitBar()
{
RobustXamlLoader.Load(this);
@@ -33,7 +35,7 @@ public void AddEntry(float amount, Color color, string? tooltip = null)
PaddingLeft = 2f,
PaddingRight = 2f,
},
- MinSize = new Vector2(24, 0)
+ MinSize = MinBarSize
});
}
}
diff --git a/Content.Server/Administration/Components/SuperBonkComponent.cs b/Content.Server/Administration/Components/SuperBonkComponent.cs
new file mode 100644
index 00000000000..868d232e606
--- /dev/null
+++ b/Content.Server/Administration/Components/SuperBonkComponent.cs
@@ -0,0 +1,48 @@
+using Content.Server.Administration.Systems;
+using Content.Shared.Climbing.Components;
+
+namespace Content.Server.Administration.Components;
+
+///
+/// Component to track the timer for the SuperBonk smite.
+///
+[RegisterComponent, Access(typeof(SuperBonkSystem))]
+public sealed partial class SuperBonkComponent: Component
+{
+ ///
+ /// Entity being Super Bonked.
+ ///
+ [DataField]
+ public EntityUid Target;
+
+ ///
+ /// All of the tables the target will be bonked on.
+ ///
+ [DataField]
+ public Dictionary.Enumerator Tables;
+
+ ///
+ /// Value used to reset the timer once it expires.
+ ///
+ [DataField]
+ public float InitialTime = 0.10f;
+
+ ///
+ /// Timer till the next bonk.
+ ///
+ [DataField]
+ public float TimeRemaining = 0.10f;
+
+ ///
+ /// Whether to remove the clumsy component from the target after SuperBonk is done.
+ ///
+ [DataField]
+ public bool RemoveClumsy = true;
+
+ ///
+ /// Whether to stop Super Bonk on the target once he dies. Otherwise it will continue until no other tables are left
+ /// or the target is gibbed.
+ ///
+ [DataField]
+ public bool StopWhenDead = true;
+}
diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs
index c2f07320b5b..10a001be8b6 100644
--- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs
+++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs
@@ -40,7 +40,6 @@
using Content.Shared.Tabletop.Components;
using Content.Shared.Tools.Systems;
using Content.Shared.Verbs;
-using Robust.Server.GameObjects;
using Robust.Shared.Map;
using Robust.Shared.Map.Components;
using Robust.Shared.Physics;
@@ -77,6 +76,7 @@ public sealed partial class AdminVerbSystem
[Dependency] private readonly WeldableSystem _weldableSystem = default!;
[Dependency] private readonly SharedContentEyeSystem _eyeSystem = default!;
[Dependency] private readonly SharedTransformSystem _transformSystem = default!;
+ [Dependency] private readonly SuperBonkSystem _superBonkSystem = default!;
// All smite verbs have names so invokeverb works.
private void AddSmiteVerbs(GetVerbsEvent args)
@@ -793,5 +793,32 @@ private void AddSmiteVerbs(GetVerbsEvent args)
Message = Loc.GetString("admin-smite-super-speed-description"),
};
args.Verbs.Add(superSpeed);
+ //Bonk
+ Verb superBonkLite = new()
+ {
+ Text = "Super Bonk Lite",
+ Category = VerbCategory.Smite,
+ Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/glass.rsi"), "full"),
+ Act = () =>
+ {
+ _superBonkSystem.StartSuperBonk(args.Target, stopWhenDead: true);
+ },
+ Message = Loc.GetString("admin-smite-super-bonk-lite-description"),
+ Impact = LogImpact.Extreme,
+ };
+ args.Verbs.Add(superBonkLite);
+ Verb superBonk= new()
+ {
+ Text = "Super Bonk",
+ Category = VerbCategory.Smite,
+ Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/generic.rsi"), "full"),
+ Act = () =>
+ {
+ _superBonkSystem.StartSuperBonk(args.Target);
+ },
+ Message = Loc.GetString("admin-smite-super-bonk-description"),
+ Impact = LogImpact.Extreme,
+ };
+ args.Verbs.Add(superBonk);
}
}
diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs
index 31ef285a882..00b771e4488 100644
--- a/Content.Server/Administration/Systems/BwoinkSystem.cs
+++ b/Content.Server/Administration/Systems/BwoinkSystem.cs
@@ -46,6 +46,7 @@ public sealed class BwoinkSystem : SharedBwoinkSystem
private readonly Dictionary> _messageQueues = new();
private readonly HashSet _processingChannels = new();
private readonly Dictionary _typingUpdateTimestamps = new();
+ private string _overrideClientName = string.Empty;
// Max embed description length is 4096, according to https://discord.com/developers/docs/resources/channel#embed-object-embed-limits
// Keep small margin, just to be safe
@@ -67,6 +68,7 @@ public override void Initialize()
_config.OnValueChanged(CCVars.DiscordAHelpFooterIcon, OnFooterIconChanged, true);
_config.OnValueChanged(CCVars.DiscordAHelpAvatar, OnAvatarChanged, true);
_config.OnValueChanged(CVars.GameHostName, OnServerNameChanged, true);
+ _config.OnValueChanged(CCVars.AdminAhelpOverrideClientName, OnOverrideChanged, true);
_sawmill = IoCManager.Resolve().GetSawmill("AHELP");
_maxAdditionalChars = GenerateAHelpMessage("", "", true).Length;
_playerManager.PlayerStatusChanged += OnPlayerStatusChanged;
@@ -75,6 +77,11 @@ public override void Initialize()
SubscribeNetworkEvent(OnClientTypingUpdated);
}
+ private void OnOverrideChanged(string obj)
+ {
+ _overrideClientName = obj;
+ }
+
private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)
{
if (e.NewStatus != SessionStatus.InGame)
@@ -144,6 +151,7 @@ public override void Shutdown()
_config.UnsubValueChanged(CCVars.DiscordAHelpWebhook, OnWebhookChanged);
_config.UnsubValueChanged(CCVars.DiscordAHelpFooterIcon, OnFooterIconChanged);
_config.UnsubValueChanged(CVars.GameHostName, OnServerNameChanged);
+ _config.UnsubValueChanged(CCVars.AdminAhelpOverrideClientName, OnOverrideChanged);
}
private async void OnWebhookChanged(string url)
@@ -393,14 +401,20 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes
var escapedText = FormattedMessage.EscapeText(message.Text);
- var bwoinkText = senderAdmin switch
+ string bwoinkText;
+
+ if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently.
{
- var x when x is not null && x.Flags == AdminFlags.Adminhelp =>
- $"[color=purple]{senderSession.Name}[/color]: {escapedText}",
- var x when x is not null && x.HasFlag(AdminFlags.Adminhelp) =>
- $"[color=red]{senderSession.Name}[/color]: {escapedText}",
- _ => $"{senderSession.Name}: {escapedText}",
- };
+ bwoinkText = $"[color=purple]{senderSession.Name}[/color]: {escapedText}";
+ }
+ else if (senderAdmin is not null && senderAdmin.HasFlag(AdminFlags.Adminhelp))
+ {
+ bwoinkText = $"[color=red]{senderSession.Name}[/color]: {escapedText}";
+ }
+ else
+ {
+ bwoinkText = $"{senderSession.Name}: {escapedText}";
+ }
var msg = new BwoinkTextMessage(message.UserId, senderSession.UserId, bwoinkText);
@@ -418,7 +432,30 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes
if (_playerManager.TryGetSessionById(message.UserId, out var session))
{
if (!admins.Contains(session.ConnectedClient))
- RaiseNetworkEvent(msg, session.ConnectedClient);
+ {
+ // If _overrideClientName is set, we generate a new message with the override name. The admins name will still be the original name for the webhooks.
+ if (_overrideClientName != string.Empty)
+ {
+ string overrideMsgText;
+ // Doing the same thing as above, but with the override name. Theres probably a better way to do this.
+ if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently.
+ {
+ overrideMsgText = $"[color=purple]{_overrideClientName}[/color]: {escapedText}";
+ }
+ else if (senderAdmin is not null && senderAdmin.HasFlag(AdminFlags.Adminhelp))
+ {
+ overrideMsgText = $"[color=red]{_overrideClientName}[/color]: {escapedText}";
+ }
+ else
+ {
+ overrideMsgText = $"{senderSession.Name}: {escapedText}"; // Not an admin, name is not overridden.
+ }
+
+ RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, senderSession.UserId, overrideMsgText), session.ConnectedClient);
+ }
+ else
+ RaiseNetworkEvent(msg, session.ConnectedClient);
+ }
}
var sendsWebhook = _webhookUrl != string.Empty;
diff --git a/Content.Server/Administration/Systems/SuperBonkSystem.cs b/Content.Server/Administration/Systems/SuperBonkSystem.cs
new file mode 100644
index 00000000000..5488a8d6f46
--- /dev/null
+++ b/Content.Server/Administration/Systems/SuperBonkSystem.cs
@@ -0,0 +1,107 @@
+using Content.Server.Administration.Components;
+using Content.Shared.Climbing.Components;
+using Content.Shared.Climbing.Events;
+using Content.Shared.Climbing.Systems;
+using Content.Shared.Interaction.Components;
+using Content.Shared.Mobs;
+using Content.Shared.Mobs.Components;
+
+namespace Content.Server.Administration.Systems;
+
+public sealed class SuperBonkSystem: EntitySystem
+{
+ [Dependency] private readonly SharedTransformSystem _transformSystem = default!;
+ [Dependency] private readonly BonkSystem _bonkSystem = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnBonkShutdown);
+ SubscribeLocalEvent(OnMobStateChanged);
+ }
+
+ public void StartSuperBonk(EntityUid target, float delay = 0.1f, bool stopWhenDead = false )
+ {
+
+ //The other check in the code to stop when the target dies does not work if the target is already dead.
+ if (stopWhenDead && TryComp(target, out var mState))
+ {
+ if (mState.CurrentState == MobState.Dead)
+ return;
+ }
+
+
+ var hadClumsy = EnsureComp(target, out _);
+
+ var tables = EntityQueryEnumerator();
+ var bonks = new Dictionary();
+ // This is done so we don't crash if something like a new table is spawned.
+ while (tables.MoveNext(out var uid, out var comp))
+ {
+ bonks.Add(uid, comp);
+ }
+
+ var sComp = new SuperBonkComponent
+ {
+ Target = target,
+ Tables = bonks.GetEnumerator(),
+ RemoveClumsy = !hadClumsy,
+ StopWhenDead = stopWhenDead,
+ };
+
+ AddComp(target, sComp);
+ }
+
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+ var comps = EntityQueryEnumerator();
+
+ while (comps.MoveNext(out var uid, out var comp))
+ {
+ comp.TimeRemaining -= frameTime;
+ if (!(comp.TimeRemaining <= 0))
+ continue;
+
+ Bonk(comp);
+
+ if (!(comp.Tables.MoveNext()))
+ {
+ RemComp(comp.Target);
+ continue;
+ }
+
+ comp.TimeRemaining = comp.InitialTime;
+ }
+ }
+
+ private void Bonk(SuperBonkComponent comp)
+ {
+ var uid = comp.Tables.Current.Key;
+ var bonkComp = comp.Tables.Current.Value;
+
+ // It would be very weird for something without a transform component to have a bonk component
+ // but just in case because I don't want to crash the server.
+ if (!HasComp(uid))
+ return;
+
+ _transformSystem.SetCoordinates(comp.Target, Transform(uid).Coordinates);
+
+ _bonkSystem.TryBonk(comp.Target, uid, bonkComp);
+ }
+
+ private void OnMobStateChanged(EntityUid uid, SuperBonkComponent comp, MobStateChangedEvent args)
+ {
+ if (comp.StopWhenDead && args.NewMobState == MobState.Dead)
+ {
+ RemComp(uid);
+ }
+ }
+
+ private void OnBonkShutdown(EntityUid uid, SuperBonkComponent comp, ComponentShutdown ev)
+ {
+ if (comp.RemoveClumsy)
+ RemComp(comp.Target);
+ }
+}
diff --git a/Content.Server/Atmos/Components/BreathToolComponent.cs b/Content.Server/Atmos/Components/BreathToolComponent.cs
index 6e50dc71ea1..f3688ef7ffc 100644
--- a/Content.Server/Atmos/Components/BreathToolComponent.cs
+++ b/Content.Server/Atmos/Components/BreathToolComponent.cs
@@ -13,7 +13,7 @@ public sealed partial class BreathToolComponent : Component
/// Tool is functional only in allowed slots
///
[DataField("allowedSlots")]
- public SlotFlags AllowedSlots = SlotFlags.MASK;
+ public SlotFlags AllowedSlots = SlotFlags.MASK | SlotFlags.HEAD;
public bool IsFunctional;
public EntityUid? ConnectedInternalsEntity;
}
diff --git a/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs b/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs
index 26dd9ad24d1..f30b20db302 100644
--- a/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs
+++ b/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs
@@ -1,8 +1,11 @@
namespace Content.Server.Atmos.Components;
+///
+/// Component that can be used to add (or remove) fire stacks when used as a melee weapon.
+///
[RegisterComponent]
public sealed partial class IgniteOnMeleeHitComponent : Component
{
- [DataField("fireStacks")]
+ [DataField]
public float FireStacks { get; set; }
}
diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs
index 3eb38296f6a..1f1a208b24b 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs
@@ -14,6 +14,7 @@ public sealed partial class AtmosphereSystem
private void InitializeGridAtmosphere()
{
SubscribeLocalEvent(OnGridAtmosphereInit);
+ SubscribeLocalEvent(OnAtmosphereRemove);
SubscribeLocalEvent(OnGridSplit);
#region Atmos API Subscriptions
@@ -42,6 +43,19 @@ private void InitializeGridAtmosphere()
#endregion
}
+ private void OnAtmosphereRemove(EntityUid uid, GridAtmosphereComponent component, ComponentRemove args)
+ {
+ for (var i = 0; i < _currentRunAtmosphere.Count; i++)
+ {
+ if (_currentRunAtmosphere[i].Owner != uid)
+ continue;
+
+ _currentRunAtmosphere.RemoveAt(i);
+ if (_currentRunAtmosphereIndex > i)
+ _currentRunAtmosphereIndex--;
+ }
+ }
+
private void OnGridAtmosphereInit(EntityUid uid, GridAtmosphereComponent gridAtmosphere, ComponentInit args)
{
base.Initialize();
diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs
index 8cd47ca00c2..ad0d409a4b3 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs
@@ -4,6 +4,7 @@
using Content.Shared.Atmos;
using Content.Shared.Atmos.Components;
using Content.Shared.Maps;
+using Robust.Shared.Map;
using Robust.Shared.Map.Components;
using Robust.Shared.Physics.Components;
using Robust.Shared.Timing;
@@ -449,6 +450,15 @@ private void UpdateProcessing(float frameTime)
var (owner, atmosphere) = ent;
TryComp(owner, out GasTileOverlayComponent? visuals);
+ if (!TryComp(owner, out TransformComponent? x)
+ || x.MapUid == null
+ || TerminatingOrDeleted(x.MapUid.Value)
+ || x.MapID == MapId.Nullspace)
+ {
+ Log.Error($"Attempted to process atmos without a map? Entity: {ToPrettyString(owner)}. Map: {ToPrettyString(x?.MapUid)}. MapId: {x?.MapID}");
+ continue;
+ }
+
if (atmosphere.LifeStage >= ComponentLifeStage.Stopping || Paused(owner) || !atmosphere.Simulated)
continue;
diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs
index a0b85a26faa..36722884e57 100644
--- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs
+++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs
@@ -85,8 +85,9 @@ private void OnMeleeHit(EntityUid uid, IgniteOnMeleeHitComponent component, Mele
if (!TryComp(entity, out var flammable))
continue;
- flammable.FireStacks += component.FireStacks;
- Ignite(entity, args.Weapon, flammable, args.User);
+ AdjustFireStacks(entity, component.FireStacks, flammable);
+ if (component.FireStacks >= 0)
+ Ignite(entity, args.Weapon, flammable, args.User);
}
}
diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs
index 16ddf1f9339..6a2c8f0a7e5 100644
--- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs
+++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs
@@ -1,3 +1,4 @@
+using System.Linq;
using Content.Server.Atmos;
using Content.Server.Atmos.Components;
using Content.Server.NodeContainer;
@@ -23,6 +24,11 @@ public sealed class GasAnalyzerSystem : EntitySystem
[Dependency] private readonly UserInterfaceSystem _userInterface = default!;
[Dependency] private readonly TransformSystem _transform = default!;
+ ///
+ /// Minimum moles of a gas to be sent to the client.
+ ///
+ private const float UIMinMoles = 0.01f;
+
public override void Initialize()
{
base.Initialize();
@@ -254,7 +260,7 @@ private GasEntry[] GenerateGasEntryArray(GasMixture? mixture)
{
var gas = _atmo.GetGas(i);
- if (mixture?.Moles[i] <= Atmospherics.GasMinMoles)
+ if (mixture?.Moles[i] <= UIMinMoles)
continue;
if (mixture != null)
@@ -264,7 +270,9 @@ private GasEntry[] GenerateGasEntryArray(GasMixture? mixture)
}
}
- return gases.ToArray();
+ var gasesOrdered = gases.OrderByDescending(gas => gas.Amount);
+
+ return gasesOrdered.ToArray();
}
}
}
diff --git a/Content.Server/Body/Systems/LungSystem.cs b/Content.Server/Body/Systems/LungSystem.cs
index 1843ae033e6..3aef2486e77 100644
--- a/Content.Server/Body/Systems/LungSystem.cs
+++ b/Content.Server/Body/Systems/LungSystem.cs
@@ -34,7 +34,7 @@ private void OnGotUnequipped(EntityUid uid, BreathToolComponent component, GotUn
private void OnGotEquipped(EntityUid uid, BreathToolComponent component, GotEquippedEvent args)
{
- if ((args.SlotFlags & component.AllowedSlots) != component.AllowedSlots) return;
+ if ((args.SlotFlags & component.AllowedSlots) == 0) return;
component.IsFunctional = true;
if (TryComp(args.Equipee, out InternalsComponent? internals))
diff --git a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs
index 00119b1f639..d40d7174aba 100644
--- a/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs
+++ b/Content.Server/DeviceLinking/Components/SignalTimerComponent.cs
@@ -20,7 +20,7 @@ public sealed partial class SignalTimerComponent : Component
/// The label, used for TextScreen visuals currently.
///
[DataField("label"), ViewVariables(VVAccess.ReadWrite)]
- public string Label = "";
+ public string Label = string.Empty;
///
/// The port that gets signaled when the timer triggers.
diff --git a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs
index 63bf5854d9c..ff90679e289 100644
--- a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs
+++ b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs
@@ -52,14 +52,19 @@ private void OnAfterActivatableUIOpen(EntityUid uid, SignalTimerComponent compon
}
}
+ ///
+ /// Finishes a timer, triggering its main port, and removing its .
+ ///
public void Trigger(EntityUid uid, SignalTimerComponent signalTimer)
{
RemComp(uid);
+ if (TryComp(uid, out var appearance))
+ {
+ _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, new string?[] { signalTimer.Label }, appearance);
+ }
_signalSystem.InvokePort(uid, signalTimer.TriggerPort);
- _appearanceSystem.SetData(uid, TextScreenVisuals.Mode, TextScreenMode.Text);
-
if (_ui.TryGetUi(uid, SignalTimerUiKey.Key, out var bui))
{
_ui.SetUiState(bui, new SignalTimerBoundUserInterfaceState(signalTimer.Label,
@@ -75,11 +80,6 @@ public void Trigger(EntityUid uid, SignalTimerComponent signalTimer)
public override void Update(float frameTime)
{
base.Update(frameTime);
- UpdateTimer();
- }
-
- private void UpdateTimer()
- {
var query = EntityQueryEnumerator();
while (query.MoveNext(out var uid, out var active, out var timer))
{
@@ -88,9 +88,8 @@ private void UpdateTimer()
Trigger(uid, timer);
- if (timer.DoneSound == null)
- continue;
- _audio.PlayPvs(timer.DoneSound, uid);
+ if (timer.DoneSound != null)
+ _audio.PlayPvs(timer.DoneSound, uid);
}
}
@@ -98,7 +97,6 @@ private void UpdateTimer()
/// Checks if a UI is allowed to be sent by the user.
///
/// The entity that is interacted with.
- ///
private bool IsMessageValid(EntityUid uid, BoundUserInterfaceMessage message)
{
if (message.Session.AttachedEntity is not { Valid: true } mob)
@@ -110,53 +108,53 @@ private bool IsMessageValid(EntityUid uid, BoundUserInterfaceMessage message)
return true;
}
+ ///
+ /// Called by to both
+ /// change the default component label, and propagate that change to the TextScreen.
+ ///
private void OnTextChangedMessage(EntityUid uid, SignalTimerComponent component, SignalTimerTextChangedMessage args)
{
if (!IsMessageValid(uid, args))
return;
component.Label = args.Text[..Math.Min(5, args.Text.Length)];
- _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label);
+
+ if (!HasComp(uid))
+ _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, new string?[] { component.Label });
}
+ ///
+ /// Called by to change the
+ /// delay, and propagate that change to a textscreen.
+ ///
private void OnDelayChangedMessage(EntityUid uid, SignalTimerComponent component, SignalTimerDelayChangedMessage args)
{
if (!IsMessageValid(uid, args))
return;
component.Delay = args.Delay.TotalSeconds;
+ _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, component.Delay);
}
+ ///
+ /// Called by to instantiate an ,
+ /// clear , propagate those changes, and invoke the start port.
+ ///
private void OnTimerStartMessage(EntityUid uid, SignalTimerComponent component, SignalTimerStartMessage args)
{
if (!IsMessageValid(uid, args))
return;
TryComp(uid, out var appearance);
+ var timer = EnsureComp(uid);
+ timer.TriggerTime = _gameTiming.CurTime + TimeSpan.FromSeconds(component.Delay);
- if (!HasComp(uid))
+ if (appearance != null)
{
- var activeTimer = EnsureComp(uid);
- activeTimer.TriggerTime = _gameTiming.CurTime + TimeSpan.FromSeconds(component.Delay);
-
- if (appearance != null)
- {
- _appearanceSystem.SetData(uid, TextScreenVisuals.Mode, TextScreenMode.Timer, appearance);
- _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, activeTimer.TriggerTime, appearance);
- _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label, appearance);
- }
-
- _signalSystem.InvokePort(uid, component.StartPort);
+ _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, timer.TriggerTime, appearance);
+ _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, new string?[] { }, appearance);
}
- else
- {
- RemComp(uid);
- if (appearance != null)
- {
- _appearanceSystem.SetData(uid, TextScreenVisuals.Mode, TextScreenMode.Text, appearance);
- _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, component.Label, appearance);
- }
- }
+ _signalSystem.InvokePort(uid, component.StartPort);
}
}
diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs
index a90b195d9d2..457c862d96e 100644
--- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs
+++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs
@@ -385,7 +385,7 @@ private void OnRoundEnd(EntityUid uid, NukeopsRuleComponent? component = null)
continue;
// UH OH
- if (centcomms.Contains(nukeTransform.MapID))
+ if (nukeTransform.MapUid != null && centcomms.Contains(nukeTransform.MapUid.Value))
{
component.WinConditions.Add(WinCondition.NukeActiveAtCentCom);
SetWinType(uid, WinType.OpsMajor, component);
@@ -449,8 +449,7 @@ private void OnRoundEnd(EntityUid uid, NukeopsRuleComponent? component = null)
while (diskQuery.MoveNext(out _, out var transform))
{
- var diskMapId = transform.MapID;
- diskAtCentCom = centcomms.Contains(diskMapId);
+ diskAtCentCom = transform.MapUid != null && centcomms.Contains(transform.MapUid.Value);
// TODO: The target station should be stored, and the nuke disk should store its original station.
// This is fine for now, because we can assume a single station in base SS14.
diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs
index 885bf9cc126..eb22ba9ead6 100644
--- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs
+++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs
@@ -196,6 +196,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev)
var gridId = _map.LoadGrid(GameTicker.DefaultMap, map, new MapLoadOptions
{
Offset = aabb.Center + new Vector2(a, a),
+ LoadMap = false,
});
if (!gridId.HasValue)
diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs
index c430c719586..b3db87e8966 100644
--- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs
+++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs
@@ -50,7 +50,7 @@ private void InitializeGrid()
SubscribeLocalEvent(OnCollisionLayerChange);
SubscribeLocalEvent(OnBodyTypeChange);
SubscribeLocalEvent(OnTileChange);
- SubscribeLocalEvent(OnMoveEvent);
+ _transform.OnGlobalMoveEvent += OnMoveEvent;
}
private void OnTileChange(ref TileChangedEvent ev)
diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs
index 1b1f6f54761..1830b35bb68 100644
--- a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs
+++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs
@@ -46,6 +46,7 @@ public sealed partial class PathfindingSystem : SharedPathfindingSystem
[Dependency] private readonly FixtureSystem _fixtures = default!;
[Dependency] private readonly NPCSystem _npc = default!;
[Dependency] private readonly SharedPhysicsSystem _physics = default!;
+ [Dependency] private readonly SharedTransformSystem _transform = default!;
private readonly Dictionary _subscribedSessions = new();
@@ -75,6 +76,7 @@ public override void Shutdown()
base.Shutdown();
_subscribedSessions.Clear();
_playerManager.PlayerStatusChanged -= OnPlayerChange;
+ _transform.OnGlobalMoveEvent -= OnMoveEvent;
}
public override void Update(float frameTime)
diff --git a/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs b/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs
index 9d68b60418b..acfb8ff87b3 100644
--- a/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs
+++ b/Content.Server/Power/EntitySystems/ExtensionCableSystem.cs
@@ -145,7 +145,7 @@ private IEnumerable> FindAvailableReceiv
if (!receiver.Connectable || receiver.Provider != null)
continue;
- if ((Transform(entity).LocalPosition - xform.LocalPosition).Length() < Math.Min(range, receiver.ReceptionRange))
+ if ((Transform(entity).LocalPosition - xform.LocalPosition).Length() <= Math.Min(range, receiver.ReceptionRange))
yield return (entity, receiver);
}
}
diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs
index 7ec2e35fa73..b99309cfab7 100644
--- a/Content.Server/RoundEnd/RoundEndSystem.cs
+++ b/Content.Server/RoundEnd/RoundEndSystem.cs
@@ -2,17 +2,22 @@
using Content.Server.Administration.Logs;
using Content.Server.AlertLevel;
using Content.Shared.CCVar;
-using Content.Server.Chat;
using Content.Server.Chat.Managers;
using Content.Server.Chat.Systems;
+using Content.Server.DeviceNetwork;
+using Content.Server.DeviceNetwork.Components;
+using Content.Server.DeviceNetwork.Systems;
using Content.Server.GameTicking;
+using Content.Server.Shuttles.Components;
using Content.Server.Shuttles.Systems;
+using Content.Server.Station.Components;
using Content.Server.Station.Systems;
using Content.Shared.Database;
using Content.Shared.GameTicking;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Configuration;
+using Robust.Shared.Map;
using Robust.Shared.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Timing;
@@ -30,10 +35,14 @@ public sealed class RoundEndSystem : EntitySystem
[Dependency] private readonly IConfigurationManager _cfg = default!;
[Dependency] private readonly IChatManager _chatManager = default!;
[Dependency] private readonly IGameTiming _gameTiming = default!;
+ [Dependency] private readonly IMapManager _mapManager = default!;
+
[Dependency] private readonly IPrototypeManager _protoManager = default!;
[Dependency] private readonly ChatSystem _chatSystem = default!;
[Dependency] private readonly GameTicker _gameTicker = default!;
+ [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!;
[Dependency] private readonly EmergencyShuttleSystem _shuttle = default!;
+ [Dependency] private readonly ShuttleTimerSystem _shuttleTimerSystem = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly StationSystem _stationSystem = default!;
@@ -52,7 +61,7 @@ public sealed class RoundEndSystem : EntitySystem
public TimeSpan? ShuttleTimeLeft => ExpectedCountdownEnd - _gameTiming.CurTime;
public TimeSpan AutoCallStartTime;
- private bool AutoCalledBefore = false;
+ private bool _autoCalledBefore = false;
public override void Initialize()
{
@@ -83,10 +92,36 @@ private void Reset()
LastCountdownStart = null;
ExpectedCountdownEnd = null;
SetAutoCallTime();
- AutoCalledBefore = false;
+ _autoCalledBefore = false;
RaiseLocalEvent(RoundEndSystemChangedEvent.Default);
}
+ ///
+ /// Attempts to get the MapUid of the station using
+ ///
+ public EntityUid? GetStation()
+ {
+ AllEntityQuery().MoveNext(out _, out _, out var data);
+ if (data == null)
+ return null;
+ var targetGrid = _stationSystem.GetLargestGrid(data);
+ return targetGrid == null ? null : Transform(targetGrid.Value).MapUid;
+ }
+
+ ///
+ /// Attempts to get centcomm's MapUid
+ ///
+ public EntityUid? GetCentcomm()
+ {
+ if (AllEntityQuery()
+ .MoveNext(out var centcomm, out var xform))
+ {
+ return xform.MapUid;
+ }
+
+ return null;
+ }
+
public bool CanCallOrRecall()
{
return _cooldownTokenSource == null;
@@ -144,8 +179,8 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null,
}
else
{
- time = countdownTime.Minutes;
- units = "eta-units-minutes";
+ time = countdownTime.Minutes;
+ units = "eta-units-minutes";
}
_chatSystem.DispatchGlobalAnnouncement(Loc.GetString(text,
@@ -156,7 +191,7 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null,
null,
Color.Gold);
- if (!AutoCalledBefore) _audio.PlayGlobal("/Audio/Announcements/shuttlecalled.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements: Custom sound for auto-called
+ if (!_autoCalledBefore) _audio.PlayGlobal("/Audio/Announcements/shuttlecalled.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements: Custom sound for auto-called
else _audio.PlayGlobal("/Audio/Corvax/Announcements/crew_s_called.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements
LastCountdownStart = _gameTiming.CurTime;
@@ -165,6 +200,21 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null,
ActivateCooldown();
RaiseLocalEvent(RoundEndSystemChangedEvent.Default);
+
+ var shuttle = _shuttle.GetShuttle();
+ if (shuttle != null && TryComp(shuttle, out var net))
+ {
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = shuttle,
+ [ShuttleTimerMasks.SourceMap] = GetCentcomm(),
+ [ShuttleTimerMasks.DestMap] = GetStation(),
+ [ShuttleTimerMasks.ShuttleTime] = countdownTime,
+ [ShuttleTimerMasks.SourceTime] = countdownTime + TimeSpan.FromSeconds(_shuttle.TransitTime + _cfg.GetCVar(CCVars.EmergencyShuttleDockTime)),
+ [ShuttleTimerMasks.DestTime] = countdownTime,
+ };
+ _deviceNetworkSystem.QueuePacket(shuttle.Value, null, payload, net.TransmitFrequency);
+ }
}
public void CancelRoundEndCountdown(EntityUid? requester = null, bool checkCooldown = true)
@@ -194,6 +244,24 @@ public void CancelRoundEndCountdown(EntityUid? requester = null, bool checkCoold
ExpectedCountdownEnd = null;
ActivateCooldown();
RaiseLocalEvent(RoundEndSystemChangedEvent.Default);
+
+ // remove all active shuttle timers
+ var zero = TimeSpan.Zero;
+ var shuttle = _shuttle.GetShuttle();
+ if (shuttle != null && TryComp(shuttle, out var net))
+ {
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = shuttle,
+ [ShuttleTimerMasks.SourceMap] = GetCentcomm(),
+ [ShuttleTimerMasks.DestMap] = GetStation(),
+ [ShuttleTimerMasks.ShuttleTime] = zero,
+ [ShuttleTimerMasks.SourceTime] = zero,
+ [ShuttleTimerMasks.DestTime] = zero,
+ [ShuttleTimerMasks.Text] = new string?[] { string.Empty, string.Empty }
+ };
+ _deviceNetworkSystem.QueuePacket(shuttle.Value, null, payload, net.TransmitFrequency);
+ }
}
public void EndRound(TimeSpan? countdownTime = null)
@@ -285,13 +353,13 @@ private void ActivateCooldown()
public override void Update(float frameTime)
{
// Check if we should auto-call.
- int mins = AutoCalledBefore ? _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallExtensionTime)
+ int mins = _autoCalledBefore ? _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallExtensionTime)
: _cfg.GetCVar(CCVars.EmergencyShuttleAutoCallTime);
if (mins != 0 && _gameTiming.CurTime - AutoCallStartTime > TimeSpan.FromMinutes(mins))
{
if (!_shuttle.EmergencyShuttleArrived && ExpectedCountdownEnd is null)
{
- AutoCalledBefore = true; // Corvax-Announcements: Move before call RequestRoundEnd to play correct announcement sound type
+ _autoCalledBefore = true; // Corvax-Announcements: Move before call RequestRoundEnd to play correct announcement sound type
RequestRoundEnd(null, false, "round-end-system-shuttle-auto-called-announcement");
}
@@ -307,7 +375,7 @@ public sealed class RoundEndSystemChangedEvent : EntityEventArgs
}
public enum RoundEndBehavior : byte
-{
+ {
///
/// Instantly end round
///
@@ -322,5 +390,5 @@ public enum RoundEndBehavior : byte
/// Do nothing
///
Nothing
-}
+ }
}
diff --git a/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs b/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs
index 79ba1a46cba..99cdcbc3b6c 100644
--- a/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs
+++ b/Content.Server/Shuttles/Components/ArrivalsShuttleComponent.cs
@@ -9,10 +9,16 @@ public sealed partial class ArrivalsShuttleComponent : Component
[DataField("station")]
public EntityUid Station;
- [DataField("nextTransfer", customTypeSerializer:typeof(TimeOffsetSerializer))]
+ [DataField("nextTransfer", customTypeSerializer: typeof(TimeOffsetSerializer))]
public TimeSpan NextTransfer;
- [DataField("nextArrivalsTime", customTypeSerializer:typeof(TimeOffsetSerializer))]
+ [DataField("nextArrivalsTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
public TimeSpan NextArrivalsTime;
+ ///
+ /// the first arrivals FTL originates from nullspace instead of the station
+ ///
+ [DataField("firstRun")]
+ public bool FirstRun = true;
+
}
diff --git a/Content.Server/Shuttles/Components/EmergencyShuttleComponent.cs b/Content.Server/Shuttles/Components/EmergencyShuttleComponent.cs
new file mode 100644
index 00000000000..aa3d2fbb7f6
--- /dev/null
+++ b/Content.Server/Shuttles/Components/EmergencyShuttleComponent.cs
@@ -0,0 +1,13 @@
+using Content.Server.Shuttles.Systems;
+
+namespace Content.Server.Shuttles.Components;
+
+///
+/// Added to station emergency shuttles by ,
+/// for FTL event handlers
+///
+[RegisterComponent]
+public sealed partial class EmergencyShuttleComponent : Component
+{
+
+}
diff --git a/Content.Server/Shuttles/Components/ShuttleTimerComponent.cs b/Content.Server/Shuttles/Components/ShuttleTimerComponent.cs
new file mode 100644
index 00000000000..03b4f05c14f
--- /dev/null
+++ b/Content.Server/Shuttles/Components/ShuttleTimerComponent.cs
@@ -0,0 +1,24 @@
+namespace Content.Server.Shuttles.Components;
+
+[RegisterComponent]
+public sealed partial class ShuttleTimerComponent : Component
+{
+
+}
+
+///
+/// Awkward hashable string consts because NetworkPayload requires string keys
+/// TODO: Refactor NetworkPayload to accept bytes from enums?
+///
+public sealed class ShuttleTimerMasks
+{
+ public static readonly string ShuttleTime = "ShuttleTime";
+ public static readonly string DestTime = "DestTime";
+ public static readonly string SourceTime = "SourceTime";
+ public static readonly string ShuttleMap = "ShuttleMap";
+ public static readonly string SourceMap = "SourceMap";
+ public static readonly string DestMap = "DestMap";
+ public static readonly string Docked = "Docked";
+ public static readonly string Text = "Text";
+}
+
diff --git a/Content.Server/Shuttles/Components/StationCentcommComponent.cs b/Content.Server/Shuttles/Components/StationCentcommComponent.cs
index 43b35ebc50c..4ea7d313a1f 100644
--- a/Content.Server/Shuttles/Components/StationCentcommComponent.cs
+++ b/Content.Server/Shuttles/Components/StationCentcommComponent.cs
@@ -12,17 +12,18 @@ public sealed partial class StationCentcommComponent : Component
///
/// Crude shuttle offset spawning.
///
- [DataField("shuttleIndex")]
+ [DataField]
public float ShuttleIndex;
- [DataField("map")]
+ [DataField]
public ResPath Map = new("/Maps/centcomm.yml");
///
/// Centcomm entity that was loaded.
///
- [DataField("entity")]
- public EntityUid Entity = EntityUid.Invalid;
+ [DataField]
+ public EntityUid? Entity;
- public MapId MapId = MapId.Nullspace;
+ [DataField]
+ public EntityUid? MapEntity;
}
diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs
index 7ff0e0b2977..53f44b355a7 100644
--- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs
+++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs
@@ -4,6 +4,9 @@
using Content.Server.GameTicking;
using Content.Server.GameTicking.Events;
using Content.Server.Parallax;
+using Content.Server.DeviceNetwork;
+using Content.Server.DeviceNetwork.Components;
+using Content.Server.DeviceNetwork.Systems;
using Content.Server.Salvage;
using Content.Server.Shuttles.Components;
using Content.Server.Shuttles.Events;
@@ -46,6 +49,7 @@ public sealed class ArrivalsSystem : EntitySystem
[Dependency] private readonly BiomeSystem _biomes = default!;
[Dependency] private readonly GameTicker _ticker = default!;
[Dependency] private readonly MapLoaderSystem _loader = default!;
+ [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!;
[Dependency] private readonly RestrictedRangeSystem _restricted = default!;
[Dependency] private readonly SharedTransformSystem _transform = default!;
[Dependency] private readonly ShuttleSystem _shuttles = default!;
@@ -57,6 +61,11 @@ public sealed class ArrivalsSystem : EntitySystem
///
public bool Enabled { get; private set; }
+ ///
+ /// The first arrival is a little early, to save everyone 10s
+ ///
+ private const float RoundStartFTLDuration = 10f;
+
private readonly List> _arrivalsBiomeOptions = new()
{
"Grasslands",
@@ -68,7 +77,7 @@ public override void Initialize()
{
base.Initialize();
- SubscribeLocalEvent(OnPlayerSpawn, before: new []{typeof(SpawnPointSystem)});
+ SubscribeLocalEvent(OnPlayerSpawn, before: new[] { typeof(SpawnPointSystem) });
SubscribeLocalEvent(OnArrivalsStartup);
SubscribeLocalEvent(OnShuttleStartup);
@@ -77,6 +86,7 @@ public override void Initialize()
SubscribeLocalEvent(OnRoundStarting);
SubscribeLocalEvent(OnArrivalsFTL);
+ SubscribeLocalEvent(OnArrivalsDocked);
// Don't invoke immediately as it will get set in the natural course of things.
Enabled = _cfgManager.GetCVar(CCVars.ArrivalsShuttles);
@@ -170,13 +180,49 @@ public override void Shutdown()
_cfgManager.UnsubValueChanged(CCVars.ArrivalsShuttles, SetArrivals);
}
+ ///
+ /// First sends shuttle timer data, then kicks people off the shuttle if it isn't leaving the arrivals terminal
+ ///
private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent component, ref FTLStartedEvent args)
{
if (!TryGetArrivals(out EntityUid arrivals))
return;
- var arrivalsMapUid = Transform(arrivals).MapUid;
+ if (TryComp(shuttleUid, out var netComp))
+ {
+ TryComp(shuttleUid, out var ftlComp);
+ var ftlTime = TimeSpan.FromSeconds(ftlComp?.TravelTime ?? ShuttleSystem.DefaultTravelTime);
+
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = shuttleUid,
+ [ShuttleTimerMasks.ShuttleTime] = ftlTime
+ };
+
+ // unfortunate levels of spaghetti due to roundstart arrivals ftl behavior
+ EntityUid? sourceMap;
+ var arrivalsDelay = _cfgManager.GetCVar(CCVars.ArrivalsCooldown);
+
+ if (component.FirstRun)
+ {
+ var station = _station.GetLargestGrid(Comp(component.Station));
+ sourceMap = station == null ? null : Transform(station.Value)?.MapUid;
+ arrivalsDelay += RoundStartFTLDuration;
+ component.FirstRun = false;
+ payload.Add(ShuttleTimerMasks.DestMap, Transform(args.TargetCoordinates.EntityId).MapUid);
+ payload.Add(ShuttleTimerMasks.DestTime, ftlTime);
+ }
+ else
+ sourceMap = args.FromMapUid;
+
+ payload.Add(ShuttleTimerMasks.SourceMap, sourceMap);
+ payload.Add(ShuttleTimerMasks.SourceTime, ftlTime + TimeSpan.FromSeconds(arrivalsDelay));
+
+ _deviceNetworkSystem.QueuePacket(shuttleUid, null, payload, netComp.TransmitFrequency);
+ }
+
// Don't do anything here when leaving arrivals.
+ var arrivalsMapUid = Transform(arrivals).MapUid;
if (args.FromMapUid == arrivalsMapUid)
return;
@@ -205,7 +251,7 @@ private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent compon
TryTeleportToMapSpawn(pUid, component.Station, xform);
}
- // Players who have remained at arrives keep their warp coupon (PendingClockInComponent) for now.
+ // Players who have remained at arrivals keep their warp coupon (PendingClockInComponent) for now.
if (xform.MapUid == arrivalsMapUid)
continue;
@@ -215,6 +261,24 @@ private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent compon
}
}
+ private void OnArrivalsDocked(EntityUid uid, ArrivalsShuttleComponent component, ref FTLCompletedEvent args)
+ {
+ TimeSpan dockTime = component.NextTransfer - _timing.CurTime + TimeSpan.FromSeconds(ShuttleSystem.DefaultStartupTime);
+
+ if (TryComp(uid, out var netComp))
+ {
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = uid,
+ [ShuttleTimerMasks.ShuttleTime] = dockTime,
+ [ShuttleTimerMasks.SourceMap] = args.MapUid,
+ [ShuttleTimerMasks.SourceTime] = dockTime,
+ [ShuttleTimerMasks.Docked] = true
+ };
+ _deviceNetworkSystem.QueuePacket(uid, null, payload, netComp.TransmitFrequency);
+ }
+ }
+
private void DumpChildren(EntityUid uid,
ref FTLStartedEvent args,
EntityQuery pendingEntQuery,
@@ -259,7 +323,7 @@ private void OnPlayerSpawn(PlayerSpawningEvent ev)
var points = EntityQueryEnumerator();
var possiblePositions = new List();
- while ( points.MoveNext(out var uid, out var spawnPoint, out var xform))
+ while (points.MoveNext(out var uid, out var spawnPoint, out var xform))
{
if (spawnPoint.SpawnType != SpawnPointType.LateJoin || xform.MapID != mapId)
continue;
@@ -291,7 +355,7 @@ private bool TryTeleportToMapSpawn(EntityUid player, EntityUid stationId, Transf
var possiblePositions = new ValueList(32);
// Find a spawnpoint on the same map as the player is already docked with now.
- while ( points.MoveNext(out var uid, out var spawnPoint, out var xform))
+ while (points.MoveNext(out var uid, out var spawnPoint, out var xform))
{
if (spawnPoint.SpawnType == SpawnPointType.LateJoin &&
_station.GetOwningStation(uid, xform) == stationId)
@@ -359,7 +423,6 @@ public override void Update(float frameTime)
// TODO: Docking should be per-grid rather than per dock and bump off when undocking.
// TODO: Stop dispatch if emergency shuttle has arrived.
- // TODO: Need server join message specifying shuttle wait time or smth.
// TODO: Need maps
// TODO: Need emergency suits on shuttle probs
// TODO: Need some kind of comp to shunt people off if they try to get on?
@@ -370,7 +433,7 @@ public override void Update(float frameTime)
if (comp.NextTransfer > curTime || !TryComp(comp.Station, out var data))
continue;
- var tripTime = ShuttleSystem.DefaultTravelTime + ShuttleSystem.DefaultStartupTime ;
+ var tripTime = ShuttleSystem.DefaultTravelTime + ShuttleSystem.DefaultStartupTime;
// Go back to arrivals source
if (xform.MapUid != arrivalsXform.MapUid)
@@ -506,7 +569,7 @@ private void SetupShuttle(EntityUid uid, StationArrivalsComponent component)
var arrivalsComp = EnsureComp(component.Shuttle);
arrivalsComp.Station = uid;
EnsureComp(uid);
- _shuttles.FTLTravel(component.Shuttle, shuttleComp, arrivals, hyperspaceTime: 10f, dock: true);
+ _shuttles.FTLTravel(component.Shuttle, shuttleComp, arrivals, hyperspaceTime: RoundStartFTLDuration, dock: true);
arrivalsComp.NextTransfer = _timing.CurTime + TimeSpan.FromSeconds(_cfgManager.GetCVar(CCVars.ArrivalsCooldown));
}
diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
index 62478082d88..d14c5be4388 100644
--- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
+++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
@@ -1,4 +1,6 @@
using System.Threading;
+using Content.Server.DeviceNetwork;
+using Content.Server.DeviceNetwork.Components;
using Content.Server.Shuttles.Components;
using Content.Server.Shuttles.Events;
using Content.Server.UserInterface;
@@ -166,18 +168,19 @@ private void UpdateEmergencyConsole(float frameTime)
continue;
}
- if (Deleted(centcomm.Entity))
+ if (!Deleted(centcomm.Entity))
{
- // TODO: Need to get non-overlapping positions.
_shuttle.FTLTravel(comp.EmergencyShuttle.Value, shuttle,
- new EntityCoordinates(
- _mapManager.GetMapEntityId(centcomm.MapId),
- _random.NextVector2(1000f)), _consoleAccumulator, TransitTime);
+ centcomm.Entity.Value, _consoleAccumulator, TransitTime, true);
+ continue;
}
- else
+
+ if (!Deleted(centcomm.MapEntity))
{
+ // TODO: Need to get non-overlapping positions.
_shuttle.FTLTravel(comp.EmergencyShuttle.Value, shuttle,
- centcomm.Entity, _consoleAccumulator, TransitTime, true);
+ new EntityCoordinates(centcomm.MapEntity.Value,
+ _random.NextVector2(1000f)), _consoleAccumulator, TransitTime);
}
}
@@ -205,7 +208,7 @@ private void UpdateEmergencyConsole(float frameTime)
}
// Don't dock them. If you do end up doing this then stagger launch.
- _shuttle.FTLTravel(uid, shuttle, centcomm.Entity, hyperspaceTime: TransitTime);
+ _shuttle.FTLTravel(uid, shuttle, centcomm.Entity.Value, hyperspaceTime: TransitTime);
RemCompDeferred(uid);
}
@@ -229,7 +232,7 @@ private void UpdateEmergencyConsole(float frameTime)
if (Deleted(comp.Entity))
continue;
- _shuttle.AddFTLDestination(comp.Entity, true);
+ _shuttle.AddFTLDestination(comp.Entity.Value, true);
}
}
}
@@ -373,6 +376,24 @@ public bool EarlyLaunch()
RaiseLocalEvent(new EmergencyShuttleAuthorizedEvent());
AnnounceLaunch();
UpdateAllEmergencyConsoles();
+
+ var time = TimeSpan.FromSeconds(_authorizeTime);
+ var shuttle = GetShuttle();
+ if (shuttle != null && TryComp(shuttle, out var net))
+ {
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = shuttle,
+ [ShuttleTimerMasks.SourceMap] = _roundEnd.GetStation(),
+ [ShuttleTimerMasks.DestMap] = _roundEnd.GetCentcomm(),
+ [ShuttleTimerMasks.ShuttleTime] = time,
+ [ShuttleTimerMasks.SourceTime] = time,
+ [ShuttleTimerMasks.DestTime] = time + TimeSpan.FromSeconds(TransitTime),
+ [ShuttleTimerMasks.Docked] = true
+ };
+ _deviceNetworkSystem.QueuePacket(shuttle.Value, null, payload, net.TransmitFrequency);
+ }
+
return true;
}
diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
index 0f2b8b847c7..eb205cae633 100644
--- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
+++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
@@ -5,10 +5,14 @@
using Content.Server.Administration.Managers;
using Content.Server.Chat.Systems;
using Content.Server.Communications;
+using Content.Server.DeviceNetwork;
+using Content.Server.DeviceNetwork.Components;
+using Content.Server.DeviceNetwork.Systems;
using Content.Server.GameTicking.Events;
using Content.Server.Popups;
using Content.Server.RoundEnd;
using Content.Server.Shuttles.Components;
+using Content.Server.Shuttles.Events;
using Content.Server.Station.Components;
using Content.Server.Station.Systems;
using Content.Shared.Access.Systems;
@@ -20,8 +24,6 @@
using Content.Shared.Tiles;
using Robust.Server.GameObjects;
using Robust.Server.Maps;
-using Robust.Server.Player;
-using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Configuration;
using Robust.Shared.Map;
@@ -47,7 +49,9 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem
[Dependency] private readonly AccessReaderSystem _reader = default!;
[Dependency] private readonly ChatSystem _chatSystem = default!;
[Dependency] private readonly CommunicationsConsoleSystem _commsConsole = default!;
+ [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!;
[Dependency] private readonly DockingSystem _dock = default!;
+ [Dependency] private readonly EntityManager _entityManager = default!;
[Dependency] private readonly IdCardSystem _idSystem = default!;
[Dependency] private readonly MapLoaderSystem _map = default!;
[Dependency] private readonly PopupSystem _popup = default!;
@@ -55,6 +59,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly ShuttleSystem _shuttle = default!;
[Dependency] private readonly StationSystem _station = default!;
+ [Dependency] private readonly TransformSystem _transformSystem = default!;
[Dependency] private readonly UserInterfaceSystem _uiSystem = default!;
private ISawmill _sawmill = default!;
@@ -72,10 +77,14 @@ public override void Initialize()
_emergencyShuttleEnabled = _configManager.GetCVar(CCVars.EmergencyShuttleEnabled);
// Don't immediately invoke as roundstart will just handle it.
_configManager.OnValueChanged(CCVars.EmergencyShuttleEnabled, SetEmergencyShuttleEnabled);
+
SubscribeLocalEvent(OnRoundStart);
SubscribeLocalEvent(OnStationStartup);
SubscribeLocalEvent(OnCentcommShutdown);
SubscribeLocalEvent(OnCentcommInit);
+
+ SubscribeLocalEvent(OnEmergencyFTL);
+ SubscribeLocalEvent(OnEmergencyFTLComplete);
SubscribeNetworkEvent(OnShuttleRequestPosition);
InitializeEmergencyConsole();
}
@@ -89,13 +98,24 @@ private void OnRoundStart(RoundStartingEvent ev)
private void OnCentcommShutdown(EntityUid uid, StationCentcommComponent component, ComponentShutdown args)
{
- QueueDel(component.Entity);
- component.Entity = EntityUid.Invalid;
+ ClearCentcomm(component);
+ }
- if (_mapManager.MapExists(component.MapId))
- _mapManager.DeleteMap(component.MapId);
+ private void ClearCentcomm(StationCentcommComponent component)
+ {
+ QueueDel(component.Entity);
+ QueueDel(component.MapEntity);
+ component.Entity = null;
+ component.MapEntity = null;
+ }
- component.MapId = MapId.Nullspace;
+ ///
+ /// Attempts to get the EntityUid of the emergency shuttle
+ ///
+ public EntityUid? GetShuttle()
+ {
+ AllEntityQuery().MoveNext(out var shuttle, out _);
+ return shuttle;
}
private void SetEmergencyShuttleEnabled(bool value)
@@ -138,7 +158,7 @@ public override void Shutdown()
}
///
- /// If the client is requesting debug info on where an emergency shuttle would dock.
+ /// If the client is requesting debug info on where an emergency shuttle would dock.
///
private void OnShuttleRequestPosition(EmergencyShuttleRequestPositionMessage msg, EntitySessionEventArgs args)
{
@@ -173,7 +193,56 @@ private void OnShuttleRequestPosition(EmergencyShuttleRequestPositionMessage msg
}
///
- /// Calls the emergency shuttle for the station.
+ /// Escape shuttle FTL event handler. The only escape shuttle FTL transit should be from station to centcomm at round end
+ ///
+ private void OnEmergencyFTL(EntityUid uid, EmergencyShuttleComponent component, ref FTLStartedEvent args)
+ {
+ TimeSpan ftlTime = TimeSpan.FromSeconds
+ (
+ TryComp(uid, out var ftlComp) ?
+ ftlComp.TravelTime : ShuttleSystem.DefaultTravelTime
+ );
+
+ if (TryComp(uid, out var netComp))
+ {
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = uid,
+ [ShuttleTimerMasks.SourceMap] = args.FromMapUid,
+ [ShuttleTimerMasks.DestMap] = args.TargetCoordinates.GetMapUid(_entityManager),
+ [ShuttleTimerMasks.ShuttleTime] = ftlTime,
+ [ShuttleTimerMasks.SourceTime] = ftlTime,
+ [ShuttleTimerMasks.DestTime] = ftlTime
+ };
+ _deviceNetworkSystem.QueuePacket(uid, null, payload, netComp.TransmitFrequency);
+ }
+ }
+
+ ///
+ /// When the escape shuttle finishes FTL (docks at centcomm), have the timers display the round end countdown
+ ///
+ private void OnEmergencyFTLComplete(EntityUid uid, EmergencyShuttleComponent component, ref FTLCompletedEvent args)
+ {
+ var countdownTime = TimeSpan.FromSeconds(_configManager.GetCVar(CCVars.RoundRestartTime));
+ var shuttle = args.Entity;
+ if (TryComp(shuttle, out var net))
+ {
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = shuttle,
+ [ShuttleTimerMasks.SourceMap] = _roundEnd.GetCentcomm(),
+ [ShuttleTimerMasks.DestMap] = _roundEnd.GetStation(),
+ [ShuttleTimerMasks.ShuttleTime] = countdownTime,
+ [ShuttleTimerMasks.SourceTime] = countdownTime,
+ [ShuttleTimerMasks.DestTime] = countdownTime,
+ [ShuttleTimerMasks.Text] = new string?[] { "BYE!" }
+ };
+ _deviceNetworkSystem.QueuePacket(shuttle, null, payload, net.TransmitFrequency);
+ }
+ }
+
+ ///
+ /// Attempts to dock the emergency shuttle to the station.
///
public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleComponent? stationShuttle = null)
{
@@ -206,6 +275,23 @@ public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleCo
_chatSystem.DispatchStationAnnouncement(stationUid, Loc.GetString("emergency-shuttle-docked", ("time", $"{_consoleAccumulator:0}"), ("direction", angle.GetDir())), playDefaultSound: false);
}
+ // shuttle timers
+ var time = TimeSpan.FromSeconds(_consoleAccumulator);
+ if (TryComp(stationShuttle.EmergencyShuttle.Value, out var netComp))
+ {
+ var payload = new NetworkPayload
+ {
+ [ShuttleTimerMasks.ShuttleMap] = stationShuttle.EmergencyShuttle.Value,
+ [ShuttleTimerMasks.SourceMap] = targetXform?.MapUid,
+ [ShuttleTimerMasks.DestMap] = _roundEnd.GetCentcomm(),
+ [ShuttleTimerMasks.ShuttleTime] = time,
+ [ShuttleTimerMasks.SourceTime] = time,
+ [ShuttleTimerMasks.DestTime] = time + TimeSpan.FromSeconds(TransitTime),
+ [ShuttleTimerMasks.Docked] = true
+ };
+ _deviceNetworkSystem.QueuePacket(stationShuttle.EmergencyShuttle.Value, null, payload, netComp.TransmitFrequency);
+ }
+
_logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid)} docked with stations");
// TODO: Need filter extensions or something don't blame me.
_audio.PlayGlobal("/Audio/Announcements/shuttle_dock.ogg", Filter.Broadcast(), true);
@@ -232,7 +318,7 @@ private void OnCentcommInit(EntityUid uid, StationCentcommComponent component, C
// Post mapinit? fancy
if (TryComp(component.Entity, out var xform))
{
- component.MapId = xform.MapID;
+ component.MapEntity = xform.MapUid;
return;
}
@@ -245,7 +331,7 @@ private void OnStationStartup(EntityUid uid, StationEmergencyShuttleComponent co
}
///
- /// Spawns the emergency shuttle for each station and starts the countdown until controls unlock.
+ /// Spawns the emergency shuttle for each station and starts the countdown until controls unlock.
///
public void CallEmergencyShuttle()
{
@@ -286,53 +372,86 @@ private void SetupEmergencyShuttle()
var query = AllEntityQuery();
while (query.MoveNext(out var uid, out var comp))
- {
AddEmergencyShuttle(uid, comp);
- }
}
private void AddCentcomm(StationCentcommComponent component)
{
+ if (component.MapEntity != null || component.Entity != null)
+ {
+ _sawmill.Warning("Attempted to re-add an existing centcomm map.");
+ return;
+ }
+
// Check for existing centcomms and just point to that
var query = AllEntityQuery();
-
while (query.MoveNext(out var otherComp))
{
if (otherComp == component)
continue;
- component.MapId = otherComp.MapId;
+ if (!Exists(otherComp.MapEntity) || !Exists(otherComp.Entity))
+ {
+ Log.Error($"Disconvered invalid centcomm component?");
+ ClearCentcomm(otherComp);
+ continue;
+ }
+
+ component.MapEntity = otherComp.MapEntity;
component.ShuttleIndex = otherComp.ShuttleIndex;
return;
}
+ if (string.IsNullOrEmpty(component.Map.ToString()))
+ {
+ _sawmill.Warning("No CentComm map found, skipping setup.");
+ return;
+ }
+
var mapId = _mapManager.CreateMap();
- component.MapId = mapId;
+ var grid = _map.LoadGrid(mapId, component.Map.ToString(), new MapLoadOptions()
+ {
+ LoadMap = false,
+ });
+ var map = _mapManager.GetMapEntityId(mapId);
- if (!string.IsNullOrEmpty(component.Map.ToString()))
+ if (!Exists(map))
{
- var ent = _map.LoadGrid(mapId, component.Map.ToString());
+ Log.Error($"Failed to set up centcomm map!");
+ QueueDel(grid);
+ return;
+ }
- if (ent != null)
- {
- component.Entity = ent.Value;
- _shuttle.AddFTLDestination(ent.Value, false);
- }
+ if (!Exists(grid))
+ {
+ Log.Error($"Failed to set up centcomm grid!");
+ QueueDel(map);
+ return;
}
- else
+
+ var xform = Transform(grid.Value);
+ if (xform.ParentUid != map || xform.MapUid != map)
{
- _sawmill.Warning("No CentComm map found, skipping setup.");
+ Log.Error($"Centcomm grid is not parented to its own map?");
+ QueueDel(map);
+ QueueDel(grid);
+ return;
}
+
+ component.MapEntity = map;
+ component.Entity = grid;
+ _shuttle.AddFTLDestination(grid.Value, false);
}
- public HashSet GetCentcommMaps()
+ public HashSet GetCentcommMaps()
{
var query = AllEntityQuery();
- var maps = new HashSet(Count());
+ var maps = new HashSet(Count());
while (query.MoveNext(out var comp))
{
- maps.Add(comp.MapId);
+ if (comp.MapEntity != null)
+ maps.Add(comp.MapEntity.Value);
}
return maps;
@@ -342,17 +461,20 @@ private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent
{
if (!_emergencyShuttleEnabled
|| component.EmergencyShuttle != null ||
- !TryComp(uid, out var centcomm))
+ !TryComp(uid, out var centcomm)
+ || !TryComp(centcomm.MapEntity, out MapComponent? map))
{
return;
}
// Load escape shuttle
var shuttlePath = component.EmergencyShuttlePath;
- var shuttle = _map.LoadGrid(centcomm.MapId, shuttlePath.ToString(), new MapLoadOptions()
+ var shuttle = _map.LoadGrid(map.MapId, shuttlePath.ToString(), new MapLoadOptions()
{
// Should be far enough... right? I'm too lazy to bounds check CentCom rn.
- Offset = new Vector2(500f + centcomm.ShuttleIndex, 0f)
+ Offset = new Vector2(500f + centcomm.ShuttleIndex, 0f),
+ // fun fact: if you just fucking yeet centcomm into nullspace anytime you try to spawn the shuttle, then any distance is far enough. so lets not do that
+ LoadMap = false,
});
if (shuttle == null)
@@ -368,7 +490,7 @@ private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent
while (query.MoveNext(out var comp))
{
- if (comp == centcomm || comp.MapId != centcomm.MapId)
+ if (comp == centcomm || comp.MapEntity != centcomm.MapEntity)
continue;
comp.ShuttleIndex = centcomm.ShuttleIndex;
@@ -377,6 +499,7 @@ private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent
component.EmergencyShuttle = shuttle;
EnsureComp(shuttle.Value);
EnsureComp(shuttle.Value);
+ EnsureComp(shuttle.Value);
}
private void OnEscapeUnpaused(EntityUid uid, EscapePodComponent component, ref EntityUnpausedEvent args)
@@ -417,6 +540,6 @@ private bool IsOnGrid(TransformComponent xform, EntityUid shuttle, MapGridCompon
if (!Resolve(shuttle, ref grid, ref shuttleXform))
return false;
- return shuttleXform.WorldMatrix.TransformBox(grid.LocalAABB).Contains(xform.WorldPosition);
+ return _transformSystem.GetWorldMatrix(shuttleXform).TransformBox(grid.LocalAABB).Contains(_transformSystem.GetWorldPosition(xform));
}
}
diff --git a/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs b/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs
new file mode 100644
index 00000000000..b65009f6e22
--- /dev/null
+++ b/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs
@@ -0,0 +1,69 @@
+using Content.Shared.TextScreen;
+using Content.Server.Shuttles.Components;
+using Content.Server.DeviceNetwork.Systems;
+using Robust.Shared.Timing;
+
+
+namespace Content.Server.Shuttles.Systems;
+
+///
+/// Controls the wallmounted screens on stations and shuttles displaying e.g. FTL duration, ETA
+///
+public sealed class ShuttleTimerSystem : EntitySystem
+{
+ [Dependency] private readonly IGameTiming _gameTiming = default!;
+ [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnPacketReceived);
+ }
+
+ ///
+ /// Determines if/how a broadcast packet affects this timer.
+ /// All shuttle timer packets are broadcast in their network, and subnetting is implemented by filtering timer MapUid.
+ ///
+ private void OnPacketReceived(EntityUid uid, ShuttleTimerComponent component, DeviceNetworkPacketEvent args)
+ {
+ var timerXform = Transform(uid);
+
+ // no false positives.
+ if (timerXform.MapUid == null)
+ return;
+
+ string key;
+ args.Data.TryGetValue(ShuttleTimerMasks.ShuttleMap, out EntityUid? shuttleMap);
+ args.Data.TryGetValue(ShuttleTimerMasks.SourceMap, out EntityUid? source);
+ args.Data.TryGetValue(ShuttleTimerMasks.DestMap, out EntityUid? dest);
+ args.Data.TryGetValue(ShuttleTimerMasks.Docked, out bool docked);
+ string?[] text = new string?[] { docked ? "ETD" : "ETA" };
+
+ switch (timerXform.MapUid)
+ {
+ // sometimes the timer transforms on FTL shuttles have a hyperspace mapuid, so matching by grid works as a fallback.
+ case var local when local == shuttleMap || timerXform.GridUid == shuttleMap:
+ key = ShuttleTimerMasks.ShuttleTime;
+ break;
+ case var origin when origin == source:
+ key = ShuttleTimerMasks.SourceTime;
+ break;
+ case var remote when remote == dest:
+ key = ShuttleTimerMasks.DestTime;
+ text = new string?[] { "ETA" };
+ break;
+ default:
+ return;
+ }
+
+ if (!args.Data.TryGetValue(key, out TimeSpan duration))
+ return;
+
+ if (args.Data.TryGetValue(ShuttleTimerMasks.Text, out string?[]? label))
+ text = label;
+
+ _appearanceSystem.SetData(uid, TextScreenVisuals.TargetTime, _gameTiming.CurTime + duration);
+ _appearanceSystem.SetData(uid, TextScreenVisuals.ScreenText, text);
+ }
+}
diff --git a/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs b/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs
index a6e5b68ffc8..e1e40ad982f 100644
--- a/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs
+++ b/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs
@@ -8,7 +8,7 @@ public sealed class BarkAccentSystem : EntitySystem
[Dependency] private readonly IRobustRandom _random = default!;
private static readonly IReadOnlyList Barks = new List{
- " Woof!", " WOOF", " wof-wof"
+ " Гав!", " ГАВ", " вуф-вуф" // Corvax-Localization
}.AsReadOnly();
private static readonly IReadOnlyDictionary SpecialWords = new Dictionary()
@@ -17,6 +17,12 @@ public sealed class BarkAccentSystem : EntitySystem
{ "Ah", "Arf" },
{ "oh", "oof" },
{ "Oh", "Oof" },
+ //Corvax-Localization-Start
+ { "га", "гаф" },
+ { "Га", "Гаф" },
+ { "угу", "вуф" },
+ { "Угу", "Вуф" },
+ //Corvax-Localization-End
};
public override void Initialize()
@@ -32,7 +38,10 @@ public string Accentuate(string message)
}
return message.Replace("!", _random.Pick(Barks))
- .Replace("l", "r").Replace("L", "R");
+ //Corvax-Localization-Start
+ .Replace("l", "r").Replace("L", "R")
+ .Replace("л", "р").Replace("Л", "Р");
+ //Corvax-Localization-End
}
private void OnAccent(EntityUid uid, BarkAccentComponent component, AccentGetEvent args)
diff --git a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs
index c8cb5d2f285..ef15498a700 100644
--- a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs
+++ b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomComponent.cs
@@ -14,25 +14,13 @@ internal sealed partial class WeaponRandomComponent : Component
public DamageSpecifier DamageBonus = new();
///
- /// Chance for the damage bonus to occur.
+ /// Chance for the damage bonus to occur (1 = 100%).
///
[ViewVariables(VVAccess.ReadWrite)]
public float RandomDamageChance = 0.00001f;
///
- /// If this is true then the random damage will occur.
- ///
- [DataField("randomDamage")]
- public bool RandomDamage = true;
-
- ///
- /// If this is true then the weapon will have a unique interaction with cluwnes.
- ///
- [DataField("antiCluwne")]
- public bool AntiCluwne = true;
-
- ///
- /// Noise to play when the damage bonus occurs.
+ /// Sound effect to play when the damage bonus occurs.
///
[DataField("damageSound")]
public SoundSpecifier DamageSound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg");
diff --git a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs
index 8cb22ca8bdb..7b246b8d098 100644
--- a/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs
+++ b/Content.Server/Weapons/Melee/WeaponRandom/WeaponRandomSystem.cs
@@ -1,11 +1,12 @@
using Content.Shared.Weapons.Melee.Events;
using Robust.Shared.Random;
-using Content.Shared.Cluwne;
-using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
namespace Content.Server.Weapons.Melee.WeaponRandom;
+///
+/// This adds a random damage bonus to melee attacks based on damage bonus amount and probability.
+///
public sealed class WeaponRandomSystem : EntitySystem
{
[Dependency] private readonly IRobustRandom _random = default!;
@@ -17,22 +18,15 @@ public override void Initialize()
SubscribeLocalEvent(OnMeleeHit);
}
-
+ ///
+ /// On Melee hit there is a possible chance of additional bonus damage occuring.
+ ///
private void OnMeleeHit(EntityUid uid, WeaponRandomComponent component, MeleeHitEvent args)
{
- foreach (var entity in args.HitEntities)
+ if (_random.Prob(component.RandomDamageChance))
{
- if (HasComp(entity) && component.AntiCluwne)
- {
- _audio.PlayPvs(component.DamageSound, uid);
- args.BonusDamage = component.DamageBonus;
- }
-
- else if (_random.Prob(component.RandomDamageChance) && component.RandomDamage)
- {
- _audio.PlayPvs(component.DamageSound, uid);
- args.BonusDamage = component.DamageBonus;
- }
+ _audio.PlayPvs(component.DamageSound, uid);
+ args.BonusDamage = component.DamageBonus;
}
}
}
diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs
index 13674cded0b..24fa5ada204 100644
--- a/Content.Shared/Atmos/Atmospherics.cs
+++ b/Content.Shared/Atmos/Atmospherics.cs
@@ -123,7 +123,7 @@ static Atmospherics()
///
/// Minimum temperature difference before the gas temperatures are just set to be equal.
///
- public const float MinimumTemperatureDeltaToConsider = 0.1f;
+ public const float MinimumTemperatureDeltaToConsider = 0.01f;
///
/// Minimum temperature for starting superconduction.
diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs
index 59898023a3d..071d9d1049a 100644
--- a/Content.Shared/CCVar/CCVars.cs
+++ b/Content.Shared/CCVar/CCVars.cs
@@ -776,6 +776,11 @@ public static readonly CVarDef
public static readonly CVarDef AdminDeadminOnJoin =
CVarDef.Create("admin.deadmin_on_join", false, CVar.SERVERONLY);
+ ///
+ /// Overrides the name the client sees in ahelps. Set empty to disable.
+ ///
+ public static readonly CVarDef AdminAhelpOverrideClientName =
+ CVarDef.Create("admin.override_adminname_in_client_ahelp", string.Empty, CVar.SERVERONLY);
/*
* Explosions
*/
diff --git a/Content.Shared/Cabinet/ItemCabinetComponent.cs b/Content.Shared/Cabinet/ItemCabinetComponent.cs
index 71367e8de68..dcc276e5651 100644
--- a/Content.Shared/Cabinet/ItemCabinetComponent.cs
+++ b/Content.Shared/Cabinet/ItemCabinetComponent.cs
@@ -7,7 +7,7 @@ namespace Content.Shared.Cabinet;
///
/// Used for entities that can be opened, closed, and can hold one item. E.g., fire extinguisher cabinets.
///
-[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)]
public sealed partial class ItemCabinetComponent : Component
{
///
diff --git a/Content.Shared/Cabinet/SharedItemCabinetSystem.cs b/Content.Shared/Cabinet/SharedItemCabinetSystem.cs
index 92af6a4f8a3..ca496814c71 100644
--- a/Content.Shared/Cabinet/SharedItemCabinetSystem.cs
+++ b/Content.Shared/Cabinet/SharedItemCabinetSystem.cs
@@ -22,6 +22,7 @@ public override void Initialize()
SubscribeLocalEvent(OnComponentInit);
SubscribeLocalEvent(OnComponentRemove);
SubscribeLocalEvent(OnComponentStartup);
+ SubscribeLocalEvent(OnComponentHandleState);
SubscribeLocalEvent(OnActivateInWorld);
SubscribeLocalEvent>(AddToggleOpenVerb);
@@ -48,6 +49,11 @@ private void OnComponentStartup(EntityUid uid, ItemCabinetComponent cabinet, Com
_itemSlots.SetLock(uid, cabinet.CabinetSlot, !cabinet.Opened);
}
+ private void OnComponentHandleState(Entity ent, ref AfterAutoHandleStateEvent args)
+ {
+ UpdateAppearance(ent, ent);
+ }
+
protected virtual void UpdateAppearance(EntityUid uid, ItemCabinetComponent? cabinet = null)
{
// we don't fuck with appearance data, and instead just manually update the sprite on the client
diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs
index 58a94d1723a..41ee215fe25 100644
--- a/Content.Shared/Follower/FollowerSystem.cs
+++ b/Content.Shared/Follower/FollowerSystem.cs
@@ -162,8 +162,6 @@ public void StartFollowingEntity(EntityUid follower, EntityUid entity)
if (TryComp(follower, out var joints))
_jointSystem.ClearJoints(follower, joints);
- _physicsSystem.SetLinearVelocity(follower, Vector2.Zero);
-
var xform = Transform(follower);
_containerSystem.AttachParentToContainerOrGrid((follower, xform));
@@ -173,6 +171,8 @@ public void StartFollowingEntity(EntityUid follower, EntityUid entity)
_transform.SetCoordinates(follower, xform, new EntityCoordinates(entity, Vector2.Zero), rotation: Angle.Zero);
}
+ _physicsSystem.SetLinearVelocity(follower, Vector2.Zero);
+
EnsureComp(follower);
var followerEv = new StartedFollowingEntityEvent(entity, follower);
diff --git a/Content.Shared/TextScreen/TextScreenVisuals.cs b/Content.Shared/TextScreen/TextScreenVisuals.cs
index 76880d6c3fb..605428632d7 100644
--- a/Content.Shared/TextScreen/TextScreenVisuals.cs
+++ b/Content.Shared/TextScreen/TextScreenVisuals.cs
@@ -10,26 +10,16 @@ public enum TextScreenVisuals : byte
/// Expects a .
///
On,
- ///
- /// Is this a timer or a text-screen?
- /// Expects a .
- ///
- Mode,
+
///
/// What text to show?
- /// Expects a .
+ /// Expects a .
///
ScreenText,
+
///
/// What is the target time?
/// Expects a .
///
TargetTime
}
-
-[Serializable, NetSerializable]
-public enum TextScreenMode : byte
-{
- Text,
- Timer
-}
diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml
index 4e0beb10e76..d537cd4d7ae 100644
--- a/Resources/Changelog/Admin.yml
+++ b/Resources/Changelog/Admin.yml
@@ -70,3 +70,7 @@ Entries:
changes:
- {message: 'The respawn verb now respawns the targeted player instead of the admin', type: Fix}
time: '2023-11-22T16:39:00.0000000+00:00'
+- author: nikthechampiongr
+ changes:
+ - {message: 'The Super Bonk smite is now available. Targets will bonk their head on every single table.', type: Add}
+ time: '2023-12-12T11:54:00.0000000+00:00'
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index fa548fd74dd..6437b6aaa7c 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -1,205 +1,4 @@
Entries:
-- author: Ubaser
- changes:
- - {message: Added four new lizard horn markings!, type: Add}
- id: 4898
- time: '2023-09-26T02:24:09.0000000+00:00'
-- author: Whisper
- changes:
- - {message: The health analyzer no longer shows zero-damage groups., type: Fix}
- id: 4899
- time: '2023-09-26T04:37:23.0000000+00:00'
-- author: waylon531
- changes:
- - {message: Nocturine and welder blindness work again., type: Fix}
- id: 4900
- time: '2023-09-26T17:46:14.0000000+00:00'
-- author: gusxyz
- changes:
- - {message: Syndicate bomb no longer has anomalous properties., type: Tweak}
- id: 4901
- time: '2023-09-26T22:05:46.0000000+00:00'
-- author: Bhijn and Myr
- changes:
- - {message: 'Interaction outlines have been slightly reworked, and feature finer
- artistic control. Edge cases no longer result in interaction outlines being
- faintly visible in pitch black areas, out-of-range outlines are far less visible
- in dim conditions, outlines now properly fade when over a fullbright backdrop
- like parallax, and outlines now do a much better job at fading with penumbras.',
- type: Tweak}
- id: 4902
- time: '2023-09-27T09:22:32.0000000+00:00'
-- author: DrSmugleaf
- changes:
- - {message: Fixed there being no confirmation for role bans., type: Fix}
- id: 4903
- time: '2023-09-27T15:27:08.0000000+00:00'
-- author: c0rigin
- changes:
- - {message: What moths consider as food is now more consistent., type: Tweak}
- id: 4904
- time: '2023-09-27T16:50:59.0000000+00:00'
-- author: DrSmugleaf
- changes:
- - {message: Fixed getting moved briefly when closing a crematorium that you are
- standing over., type: Fix}
- id: 4905
- time: '2023-09-27T23:41:07.0000000+00:00'
-- author: Psychpsyo
- changes:
- - {message: 'You can now pet Runtime instead of petting >the< Runtime. Also, Smile
- is now a girl.', type: Fix}
- id: 4906
- time: '2023-09-28T04:05:50.0000000+00:00'
-- author: Psychpsyo
- changes:
- - {message: Bingus is no longer fuzzy., type: Fix}
- id: 4907
- time: '2023-09-28T04:06:13.0000000+00:00'
-- author: Psychpsyo
- changes:
- - {message: The wet floor sign can now be worn as an outer clothing. This now gives
- syndicate janitors access to a suicide vest in form the wet floor sign mine.,
- type: Add}
- id: 4908
- time: '2023-09-28T04:09:45.0000000+00:00'
-- author: LEVELcat
- changes:
- - {message: Eyeglass are now available from the ClothesMate., type: Add}
- id: 4909
- time: '2023-09-28T10:52:05.0000000+00:00'
-- author: Repo
- changes:
- - {message: Pun Pun now showing on crew monitoring., type: Fix}
- id: 4910
- time: '2023-09-28T10:53:54.0000000+00:00'
-- author: nikthechampiongr
- changes:
- - {message: Mappers can now place airlocks that can be pried open while unpowered
- without tools., type: Add}
- id: 4911
- time: '2023-09-28T11:34:22.0000000+00:00'
-- author: Doru991
- changes:
- - {message: Arcade machine maintenance panels can be opened again., type: Fix}
- id: 4912
- time: '2023-09-28T14:00:19.0000000+00:00'
-- author: EmoGarbage404
- changes:
- - {message: The health alerts now have text to help discern how gravely injured
- you are., type: Tweak}
- id: 4913
- time: '2023-09-28T14:05:42.0000000+00:00'
-- author: NULL882
- changes:
- - {message: Added Necropolis Wall., type: Add}
- - {message: Added Mine Wall., type: Add}
- - {message: Added Sings for Mine Wall., type: Add}
- id: 4914
- time: '2023-09-28T17:07:13.0000000+00:00'
-- author: lunarcomets
- changes:
- - {message: 'Tweaked archaic issues to fix capitalization issues, and removed the
- replacement for ''request'' for consistency.', type: Tweak}
- id: 4915
- time: '2023-09-28T19:19:58.0000000+00:00'
-- author: DrSmugleaf
- changes:
- - {message: Changed the player actions panel to ask for confirmation when kicking
- and respawning players., type: Tweak}
- id: 4916
- time: '2023-09-28T22:46:07.0000000+00:00'
-- author: DrSmugleaf
- changes:
- - {message: Fixed not being able to choose a role that you were unbanned from in
- the same round without reconnecting., type: Fix}
- id: 4917
- time: '2023-09-28T23:46:39.0000000+00:00'
-- author: Micr0byte
- changes:
- - {message: Pressing F11 now toggles between full-screen and windowed modes., type: Add}
- id: 4918
- time: '2023-09-28T23:55:10.0000000+00:00'
-- author: DrSmugleaf
- changes:
- - {message: Fixed everyone being bald., type: Fix}
- id: 4919
- time: '2023-09-29T00:44:47.0000000+00:00'
-- author: DrSmugleaf
- changes:
- - {message: Fixed the HoP's id card computer not opening., type: Fix}
- id: 4920
- time: '2023-09-29T00:59:14.0000000+00:00'
-- author: mirrorcult
- changes:
- - {message: 'Being damaged, being stunned, or going into crit will now force you
- to send whatever message you were typing, if it was in local/whisper/radio.
- You''ll sometimes find yours-AUGH', type: Add}
- id: 4921
- time: '2023-09-29T01:05:37.0000000+00:00'
-- author: DrSmugleaf
- changes:
- - {message: Fixed AHelp progressively gaining more panels., type: Fix}
- id: 4922
- time: '2023-09-29T01:46:16.0000000+00:00'
-- author: EmoGarbage404
- changes:
- - {message: Fixed skeletons spawning in folded containers., type: Fix}
- id: 4923
- time: '2023-09-29T03:55:29.0000000+00:00'
-- author: casperr04
- changes:
- - {message: Fixed the true name of disguised players being shown when electrocuted.,
- type: Fix}
- id: 4924
- time: '2023-09-29T15:01:19.0000000+00:00'
-- author: TsjipTsjip
- changes:
- - {message: Kettle's medical ward was reworked., type: Tweak}
- id: 4925
- time: '2023-09-29T19:14:53.0000000+00:00'
-- author: daerSeebaer
- changes:
- - {message: Volumetric pumps now indicate if they can't pump., type: Add}
- id: 4926
- time: '2023-09-30T03:35:23.0000000+00:00'
-- author: deltanedas
- changes:
- - {message: Fixed cognizine not creating ghost roles., type: Fix}
- id: 4927
- time: '2023-09-30T17:53:22.0000000+00:00'
-- author: EmoGarbage404
- changes:
- - {message: Holofans can now be destroyed by explosions., type: Fix}
- id: 4928
- time: '2023-09-30T19:08:09.0000000+00:00'
-- author: deltanedas
- changes:
- - {message: 'Space dragons get a proper greentext in the round end summary, along
- with objectives in the character menu.', type: Tweak}
- id: 4929
- time: '2023-09-30T20:18:02.0000000+00:00'
-- author: Ubaser
- changes:
- - {message: Winter Boots are now available in the Winterdrobe., type: Add}
- id: 4930
- time: '2023-10-01T14:28:14.0000000+00:00'
-- author: Ubaser
- changes:
- - {message: 'QM now has a mantle, available at HoP''s uniform printer.', type: Add}
- id: 4931
- time: '2023-10-01T14:28:47.0000000+00:00'
-- author: Nimfar11
- changes:
- - {message: Added new sprites for slime organs, type: Add}
- - {message: Slimes now breathe nitrogen too., type: Tweak}
- id: 4932
- time: '2023-10-01T14:34:29.0000000+00:00'
-- author: casperr04
- changes:
- - {message: Space ninjas now have random appearance., type: Tweak}
- id: 4933
- time: '2023-10-01T14:51:35.0000000+00:00'
- author: TomCruize
changes:
- {message: Made Space Cats lungs ROBUST (They now don't suffocate in space), type: Fix}
@@ -2903,3 +2702,239 @@ Entries:
- {message: Steel sheets no longer contain trace amounts of lead in them., type: Tweak}
id: 5398
time: '2023-12-16T20:52:11.0000000+00:00'
+- author: SlamBamActionman
+ changes:
+ - {message: Discord bot Changelog now includes hyperlinks to the PRs., type: Add}
+ id: 5399
+ time: '2023-12-16T21:00:59.0000000+00:00'
+ url: null
+- author: brainfood1183
+ changes:
+ - {message: 'Crystals now drop crystal shards, you can use them to craft colored
+ light tubes.', type: Add}
+ id: 5400
+ time: '2023-12-16T22:20:14.0000000+00:00'
+ url: null
+- author: Ilya246
+ changes:
+ - {message: Pens now embed and deal damage on throw like spears., type: Add}
+ id: 5401
+ time: '2023-12-16T22:23:08.0000000+00:00'
+ url: null
+- author: Emisse
+ changes:
+ - {message: Svalinn Laser Pistol and accompanying T3 tech., type: Add}
+ id: 5402
+ time: '2023-12-17T03:43:50.0000000+00:00'
+ url: null
+- author: mirrorcult
+ changes:
+ - {message: You can now pet the recycler, type: Add}
+ id: 5403
+ time: '2023-12-17T07:44:37.0000000+00:00'
+ url: null
+- author: Ubaser
+ changes:
+ - {message: Mindbreaker is now hallucinogenic., type: Tweak}
+ id: 5404
+ time: '2023-12-17T07:44:54.0000000+00:00'
+ url: null
+- author: JoeHammad
+ changes:
+ - {message: Paramedics now have a rollerbed in their bag by default, type: Add}
+ id: 5405
+ time: '2023-12-17T09:55:29.0000000+00:00'
+ url: null
+- author: Ilya246
+ changes:
+ - {message: Large cardboard boxes and stealth boxes now inherit their mover's access.,
+ type: Fix}
+ id: 5406
+ time: '2023-12-17T09:55:40.0000000+00:00'
+ url: null
+- author: TheShuEd
+ changes:
+ - {message: Changed hypodart cost from 3 to 2 tc, type: Tweak}
+ id: 5407
+ time: '2023-12-17T16:08:11.0000000+00:00'
+ url: null
+- author: yathxyz
+ changes:
+ - {message: Fixed nix devShell, type: Fix}
+ id: 5408
+ time: '2023-12-17T16:55:37.0000000+00:00'
+ url: null
+- author: Ubaser
+ changes:
+ - {message: HoS parade uniforms are available at the uniform printer., type: Add}
+ id: 5409
+ time: '2023-12-17T23:20:04.0000000+00:00'
+ url: null
+- author: Alzore
+ changes:
+ - {message: Security zipties are now tiny and easier to store., type: Tweak}
+ id: 5410
+ time: '2023-12-17T23:27:01.0000000+00:00'
+ url: null
+- author: Aexxie
+ changes:
+ - {message: Added RCDs to all engineering lockers., type: Add}
+ id: 5411
+ time: '2023-12-18T02:38:37.0000000+00:00'
+ url: null
+- author: Ubaser
+ changes:
+ - {message: Traitors and Nukies can now purchase a Chemical Synthesis Kit for 4TC
+ which contains Vestine., type: Add}
+ - {message: 'Nocturine, Tazinide, Stimulants, Lexorin and Mute Toxin are now locked
+ behind Vestine.', type: Tweak}
+ - {message: 'Lexorin and Heartbreaker toxin are buffed, while Licoxide is nerfed.',
+ type: Tweak}
+ - {message: You can no longer purchase Nocturine through the uplink., type: Remove}
+ id: 5412
+ time: '2023-12-18T02:40:28.0000000+00:00'
+ url: null
+- author: Ubaser
+ changes:
+ - {message: Janitors now get rubber gloves for cleaning., type: Add}
+ id: 5413
+ time: '2023-12-18T03:11:19.0000000+00:00'
+ url: null
+- author: Velcroboy
+ changes:
+ - {message: Added coal. Coal has been added to the steel recipe in the Ore Processor.
+ Coal can be ground up for Carbon and other elements. Coal can be mined or received
+ as a gift if you've been naughty., type: Add}
+ id: 5414
+ time: '2023-12-18T19:38:12.0000000+00:00'
+ url: null
+- author: Flareguy
+ changes:
+ - {message: 'You can now walk into external and shuttle airlocks to open them, like
+ all other airlocks.', type: Tweak}
+ id: 5415
+ time: '2023-12-18T19:44:50.0000000+00:00'
+ url: null
+- author: iacore
+ changes:
+ - {message: normal closets can now be constructed and deconstructed, type: Add}
+ id: 5416
+ time: '2023-12-18T19:46:16.0000000+00:00'
+ url: null
+- author: Emisse
+ changes:
+ - {message: Walls are stronger and windows are weaker., type: Tweak}
+ - {message: Secure crates and lockers are a lot stronger., type: Tweak}
+ - {message: Melee weapons are now more balanced within a closer range of damage.,
+ type: Tweak}
+ - {message: Double energy sword and fireaxe are now unavailable in uplink., type: Tweak}
+ id: 5417
+ time: '2023-12-19T02:38:49.0000000+00:00'
+ url: null
+- author: EmoGarbage404
+ changes:
+ - {message: Added the RCD and RCD ammo crates to cargo., type: Add}
+ id: 5418
+ time: '2023-12-19T02:40:55.0000000+00:00'
+ url: null
+- author: ElectroJr
+ changes:
+ - {message: The fireaxe can now fight fires (melee hits reduce fire stacks)., type: Tweak}
+ id: 5419
+ time: '2023-12-19T02:41:33.0000000+00:00'
+ url: null
+- author: SapphicOverload
+ changes:
+ - {message: EVA and hardsuit helmets now allow breathing from gas tanks without
+ a mask., type: Tweak}
+ id: 5420
+ time: '2023-12-19T02:50:06.0000000+00:00'
+ url: null
+- author: RiceMar
+ changes:
+ - {message: Station department exteriors now feature janitorial service lights for
+ directing janitors to the big messes they cant see!, type: Add}
+ id: 5421
+ time: '2023-12-19T04:21:12.0000000+00:00'
+ url: null
+- author: SlamBamActionman
+ changes:
+ - {message: Fixed compatability with old changelog format., type: Fix}
+ id: 5422
+ time: '2023-12-19T05:22:24.0000000+00:00'
+ url: null
+- author: notafet
+ changes:
+ - {message: 'Security sunglasses, researchable from arsenal technology, now display
+ the security HUD.', type: Tweak}
+ id: 5423
+ time: '2023-12-19T08:29:07.0000000+00:00'
+ url: null
+- author: Emisse
+ changes:
+ - {message: Captain clothing items have been resprited, type: Tweak}
+ id: 5424
+ time: '2023-12-19T20:36:36.0000000+00:00'
+ url: null
+- author: Stanislav4ix
+ changes:
+ - {message: Added ore bag of holding!, type: Add}
+ id: 5425
+ time: '2023-12-19T22:28:56.0000000+00:00'
+ url: null
+- author: TGODiamond
+ changes:
+ - {message: Item size cannot be misinterpreted now., type: Fix}
+ id: 5426
+ time: '2023-12-20T00:31:39.0000000+00:00'
+ url: null
+- author: Veritius
+ changes:
+ - {message: Ethylredoxrazine is more effective at treating drunkness., type: Tweak}
+ id: 5427
+ time: '2023-12-20T02:20:04.0000000+00:00'
+ url: null
+- author: Errant
+ changes:
+ - {message: HUD elements no longer violate the Geneva Conventions., type: Fix}
+ id: 5428
+ time: '2023-12-20T04:28:03.0000000+00:00'
+ url: null
+- author: ERORR404V1
+ changes:
+ - {message: NanoTrasen botanists have bred a new blinking plant, type: Add}
+ id: 5429
+ time: '2023-12-20T04:57:02.0000000+00:00'
+ url: null
+- author: qwerltaz
+ changes:
+ - {message: Improve the gas analyzer interface., type: Tweak}
+ id: 5430
+ time: '2023-12-20T17:56:57.0000000+00:00'
+ url: null
+- author: JoeHammad
+ changes:
+ - {message: 'Fland now has its own shuttle, ported from ss13', type: Add}
+ id: 5431
+ time: '2023-12-20T23:26:07.0000000+00:00'
+ url: null
+- author: joshepvodka
+ changes:
+ - {message: CentCom bureaucrats are now twice as powerful with their new custom-made
+ clipboards and folders., type: Add}
+ id: 5432
+ time: '2023-12-20T23:29:35.0000000+00:00'
+ url: null
+- author: PJB3005
+ changes:
+ - {message: Fix starting to follow a moving player as a ghost causing your camera
+ to keep jumping around anymore., type: Fix}
+ id: 5433
+ time: '2023-12-20T23:33:00.0000000+00:00'
+ url: null
+- author: Velcroboy
+ changes:
+ - {message: Fixed coal not generating!, type: Fix}
+ id: 5434
+ time: '2023-12-20T23:46:20.0000000+00:00'
+ url: null
diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl
index e8f9dcded51..e6b0f92b7a2 100644
--- a/Resources/Locale/en-US/administration/smites.ftl
+++ b/Resources/Locale/en-US/administration/smites.ftl
@@ -55,7 +55,8 @@ admin-smite-lung-removal-description = Removes their lungs, drowning them.
admin-smite-remove-hand-description = Removes only one of their hands instead of all of them.
admin-smite-disarm-prone-description = Makes them get disarmed 100% of the time and cuffed instantly.
admin-smite-garbage-can-description = Turn them into a garbage bin to emphasize what they remind you of.
-
+admin-smite-super-bonk-description = Slams them on every single table on the Station and beyond.
+admin-smite-super-bonk-lite-description= Slams them on every single table on the Station and beyond. Stops when the target is dead.
## Tricks descriptions
diff --git a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl
index 888e1bdf41c..03a920cb647 100644
--- a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl
+++ b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl
@@ -16,7 +16,11 @@ gas-analyzer-window-pressure-text = Pressure:
gas-analyzer-window-pressure-val-text = {$pressure} kPa
gas-analyzer-window-temperature-text = Temperature:
gas-analyzer-window-temperature-val-text = {$tempK}K ({$tempC}°C)
-gas-analyzer-window-molarity-text = {$mol} mol ({$percentage}%)
+gas-analyzer-window-gas-column-name = Gas
+gas-analyzer-window-molarity-column-name = mol
+gas-analyzer-window-percentage-column-name = %
+gas-analyzer-window-molarity-text = {$mol}
+gas-analyzer-window-percentage-text = {$percentage}
gas-analyzer-window-molarity-percentage-text = {$gasName}: {$amount} mol ({$percentage}%)
# Used for GasEntry.ToString()
diff --git a/Resources/Locale/en-US/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl
index c12bcf5b137..c95b292c966 100644
--- a/Resources/Locale/en-US/forensics/fibers.ftl
+++ b/Resources/Locale/en-US/forensics/fibers.ftl
@@ -9,6 +9,7 @@ fibers-latex = latex
fibers-nitrile = nitrile
fibers-nanomachines = insulative nanomachine
fibers-chameleon = holographic chameleon
+fibers-rubber = rubber
fibers-purple = purple
fibers-red = red
diff --git a/Resources/Locale/en-US/items/components/item-component.ftl b/Resources/Locale/en-US/items/components/item-component.ftl
index 9d46b50dd4c..504c355edb0 100644
--- a/Resources/Locale/en-US/items/components/item-component.ftl
+++ b/Resources/Locale/en-US/items/components/item-component.ftl
@@ -10,7 +10,7 @@ item-component-on-examine-size = This is {INDEFINITE($size)} [bold]{$size}[/bold
item-component-size-Tiny = tiny
item-component-size-Small = small
-item-component-size-Normal = normal
+item-component-size-Normal = medium
item-component-size-Large = large
item-component-size-Huge = huge
item-component-size-Ginormous = ginormous
diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl
index d515479a0e4..a25cf2da14a 100644
--- a/Resources/Locale/en-US/materials/materials.ftl
+++ b/Resources/Locale/en-US/materials/materials.ftl
@@ -24,6 +24,7 @@ materials-bananium = bananium
materials-meat = meat
materials-web = silk
materials-bones = bone
+materials-coal = coal
# Material Reclaimer
material-reclaimer-upgrade-process-rate = process rate
diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl
index 9c1c1824972..61bcd424a2b 100644
--- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl
+++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl
@@ -33,3 +33,9 @@ ent-CrateAirlockKit = Airlock kit
ent-CrateEvaKit = EVA kit
.desc = A set consisting of two prestigious EVA suits and helmets.
+
+ent-CrateRCDAmmo = RCD ammo crate
+ .desc = 3 RCD ammo, each restoring 5 charges.
+
+ent-CrateRCD = RCD crate
+ .desc = A crate containing a single Rapid Construction Device.
diff --git a/Resources/Locale/en-US/reagents/meta/medicine.ftl b/Resources/Locale/en-US/reagents/meta/medicine.ftl
index 62854196ac5..8d5e8940c95 100644
--- a/Resources/Locale/en-US/reagents/meta/medicine.ftl
+++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl
@@ -26,10 +26,10 @@ reagent-name-dexalin = dexalin
reagent-desc-dexalin = Used for treating minor oxygen deprivation. A required reagent for dexalin plus.
reagent-name-dexalin-plus = dexalin plus
-reagent-desc-dexalin-plus = Used in treatment of extreme cases of oxygen deprivation and bloodloss. Flushes lexorin out the blood stream.
+reagent-desc-dexalin-plus = Used in treatment of extreme cases of oxygen deprivation and bloodloss. Flushes heartbreaker toxin out of the blood stream.
reagent-name-epinephrine = epinephrine
-reagent-desc-epinephrine = An effective stabilizing chemical used to keep a critical person from dying to asphyxiation while patching up minor damage during crit. Flushes lexorin out the blood stream at the cost of more epinephrine, but may add histamine. Helps reduce stun time. Commonly found in the form of emergency medipens.
+reagent-desc-epinephrine = An effective stabilizing chemical used to keep a critical person from dying to asphyxiation while patching up minor damage during crit. Flushes heartbreaker toxin out the blood stream at the cost of more epinephrine, but may add histamine. Helps reduce stun time. Commonly found in the form of emergency medipens.
reagent-name-hyronalin = hyronalin
reagent-desc-hyronalin = A weak treatment for radiation damage. A precursor to arithrazine and phalanximine. Can cause vomitting.
diff --git a/Resources/Locale/en-US/reagents/meta/toxins.ftl b/Resources/Locale/en-US/reagents/meta/toxins.ftl
index bbc9817b302..72c576966e3 100644
--- a/Resources/Locale/en-US/reagents/meta/toxins.ftl
+++ b/Resources/Locale/en-US/reagents/meta/toxins.ftl
@@ -66,3 +66,9 @@ reagent-desc-lead = A slow-acting but incredibly lethal toxin found in steel, al
reagent-name-bungotoxin = bungotoxin
reagent-desc-bungotoxin = A moderately slow-acting poison found within the pit of the bungo fruit.
+
+reagent-name-vestine = vestine
+reagent-desc-vestine = Has an adverse reaction within the body causing major jittering. While not particularly useful on it's own, it can be used to produce a small variety of chemicals.
+
+reagent-name-tazinide = tazinide
+reagent-desc-tazinide = A highly dangerous metallic mixture which can interfere with most movement through an electrifying current.
diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl
index efd1126eed2..eb039eae851 100644
--- a/Resources/Locale/en-US/research/technologies.ftl
+++ b/Resources/Locale/en-US/research/technologies.ftl
@@ -12,7 +12,6 @@ research-technology-compact-power = Compact Power
research-technology-industrial-engineering = Industrial Engineering
research-technology-power-generation = Power Generation
research-technology-atmospheric-tech = Atmospherics
-research-technology-rapid-construction = Rapid Construction
research-technology-shuttlecraft = Shuttlecraft
research-technology-ripley-aplu = Ripley APLU
research-technology-advanced-atmospherics = Advanced Atmospherics
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
index 730a7fc0438..f1c897772ba 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
@@ -1,3 +1,5 @@
ent-ElectricalDisruptionKit = electrical disruption kit
.suffix = Filled
.desc = { ent-BoxCardboard.desc }
+ent-ChemicalSynthesisKit = chemical synthesis kit
+ .desc = A starter kit for the aspiring chemist, includes toxin and vestine for all your criminal needs!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
index 50a6c6e4290..9cc2e6e08cf 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
@@ -20,3 +20,7 @@ ent-CrateAirlockKit = { ent-CrateGenericSteel }
.desc = { ent-CrateGenericSteel.desc }
ent-CrateEvaKit = { ent-CrateCommandSecure }
.desc = { ent-CrateCommandSecure.desc }
+ent-CrateRCDAmmo = { ent-CrateEngineering }
+ .desc = { ent-CrateEngineering.desc }
+ent-CrateRCD = { ent-CrateEngineeringSecure }
+ .desc = { ent-CrateEngineeringSecure.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
index 13b3d13355c..8d20db6545f 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
@@ -18,8 +18,8 @@ ent-ClothingEyesGlassesCosmeticSunglasses = sun glasses
.desc = A pair of black sunglasses.
ent-ClothingEyesGlassesSunglasses = { ent-ClothingEyesGlassesCosmeticSunglasses }
.desc = { ent-ClothingEyesGlassesCosmeticSunglasses.desc }
-ent-ClothingEyesGlassesSecurity = security sunglasses
- .desc = Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes. Often worn by budget security officers.
+ent-ClothingEyesGlassesSecurity = security glasses
+ .desc = Upgraded sunglasses that provide flash immunity and a security HUD.
ent-ClothingEyesGlassesMercenary = mercenary glasses
.desc = Glasses made for combat, to protect the eyes from bright blinding flashes.
ent-ClothingEyesGlassesThermal = optical thermal scanner
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
index 4acd8375211..4ca1aa63670 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
@@ -47,3 +47,5 @@ ent-ClothingHandsGlovesNorthStar = gloves of the north star
.desc = These gloves allow you to punch incredibly fast.
ent-ClothingHandsGlovesForensic = forensic gloves
.desc = Do not leave fibers or fingerprints. If you work without them, you're A TERRIBLE DETECTIVE.
+ent-ClothingHandsGlovesJanitor = rubber gloves
+ .desc = High-quality rubber gloves, squeaky to do some cleaning!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
index bd390aed98b..059a730a882 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
@@ -8,6 +8,8 @@ ent-ClothingShoesBootsPerformer = performer's boots
.desc = These boots provide great traction for when you're up on stage.
ent-ClothingShoesBootsCombat = combat boots
.desc = Robust combat boots for combat scenarios or combat situations. All combat, all the time.
+ent-ClothingShoesHighheelBoots = high-heeled boots
+ .desc = Snazy boots for when you want to be stylish, yet prepared.
ent-ClothingShoesBootsMerc = mercenary boots
.desc = Boots that have gone through many conflicts and that have proven their combat reliability.
ent-ClothingShoesBootsLaceup = laceup shoes
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
index 69e7a8d38e8..3baa38615f8 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
@@ -20,6 +20,8 @@ ent-ClothingUniformJumpsuitChiefEngineerTurtle = chief engineer's turtleneck
.desc = A yellow turtleneck designed specifically for work in conditions of the engineering department.
ent-ClothingUniformJumpsuitChaplain = chaplain's jumpsuit
.desc = It's a black jumpsuit, often worn by religious folk.
+ent-ClothingUniformJumpsuitCentcomAgent = CentCom agent's jumpsuit
+ .desc = A suit worn by CentCom's legal team. Smells of burnt coffee.
ent-ClothingUniformJumpsuitCentcomOfficial = CentCom officer's suit
.desc = It's a suit worn by CentCom's highest-tier Commanders.
ent-ClothingUniformJumpsuitCentcomOfficer = CentCom turtleneck suit
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
index 7e9c8a447b7..0464b8b60cc 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
@@ -12,3 +12,5 @@ ent-DrinkMilkCarton = milk
.desc = An opaque white liquid produced by the mammary glands of mammals.
ent-DrinkSoyMilkCarton = soy milk
.desc = White and nutritious soy goodness!
+ent-DrinkOatMilkCarton = oat milk
+ .desc = It's oat milk. Tan and nutritious goodness!
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
index 7fca87afd42..f9bd29fd3ae 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
@@ -48,3 +48,5 @@ ent-DrinkCartonMilk = milk carton
.desc = { ent-DrinkCartonBaseEmpty.desc }
ent-DrinkCartonSoyMilk = soy milk carton
.desc = { ent-DrinkCartonBaseEmpty.desc }
+ent-DrinkCartonOatMilk = oat milk carton
+ .desc = { ent-DrinkCartonBaseEmpty.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
index d44e81a3ce0..ab61632eefe 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
@@ -20,12 +20,6 @@ ent-ReagentContainerSugar = sugar bag
.desc = A big bag of tasty spacey sugar.
ent-ReagentContainerSugarSmall = sugar pack
.desc = A pack of tasty spacey sugar.
-ent-ReagentContainerMilk = milk
- .desc = It's milk. White and nutritious goodness!
-ent-ReagentContainerMilkSoy = soy milk
- .desc = It's soy milk. White and nutritious goodness!
-ent-ReagentContainerMilkOat = oat milk
- .desc = It's oat milk. Tan and nutritious goodness!
ent-ReagentContainerOliveoil = olive oil
.desc = Olive oil. From space olives presumably.
ent-ReagentContainerMayo = mayonnaise
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl
index e3e241a99f3..f879c250c60 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl
@@ -42,3 +42,9 @@ ent-BananiumOre = bananium ore
ent-BananiumOre1 = { ent-BananiumOre }
.suffix = Single
.desc = { ent-BananiumOre.desc }
+ent-Coal = coal
+ .suffix = Full
+ .desc = { ent-OreBase.desc }
+ent-Coal1 = { ent-Coal }
+ .suffix = Single
+ .desc = { ent-Coal.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl
index 9411f331eb7..b1138d2a56b 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl
@@ -51,8 +51,16 @@ ent-BoxFolderGrey = { ent-BoxFolderBase }
ent-BoxFolderBlack = { ent-BoxFolderBase }
.suffix = Black
.desc = { ent-BoxFolderBase.desc }
+ent-BoxFolderGreen = { ent-BoxFolderBase }
+ .suffix = Green
+ .desc = { ent-BoxFolderBase.desc }
+ent-BoxFolderCentCom = centcom folder
+ .desc = CentCom's miserable little pile of secrets!
+ .suffix = DO NOT MAP
ent-BoxFolderClipboard = clipboard
.desc = The weapon of choice for those on the front lines of bureaucracy.
+ent-BoxFolderCentComClipboard = centcom clipboard
+ .desc = A luxurious clipboard upholstered with green velvet. Often seen carried by CentCom officials, seldom seen actually used.
ent-BoxFolderQmClipboard = requisition digi-board
.desc = A bulky electric clipboard, filled with shipping orders and financing details. With so many compromising documents, you ought to keep this safe.
ent-RubberStampBase = generic rubber stamp
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl
index a6348e3ec88..2b388aefb86 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl
@@ -7,6 +7,8 @@ ent-LightBulb = incandescent light bulb
ent-LightBulbBroken = incandescent light bulb
.desc = A light bulb.
.suffix = Broken
+ent-ServiceLightBulb = service light bulb
+ .desc = A low-brightness green lightbulb used in janitorial service lights.
ent-LightTube = fluorescent light tube
.desc = A light fixture.
ent-LightTubeBroken = fluorescent light tube
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
index 4758f08d8aa..fc8ff4af54a 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
@@ -1,2 +1,4 @@
ent-BaseChemistryEmptyVial = vial
.desc = A small vial.
+ent-VestineChemistryVial = vestine vial
+ .desc = { ent-BaseChemistryEmptyVial.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
index fe14a63174f..087f8f87c80 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
@@ -130,3 +130,5 @@ ent-SyringeSaline = saline syringe
.desc = { ent-BaseSyringe.desc }
ent-SyringeRomerol = romerol syringe
.desc = { ent-BaseSyringe.desc }
+ent-SyringeStimulants = stimulants syringe
+ .desc = { ent-BaseSyringe.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl
new file mode 100644
index 00000000000..4bdeca10ffe
--- /dev/null
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl
@@ -0,0 +1,2 @@
+ent-OreBagOfHolding = ore bag of holding
+ .desc = A robust bag of holding for salvage billionaires and rich miners alike to carry large amounts of ore. Magnetises any nearby ores when attached to a belt.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
index 0abaa248224..290aedf2c55 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
@@ -1,5 +1,5 @@
ent-AirlockExternal = { ent-Airlock }
- .desc = It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated.
+ .desc = It opens, it closes, it might crush you, and there might be only space behind it.
.suffix = External
ent-AirlockExternalGlass = { ent-AirlockExternal }
.suffix = Glass, External
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
index 47c12fb49af..824236add9d 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
@@ -52,11 +52,13 @@ ent-PottedPlant24 = { ent-PottedPlantBase }
.desc = { ent-PottedPlantBase.desc }
ent-PottedPlantRD = RD's potted plant
.desc = A gift from the botanical staff, presented after the RD's reassignment. There's a tag on it that says "Y'all come back now, y'hear?" It doesn't look very healthy...
-ent-PottedPlant26 = plastic potted plant
+ent-PottedPlant26 = { ent-PottedPlantBase }
+ .desc = Is it just me, or is it blinking?
+ent-PottedPlant27 = plastic potted plant
.desc = A fake, cheap looking, plastic tree. Perfect for people who kill every plant they touch.
-ent-PottedPlant27 = { ent-PottedPlant26 }
- .desc = { ent-PottedPlant26.desc }
-ent-PottedPlant28 = { ent-PottedPlant26 }
- .desc = { ent-PottedPlant26.desc }
-ent-PottedPlant29 = { ent-PottedPlant26 }
- .desc = { ent-PottedPlant26.desc }
+ent-PottedPlant28 = { ent-PottedPlant27 }
+ .desc = { ent-PottedPlant27.desc }
+ent-PottedPlant29 = { ent-PottedPlant27 }
+ .desc = { ent-PottedPlant27.desc }
+ent-PottedPlant30 = { ent-PottedPlant27 }
+ .desc = { ent-PottedPlant27.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
index 7a7afb9951c..35ab60d27f9 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
@@ -1,5 +1,7 @@
ent-ClosetBase = closet
.desc = A standard-issue Nanotrasen storage unit.
+ent-ClosetSteelBase = { ent-ClosetBase }
+ .desc = { ent-ClosetBase.desc }
ent-BaseWallCloset = wall closet
.desc = A standard-issue Nanotrasen storage unit, now on walls.
ent-BaseWallLocker = { ent-BaseWallCloset }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl
new file mode 100644
index 00000000000..84d3c3e6661
--- /dev/null
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl
@@ -0,0 +1,4 @@
+ent-Screen = screen
+ .desc = Displays text or time.
+ent-ArrivalsShuttleTimer = arrivals screen
+ .desc = { ent-Screen.desc }
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl
new file mode 100644
index 00000000000..61131651023
--- /dev/null
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl
@@ -0,0 +1,2 @@
+ent-JanitorServiceLight = janitorial service light
+ .desc = A wall-mounted janitorial sign. If the light is blinking, a janitor's service is required.
diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
index b178ba3bf3f..205b08e1503 100644
--- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
+++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
@@ -17,6 +17,9 @@ ent-IronRockMining = ironrock
.suffix = higher ore yield
ent-WallRock = rock
.desc = { ent-BaseStructure.desc }
+ent-WallRockCoal = { ent-WallRock }
+ .desc = An ore vein rich with coal.
+ .suffix = Coal
ent-WallRockGold = { ent-WallRock }
.desc = An ore vein rich with gold.
.suffix = Gold
@@ -43,6 +46,9 @@ ent-WallRockArtifactFragment = { ent-WallRock }
.suffix = Artifact Fragment
ent-WallRockBasalt = basalt
.desc = { ent-WallRock.desc }
+ent-WallRockBasaltCoal = { ent-WallRockBasalt }
+ .desc = An ore vein rich with coal.
+ .suffix = Coal
ent-WallRockBasaltGold = { ent-WallRockBasalt }
.desc = An ore vein rich with gold.
.suffix = Gold
@@ -69,6 +75,9 @@ ent-WallRockBasaltArtifactFragment = { ent-WallRockBasalt }
.suffix = Artifact Fragment
ent-WallRockSnow = snowdrift
.desc = { ent-WallRock.desc }
+ent-WallRockSnowCoal = { ent-WallRockSnow }
+ .desc = An ore vein rich with coal.
+ .suffix = Coal
ent-WallRockSnowGold = { ent-WallRockSnow }
.desc = An ore vein rich with gold.
.suffix = Gold
@@ -95,6 +104,9 @@ ent-WallRockSnowArtifactFragment = { ent-WallRockSnow }
.suffix = Artifact Fragment
ent-WallRockSand = sandstone
.desc = { ent-WallRock.desc }
+ent-WallRockSandCoal = { ent-WallRockSand }
+ .desc = An ore vein rich with coal.
+ .suffix = Coal
ent-WallRockSandGold = { ent-WallRockSand }
.desc = An ore vein rich with gold.
.suffix = Gold
@@ -121,6 +133,9 @@ ent-WallRockSandArtifactFragment = { ent-WallRockSand }
.suffix = Artifact Fragment
ent-WallRockChromite = chromite
.desc = { ent-WallRock.desc }
+ent-WallRockChromiteCoal = { ent-WallRockChromite }
+ .desc = An ore vein rich with coal.
+ .suffix = Coal
ent-WallRockChromiteGold = { ent-WallRockChromite }
.desc = An ore vein rich with gold.
.suffix = Gold
@@ -147,6 +162,9 @@ ent-WallRockChromiteArtifactFragment = { ent-WallRockChromite }
.suffix = Artifact Fragment
ent-WallRockAndesite = andesite
.desc = { ent-WallRock.desc }
+ent-WallRockAndesiteCoal = { ent-WallRockAndesite }
+ .desc = An ore vein rich with coal.
+ .suffix = Coal
ent-WallRockAndesiteGold = { ent-WallRockAndesite }
.desc = An ore vein rich with gold.
.suffix = Gold
diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl
index a016d791d75..184fa11a203 100644
--- a/Resources/Locale/en-US/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/store/uplink-catalog.ftl
@@ -155,7 +155,6 @@ uplink-dna-scrambler-implanter-desc = A single use implant that can be activated
uplink-emp-implanter-name = EMP Implanter
uplink-emp-implanter-desc = Detonates a small EMP pulse on activation that drains nearby electronics of their power, can be used three times before the internal battery runs out.
-
uplink-macro-bomb-implanter-name = Macro Bomb Implanter
uplink-macro-bomb-implanter-desc = Inject this and on death you'll create a large explosion. Huge team casualty cost, use at own risk. Replaces internal micro bomb.
@@ -175,6 +174,9 @@ uplink-micro-bomb-implanter-desc = Explode on death or manual activation with th
uplink-emp-kit-name = Electrical Disruptor Kit
uplink-emp-kit-desc = The ultimate reversal on energy-based weaponry: Disables disablers, stuns stunbatons, discharges laser guns! Contains 3 EMP grenades and an EMP implanter. Note: Does not disrupt actual firearms.
+uplink-chemistry-kit-name = Chemical Synthesis Kit
+uplink-chemistry-kit-desc = A starter kit for the aspiring chemist, includes toxin and vestine for all your criminal needs!
+
uplink-meds-bundle-name = Medical Bundle
uplink-meds-bundle-desc = All you need to get your comrades back in the fight: mainly a combat medkit, a defibrillator and three combat medipens.
@@ -302,15 +304,15 @@ uplink-soap-desc = An untrustworthy bar of soap. Smells of fear.
uplink-ultrabright-lantern-name = Extra-Bright Lantern
uplink-ultrabright-lantern-desc = It can be used to blind people like a flash.
-uplink-nocturine-chemistry-bottle-name = Nocturine Bottle
-uplink-nocturine-chemistry-bottle-desc = A chemical that makes it very hard for your target to stand up.
-
uplink-combat-medkit-name = Combat Medical Kit
uplink-combat-medkit-desc = A medkit made for fixing combat injuries.
uplink-combat-medipen-name = Combat Medipen
uplink-combat-medipen-desc = A single-use medipen containing chemicals that regenerate most types of damage.
+uplink-nocturine-chemistry-bottle-name = Nocturine Bottle
+uplink-nocturine-chemistry-bottle-desc = A chemical that makes it very hard for your target to stand up.
+
uplink-stimpack-name = Stimpack
uplink-stimpack-desc = The legendary chemical produced by Donk Co. for the Syndicate. Injecting yourself with this will increase your run speed and let you recover from stuns faster for 30 seconds.
diff --git a/Resources/Locale/ru-RU/administration/smites.ftl b/Resources/Locale/ru-RU/administration/smites.ftl
index e39fb2ced9b..8a914df8c0d 100644
--- a/Resources/Locale/ru-RU/administration/smites.ftl
+++ b/Resources/Locale/ru-RU/administration/smites.ftl
@@ -52,6 +52,8 @@ admin-smite-remove-hand-description = Удаляет только одну из
admin-smite-disarm-prone-description = Шанс обезоружить цель становится 100%, а наручники надеваются на неё мгновенно.
admin-smite-garbage-can-description = Превратите цель в мусорку, чтобы подчеркнуть, о чём она вам напоминает.
admin-trick-unbolt-description = Разболтирует целевой шлюз.
+admin-smite-super-bonk-description = Заставляет цель удариться о каждый стол на станции и за её пределами.
+admin-smite-super-bonk-lite-description = Заставляет цель удариться о каждый стол на станции и за её пределами. Прекращает действовать после смерти цели.
admin-trick-bolt-description = Болтирует целевой шлюз.
admin-trick-emergency-access-on-description = Включает аварийный доступ к целевому шлюзу.
admin-trick-emergency-access-off-description = Выключает аварийный доступ к целевому шлюзу.
diff --git a/Resources/Locale/ru-RU/atmos/gas-analyzer-component.ftl b/Resources/Locale/ru-RU/atmos/gas-analyzer-component.ftl
index 89380d0c4d7..4edd9a8ec12 100644
--- a/Resources/Locale/ru-RU/atmos/gas-analyzer-component.ftl
+++ b/Resources/Locale/ru-RU/atmos/gas-analyzer-component.ftl
@@ -16,7 +16,10 @@ gas-analyzer-window-pressure-text = Давление:
gas-analyzer-window-pressure-val-text = { $pressure } кПа
gas-analyzer-window-temperature-text = Температура:
gas-analyzer-window-temperature-val-text = { $tempK }К ({ $tempC }°C)
-gas-analyzer-window-molarity-text = { $mol } моль ({ $percentage }%)
+gas-analyzer-window-gas-column-name = Газ
+gas-analyzer-window-molarity-column-name = моль
+gas-analyzer-window-percentage-column-name = %
+gas-analyzer-window-percentage-text = { $percentage }
gas-analyzer-window-molarity-percentage-text = { $gasName }: { $amount } моль ({ $percentage }%)
# Used for GasEntry.ToString()
gas-entry-info = { $gasName }: { $gasAmount } моль
diff --git a/Resources/Locale/ru-RU/forensics/fibers.ftl b/Resources/Locale/ru-RU/forensics/fibers.ftl
index 41883cf9d06..31276f30fea 100644
--- a/Resources/Locale/ru-RU/forensics/fibers.ftl
+++ b/Resources/Locale/ru-RU/forensics/fibers.ftl
@@ -8,6 +8,7 @@ fibers-latex = латексные
fibers-nitrile = нитриловые
fibers-nanomachines = изолирующие наномашинные
fibers-chameleon = голографические хамелеонные
+fibers-rubber = резиновые
fibers-purple = фиолетовые
fibers-red = красные
fibers-black = чёрные
diff --git a/Resources/Locale/ru-RU/guidebook/chemistry/statuseffects.ftl b/Resources/Locale/ru-RU/guidebook/chemistry/statuseffects.ftl
index 133e924a4cf..fd6cabc2d5d 100644
--- a/Resources/Locale/ru-RU/guidebook/chemistry/statuseffects.ftl
+++ b/Resources/Locale/ru-RU/guidebook/chemistry/statuseffects.ftl
@@ -10,4 +10,4 @@ reagent-effect-status-effect-Drunk = опьянение
reagent-effect-status-effect-PressureImmunity = невосприимчивость к давлению
reagent-effect-status-effect-Pacified = принудительный пацифизм
reagent-effect-status-effect-RatvarianLanguage = паттерны ратварского языка
-reagent-effect-status-effect-StaminaModifier = modified stamina
+reagent-effect-status-effect-StaminaModifier = модифицированная выносливость
diff --git a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl
index 2d878e05354..ac187f2052c 100644
--- a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl
+++ b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl
@@ -54,7 +54,7 @@ petting-success-mimebot = Вы гладите { $target } по { POSS-ADJ($targe
petting-success-cleanbot = Вы гладите { $target } по его влажной металлической голове.
petting-success-medibot = Вы гладите { $target } по его стерильной металлической голове.
petting-failure-honkbot = Вы тянетесь погладить { $target }, но { $target } хонкает и уворачивается!
-petting-success-recycler = You pet { THE($target) } on { POSS-ADJ($target) } mildly threatening steel exterior.
+petting-success-recycler = Вы гладите { $target } по { POSS-ADJ($target) } слегка пугающему стальному покрытию.
petting-failure-cleanbot = Вы тянетесь погладить { $target }, но { $target } занят уборкой!
petting-failure-mimebot = Вы тянетесь погладить { $target }, но { $target } занят мимированием!
petting-failure-medibot = Вы тянетесь погладить { $target }, но { $target } едва не пронзает вашу руку шприцом!
diff --git a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl
index bcebb52f6c5..85e40764d02 100644
--- a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl
+++ b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl
@@ -11,7 +11,7 @@ signal-port-description-left = Этот порт задействуется вс
signal-port-name-right = Направо
signal-port-description-right = Этот порт задействуется всякий раз, когда рычаг перемещается в крайнее правое положение.
signal-port-name-doorstatus = Статус шлюза
-signal-port-description-doorstatus = Этот порт задействуется с высоким уровенем, когда с устройством взаимодействуют, и низким уровнем в закрытом состоянии.
+signal-port-description-doorstatus = Этот порт задействуется с высоким уровнем, когда с устройством взаимодействуют, и низким уровнем в закрытом состоянии.
signal-port-name-middle = Середина
signal-port-description-middle = Этот порт задействуется всякий раз, когда рычаг перемещается в нейтральное положение.
signal-port-name-timer-trigger = Таймер-триггер
@@ -25,11 +25,11 @@ signal-port-description-logic-output-high = Этот порт задейству
signal-port-name-logic-output-low = Низкий уровень
signal-port-description-logic-output-low = Этот порт задействуется всякий раз, когда входной уровень низкий.
signal-port-name-air-danger = Danger
-signal-port-description-air-danger = Этот порт задействуется с высоким уровенем сигнала, когда статус Danger, если статус другой, то с низким уровнем.
+signal-port-description-air-danger = Этот порт задействуется с высоким уровнем сигнала когда статус Danger, если статус другой, то с низким уровнем.
signal-port-name-air-warning = Warning
-signal-port-description-air-warning = Этот порт задействуется с высоким уровенем сигнала, когда статус Warning, если статус другой, то с низким уровнем.
+signal-port-description-air-warning = Этот порт задействуется с высоким уровнем сигнала когда статус Warning, если статус другой, то с низким уровнем.
signal-port-name-air-normal = Normal
-signal-port-description-air-normal = Этот порт задействуется с высоким уровенем сигнала, когда статус Normal, если статус другой, то с низким уровнем.
+signal-port-description-air-normal = Этот порт задействуется с высоким уровнем сигнал когда статус Normal, если статус другой, то с низким уровнем.
signal-port-name-decaying = Распад
signal-port-description-decaying = Этот порт задействуется когда привязанная аномалия переходит в состояние распада.
signal-port-name-stabilize = Стабилизация
@@ -40,7 +40,7 @@ signal-port-name-pulse = Импульс
signal-port-description-pulse = Этот порт задействуется когда привязанная аномалия создаёт импульс.
signal-port-name-supercrit = Суперкрит
signal-port-description-supercrit = Этот порт задействуется когда привязанная аномалия взрывается после перехода в суперкритическое состояние.
-signal-port-name-power-charging = Charging
-signal-port-description-power-charging = This port is invoked with HIGH when the battery is gaining charge and LOW when not.
-signal-port-name-power-discharging = Discharging
-signal-port-description-power-discharging = This port is invoked with HIGH when the battery is losing charge and LOW when not.
+signal-port-name-power-charging = Зарядка
+signal-port-description-power-charging = Этот порт задействуется с высоким уровнем сигнала когда батарея заряжается, и с низким когда нет.
+signal-port-name-power-discharging = Разрядка
+signal-port-description-power-discharging = Этот порт задействуется с высоким уровнем сигнала когда батарея разряжается, и с низким когда нет.
diff --git a/Resources/Locale/ru-RU/machine/machine.ftl b/Resources/Locale/ru-RU/machine/machine.ftl
index adabedce506..81e5dbacf4c 100644
--- a/Resources/Locale/ru-RU/machine/machine.ftl
+++ b/Resources/Locale/ru-RU/machine/machine.ftl
@@ -18,4 +18,4 @@ two-way-lever-left = сдвинуть рычаг влево
two-way-lever-right = сдвинуть рычаг вправо
two-way-lever-cant = Рычаг не может быть сдвинут в эту сторону!
recycler-count-items = Переработано объектов: { $items }.
-machine-already-in-use = { CAPITALIZE(THE($machine)) } is already in use.
+machine-already-in-use = { CAPITALIZE($machine) } уже используется.
diff --git a/Resources/Locale/ru-RU/materials/materials.ftl b/Resources/Locale/ru-RU/materials/materials.ftl
index e75807a98d8..4fe55793bbf 100644
--- a/Resources/Locale/ru-RU/materials/materials.ftl
+++ b/Resources/Locale/ru-RU/materials/materials.ftl
@@ -22,5 +22,6 @@ materials-bananium = бананиум
materials-meat = мясо
materials-web = шёлк
materials-bones = кости
+materials-coal = уголь
# Material Reclaimer
material-reclaimer-upgrade-process-rate = скорость переработки
diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engineering-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engineering-crates.ftl
index 5348c5ef068..ea044b99bed 100644
--- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engineering-crates.ftl
+++ b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engineering-crates.ftl
@@ -22,3 +22,7 @@ ent-CrateAirlockKit = ящик компонентов шлюза
.desc = Набор для строительства 6 воздушных шлюзов, инструменты в комплект не входят.
ent-CrateEvaKit = набор EVA
.desc = Набор, состоящий из двух престижных EVA скафандров и шлемов.
+ent-CrateRCDAmmo = ящик зарядов РСУ
+ .desc = 3 обоймы для РСУ, каждая из которых восстанавливает 5 зарядов.
+ent-CrateRCD = ящик РСУ
+ .desc = Ящик, содержащий одно ручное строительное устройство.
diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/medical-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/medical-crates.ftl
index d8a274f0807..35beabb4f1e 100644
--- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/medical-crates.ftl
+++ b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/medical-crates.ftl
@@ -4,8 +4,8 @@ ent-CrateMedicalSupplies = ящик медицинских припасов
.desc = Стандартные медикаменты.
ent-CrateChemistrySupplies = ящик химического оборудования
.desc = Стандартное химическое оборудование.
-ent-CrateChemistryVials = Vial supply crate
- .desc = Crate filled with a box of vials.
+ent-CrateChemistryVials = ящик химических пробирок
+ .desc = Ящик, содержащий коробку пробирок.
ent-CrateMindShieldImplants = ящик имплантов Щит разума
.desc = Ящик, содержащий 3 импланта Щит разума.
ent-CrateMedicalSurgery = ящик хирургических инструментов
diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl
index 2a74c9f3acd..cc7ce805c09 100644
--- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl
+++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl
@@ -30,8 +30,8 @@ reagent-name-nothing = ничего
reagent-desc-nothing = Абсолютно ничего.
reagent-name-nuclear-cola = ядерная кола
reagent-desc-nuclear-cola = Кола, кола никогда не меняется.
-reagent-name-hot-cocoa = hot cocoa
-reagent-desc-hot-cocoa = Smells like the holidays!
+reagent-name-hot-cocoa = горячее какао
+reagent-desc-hot-cocoa = Пахнет праздниками!
reagent-name-soda-water = газированная вода
reagent-desc-soda-water = Она же содовая. Почему бы не сделать виски с содовой?
reagent-name-soy-latte = соевый латте
diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl
index 9c2c4a9c1cd..a28ae6b8548 100644
--- a/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl
+++ b/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl
@@ -8,7 +8,7 @@ reagent-name-protein = протеины
reagent-desc-protein = Также известные как белки. Содержатся в некоторых блюдах, полезны для здоровья организма.
reagent-name-cocoapowder = какао-порошок
reagent-desc-cocoapowder = Из лучших сортов какао-бобов.
-reagent-name-butter = butter
-reagent-desc-butter = You can believe it!
+reagent-name-butter = масло
+reagent-desc-butter = Предположительно, сливочное!
reagent-name-pumpkin-flesh = мякоть тыквы
reagent-desc-pumpkin-flesh = Кашеобразные, сладкие остатки тыквы.
diff --git a/Resources/Locale/ru-RU/reagents/meta/medicine.ftl b/Resources/Locale/ru-RU/reagents/meta/medicine.ftl
index cf3ae4c3287..64c19043242 100644
--- a/Resources/Locale/ru-RU/reagents/meta/medicine.ftl
+++ b/Resources/Locale/ru-RU/reagents/meta/medicine.ftl
@@ -17,9 +17,9 @@ reagent-desc-dermaline = Передовой препарат, более эфф
reagent-name-dexalin = дексалин
reagent-desc-dexalin = Используется для лечения лёгкого кислородного голодания. Необходимый реагент для создания Дексалина плюс.
reagent-name-dexalin-plus = дексалин плюс
-reagent-desc-dexalin-plus = Используется для лечения кислородного голодания и потери крови. Выводит Лексорин из кровеносной системы.
+reagent-desc-dexalin-plus = Используется для лечения кислородного голодания и потери крови. Выводит Токсин хартбрейкер из кровеносной системы.
reagent-name-epinephrine = эпинефрин
-reagent-desc-epinephrine = Эффективный стабилизирующий препарат, используемый для предотвращения смерти от асфиксии, а также для устранения незначительных повреждений пациентов, находящихся в критическом состоянии. Выводит Лексорин из кровеносной системы за счёт большего количества Эпинефрина, но может повышать уровень Гистамина. Помогает уменьшить время оглушения. Часто встречается в экстренных медипенах.
+reagent-desc-epinephrine = Эффективный стабилизирующий препарат, используемый для предотвращения смерти от асфиксии, а также для устранения незначительных повреждений пациентов, находящихся в критическом состоянии. Выводит Токсин хартбрейкер из кровеносной системы за счёт большего количества Эпинефрина, но может повышать уровень Гистамина. Помогает уменьшить время оглушения. Часто встречается в экстренных медипенах.
reagent-name-hyronalin = хироналин
reagent-desc-hyronalin = Слабый препарат для лечения радиационного поражения. Предшественник Аритразина и Фалангимина. Может вызывать рвоту.
reagent-name-ipecac = ипекак
diff --git a/Resources/Locale/ru-RU/reagents/meta/toxins.ftl b/Resources/Locale/ru-RU/reagents/meta/toxins.ftl
index 828c5c084b3..0bae90d711b 100644
--- a/Resources/Locale/ru-RU/reagents/meta/toxins.ftl
+++ b/Resources/Locale/ru-RU/reagents/meta/toxins.ftl
@@ -44,3 +44,7 @@ reagent-name-lead = свинец
reagent-desc-lead = Медленно действующий, но невероятно смертоносный токсин, содержащийся в стали, хотя и в незначительных количествах. Не имеет вкуса.
reagent-name-bungotoxin = бунготоксин
reagent-desc-bungotoxin = Яд умеренно медленного действия, содержащийся в косточках плода бунго.
+reagent-name-vestine = вестин
+reagent-desc-vestine = Оказывает негативное воздействие на организм, вызывая сильную дрожь. Хотя сам по себе он не особенно полезен, его можно использовать для производства ряда других химических веществ.
+reagent-name-tazinide = тазинид
+reagent-desc-tazinide = Очень опасная металлическая смесь, которая может нарушить возможность передвигаться благодаря электризующему воздействию.
diff --git a/Resources/Locale/ru-RU/research/technologies.ftl b/Resources/Locale/ru-RU/research/technologies.ftl
index 574e2fd3aa4..fa27856a398 100644
--- a/Resources/Locale/ru-RU/research/technologies.ftl
+++ b/Resources/Locale/ru-RU/research/technologies.ftl
@@ -11,7 +11,6 @@ research-technology-compact-power = Компактная энергогенер
research-technology-industrial-engineering = Промышленная инженерия
research-technology-power-generation = Генерация электроэнергии
research-technology-atmospheric-tech = Атмосферные технологии
-research-technology-rapid-construction = Быстрое строительство
research-technology-shuttlecraft = Шаттлостроение
research-technology-ripley-aplu = Рипли АВП
research-technology-advanced-atmospherics = Продвинутые атмос-технологии
@@ -39,7 +38,7 @@ research-technology-concentrated-laser-weaponry = Концентрированн
research-technology-wave-particle-harnessing = Применение волновых частиц
research-technology-advanced-riot-control = Продвинутое противодействие беспорядкам
research-technology-portable-microfusion-weaponry = Оруженый портативный микросинтез
-research-technology-experimental-battery-ammo = Experimental Battery Ammo
+research-technology-experimental-battery-ammo = Экспериментальные батарейные боеприпасы
research-technology-basic-robotics = Основы робототехники
research-technology-basic-anomalous-research = Основы исследования аномалий
research-technology-basic-xenoarcheology = Основы ксеноархеологии
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/medical.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/medical.ftl
index 91d88e366d8..b9c5a60d78b 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/medical.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/medical.ftl
@@ -14,5 +14,5 @@ ent-BoxMouthSwab = коробка стерильных палочек
.desc = { ent-BoxCardboard.desc }
ent-BoxBodyBag = коробка мешков для тел
.desc = Содержит мешки для тел.
-ent-BoxVial = vial box
- .desc = A box full of vials.
+ent-BoxVial = коробка пробирок
+ .desc = Полная коробка пробирок.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
index da2227700cb..9a170bfbca1 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl
@@ -1,3 +1,5 @@
ent-ElectricalDisruptionKit = набор отключения электричества
.suffix = Заполненный
.desc = { ent-BoxCardboard.desc }
+ent-ChemicalSynthesisKit = набор химического синтеза
+ .desc = Стартовый набор начинающего химика, включающий токсин и вестин для всех ваших преступных нужд!
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
index c2c9cb5622b..54f65488098 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl
@@ -20,3 +20,7 @@ ent-CrateAirlockKit = ящик компонентов шлюза
.desc = Набор для строительства 6 воздушных шлюзов, инструменты в комплект не входят.
ent-CrateEvaKit = набор EVA
.desc = Набор, состоящий из двух престижных EVA скафандров и шлемов.
+ent-CrateRCDAmmo = ящик зарядов РСУ
+ .desc = 3 обоймы для РСУ, каждая из которых восстанавливает 5 зарядов.
+ent-CrateRCD = ящик РСУ
+ .desc = Ящик, содержащий одно ручное строительное устройство.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/medical.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/medical.ftl
index 467f097b98e..87e7b9f03b1 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/medical.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/medical.ftl
@@ -2,8 +2,8 @@ ent-CrateMedicalSupplies = ящик медицинских припасов
.desc = Стандартные медикаменты.
ent-CrateChemistrySupplies = ящик химического оборудования
.desc = Стандартное химическое оборудование.
-ent-CrateChemistryVials = { ent-CrateMedical }
- .desc = { ent-CrateMedical.desc }
+ent-CrateChemistryVials = ящик химических пробирок
+ .desc = Ящик, содержащий коробку пробирок.
ent-CrateMindShieldImplants = ящик имплантов Щит разума
.desc = Ящик, содержащий 3 импланта Щит разума.
ent-CrateMedicalSurgery = ящик хирургических инструментов
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
index d59bba1061a..23a9259e5db 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/glasses.ftl
@@ -18,8 +18,8 @@ ent-ClothingEyesGlassesCosmeticSunglasses = солнцезащитные очк
.desc = Пара чёрных солнцезащитных очков.
ent-ClothingEyesGlassesSunglasses = { ent-ClothingEyesGlassesCosmeticSunglasses }
.desc = { ent-ClothingEyesGlassesCosmeticSunglasses.desc }
-ent-ClothingEyesGlassesSecurity = солнцезащитные очки охраны
- .desc = Странная древняя технология помогает обеспечить простейшую защиту глаз. Улучшенное покрытие блокирует различные вспышки. Часто носятся бюджетниками службы безопасности.
+ent-ClothingEyesGlassesSecurity = очки охраны
+ .desc = Модернизированные солнцезащитные очки с функцией защиты от вспышек и визором СБ.
ent-ClothingEyesGlassesMercenary = очки наёмника
.desc = Очки, созданные для ведения боя, для защиты глаз от ярких ослепляющих вспышек.
ent-ClothingEyesGlassesThermal = оптический термальный сканер
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
index de72b434936..433fcc9bd83 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/hands/gloves.ftl
@@ -47,3 +47,5 @@ ent-ClothingHandsGlovesNorthStar = перчатки Полярный звезд
.desc = Эти перчатки позволяют наносить удары с невероятной скоростью.
ent-ClothingHandsGlovesForensic = криминалистические перчатки
.desc = Не оставляют ни волокна, ни отпечатки пальцев. Если вы работаете без них, то вы - УЖАСНЫЙ ДЕТЕКТИВ.
+ent-ClothingHandsGlovesJanitor = резиновые перчатки
+ .desc = Высококачественные резиновые перчатки, скрипящие от желания сделать уборку!
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
index d121ee59fd4..1a9f02c724b 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/boots.ftl
@@ -8,6 +8,8 @@ ent-ClothingShoesBootsPerformer = ботинки артиста
.desc = Эти ботинки обеспечивают отличное сцепление с поверхностью, когда вы выходите на сцену.
ent-ClothingShoesBootsCombat = армейские ботинки
.desc = Надёжные армейские ботинки, для боевых операций или боевых действий. Борьба - всё, борьба - всегда.
+ent-ClothingShoesHighheelBoots = сапоги на высоком каблуке
+ .desc = Удобные сапожки для тех случаев, когда вы хотите быть стильным, и одновременно подготовленным.
ent-ClothingShoesBootsMerc = ботинки наёмника
.desc = Ботинки, прошедшие через множество конфликтов и доказавшие свою боевую надежность.
ent-ClothingShoesBootsLaceup = шнурованные туфли
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
index f44c57799f3..316e55ea08c 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl
@@ -20,6 +20,8 @@ ent-ClothingUniformJumpsuitChiefEngineerTurtle = водолазка старше
.desc = Жёлтая водолазка, разработанная специально для работы в условиях инженерного отдела.
ent-ClothingUniformJumpsuitChaplain = комбинезон священника
.desc = Это чёрный комбинезон, зачастую носимый религиозными людьми.
+ent-ClothingUniformJumpsuitCentcomAgent = CentCom agent's jumpsuit
+ .desc = A suit worn by CentCom's legal team. Smells of burnt coffee.
ent-ClothingUniformJumpsuitCentcomOfficial = костюм офицера Центком
.desc = Это комбинезон, который носят офицеры Центком высшего звена.
ent-ClothingUniformJumpsuitCentcomOfficer = водолазка Центком
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl
index 592e5cb28ac..3cd072f8ee2 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl
@@ -84,8 +84,8 @@ ent-MobClownSpider = клоун-паук
.desc = Сочетает в себе две самые страшные вещи на свете - пауков и клоунов.
ent-MobPossum = поссум
.desc = "О поссум! Мой поссум!" -- Уолт Уитмен, 1865
-ent-MobPossumOld = possum
- .suffix = Old sprite
+ent-MobPossumOld = поссум
+ .suffix = Старый спрайт
.desc = { ent-MobPossum.desc }
ent-MobRaccoon = енот
.desc = Мусорная панда!
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl
index 5a07cbb1d13..af2c1a35871 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl
@@ -1,17 +1,19 @@
ent-MobElementalBase = { "" }
.desc = { "" }
-ent-MobOreCrab = ore crab
- .desc = { ent-MobElementalBase.desc }
-ent-MobQuartzCrab = кварцекраб
+ent-MobOreCrab = рудокраб
+ .desc = { ent-MobElementalBase.desc }
+ent-MobQuartzCrab = { ent-MobOreCrab }
.desc = Рудный краб, состоящий из кварца.
-ent-MobIronCrab = рудокраб
+ .suffix = Кварц
+ent-MobIronCrab = { ent-MobOreCrab }
.desc = Рудный краб, состоящий из железа.
.suffix = Железо
-ent-MobUraniumCrab = рудокраб
+ent-MobUraniumCrab = { ent-MobOreCrab }
.desc = Рудный краб, состоящий из урана.
.suffix = Уран
-ent-MobSilverCrab = ore crab
- .desc = An ore crab made from silver.
+ent-MobSilverCrab = { ent-MobOreCrab }
+ .desc = Рудный краб, состоящий из серебра.
+ .suffix = Серебро
ent-ReagentSlime = химический слайм
.desc = Состоит из жидкости, и хочет растворить вас в себе.
.suffix = Вода
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/pets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/pets.ftl
index f5198658187..c475da6bb17 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/pets.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/pets.ftl
@@ -24,11 +24,11 @@ ent-MobWalter = Уолтер
.desc = Он обожает химию и угощения. Уолтер.
ent-MobPossumMorty = Морти
.desc = Обитатель станции, Виргинский опоссум. Чувствительный, но стойкий парень.
-ent-MobPossumMortyOld = Morty
- .suffix = Old sprite
+ent-MobPossumMortyOld = Морти
+ .suffix = Старый спрайт
.desc = { ent-MobPossumMorty.desc }
-ent-MobPossumPoppy = Poppy
- .desc = It's an opossum, a small scavenging marsupial. It's wearing appropriate personal protective equipment.
+ent-MobPossumPoppy = Поппи
+ .desc = Это опоссум, небольшое сумчатое животное, питающееся отбросами. На него надеты соответствующие средства индивидуальной защиты.
ent-MobRaccoonMorticia = Мортиша
.desc = Могущественное создание ночи. Ее тени для век всегда на высоте.
ent-MobAlexander = Александр
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
index 7dda21065af..852edfad7e1 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks-cartons.ftl
@@ -12,3 +12,5 @@ ent-DrinkMilkCarton = молоко
.desc = Непрозрачная белая жидкость, вырабатываемая молочными железами млекопитающих.
ent-DrinkSoyMilkCarton = соевое молоко
.desc = Белое и питательное соевое удовольствие!
+ent-DrinkOatMilkCarton = овсяное молоко
+ .desc = Бежевое и питательное удовольствие!
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
index 3b2828a462f..7fba460afb8 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/trash_drinks.ftl
@@ -48,3 +48,5 @@ ent-DrinkCartonMilk = упаковка от молока
.desc = { ent-DrinkCartonBaseEmpty.desc }
ent-DrinkCartonSoyMilk = упаковка от соевого молока
.desc = { ent-DrinkCartonBaseEmpty.desc }
+ent-DrinkCartonOatMilk = упаковка от овсяного молока
+ .desc = { ent-DrinkCartonBaseEmpty.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl
index 8fd12d83561..f2a7fd17e28 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl
@@ -62,5 +62,5 @@ ent-FoodBreadButteredToast = тост с маслом
.desc = Хрустящий.
ent-FoodBreadTwoSlice = два ломтика
.desc = Классика.
-ent-MobBreadDog = bread dog
- .desc = It's a bread. It's a dog. It's a... breaddog?
+ent-MobBreadDog = хлебака
+ .desc = Это хлеб. Это собака. Это... хлебака?
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
index ed8233a1f32..f26e3f2effb 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl
@@ -20,12 +20,6 @@ ent-ReagentContainerSugar = мешок сахара
.desc = Большой мешок вкусного космического сахара.
ent-ReagentContainerSugarSmall = пачка сахара
.desc = Пачка вкусного космического сахара.
-ent-ReagentContainerMilk = молоко
- .desc = Это молоко. Белая и питательная вкуснятина!
-ent-ReagentContainerMilkSoy = соевое молоко
- .desc = Это соевое молоко. Белая и питательная вкуснятина!
-ent-ReagentContainerMilkOat = овсяное молоко
- .desc = Это овсяное молоко. Бежевая и питательная вкуснятина!
ent-ReagentContainerOliveoil = оливковое масло
.desc = Оливковое масло. Из космических оливок, предположительно.
ent-ReagentContainerMayo = майонез
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/crystal_shard.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/crystal_shard.ftl
index 79552576295..dcbad9c5b69 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/crystal_shard.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/crystal_shard.ftl
@@ -1,14 +1,14 @@
-ent-ShardCrystalBase = crystal shard
- .desc = A small piece of crystal.
-ent-ShardCrystalCyan = cyan crystal shard
- .desc = A small piece of crystal.
-ent-ShardCrystalBlue = blue crystal shard
+ent-ShardCrystalBase = осколок кристалла
+ .desc = Небольшой кусочек кристалла.
+ent-ShardCrystalCyan = голубой осколок кристалла
+ .desc = Небольшой кусочек кристалла.
+ent-ShardCrystalBlue = синий осколок кристалла
.desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalOrange = orange crystal shard
+ent-ShardCrystalOrange = оранжевый осколок кристалла
.desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalPink = pink crystal shard
+ent-ShardCrystalPink = розовый осколок кристалла
.desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalGreen = green crystal shard
+ent-ShardCrystalGreen = зелёный осколок кристалла
.desc = { ent-ShardCrystalBase.desc }
-ent-ShardCrystalRed = red crystal shard
+ent-ShardCrystalRed = красный осколок кристалла
.desc = { ent-ShardCrystalBase.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl
index b76468dc6ed..545df4769ba 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl
@@ -42,3 +42,9 @@ ent-BananiumOre = бананиумовая руда
ent-BananiumOre1 = { ent-BananiumOre }
.suffix = Один
.desc = { ent-BananiumOre.desc }
+ent-Coal = уголь
+ .suffix = Полный
+ .desc = { ent-OreBase.desc }
+ent-Coal1 = { ent-Coal }
+ .suffix = Один
+ .desc = { ent-Coal.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl
index 3beb0f81f65..f1d112cda1a 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl
@@ -21,8 +21,8 @@ ent-NukeCodePaperStation = { ent-NukeCodePaper }
.desc = { ent-NukeCodePaper.desc }
ent-Pen = ручка
.desc = Ручка с чёрными чернилами.
-ent-LuxuryPen = luxury pen
- .desc = A fancy and expensive pen that you only deserve to own if you're qualified to handle vast amounts of paperwork.
+ent-LuxuryPen = дорогая ручка
+ .desc = Дорогая и модная ручка, которой вы достойны обладать только в том случае, если вы умеете работать с огромным количеством бумаг.
ent-CyberPen = ручка Cybersun
.desc = Высокотехнологичная ручка прямо из юридического отдела Cybersun, для письма преломляющая яркий свет под невозможными углами через свой алмазный наконечник. Она не бессмысленна в прямом смысле, только в переносном.
ent-PenCap = перьевая ручка капитана
@@ -51,8 +51,16 @@ ent-BoxFolderGrey = { ent-BoxFolderBase }
ent-BoxFolderBlack = { ent-BoxFolderBase }
.suffix = Чёрная
.desc = { ent-BoxFolderBase.desc }
+ent-BoxFolderGreen = { ent-BoxFolderBase }
+ .suffix = Зелёная
+ .desc = { ent-BoxFolderBase.desc }
+ent-BoxFolderCentCom = папка Центком
+ .desc = Жалкая кучка секретов Центком!
+ .suffix = НЕ МАППИТЬ
ent-BoxFolderClipboard = планшет
.desc = Оружие тех, кто действует на передовой бюрократии.
+ent-BoxFolderCentComClipboard = планшет Центком
+ .desc = Роскошный планшет, обитый зеленым бархатом. Представители Центком часто носят его с собой, но редко используют.
ent-BoxFolderQmClipboard = цифровой планшет заявок
.desc = Громоздкий цифровой планшет, содержащий информацию о поставках и финансовых операциях. При таком количестве компрометирующих документов его следует беречь.
ent-RubberStampBase = универсальная печать
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl
index 57f4be458bf..c10ef113490 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl
@@ -110,7 +110,7 @@ ent-FloorTileItemGratingMaint = решётчатый технический по
.desc = { ent-FloorTileItemBase.desc }
ent-FloorTileItemWeb = паутинный пол
.desc = { ent-FloorTileItemBase.desc }
-ent-FloorTileItemAstroGrass = astro-grass
- .desc = Fake grass that covers up wires and even comes with realistic NanoTrimmings!
-ent-FloorTileItemAstroIce = astro-ice
- .desc = Fake ice that's as slippery as the real thing, while being easily removable!
+ent-FloorTileItemAstroGrass = астро-трава
+ .desc = Искусственная трава, отлично прячущая провода, поставляется с реалистичными НаноТравинками!
+ent-FloorTileItemAstroIce = астро-лёд
+ .desc = Искусственный лёд, такой же скользкий, как настоящий, и при этом легко снимается!
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl
index 48c25761f7b..348ab7bb7a8 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl
@@ -7,6 +7,8 @@ ent-LightBulb = лампа накаливания
ent-LightBulbBroken = лампа накаливания
.desc = Обычная лампочка.
.suffix = Сломанный
+ent-ServiceLightBulb = сервисная лампочка
+ .desc = Тусклая зелёная лампочка, используемая в лампах вызова уборщика.
ent-LightTube = люминесцентная лампа-трубка
.desc = Это световая трубка.
ent-LightTubeBroken = люминесцентная лампа-трубка
@@ -18,15 +20,15 @@ ent-ExteriorLightTube = экстерьерная лампа-трубка
.desc = Мощная энергосберегающая лампа для космических глубин. Может содержать ртуть.
ent-SodiumLightTube = натриевая лампа-трубка
.desc = Мощная энергосберегающая лампа для космических глубин. Солёная.
-ent-LightTubeCrystalCyan = cyan crystal light tube
- .desc = A high power high energy bulb which has a small colored crystal inside.
-ent-LightTubeCrystalBlue = blue crystal light tube
+ent-LightTubeCrystalCyan = голубая кристальная лампа-трубка
+ .desc = Мощная лампа, внутри которой находится маленький цветной кристалл.
+ent-LightTubeCrystalBlue = синяя кристальная лампа-трубка
.desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalPink = pink crystal light tube
+ent-LightTubeCrystalPink = розовая кристальная лампа-трубка
.desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalOrange = orange crystal light tube
+ent-LightTubeCrystalOrange = оранжевая кристальная лампа-трубка
.desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalRed = red crystal light tube
+ent-LightTubeCrystalRed = красная кристальная лампа-трубка
.desc = { ent-LightTubeCrystalCyan.desc }
-ent-LightTubeCrystalGreen = green crystal light tube
+ent-LightTubeCrystalGreen = зелёная кристальная лампа-трубка
.desc = { ent-LightTubeCrystalCyan.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chapel/urn.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chapel/urn.ftl
index 48051f0a425..f3d48ce5e2b 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chapel/urn.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chapel/urn.ftl
@@ -1,2 +1,2 @@
-ent-Urn = Urn
- .desc = Store the Dead smart and Compact since 2300
+ent-Urn = урна
+ .desc = Хранит усопших умно и компактно с 2300 года.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
index 4758f08d8aa..80f587cb7ed 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-vials.ftl
@@ -1,2 +1,4 @@
-ent-BaseChemistryEmptyVial = vial
- .desc = A small vial.
+ent-BaseChemistryEmptyVial = пробирка
+ .desc = Маленькая пробирка.
+ent-VestineChemistryVial = пробирка вестина
+ .desc = { ent-BaseChemistryEmptyVial.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
index c7e4e2c42b4..6bb2d92234c 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl
@@ -130,3 +130,5 @@ ent-SyringeSaline = шприц физраствора
.desc = { ent-BaseSyringe.desc }
ent-SyringeRomerol = шприц ромерола
.desc = { ent-BaseSyringe.desc }
+ent-SyringeStimulants = шприц стимулятора
+ .desc = { ent-BaseSyringe.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mining/ore_bag.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mining/ore_bag.ftl
index 4d4dc5ecc57..2d456265b26 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mining/ore_bag.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mining/ore_bag.ftl
@@ -1,2 +1,2 @@
ent-OreBag = сумка для руды
- .desc = Прочная сумка для специалистов по утилизации и шахтеров для переноски больших объемов руды.
+ .desc = Прочная сумка для утилизаторов и шахтёров, для переноски больших объемов руды.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl
new file mode 100644
index 00000000000..269fa4bde75
--- /dev/null
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/salvage/ore_bag_holding.ftl
@@ -0,0 +1,3 @@
+ent-OreBagOfHolding = сумка хранения для руды
+ .desc = Прочная сумка для утилизаторов-миллиардеров и шахтёров-богачей, для переноски больших объёмов руды. Будучи закреплённой на поясе, она притягивает к себе находящуюся поблизости руду.
+
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl
index 5fecb38278c..2699c7ddd57 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl
@@ -6,8 +6,8 @@ ent-BaseWeaponBatterySmall = { ent-BaseWeaponBattery }
.desc = { ent-BaseWeaponBattery.desc }
ent-BaseWeaponPowerCellSmall = { ent-BaseWeaponPowerCell }
.desc = { ent-BaseWeaponPowerCell.desc }
-ent-WeaponLaserSvalinn = svalinn laser pistol
- .desc = A cheap and widely used laser pistol.
+ent-WeaponLaserSvalinn = лазерный пистолет Свалинн
+ .desc = Дешёвый и широко распространенный лазерный пистолет.
ent-WeaponLaserGun = старомодный лазерный бластер
.desc = Оружие, использующее свет, усиленный излучением радиации.
.suffix = Пистолет
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/decoration/crystals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/decoration/crystals.ftl
index d947aba4e63..8aa08b8694e 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/decoration/crystals.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/decoration/crystals.ftl
@@ -1,18 +1,18 @@
-ent-CrystalGreen = зелёный кристалл
+ent-CrystalGreen = кристалл
.desc = Блестящий зеленый кристалл.
- .suffix = green
-ent-CrystalPink = розовый кристалл
- .desc = Блестящий розовый кристалл.
- .suffix = pink
-ent-CrystalGrey = серый кристалл
- .desc = Блестящий серый кристалл.
- .suffix = red
-ent-CrystalOrange = оранжевый кристалл
- .desc = Блестящий оранжевый кристалл.
- .suffix = orange
-ent-CrystalBlue = синий кристалл
- .desc = Блестящий синий кристалл.
- .suffix = blue
-ent-CrystalCyan = голубой кристалл
- .desc = Блестящий голубой кристалл.
- .suffix = cyan
+ .suffix = Зелёный
+ent-CrystalPink = { ent-CrystalGreen }
+ .desc = { ent-CrystalGreen.desc }
+ .suffix = Розовый
+ent-CrystalGrey = { ent-CrystalGreen }
+ .desc = { ent-CrystalGreen.desc }
+ .suffix = Красный
+ent-CrystalOrange = { ent-CrystalGreen }
+ .desc = { ent-CrystalGreen.desc }
+ .suffix = Оранжевый
+ent-CrystalBlue = { ent-CrystalGreen }
+ .desc = { ent-CrystalGreen.desc }
+ .suffix = Синий
+ent-CrystalCyan = { ent-CrystalGreen }
+ .desc = { ent-CrystalGreen.desc }
+ .suffix = Голубой
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
index b0e0e16cddb..9e13bdfdd07 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/external.ftl
@@ -1,5 +1,5 @@
ent-AirlockExternal = { ent-Airlock }
- .desc = Он открывается, он закрывается, он может раздавить вас, а за ним лишь космос. Активируется вручную.
+ .desc = Он открывается, он закрывается, он может раздавить вас, а за ним лишь космос.
.suffix = Внешний
ent-AirlockExternalGlass = { ent-AirlockExternal }
.suffix = Внешний, Стеклянный
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
index 913893fa366..d1755f89fe6 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl
@@ -48,15 +48,15 @@ ent-PottedPlant23 = { ent-PottedPlantBase }
.desc = { ent-PottedPlantBase.desc }
ent-PottedPlant24 = { ent-PottedPlantBase }
.desc = { ent-PottedPlantBase.desc }
-ent-PottedPlant26 = комнатное пластиковое растение
- .desc = Искусственное, дешёвое на вид, пластиковое деревце. Идеально подходит тем, кто убивает все растения, которых касаются.
-ent-PottedPlant27 = { ent-PottedPlant26 }
- .desc = { ent-PottedPlant26.desc }
-ent-PottedPlant28 = { ent-PottedPlant26 }
- .desc = { ent-PottedPlant26.desc }
-ent-PottedPlant29 = { ent-PottedPlant26 }
- .desc = { ent-PottedPlant26.desc }
ent-PottedPlantRD = комнатное растение научрука
.desc = Подарок от сотрудников ботанического отдела, презентованный после переназначения научрука. На нем висит бирка с надписью "Возвращайся, слышишь?". Выглядит не очень здоровым...
-ent-PottedPlantBioluminscent = комнатное биолюминесцентное растение
- .desc = Оно светится!
+ent-PottedPlant26 = { ent-PottedPlantBase }
+ .desc = Мне показалось, или оно подмигнуло?
+ent-PottedPlant27 = plastic potted plant
+ .desc = Искусственное, дешёвое на вид, пластиковое деревце. Идеально подходит тем, кто убивает все растения, которых касаются.
+ent-PottedPlant28 = { ent-PottedPlant27 }
+ .desc = { ent-PottedPlant27.desc }
+ent-PottedPlant29 = { ent-PottedPlant27 }
+ .desc = { ent-PottedPlant27.desc }
+ent-PottedPlant30 = { ent-PottedPlant27 }
+ .desc = { ent-PottedPlant27.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl
index 3e81369a9ba..a2e4d1f5079 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl
@@ -4,5 +4,5 @@ ent-LogicGate = логический элемент
.desc = Логический элемент с двумя портами на вход и одним на выход, можно изменить логическую операцию с помощью отвёртки.
ent-EdgeDetector = детектор сигнала
.desc = Определяет уровень сигнала и разделяет его. Устройство игнорирует импульсные сигналы.
-ent-PowerSensor = power sensor
- .desc = Generates signals in response to powernet changes. Can be cycled between cable voltages.
+ent-PowerSensor = датчик питания
+ .desc = Генерирует сигналы в ответ на изменение напряжения в сети. Может циклически переключаться между напряжениями кабеля.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
index 1b6735d5978..bb28b39a9e0 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/base_structureclosets.ftl
@@ -1,5 +1,7 @@
ent-ClosetBase = шкаф
.desc = Стандартное хранилище Nanotrasen.
+ent-ClosetSteelBase = { ent-ClosetBase }
+ .desc = { ent-ClosetBase.desc }
ent-BaseWallCloset = настенный шкаф
.desc = Стандартное хранилище Nanotrasen, теперь и на стене.
ent-BaseWallLocker = { ent-BaseWallCloset }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl
new file mode 100644
index 00000000000..5903678bbc4
--- /dev/null
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/screen.ftl
@@ -0,0 +1,4 @@
+ent-Screen = экран
+ .desc = Отображает текст или время.
+ent-ArrivalsShuttleTimer = экран прибытия
+ .desc = { ent-Screen.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl
new file mode 100644
index 00000000000..e350adc8009
--- /dev/null
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/service_light.ftl
@@ -0,0 +1,2 @@
+ent-JanitorServiceLight = лампа вызова уборщика
+ .desc = Настенный знак призыва уборщика. Если лампочка мигает - необходима уборка.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
index 2e4fdade7cf..11aa8af200c 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl
@@ -17,6 +17,9 @@ ent-IronRockMining = железный камень
.suffix = Высокое содержание руды
ent-WallRock = камень
.desc = { ent-BaseStructure.desc }
+ent-WallRockCoal = { ent-WallRock }
+ .desc = Рудная жила, богатая углём.
+ .suffix = Уголь
ent-WallRockGold = { ent-WallRock }
.desc = Рудная жила, богатая золотом.
.suffix = Золото
@@ -43,6 +46,9 @@ ent-WallRockArtifactFragment = { ent-WallRock }
.suffix = Фрагмент артефакта
ent-WallRockBasalt = базальт
.desc = { ent-WallRock.desc }
+ent-WallRockBasaltCoal = { ent-WallRockBasalt }
+ .desc = Рудная жила, богатая углём.
+ .suffix = Уголь
ent-WallRockBasaltGold = { ent-WallRockBasalt }
.desc = Рудная жила, богатая золотом.
.suffix = Золото
@@ -69,6 +75,9 @@ ent-WallRockBasaltArtifactFragment = { ent-WallRockBasalt }
.suffix = Фрагмент артефакта
ent-WallRockSnow = сугроб
.desc = { ent-WallRock.desc }
+ent-WallRockSnowCoal = { ent-WallRockSnow }
+ .desc = Рудная жила, богатая углём.
+ .suffix = Уголь
ent-WallRockSnowGold = { ent-WallRockSnow }
.desc = Рудная жила, богатая золотом.
.suffix = Золото
@@ -95,6 +104,9 @@ ent-WallRockSnowArtifactFragment = { ent-WallRockSnow }
.suffix = Фрагмент артефакта
ent-WallRockSand = песчаник
.desc = { ent-WallRock.desc }
+ent-WallRockSandCoal = { ent-WallRockSand }
+ .desc = Рудная жила, богатая углём.
+ .suffix = Уголь
ent-WallRockSandGold = { ent-WallRockSand }
.desc = Рудная жила, богатая золотом.
.suffix = Золото
@@ -121,6 +133,9 @@ ent-WallRockSandArtifactFragment = { ent-WallRockSand }
.suffix = Фрагмент артефакта
ent-WallRockChromite = хромит
.desc = { ent-WallRock.desc }
+ent-WallRockChromiteCoal = { ent-WallRockChromite }
+ .desc = Рудная жила, богатая углём.
+ .suffix = Уголь
ent-WallRockChromiteGold = { ent-WallRockChromite }
.desc = Рудная жила, богатая золотом.
.suffix = Золото
@@ -147,6 +162,9 @@ ent-WallRockChromiteArtifactFragment = { ent-WallRockChromite }
.suffix = Фрагмент артефакта
ent-WallRockAndesite = андезит
.desc = { ent-WallRock.desc }
+ent-WallRockAndesiteCoal = { ent-WallRockAndesite }
+ .desc = Рудная жила, богатая углём.
+ .suffix = Уголь
ent-WallRockAndesiteGold = { ent-WallRockAndesite }
.desc = Рудная жила, богатая золотом.
.suffix = Золото
diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl
index 3772dba6bb0..787462c7821 100644
--- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl
+++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl
@@ -43,7 +43,7 @@ uplink-emp-grenade-desc = Граната, предназначенная для
uplink-exploding-pen-name = Взрывающаяся ручка
uplink-exploding-pen-desc = Взрывное устройство класса IV, помещённое в стандартную ручку. Снабжено 4-секундным таймером.
uplink-exploding-syndicate-bomb-name = Бомба Синдиката
-uplink-exploding-syndicate-bomb-desc = Большая, закрепляемая на месте бомба, которая произведёт мощный взрыв, если её вовремя не обезвредить. Применяется в качестве отвлекающего маневра. Имеет регулируемый таймер взрыва, с минимальной настройкой в 120 секунд.
+uplink-exploding-syndicate-bomb-desc = Большая, закрепляемая на месте бомба, которая произведёт мощный взрыв, если её вовремя не обезвредить. Имеет регулируемый таймер взрыва, с минимальной настройкой в 120 секунд.
uplink-cluster-grenade-name = Кластерная граната
uplink-cluster-grenade-desc = Три разрывные гранаты, соединённые вместе, срабатывают после истечения 3,5-секундного таймера.
uplink-incendiary-grenade-name = Зажигательная граната
@@ -120,6 +120,8 @@ uplink-micro-bomb-implanter-desc = Взрывается при ручной ак
# Bundles
uplink-emp-kit-name = Набор отключения электричества
uplink-emp-kit-desc = Ультимативное противодействие энергетическому оружию: Выводит из строя станнеры, разряжает дубинки-шокеры, садит лазерное оружие! Содержит 3 ЭМИ гранаты и имплантер ЭМИ. Примечание: не выводит из строя настоящее огнестрельное оружие.
+uplink-chemistry-kit-name = Набор химического синтеза
+uplink-chemistry-kit-desc = Стартовый набор начинающего химика, включающий токсин и вестин для всех ваших преступных нужд!
# Bundles
uplink-meds-bundle-name = Медицинский набор
uplink-meds-bundle-desc = Все, что нужно для возвращения в строй ваших товарищей: главным образом, боевая аптечка, дефибриллятор и три боевых медипена.
diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml
index 28930c676f8..86939d465f2 100644
--- a/Resources/Maps/Misc/terminal.yml
+++ b/Resources/Maps/Misc/terminal.yml
@@ -1123,6 +1123,28 @@ entities:
- pos: 2.5,3.5
parent: 818
type: Transform
+- proto: ArrivalsShuttleTimer
+ entities:
+ - uid: 597
+ components:
+ - pos: -7.5,-5.5
+ parent: 818
+ type: Transform
+ - uid: 633
+ components:
+ - pos: 6.5,-5.5
+ parent: 818
+ type: Transform
+ - uid: 928
+ components:
+ - pos: -6.5,-14.5
+ parent: 818
+ type: Transform
+ - uid: 929
+ components:
+ - pos: 5.5,-14.5
+ parent: 818
+ type: Transform
- proto: AtmosDeviceFanTiny
entities:
- uid: 296
diff --git a/Resources/Maps/Shuttles/arrivals.yml b/Resources/Maps/Shuttles/arrivals.yml
index 428300c3456..2e53397284a 100644
--- a/Resources/Maps/Shuttles/arrivals.yml
+++ b/Resources/Maps/Shuttles/arrivals.yml
@@ -44,6 +44,8 @@ entities:
type: BecomesStation
- type: OccluderTree
- type: Shuttle
+ - type: DeviceNetwork
+ transmitFrequencyId: ArrivalsShuttleTimer
- gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
type: Gravity
@@ -233,6 +235,18 @@ entities:
pos: -0.5,3.5
parent: 292
type: Transform
+- proto: ArrivalsShuttleTimer
+ entities:
+ - uid: 294
+ components:
+ - pos: -4.5,3.5
+ parent: 292
+ type: Transform
+ - uid: 295
+ components:
+ - pos: 3.5,3.5
+ parent: 292
+ type: Transform
- proto: AtmosDeviceFanTiny
entities:
- uid: 164
diff --git a/Resources/Maps/Shuttles/emergency.yml b/Resources/Maps/Shuttles/emergency.yml
index bdde3fd6cde..59a8a080fde 100644
--- a/Resources/Maps/Shuttles/emergency.yml
+++ b/Resources/Maps/Shuttles/emergency.yml
@@ -35,6 +35,8 @@ entities:
tiles: FwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAXAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
type: MapGrid
- type: Broadphase
+ - type: DeviceNetwork
+ transmitFrequencyId: ShuttleTimer
- angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
@@ -2252,6 +2254,18 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+- proto: Screen
+ entities:
+ - uid: 411
+ components:
+ - pos: -1.5,0.5
+ parent: 410
+ type: Transform
+ - uid: 412
+ components:
+ - pos: -1.5,10.5
+ parent: 410
+ type: Transform
- proto: ShuttleWindow
entities:
- uid: 21
diff --git a/Resources/Maps/Shuttles/emergency_delta.yml b/Resources/Maps/Shuttles/emergency_delta.yml
new file mode 100644
index 00000000000..461b9692df4
--- /dev/null
+++ b/Resources/Maps/Shuttles/emergency_delta.yml
@@ -0,0 +1,4966 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 29: FloorDark
+ 30: FloorDarkDiagonal
+ 34: FloorDarkMono
+ 38: FloorDarkPlastic
+ 48: FloorGrassDark
+ 84: FloorShuttleRed
+ 89: FloorSteel
+ 100: FloorSteelMono
+ 101: FloorSteelOffset
+ 108: FloorWhite
+ 120: Lattice
+ 121: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - name: NT Evac Delta
+ type: MetaData
+ - pos: -0.5625,0.671875
+ parent: invalid
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: VAAAAAAAVAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZQAAAAAAZQAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZQAAAAAAZQAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZQAAAAAAZQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZQAAAAAAZQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZQAAAAAAZQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: WQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 0: -10,2
+ 4: -10,-1
+ 5: -11,-1
+ 6: -12,-1
+ 7: -13,-1
+ 8: -14,-1
+ 23: -11,-9
+ 24: -11,-8
+ 25: -11,-7
+ 26: -14,-9
+ 27: -14,-8
+ 28: -14,-7
+ 29: -14,-6
+ 30: -14,-5
+ 31: -14,-4
+ 32: -11,-4
+ 33: -11,-3
+ 34: -14,-3
+ 61: -7,-9
+ 62: -7,-8
+ 63: -7,-7
+ 64: -7,-6
+ 65: -7,-5
+ 66: -5,-5
+ 67: -5,-6
+ 68: -5,-7
+ 69: -5,-8
+ 70: -5,-9
+ 71: -9,-7
+ 72: -9,-8
+ 73: -9,-9
+ 74: -9,-10
+ 75: -9,-11
+ 76: -7,-11
+ 77: -7,-12
+ 78: -5,-11
+ 79: -5,-12
+ 80: -5,-13
+ 81: -7,-13
+ 82: -7,-14
+ 83: -5,-14
+ 84: -5,-15
+ 85: -7,-15
+ 86: -9,-15
+ 87: -3,-15
+ 88: -3,-14
+ 89: -3,-13
+ 90: -3,-12
+ 91: -3,-11
+ 92: -1,-11
+ 93: -1,-12
+ 94: -1,-13
+ 95: -1,-15
+ 96: -1,-14
+ 97: -1,-9
+ 98: -1,-8
+ 99: -1,-7
+ 100: -1,-6
+ 101: -1,-5
+ 102: -3,-6
+ 103: -3,-5
+ 104: -3,-7
+ 105: -3,-8
+ 106: -3,-9
+ 107: 1,-7
+ 108: 1,-6
+ 109: 1,-5
+ 110: 1,-13
+ 111: 1,-14
+ 126: 1,-15
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 113: -4,7
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 112: -9,7
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 114: -4,5
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 115: -9,5
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 116: -4,6
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 122: -8,7
+ 123: -7,7
+ 124: -6,7
+ 125: -5,7
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 117: -8,5
+ 118: -7,5
+ 119: -6,5
+ 120: -5,5
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 121: -9,6
+ - node:
+ color: '#52B4E996'
+ id: CheckerNESW
+ decals:
+ 47: -14,-11
+ 48: -13,-11
+ 49: -12,-11
+ 50: -11,-11
+ 51: -14,-16
+ 52: -14,-17
+ 53: -13,-17
+ 54: -13,-16
+ 55: -12,-16
+ 56: -12,-17
+ 57: -11,-17
+ 58: -11,-16
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 1: -12,2
+ 2: -13,2
+ 3: -14,2
+ 19: -12,-9
+ 20: -13,-9
+ 21: -11,-6
+ 22: -11,-5
+ 35: -12,-3
+ 36: -13,-3
+ 37: -11,-13
+ 38: -11,-14
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 44: -11,-12
+ 45: -12,-12
+ 46: -13,-12
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 41: -13,-15
+ 42: -12,-15
+ 43: -11,-15
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 59: -14,-14
+ 60: -14,-13
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 39: -14,-12
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 40: -14,-15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 10: -12,-4
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 9: -13,-4
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 12: -12,-8
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 11: -13,-8
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 13: -12,-5
+ 14: -12,-6
+ 15: -12,-7
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 16: -13,-5
+ 17: -13,-6
+ 18: -13,-7
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 30583
+ -1,0:
+ 0: 65535
+ -1,-1:
+ 0: 65535
+ 0,-1:
+ 0: 30583
+ 0,1:
+ 0: 7
+ -4,0:
+ 0: 61166
+ -4,1:
+ 0: 14
+ -3,0:
+ 0: 65535
+ -3,1:
+ 0: 61167
+ -3,2:
+ 0: 238
+ -2,0:
+ 0: 65535
+ -2,1:
+ 0: 65535
+ -2,2:
+ 0: 255
+ -1,1:
+ 0: 30591
+ -1,2:
+ 0: 119
+ -4,-4:
+ 0: 61166
+ -4,-3:
+ 0: 61166
+ -4,-2:
+ 0: 61166
+ -4,-1:
+ 0: 61166
+ -3,-4:
+ 0: 65535
+ -3,-3:
+ 0: 65535
+ -3,-2:
+ 0: 65535
+ -3,-1:
+ 0: 65535
+ -2,-4:
+ 0: 65535
+ -2,-3:
+ 0: 65535
+ -2,-2:
+ 0: 65535
+ -2,-1:
+ 0: 65535
+ -1,-4:
+ 0: 65535
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 65535
+ 0,-4:
+ 0: 30583
+ 0,-3:
+ 0: 30583
+ 0,-2:
+ 0: 30583
+ -4,-5:
+ 0: 61152
+ -3,-5:
+ 0: 65520
+ -2,-6:
+ 0: 65520
+ -2,-5:
+ 0: 65535
+ -1,-6:
+ 0: 65520
+ -1,-5:
+ 0: 65535
+ 0,-6:
+ 0: 30576
+ 0,-5:
+ 0: 30583
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirCanister
+ entities:
+ - uid: 326
+ components:
+ - pos: -13.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 445
+ components:
+ - pos: -1.5,-18.5
+ parent: 1
+ type: Transform
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 70
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 71
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 78
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 79
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 81
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,2.5
+ parent: 1
+ type: Transform
+- proto: AirlockEngineeringGlassLocked
+ entities:
+ - uid: 292
+ components:
+ - pos: -2.5,-17.5
+ parent: 1
+ type: Transform
+- proto: AirlockExternalGlassEasyPry
+ entities:
+ - uid: 91
+ components:
+ - pos: -9.5,1.5
+ parent: 1
+ type: Transform
+- proto: AirlockExternalGlassLocked
+ entities:
+ - uid: 111
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 112
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 433
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 581
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-20.5
+ parent: 1
+ type: Transform
+- proto: AirlockGlass
+ entities:
+ - uid: 671
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 672
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-4.5
+ parent: 1
+ type: Transform
+- proto: AirlockGlassShuttleEasyPry
+ entities:
+ - uid: 3
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 260
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 473
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 474
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+- proto: AirlockMedicalGlass
+ entities:
+ - uid: 346
+ components:
+ - pos: -9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 347
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 665
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 666
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-12.5
+ parent: 1
+ type: Transform
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 35
+ components:
+ - pos: 0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 36
+ components:
+ - pos: -3.5,0.5
+ parent: 1
+ type: Transform
+- proto: APCBasic
+ entities:
+ - uid: 2
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 39
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 119
+ components:
+ - pos: -10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 348
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 351
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 585
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 717
+ components:
+ - pos: -4.5,-17.5
+ parent: 1
+ type: Transform
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 583
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 658
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 659
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 696
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 763
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 764
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+- proto: BorgCharger
+ entities:
+ - uid: 270
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 271
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-2.5
+ parent: 1
+ type: Transform
+- proto: BoxFlare
+ entities:
+ - uid: 285
+ components:
+ - pos: -13.337719,-7.4710283
+ parent: 1
+ type: Transform
+- proto: BoxFolderBlue
+ entities:
+ - uid: 258
+ components:
+ - pos: -8.420452,8.586648
+ parent: 1
+ type: Transform
+- proto: CableApcExtension
+ entities:
+ - uid: 40
+ components:
+ - pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 42
+ components:
+ - pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 43
+ components:
+ - pos: 1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 44
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 45
+ components:
+ - pos: -0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 46
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 47
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 48
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 49
+ components:
+ - pos: -0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 50
+ components:
+ - pos: -2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 51
+ components:
+ - pos: -2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 52
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 53
+ components:
+ - pos: 1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 54
+ components:
+ - pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 55
+ components:
+ - pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 56
+ components:
+ - pos: -0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 57
+ components:
+ - pos: 0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 58
+ components:
+ - pos: 2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 59
+ components:
+ - pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 66
+ components:
+ - pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 120
+ components:
+ - pos: -10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 121
+ components:
+ - pos: -10.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 122
+ components:
+ - pos: -11.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 123
+ components:
+ - pos: -12.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 124
+ components:
+ - pos: -13.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 125
+ components:
+ - pos: -10.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 126
+ components:
+ - pos: -9.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 127
+ components:
+ - pos: -11.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 128
+ components:
+ - pos: -12.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 129
+ components:
+ - pos: -13.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 130
+ components:
+ - pos: -14.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 131
+ components:
+ - pos: -12.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 132
+ components:
+ - pos: -13.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 133
+ components:
+ - pos: -14.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 134
+ components:
+ - pos: -10.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 135
+ components:
+ - pos: -9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 226
+ components:
+ - pos: -1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 227
+ components:
+ - pos: -2.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 228
+ components:
+ - pos: -3.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 229
+ components:
+ - pos: -4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 230
+ components:
+ - pos: -5.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 231
+ components:
+ - pos: -6.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 232
+ components:
+ - pos: -7.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 233
+ components:
+ - pos: -8.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 234
+ components:
+ - pos: -9.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 235
+ components:
+ - pos: -9.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 236
+ components:
+ - pos: -9.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 237
+ components:
+ - pos: -8.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 238
+ components:
+ - pos: -7.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 239
+ components:
+ - pos: -6.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 240
+ components:
+ - pos: -5.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 241
+ components:
+ - pos: -4.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 242
+ components:
+ - pos: -3.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 243
+ components:
+ - pos: -2.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 244
+ components:
+ - pos: -2.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 245
+ components:
+ - pos: -4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 246
+ components:
+ - pos: -7.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 356
+ components:
+ - pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 357
+ components:
+ - pos: -10.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 358
+ components:
+ - pos: -11.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 359
+ components:
+ - pos: -11.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 360
+ components:
+ - pos: -11.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 361
+ components:
+ - pos: -11.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 362
+ components:
+ - pos: -11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 363
+ components:
+ - pos: -11.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 364
+ components:
+ - pos: -12.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 365
+ components:
+ - pos: -13.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 366
+ components:
+ - pos: -13.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 367
+ components:
+ - pos: -13.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 368
+ components:
+ - pos: -13.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 369
+ components:
+ - pos: -13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 370
+ components:
+ - pos: -12.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 371
+ components:
+ - pos: -10.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 372
+ components:
+ - pos: -10.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 373
+ components:
+ - pos: -14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 374
+ components:
+ - pos: -13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 375
+ components:
+ - pos: -12.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 376
+ components:
+ - pos: -12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 377
+ components:
+ - pos: -12.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 378
+ components:
+ - pos: -12.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 379
+ components:
+ - pos: -12.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 380
+ components:
+ - pos: -12.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 381
+ components:
+ - pos: -11.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 382
+ components:
+ - pos: -10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 383
+ components:
+ - pos: -10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 384
+ components:
+ - pos: -10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 385
+ components:
+ - pos: -10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 386
+ components:
+ - pos: -10.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 387
+ components:
+ - pos: -13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 388
+ components:
+ - pos: -14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 389
+ components:
+ - pos: -14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 390
+ components:
+ - pos: -14.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 391
+ components:
+ - pos: -14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 392
+ components:
+ - pos: -9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 393
+ components:
+ - pos: -9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 434
+ components:
+ - pos: 2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 576
+ components:
+ - pos: 1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 587
+ components:
+ - pos: -7.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 596
+ components:
+ - pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 597
+ components:
+ - pos: -6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 598
+ components:
+ - pos: -7.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 599
+ components:
+ - pos: -7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 600
+ components:
+ - pos: -7.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 601
+ components:
+ - pos: -7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 602
+ components:
+ - pos: -7.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 603
+ components:
+ - pos: -7.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 604
+ components:
+ - pos: -7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 605
+ components:
+ - pos: -7.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 606
+ components:
+ - pos: -7.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 607
+ components:
+ - pos: -7.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 608
+ components:
+ - pos: -7.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 609
+ components:
+ - pos: -7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 610
+ components:
+ - pos: -6.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 611
+ components:
+ - pos: -5.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 612
+ components:
+ - pos: -4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 613
+ components:
+ - pos: -3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 614
+ components:
+ - pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 615
+ components:
+ - pos: -3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 616
+ components:
+ - pos: -3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 617
+ components:
+ - pos: -3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 618
+ components:
+ - pos: -3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 619
+ components:
+ - pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 620
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 621
+ components:
+ - pos: -3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 622
+ components:
+ - pos: -3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 623
+ components:
+ - pos: -3.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 624
+ components:
+ - pos: -3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 625
+ components:
+ - pos: -3.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 626
+ components:
+ - pos: -4.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 627
+ components:
+ - pos: -6.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 628
+ components:
+ - pos: -5.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 629
+ components:
+ - pos: -2.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 630
+ components:
+ - pos: -1.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 631
+ components:
+ - pos: -0.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 632
+ components:
+ - pos: 0.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 633
+ components:
+ - pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 634
+ components:
+ - pos: 0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 635
+ components:
+ - pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 636
+ components:
+ - pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 637
+ components:
+ - pos: 0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 638
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 639
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 640
+ components:
+ - pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 641
+ components:
+ - pos: -2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 642
+ components:
+ - pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 643
+ components:
+ - pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 644
+ components:
+ - pos: -6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 645
+ components:
+ - pos: 0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 646
+ components:
+ - pos: 0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 647
+ components:
+ - pos: 0.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 648
+ components:
+ - pos: 0.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 649
+ components:
+ - pos: 0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 650
+ components:
+ - pos: 0.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 651
+ components:
+ - pos: -0.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 652
+ components:
+ - pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 653
+ components:
+ - pos: -2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 654
+ components:
+ - pos: 2.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 655
+ components:
+ - pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 656
+ components:
+ - pos: 1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 675
+ components:
+ - pos: 2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 718
+ components:
+ - pos: -4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 719
+ components:
+ - pos: -4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 720
+ components:
+ - pos: -5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 721
+ components:
+ - pos: -6.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 722
+ components:
+ - pos: -7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 723
+ components:
+ - pos: -8.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 724
+ components:
+ - pos: -9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 725
+ components:
+ - pos: -10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 726
+ components:
+ - pos: -11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 727
+ components:
+ - pos: -12.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 728
+ components:
+ - pos: -13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 731
+ components:
+ - pos: 1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 732
+ components:
+ - pos: 0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 733
+ components:
+ - pos: -0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 734
+ components:
+ - pos: -1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 735
+ components:
+ - pos: -2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 736
+ components:
+ - pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 752
+ components:
+ - pos: -12.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 753
+ components:
+ - pos: -11.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 754
+ components:
+ - pos: -13.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 755
+ components:
+ - pos: -14.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 756
+ components:
+ - pos: 0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 757
+ components:
+ - pos: -0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 758
+ components:
+ - pos: 1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 759
+ components:
+ - pos: 2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 760
+ components:
+ - pos: 2.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 769
+ components:
+ - pos: -1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 770
+ components:
+ - pos: -1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 771
+ components:
+ - pos: -3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 772
+ components:
+ - pos: -3.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 775
+ components:
+ - pos: -1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 776
+ components:
+ - pos: -1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 777
+ components:
+ - pos: -2.5,-22.5
+ parent: 1
+ type: Transform
+- proto: CableHV
+ entities:
+ - uid: 578
+ components:
+ - pos: 0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 579
+ components:
+ - pos: 0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 661
+ components:
+ - pos: 0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 687
+ components:
+ - pos: -0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 688
+ components:
+ - pos: -0.5,-20.5
+ parent: 1
+ type: Transform
+- proto: CableMV
+ entities:
+ - uid: 67
+ components:
+ - pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 68
+ components:
+ - pos: 0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 136
+ components:
+ - pos: -10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 137
+ components:
+ - pos: -9.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 138
+ components:
+ - pos: -9.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 139
+ components:
+ - pos: -8.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 140
+ components:
+ - pos: -7.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 141
+ components:
+ - pos: -6.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 142
+ components:
+ - pos: -6.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 143
+ components:
+ - pos: -6.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 144
+ components:
+ - pos: -6.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 145
+ components:
+ - pos: -6.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 146
+ components:
+ - pos: -5.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 147
+ components:
+ - pos: -4.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 148
+ components:
+ - pos: -3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 149
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 150
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 151
+ components:
+ - pos: -0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 152
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 153
+ components:
+ - pos: 1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 154
+ components:
+ - pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 155
+ components:
+ - pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 156
+ components:
+ - pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 160
+ components:
+ - pos: -5.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 202
+ components:
+ - pos: -6.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 203
+ components:
+ - pos: -6.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 204
+ components:
+ - pos: -6.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 205
+ components:
+ - pos: -5.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 206
+ components:
+ - pos: -4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 207
+ components:
+ - pos: -3.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 208
+ components:
+ - pos: -2.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 209
+ components:
+ - pos: -1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 210
+ components:
+ - pos: -1.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 211
+ components:
+ - pos: -1.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 212
+ components:
+ - pos: -6.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 213
+ components:
+ - pos: -6.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 214
+ components:
+ - pos: -6.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 215
+ components:
+ - pos: -6.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 216
+ components:
+ - pos: -7.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 217
+ components:
+ - pos: -8.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 218
+ components:
+ - pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 219
+ components:
+ - pos: -4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 220
+ components:
+ - pos: -3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 221
+ components:
+ - pos: -7.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 222
+ components:
+ - pos: -8.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 223
+ components:
+ - pos: -9.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 224
+ components:
+ - pos: -10.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 225
+ components:
+ - pos: -10.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 266
+ components:
+ - pos: -13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 282
+ components:
+ - pos: -12.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 293
+ components:
+ - pos: -6.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 294
+ components:
+ - pos: -6.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 295
+ components:
+ - pos: -6.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 296
+ components:
+ - pos: -7.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 297
+ components:
+ - pos: -8.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 298
+ components:
+ - pos: -9.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 299
+ components:
+ - pos: -10.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 300
+ components:
+ - pos: -11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 301
+ components:
+ - pos: -12.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 302
+ components:
+ - pos: -12.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 303
+ components:
+ - pos: -12.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 304
+ components:
+ - pos: -12.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 305
+ components:
+ - pos: -12.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 307
+ components:
+ - pos: -11.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 308
+ components:
+ - pos: -10.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 311
+ components:
+ - pos: -14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 312
+ components:
+ - pos: -14.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 313
+ components:
+ - pos: -14.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 314
+ components:
+ - pos: -14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 315
+ components:
+ - pos: -14.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 349
+ components:
+ - pos: -10.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 350
+ components:
+ - pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 352
+ components:
+ - pos: -12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 353
+ components:
+ - pos: -12.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 354
+ components:
+ - pos: -13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 355
+ components:
+ - pos: -14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 577
+ components:
+ - pos: 0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 584
+ components:
+ - pos: -11.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 586
+ components:
+ - pos: -12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 589
+ components:
+ - pos: -10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 590
+ components:
+ - pos: -9.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 591
+ components:
+ - pos: -8.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 592
+ components:
+ - pos: -7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 593
+ components:
+ - pos: -6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 594
+ components:
+ - pos: -6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 595
+ components:
+ - pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 657
+ components:
+ - pos: -1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 660
+ components:
+ - pos: -0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 670
+ components:
+ - pos: -4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 673
+ components:
+ - pos: -4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 685
+ components:
+ - pos: 0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 686
+ components:
+ - pos: 0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 693
+ components:
+ - pos: -4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 694
+ components:
+ - pos: -3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 695
+ components:
+ - pos: -2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 737
+ components:
+ - pos: -6.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 738
+ components:
+ - pos: -6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 739
+ components:
+ - pos: -6.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 740
+ components:
+ - pos: -5.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 741
+ components:
+ - pos: -4.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 742
+ components:
+ - pos: -4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 743
+ components:
+ - pos: -4.5,-17.5
+ parent: 1
+ type: Transform
+- proto: Catwalk
+ entities:
+ - uid: 706
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 708
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 715
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 716
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 730
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 761
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 765
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 766
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 767
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 768
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 778
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 779
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-18.5
+ parent: 1
+ type: Transform
+- proto: ChairOfficeDark
+ entities:
+ - uid: 195
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 196
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 197
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 198
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,7.5
+ parent: 1
+ type: Transform
+- proto: ChairPilotSeat
+ entities:
+ - uid: 24
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 27
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 28
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 29
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 31
+ components:
+ - pos: 0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 32
+ components:
+ - pos: -0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 33
+ components:
+ - pos: -1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 34
+ components:
+ - pos: -2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 108
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 109
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 110
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -12.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 493
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 494
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 495
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 496
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 497
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 498
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 499
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 500
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 501
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 502
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 503
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 504
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 505
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 506
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 507
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 508
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 509
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 510
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 511
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 512
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 518
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 519
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 520
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 521
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 522
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 523
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 524
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 525
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 526
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 527
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 538
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 539
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 540
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 541
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 542
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 543
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 544
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 545
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 546
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 547
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 548
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 549
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 550
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 551
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 552
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 555
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 558
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 559
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 560
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 561
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 562
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 563
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 676
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 681
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 691
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-21.5
+ parent: 1
+ type: Transform
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 321
+ components:
+ - pos: -10.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 554
+ components:
+ - pos: -8.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 556
+ components:
+ - pos: -8.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 567
+ components:
+ - pos: 1.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 683
+ components:
+ - pos: -4.5,-18.5
+ parent: 1
+ type: Transform
+- proto: ClosetFireFilled
+ entities:
+ - uid: 306
+ components:
+ - pos: -13.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 553
+ components:
+ - pos: -8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 568
+ components:
+ - pos: 1.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 574
+ components:
+ - pos: -7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 575
+ components:
+ - pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+- proto: ClothingBackpackDuffelSurgeryFilled
+ entities:
+ - uid: 416
+ components:
+ - pos: -13.493203,-16.354408
+ parent: 1
+ type: Transform
+- proto: ClothingHeadHatHardhatYellow
+ entities:
+ - uid: 800
+ components:
+ - pos: -10.406327,-3.1185083
+ parent: 1
+ type: Transform
+- proto: ClothingMaskGas
+ entities:
+ - uid: 798
+ components:
+ - pos: -10.630073,-3.4031057
+ parent: 1
+ type: Transform
+- proto: computerBodyScanner
+ entities:
+ - uid: 418
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-16.5
+ parent: 1
+ type: Transform
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 421
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-14.5
+ parent: 1
+ type: Transform
+- proto: ComputerEmergencyShuttle
+ entities:
+ - uid: 188
+ components:
+ - pos: -5.5,8.5
+ parent: 1
+ type: Transform
+- proto: ComputerId
+ entities:
+ - uid: 189
+ components:
+ - pos: -6.5,8.5
+ parent: 1
+ type: Transform
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 191
+ components:
+ - pos: -4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 420
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-12.5
+ parent: 1
+ type: Transform
+- proto: ComputerRadar
+ entities:
+ - uid: 190
+ components:
+ - pos: -7.5,8.5
+ parent: 1
+ type: Transform
+- proto: CrateEmergencyInflatablewall
+ entities:
+ - uid: 290
+ components:
+ - pos: -13.5,-5.5
+ parent: 1
+ type: Transform
+- proto: CrateEmergencyInternalsLarge
+ entities:
+ - uid: 288
+ components:
+ - pos: -13.5,-6.5
+ parent: 1
+ type: Transform
+- proto: Crowbar
+ entities:
+ - uid: 785
+ components:
+ - pos: -13.464078,-7.5057697
+ parent: 1
+ type: Transform
+- proto: Defibrillator
+ entities:
+ - uid: 415
+ components:
+ - pos: -10.524453,-16.401283
+ parent: 1
+ type: Transform
+- proto: EncryptionKeyCommon
+ entities:
+ - uid: 444
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 804
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ExtendedEmergencyNitrogenTankFilled
+ entities:
+ - uid: 782
+ components:
+ - pos: -13.539676,-2.3258739
+ parent: 1
+ type: Transform
+- proto: ExtendedEmergencyOxygenTankFilled
+ entities:
+ - uid: 783
+ components:
+ - pos: -13.399051,-2.4508739
+ parent: 1
+ type: Transform
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 114
+ components:
+ - pos: -8.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 419
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 569
+ components:
+ - pos: -5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 571
+ components:
+ - pos: -1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 572
+ components:
+ - pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+- proto: FireAxeCabinetFilled
+ entities:
+ - uid: 175
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,5.5
+ parent: 1
+ type: Transform
+- proto: FuelDispenser
+ entities:
+ - uid: 781
+ components:
+ - pos: -0.5,-17.5
+ parent: 1
+ type: Transform
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 674
+ components:
+ - pos: 0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 689
+ components:
+ - pos: -0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 690
+ components:
+ - pos: -0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 802
+ components:
+ - pos: 0.5,-19.5
+ parent: 1
+ type: Transform
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 803
+ components:
+ - pos: -0.5,-21.5
+ parent: 1
+ type: Transform
+- proto: Grille
+ entities:
+ - uid: 60
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 61
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 62
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 63
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 64
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 65
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 157
+ components:
+ - pos: -14.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 158
+ components:
+ - pos: -14.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 159
+ components:
+ - pos: -12.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 161
+ components:
+ - pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 162
+ components:
+ - pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 247
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 248
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 249
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 250
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 251
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 252
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 253
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 254
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 255
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 256
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 274
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 278
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 316
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 317
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 318
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 319
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 320
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 323
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 399
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 400
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 401
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 402
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 403
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 404
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 427
+ components:
+ - pos: -11.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 428
+ components:
+ - pos: -12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 448
+ components:
+ - pos: -6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 449
+ components:
+ - pos: -8.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 480
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 481
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 482
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 483
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 484
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 684
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 773
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 774
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-22.5
+ parent: 1
+ type: Transform
+- proto: Gyroscope
+ entities:
+ - uid: 805
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-18.5
+ parent: 1
+ type: Transform
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 762
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-16.5
+ parent: 1
+ type: Transform
+- proto: MagazinePistolRubber
+ entities:
+ - uid: 784
+ components:
+ - pos: -2.2705026,-0.47059897
+ parent: 1
+ type: Transform
+- proto: MedicalBed
+ entities:
+ - uid: 409
+ components:
+ - pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 410
+ components:
+ - pos: -10.5,-11.5
+ parent: 1
+ type: Transform
+- proto: MedkitBurnFilled
+ entities:
+ - uid: 425
+ components:
+ - pos: -13.322543,-13.652935
+ parent: 1
+ type: Transform
+- proto: MedkitFilled
+ entities:
+ - uid: 167
+ components:
+ - pos: -2.4709458,4.5597963
+ parent: 1
+ type: Transform
+ - uid: 426
+ components:
+ - pos: -13.541293,-13.465435
+ parent: 1
+ type: Transform
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 424
+ components:
+ - pos: -13.556918,-14.277935
+ parent: 1
+ type: Transform
+ - uid: 668
+ components:
+ - pos: -13.556469,-7.3077974
+ parent: 1
+ type: Transform
+- proto: MedkitToxinFilled
+ entities:
+ - uid: 423
+ components:
+ - pos: -13.369418,-14.44981
+ parent: 1
+ type: Transform
+- proto: OperatingTable
+ entities:
+ - uid: 417
+ components:
+ - pos: -12.5,-16.5
+ parent: 1
+ type: Transform
+- proto: PaperBin10
+ entities:
+ - uid: 117
+ components:
+ - pos: -4.5,2.5
+ parent: 1
+ type: Transform
+- proto: Pen
+ entities:
+ - uid: 118
+ components:
+ - pos: -4.4614916,2.6592817
+ parent: 1
+ type: Transform
+ - uid: 257
+ components:
+ - pos: -8.607952,8.414773
+ parent: 1
+ type: Transform
+- proto: PosterContrabandFunPolice
+ entities:
+ - uid: 795
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+- proto: PosterLegitEnlist
+ entities:
+ - uid: 788
+ components:
+ - pos: 1.5,3.5
+ parent: 1
+ type: Transform
+- proto: PosterLegitHelpOthers
+ entities:
+ - uid: 790
+ components:
+ - pos: -14.5,-16.5
+ parent: 1
+ type: Transform
+- proto: PottedPlantRandom
+ entities:
+ - uid: 115
+ components:
+ - pos: -7.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 116
+ components:
+ - pos: -4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 165
+ components:
+ - pos: -8.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 166
+ components:
+ - pos: -3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 557
+ components:
+ - pos: -8.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 564
+ components:
+ - pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 565
+ components:
+ - pos: 1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 566
+ components:
+ - pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+- proto: PowerCellRecharger
+ entities:
+ - uid: 113
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 168
+ components:
+ - pos: -9.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 269
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 422
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-15.5
+ parent: 1
+ type: Transform
+- proto: Poweredlight
+ entities:
+ - uid: 439
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 441
+ components:
+ - pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 451
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 452
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 454
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 455
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 456
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 457
+ components:
+ - pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 458
+ components:
+ - pos: -1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 459
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 461
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 462
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 463
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 464
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 465
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 467
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 485
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 486
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 487
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 780
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 793
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 794
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 1
+ type: Transform
+- proto: PoweredSmallLight
+ entities:
+ - uid: 450
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 453
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -13.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 460
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,2.5
+ parent: 1
+ type: Transform
+- proto: Rack
+ entities:
+ - uid: 289
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 291
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 796
+ components:
+ - pos: -10.5,-3.5
+ parent: 1
+ type: Transform
+- proto: RandomPosterLegit
+ entities:
+ - uid: 570
+ components:
+ - pos: -5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 580
+ components:
+ - pos: -1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 786
+ components:
+ - pos: -9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 787
+ components:
+ - pos: -7.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 789
+ components:
+ - pos: -3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 791
+ components:
+ - pos: -9.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 792
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 199
+ components:
+ - pos: -9.5,8.5
+ parent: 1
+ type: Transform
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 200
+ components:
+ - pos: -2.5,8.5
+ parent: 1
+ type: Transform
+- proto: ShotGunCabinetFilled
+ entities:
+ - uid: 797
+ components:
+ - pos: -1.5,3.5
+ parent: 1
+ type: Transform
+- proto: ShuttleWindow
+ entities:
+ - uid: 6
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 7
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 11
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 15
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 18
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 19
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 41
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 69
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 100
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 101
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -12.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 102
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 170
+ components:
+ - pos: -1.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 171
+ components:
+ - pos: -10.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 173
+ components:
+ - pos: -10.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 174
+ components:
+ - pos: -1.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 182
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 183
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 184
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 185
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 186
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 187
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 261
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 262
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 263
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 264
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 265
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 267
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 327
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 330
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 331
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 338
+ components:
+ - pos: -11.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 339
+ components:
+ - pos: -12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 342
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 343
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 344
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 345
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 430
+ components:
+ - pos: -8.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 432
+ components:
+ - pos: -6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 469
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 470
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 471
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 478
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 479
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 488
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 490
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 491
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 513
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 514
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 515
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 530
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 531
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 532
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 533
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 534
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 535
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 680
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 710
+ components:
+ - pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 712
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 713
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-19.5
+ parent: 1
+ type: Transform
+- proto: SignBridge
+ entities:
+ - uid: 395
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 396
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+- proto: SignEVA
+ entities:
+ - uid: 394
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,1.5
+ parent: 1
+ type: Transform
+- proto: SignMedical
+ entities:
+ - uid: 397
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 398
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-14.5
+ parent: 1
+ type: Transform
+- proto: Sink
+ entities:
+ - uid: 408
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-15.5
+ parent: 1
+ type: Transform
+- proto: SpawnMobMedibot
+ entities:
+ - uid: 667
+ components:
+ - pos: -11.5,-12.5
+ parent: 1
+ type: Transform
+- proto: StasisBed
+ entities:
+ - uid: 411
+ components:
+ - pos: -13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 412
+ components:
+ - pos: -10.5,-10.5
+ parent: 1
+ type: Transform
+- proto: SubstationBasic
+ entities:
+ - uid: 446
+ components:
+ - pos: 0.5,-21.5
+ parent: 1
+ type: Transform
+- proto: SuitStorageEVA
+ entities:
+ - uid: 104
+ components:
+ - pos: -11.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 105
+ components:
+ - pos: -12.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 106
+ components:
+ - pos: -13.5,2.5
+ parent: 1
+ type: Transform
+- proto: Table
+ entities:
+ - uid: 107
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 268
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-2.5
+ parent: 1
+ type: Transform
+- proto: TableReinforced
+ entities:
+ - uid: 22
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 72
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 73
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 163
+ components:
+ - pos: -9.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 164
+ components:
+ - pos: -2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 192
+ components:
+ - pos: -8.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 193
+ components:
+ - pos: -3.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 405
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 406
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 407
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 413
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 414
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-16.5
+ parent: 1
+ type: Transform
+- proto: TelecomServer
+ entities:
+ - uid: 804
+ components:
+ - pos: -0.5,-18.5
+ parent: 1
+ type: Transform
+ - containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 444
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ type: ContainerContainer
+- proto: Thruster
+ entities:
+ - uid: 438
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 440
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 699
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 701
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -12.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 702
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 703
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 704
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 705
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 707
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-19.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: Thruster
+ - uid: 709
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 711
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 744
+ components:
+ - pos: -11.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 745
+ components:
+ - pos: -12.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 746
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 747
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 748
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 749
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 750
+ components:
+ - pos: 0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 751
+ components:
+ - pos: -0.5,4.5
+ parent: 1
+ type: Transform
+- proto: ToolboxElectricalFilled
+ entities:
+ - uid: 669
+ components:
+ - pos: -13.603344,-8.292172
+ parent: 1
+ type: Transform
+- proto: ToolboxEmergencyFilled
+ entities:
+ - uid: 287
+ components:
+ - pos: -13.322094,-8.573422
+ parent: 1
+ type: Transform
+- proto: ToolboxMechanicalFilled
+ entities:
+ - uid: 664
+ components:
+ - pos: -13.462719,-8.417172
+ parent: 1
+ type: Transform
+- proto: VendingMachineEngivend
+ entities:
+ - uid: 692
+ components:
+ - pos: -4.5,-21.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineSec
+ entities:
+ - uid: 30
+ components:
+ - pos: 1.5,2.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 93
+ components:
+ - pos: -13.5,-0.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineWallMedical
+ entities:
+ - uid: 429
+ components:
+ - pos: -9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 573
+ components:
+ - pos: -5.5,-5.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 322
+ components:
+ - pos: -10.5,-2.5
+ parent: 1
+ type: Transform
+- proto: WallShuttle
+ entities:
+ - uid: 4
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 5
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 8
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 17
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 20
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 21
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 86
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 87
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 88
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 98
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -13.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 99
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 103
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 169
+ components:
+ - pos: -1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 172
+ components:
+ - pos: -10.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 176
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 177
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 180
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 181
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 259
+ components:
+ - pos: -14.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 281
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 286
+ components:
+ - pos: 1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 310
+ components:
+ - pos: -14.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 324
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 325
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 328
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 329
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 334
+ components:
+ - pos: 2.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 335
+ components:
+ - pos: -13.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 336
+ components:
+ - pos: -9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 337
+ components:
+ - pos: -10.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 340
+ components:
+ - pos: -14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 341
+ components:
+ - pos: -14.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 431
+ components:
+ - pos: -7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 435
+ components:
+ - pos: 2.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 436
+ components:
+ - pos: 2.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 443
+ components:
+ - pos: 1.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 447
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 468
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 472
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 475
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 476
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 477
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 582
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 662
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 663
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 697
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 698
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 714
+ components:
+ - pos: 2.5,-22.5
+ parent: 1
+ type: Transform
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 178
+ components:
+ - pos: -10.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 179
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,9.5
+ parent: 1
+ type: Transform
+- proto: WallShuttleInterior
+ entities:
+ - uid: 9
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 10
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 12
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 13
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 14
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 16
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 25
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 26
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 75
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 76
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 77
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 80
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 82
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 83
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 84
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 85
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 89
+ components:
+ - pos: -10.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 90
+ components:
+ - pos: -10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 92
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 94
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 95
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 96
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -12.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 97
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -13.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 201
+ components:
+ - pos: -9.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 272
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 273
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 275
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 276
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 283
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 284
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 309
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 332
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 333
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 437
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 442
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 466
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 489
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 492
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 516
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 517
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 528
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 529
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 536
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 537
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 588
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 678
+ components:
+ - pos: -1.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 679
+ components:
+ - pos: -0.5,-17.5
+ parent: 1
+ type: Transform
+- proto: WaterTankFull
+ entities:
+ - uid: 279
+ components:
+ - pos: -10.5,-6.5
+ parent: 1
+ type: Transform
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 23
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 74
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 194
+ components:
+ - pos: -3.5,8.5
+ parent: 1
+ type: Transform
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 280
+ components:
+ - pos: -10.5,-7.5
+ parent: 1
+ type: Transform
+- proto: WindoorSecureEngineeringLocked
+ entities:
+ - uid: 277
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 677
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 682
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 801
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-21.5
+ parent: 1
+ type: Transform
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 37
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,1.5
+ parent: 1
+ type: Transform
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 38
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 1
+ type: Transform
+- proto: YellowOxygenTankFilled
+ entities:
+ - uid: 799
+ components:
+ - pos: -10.44437,-3.5553346
+ parent: 1
+ type: Transform
+...
diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml
index 7a9af437c7c..b6347cd8791 100644
--- a/Resources/Maps/Shuttles/emergency_transit.yml
+++ b/Resources/Maps/Shuttles/emergency_transit.yml
@@ -23,7 +23,7 @@ entities:
- name: NT Evac Transit
type: MetaData
- pos: -4.3957214,6.3308363
- parent: 161
+ parent: invalid
type: Transform
- chunks:
0,-2:
@@ -430,18 +430,6 @@ entities:
type: GridAtmosphere
- type: GasTileOverlay
- type: GridPathfinding
- - uid: 161
- components:
- - name: map 20
- type: MetaData
- - type: Transform
- - type: Map
- - type: PhysicsMap
- - type: GridTree
- - type: MovedGrids
- - type: Broadphase
- - type: OccluderTree
- - type: LoadedMap
- proto: AirAlarm
entities:
- uid: 3
diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml
index a573ee26459..5431be8ee32 100644
--- a/Resources/Maps/Test/dev_map.yml
+++ b/Resources/Maps/Test/dev_map.yml
@@ -755,6 +755,13 @@ entities:
pos: -5.5,-14.5
parent: 179
type: Transform
+- proto: ArrivalsShuttleTimer
+ entities:
+ - uid: 1191
+ components:
+ - pos: -7.5,5.5
+ parent: 179
+ type: Transform
- proto: AtmosDeviceFanTiny
entities:
- uid: 992
@@ -4815,6 +4822,13 @@ entities:
- pos: -1.235331,4.739151
parent: 179
type: Transform
+- proto: Screen
+ entities:
+ - uid: 1192
+ components:
+ - pos: 4.5,-14.5
+ parent: 179
+ type: Transform
- proto: SeedExtractor
entities:
- uid: 65
diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml
index 0065be3e039..34d4329e0b9 100644
--- a/Resources/Maps/bagel.yml
+++ b/Resources/Maps/bagel.yml
@@ -85,7 +85,7 @@ entities:
version: 6
0,-2:
ind: 0,-2
- tiles: WQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAATAAAAAADeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAADgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAADgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAABDgAAAAAAWQAAAAAAWQAAAAADeQAAAAAASwAAAAADSwAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADSwAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADSwAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAASwAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAD
+ tiles: WQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAATAAAAAADeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAADgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAADgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAABDgAAAAAAWQAAAAAAWQAAAAADeQAAAAAASwAAAAADSwAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADSwAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADSwAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAASwAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAD
version: 6
-1,-2:
ind: -1,-2
@@ -2079,7 +2079,6 @@ entities:
id: CheckerNESW
decals:
3820: 16,-26
- 3821: 13,-26
- node:
color: '#5E7C167F'
id: CheckerNESW
@@ -10199,7 +10198,6 @@ entities:
- 2880
- 21565
- 2770
- - 2771
- 2706
- 5822
- 629
@@ -12362,11 +12360,6 @@ entities:
- pos: 18.5,7.5
parent: 60
type: Transform
- - uid: 736
- components:
- - pos: 13.5,-25.5
- parent: 60
- type: Transform
- uid: 859
components:
- pos: -12.5,-22.5
@@ -41874,6 +41867,11 @@ entities:
- pos: 36.5,-19.5
parent: 60
type: Transform
+ - uid: 2571
+ components:
+ - pos: 13.5,-27.5
+ parent: 60
+ type: Transform
- uid: 2598
components:
- pos: 49.5,-3.5
@@ -44034,11 +44032,6 @@ entities:
- pos: 11.5,-28.5
parent: 60
type: Transform
- - uid: 11167
- components:
- - pos: 13.5,-24.5
- parent: 60
- type: Transform
- uid: 11168
components:
- pos: 13.5,-23.5
@@ -44081,17 +44074,7 @@ entities:
type: Transform
- uid: 11180
components:
- - pos: 13.5,-25.5
- parent: 60
- type: Transform
- - uid: 11181
- components:
- - pos: 13.5,-26.5
- parent: 60
- type: Transform
- - uid: 11182
- components:
- - pos: 13.5,-27.5
+ - pos: 14.5,-27.5
parent: 60
type: Transform
- uid: 11213
@@ -47174,6 +47157,46 @@ entities:
- pos: 45.5,2.5
parent: 60
type: Transform
+ - uid: 24339
+ components:
+ - pos: 15.5,-27.5
+ parent: 60
+ type: Transform
+ - uid: 24340
+ components:
+ - pos: 16.5,-27.5
+ parent: 60
+ type: Transform
+ - uid: 24341
+ components:
+ - pos: 16.5,-26.5
+ parent: 60
+ type: Transform
+ - uid: 24342
+ components:
+ - pos: 16.5,-25.5
+ parent: 60
+ type: Transform
+ - uid: 24343
+ components:
+ - pos: 16.5,-24.5
+ parent: 60
+ type: Transform
+ - uid: 24344
+ components:
+ - pos: 16.5,-23.5
+ parent: 60
+ type: Transform
+ - uid: 24345
+ components:
+ - pos: 15.5,-23.5
+ parent: 60
+ type: Transform
+ - uid: 24346
+ components:
+ - pos: 14.5,-23.5
+ parent: 60
+ type: Transform
- proto: CableMVStack
entities:
- uid: 6605
@@ -59765,6 +59788,12 @@ entities:
pos: 24.5,-5.5
parent: 60
type: Transform
+ - uid: 24349
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-26.5
+ parent: 60
+ type: Transform
- proto: ComputerAlert
entities:
- uid: 16555
@@ -61684,6 +61713,12 @@ entities:
pos: -4.5,-26.5
parent: 60
type: Transform
+ - uid: 997
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-24.5
+ parent: 60
+ type: Transform
- uid: 1324
components:
- rot: -1.5707963267948966 rad
@@ -61696,6 +61731,23 @@ entities:
pos: -37.5,-23.5
parent: 60
type: Transform
+ - uid: 2187
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-26.5
+ parent: 60
+ type: Transform
+ - uid: 2265
+ components:
+ - pos: 16.5,-24.5
+ parent: 60
+ type: Transform
+ - uid: 2266
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 13.5,-26.5
+ parent: 60
+ type: Transform
- uid: 2272
components:
- rot: -1.5707963267948966 rad
@@ -62225,12 +62277,6 @@ entities:
- pos: -15.5,-9.5
parent: 60
type: Transform
- - uid: 997
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,-23.5
- parent: 60
- type: Transform
- uid: 1208
components:
- rot: -1.5707963267948966 rad
@@ -62247,6 +62293,12 @@ entities:
- pos: 0.5,-23.5
parent: 60
type: Transform
+ - uid: 2192
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-23.5
+ parent: 60
+ type: Transform
- uid: 2301
components:
- rot: -1.5707963267948966 rad
@@ -63323,28 +63375,27 @@ entities:
- pos: 0.5,-21.5
parent: 60
type: Transform
- - uid: 2264
+ - uid: 2188
components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,-23.5
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-26.5
parent: 60
type: Transform
- - uid: 2265
+ - uid: 2189
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-24.5
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-26.5
parent: 60
type: Transform
- - uid: 2266
+ - uid: 2264
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-25.5
+ - rot: 1.5707963267948966 rad
+ pos: 11.5,-23.5
parent: 60
type: Transform
- uid: 2267
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-26.5
+ - pos: 16.5,-25.5
parent: 60
type: Transform
- uid: 2269
@@ -63597,6 +63648,12 @@ entities:
pos: 29.5,-29.5
parent: 60
type: Transform
+ - uid: 2567
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-24.5
+ parent: 60
+ type: Transform
- uid: 2609
components:
- pos: 23.5,-37.5
@@ -63608,6 +63665,12 @@ entities:
pos: 36.5,-22.5
parent: 60
type: Transform
+ - uid: 2771
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-24.5
+ parent: 60
+ type: Transform
- uid: 2781
components:
- pos: 0.5,-16.5
@@ -68126,7 +68189,6 @@ entities:
- 2880
- 21565
- 2770
- - 2771
type: DeviceList
- uid: 21566
components:
@@ -69264,11 +69326,6 @@ entities:
- pos: 16.5,-25.5
parent: 60
type: Transform
- - uid: 2771
- components:
- - pos: 13.5,-25.5
- parent: 60
- type: Transform
- uid: 2891
components:
- pos: 15.5,-34.5
@@ -97806,16 +97863,6 @@ entities:
- pos: 38.5,-21.5
parent: 60
type: Transform
- - uid: 2187
- components:
- - pos: 10.5,-25.5
- parent: 60
- type: Transform
- - uid: 2188
- components:
- - pos: 11.5,-25.5
- parent: 60
- type: Transform
- uid: 2190
components:
- rot: -1.5707963267948966 rad
@@ -97849,11 +97896,6 @@ entities:
- pos: 21.5,-25.5
parent: 60
type: Transform
- - uid: 2567
- components:
- - pos: 12.5,-25.5
- parent: 60
- type: Transform
- uid: 2579
components:
- pos: -32.5,-13.5
@@ -106076,6 +106118,68 @@ entities:
pos: -3.5,-28.5
parent: 60
type: Transform
+- proto: JanitorServiceLight
+ entities:
+ - uid: 11167
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-24.5
+ parent: 60
+ type: Transform
+ - links:
+ - 24347
+ type: DeviceLinkSink
+ - uid: 24333
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -38.5,-2.5
+ parent: 60
+ type: Transform
+ - links:
+ - 24334
+ type: DeviceLinkSink
+ - uid: 24335
+ components:
+ - pos: -17.5,-18.5
+ parent: 60
+ type: Transform
+ - links:
+ - 24336
+ type: DeviceLinkSink
+ - uid: 24337
+ components:
+ - pos: 35.5,-22.5
+ parent: 60
+ type: Transform
+ - links:
+ - 24338
+ type: DeviceLinkSink
+ - uid: 24350
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-9.5
+ parent: 60
+ type: Transform
+ - links:
+ - 24351
+ type: DeviceLinkSink
+ - uid: 24352
+ components:
+ - pos: 2.5,11.5
+ parent: 60
+ type: Transform
+ - links:
+ - 24353
+ type: DeviceLinkSink
+ - uid: 24355
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 41.5,7.5
+ parent: 60
+ type: Transform
+ - links:
+ - 24354
+ type: DeviceLinkSink
- proto: JetpackBlueFilled
entities:
- uid: 4705
@@ -122582,6 +122686,8 @@ entities:
entities:
- uid: 2881
components:
+ - name: Bar Shutters
+ type: MetaData
- pos: 12.5,-33.5
parent: 60
type: Transform
@@ -123207,6 +123313,90 @@ entities:
17448:
- Pressed: DoorBolt
type: DeviceLinkSource
+ - uid: 24334
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: -43.5,-1.5
+ parent: 60
+ type: Transform
+ - linkedPorts:
+ 24333:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 24336
+ components:
+ - name: Janitorial Service Button
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,-14.5
+ parent: 60
+ type: Transform
+ - linkedPorts:
+ 24335:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 24338
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: 42.5,-19.5
+ parent: 60
+ type: Transform
+ - linkedPorts:
+ 24337:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 24347
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-33.5
+ parent: 60
+ type: Transform
+ - linkedPorts:
+ 11167:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 24351
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 60
+ type: Transform
+ - linkedPorts:
+ 24350:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 24353
+ components:
+ - name: Janitorial Service Button
+ type: MetaData
+ - rot: 3.141592653589793 rad
+ pos: 3.5,16.5
+ parent: 60
+ type: Transform
+ - linkedPorts:
+ 24352:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 24354
+ components:
+ - name: Janitorial Service Button
+ type: MetaData
+ - rot: 3.141592653589793 rad
+ pos: 43.5,4.5
+ parent: 60
+ type: Transform
+ - linkedPorts:
+ 24355:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- proto: SignalButtonExt2
entities:
- uid: 21778
@@ -132746,6 +132936,12 @@ entities:
- pos: -24.5,19.5
parent: 60
type: Transform
+ - uid: 24348
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-26.5
+ parent: 60
+ type: Transform
- proto: TargetSyndicate
entities:
- uid: 10824
@@ -133963,14 +134159,6 @@ entities:
- pos: 2.5,-44.5
parent: 60
type: Transform
- - uid: 7161
- components:
- - flags: SessionSpecific
- name: Hot drinks machine
- type: MetaData
- - pos: 14.5,-26.5
- parent: 60
- type: Transform
- uid: 7176
components:
- flags: SessionSpecific
@@ -134002,6 +134190,11 @@ entities:
- pos: 3.5,21.5
parent: 60
type: Transform
+ - uid: 24356
+ components:
+ - pos: 14.5,-26.5
+ parent: 60
+ type: Transform
- proto: VendingMachineCola
entities:
- uid: 2773
@@ -144754,6 +144947,11 @@ entities:
- pos: 2.5,-25.5
parent: 60
type: Transform
+ - uid: 736
+ components:
+ - pos: 10.5,-25.5
+ parent: 60
+ type: Transform
- uid: 737
components:
- rot: 1.5707963267948966 rad
@@ -146874,6 +147072,11 @@ entities:
- pos: -39.5,-13.5
parent: 60
type: Transform
+ - uid: 7161
+ components:
+ - pos: 11.5,-25.5
+ parent: 60
+ type: Transform
- uid: 7172
components:
- pos: 43.5,1.5
@@ -147401,6 +147604,16 @@ entities:
- pos: 47.5,19.5
parent: 60
type: Transform
+ - uid: 11181
+ components:
+ - pos: 13.5,-25.5
+ parent: 60
+ type: Transform
+ - uid: 11182
+ components:
+ - pos: 12.5,-25.5
+ parent: 60
+ type: Transform
- uid: 11240
components:
- pos: 21.5,-39.5
@@ -150909,16 +151122,6 @@ entities:
- pos: -60.5,-8.5
parent: 60
type: Transform
- - uid: 2189
- components:
- - pos: 10.5,-25.5
- parent: 60
- type: Transform
- - uid: 2192
- components:
- - pos: 11.5,-25.5
- parent: 60
- type: Transform
- uid: 2386
components:
- pos: 19.5,-25.5
@@ -150939,11 +151142,6 @@ entities:
- pos: 17.5,-25.5
parent: 60
type: Transform
- - uid: 2571
- components:
- - pos: 12.5,-25.5
- parent: 60
- type: Transform
- uid: 2597
components:
- pos: 15.5,-25.5
diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml
index 860aa8c0ffe..7f54de52e51 100644
--- a/Resources/Maps/centcomm.yml
+++ b/Resources/Maps/centcomm.yml
@@ -4,22 +4,22 @@ meta:
tilemap:
0: Space
7: FloorAsteroidSand
- 12: FloorBar
- 15: FloorBlueCircuit
- 27: FloorDark
- 36: FloorDarkPlastic
- 45: FloorGrass
- 52: FloorGreenCircuit
- 58: FloorKitchen
- 59: FloorLaundry
- 60: FloorLino
- 75: FloorReinforced
- 87: FloorSteel
- 101: FloorTechMaint
- 105: FloorWhite
- 115: FloorWood
- 117: Lattice
- 118: Plating
+ 14: FloorBar
+ 17: FloorBlueCircuit
+ 29: FloorDark
+ 38: FloorDarkPlastic
+ 47: FloorGrass
+ 54: FloorGreenCircuit
+ 60: FloorKitchen
+ 61: FloorLaundry
+ 62: FloorLino
+ 77: FloorReinforced
+ 89: FloorSteel
+ 104: FloorTechMaint
+ 108: FloorWhite
+ 118: FloorWood
+ 120: Lattice
+ 121: Plating
entities:
- proto: ""
entities:
@@ -32,123 +32,123 @@ entities:
- chunks:
-1,-1:
ind: -1,-1
- tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAABVwAAAAADVwAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAABwAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAABdgAAAAAAVwAAAAABVwAAAAABVwAAAAADAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAABdgAAAAAAVwAAAAABVwAAAAADVwAAAAADAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAADdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAACdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAABdgAAAAAABwAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAACdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAAAdgAAAAAALQAAAAAALQAAAAAAdgAAAAAAGwAAAAABdgAAAAAALQAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAABdgAAAAAALQAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABdgAAAAAALQAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAGwAAAAAAcwAAAAADPAAAAAAAPAAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAABGwAAAAADGwAAAAACGwAAAAABVwAAAAAAVwAAAAACdgAAAAAAGwAAAAADcwAAAAADPAAAAAAAPAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAAAdgAAAAAAGwAAAAACdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAGwAAAAABcwAAAAADPAAAAAAAPAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAADPgAAAAAAPgAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: VwAAAAABVwAAAAADGwAAAAABGwAAAAADGwAAAAABdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADVwAAAAADVwAAAAAAVwAAAAAAGwAAAAADdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAGwAAAAABGwAAAAACGwAAAAACdgAAAAAABwAAAAAAdgAAAAAAGwAAAAADVwAAAAACVwAAAAACVwAAAAADGwAAAAACdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABdgAAAAAAGwAAAAAAGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABVwAAAAACVwAAAAADVwAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAAAVwAAAAADVwAAAAACdgAAAAAAGwAAAAABGwAAAAACGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAGwAAAAAAGwAAAAACGwAAAAACdgAAAAAABwAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAALQAAAAAAdgAAAAAAGwAAAAAAdgAAAAAALQAAAAAALQAAAAAAdgAAAAAAaQAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAACaQAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAALQAAAAAAdgAAAAAAaQAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAACaQAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAACdgAAAAAALQAAAAAAdgAAAAAAaQAAAAACaQAAAAABaQAAAAABaQAAAAAAaQAAAAABaQAAAAADaQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACdgAAAAAAaQAAAAADdgAAAAAAPAAAAAAAcwAAAAAAGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAGwAAAAACdgAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAPAAAAAAAcwAAAAAAGwAAAAADdgAAAAAAVwAAAAAAVwAAAAABGwAAAAAAGwAAAAAAGwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAPAAAAAAAcwAAAAABGwAAAAADdgAAAAAAVwAAAAACVwAAAAABdgAAAAAAGwAAAAACdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAC
+ tiles: WQAAAAABWQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACbAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACbAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAADeQAAAAAAPgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAdgAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAC
version: 6
-1,0:
ind: -1,0
- tiles: VwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAGwAAAAADGwAAAAAAGwAAAAADVwAAAAAAVwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADLQAAAAAALQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAGwAAAAAAdgAAAAAALQAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAACdgAAAAAABwAAAAAABwAAAAAAdgAAAAAAGwAAAAACdgAAAAAABwAAAAAAdgAAAAAAGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAACdgAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACdgAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADPAAAAAAAGwAAAAACdgAAAAAAGwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAGwAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAADPAAAAAAAGwAAAAABdgAAAAAAGwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAGwAAAAACdgAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADPAAAAAAAGwAAAAADdgAAAAAAGwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAAAGwAAAAABdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAACGwAAAAABGwAAAAACdgAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAABdgAAAAAAVwAAAAACVwAAAAADVwAAAAABdgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADGwAAAAADVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAABGwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAAC
+ tiles: WQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADLwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADPgAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADPgAAAAAAHQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADPgAAAAAAHQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAC
version: 6
0,0:
ind: 0,0
- tiles: GwAAAAABGwAAAAADGwAAAAACGwAAAAADVwAAAAACVwAAAAACGwAAAAABGwAAAAABGwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACGwAAAAAAGwAAAAAAGwAAAAABdgAAAAAAVwAAAAAAVwAAAAABdgAAAAAAGwAAAAABdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAAdgAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAAAdgAAAAAALQAAAAAAdgAAAAAALQAAAAAAdgAAAAAALQAAAAAALQAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAABdgAAAAAALQAAAAAAdgAAAAAABwAAAAAABwAAAAAAdgAAAAAABwAAAAAABwAAAAAABwAAAAAAdgAAAAAABwAAAAAABwAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAGwAAAAACGwAAAAAAGwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAGwAAAAABVwAAAAADVwAAAAABVwAAAAACdgAAAAAAGwAAAAADdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAADdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABGwAAAAAAGwAAAAAAGwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAABGwAAAAAAVwAAAAACVwAAAAAAVwAAAAABdgAAAAAAGwAAAAADdgAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAACdgAAAAAAVwAAAAADVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAABdgAAAAAA
+ tiles: HQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAALwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: ZQAAAAAAZQAAAAAAdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAGwAAAAABdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAABdgAAAAAAGwAAAAABGwAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACdgAAAAAAGwAAAAABGwAAAAADdgAAAAAAGwAAAAABdgAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABdgAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADdgAAAAAAGwAAAAAAGwAAAAACdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAACdgAAAAAALQAAAAAALQAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABdgAAAAAABwAAAAAAdgAAAAAAGwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAACdgAAAAAAGwAAAAABdgAAAAAAGwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAABVwAAAAACVwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAACdgAAAAAAGwAAAAADdgAAAAAAGwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAB
+ tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAB
version: 6
1,0:
ind: 1,0
- tiles: GwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACdgAAAAAAGwAAAAADdgAAAAAAGwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABdgAAAAAABwAAAAAAdgAAAAAAGwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABwAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAABwAAAAAABwAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAALQAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADdgAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABGwAAAAADGwAAAAAAcwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADGwAAAAADGwAAAAACcwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADdgAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABdgAAAAAAGwAAAAACGwAAAAAAdgAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAAA
+ tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAABwAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: AAAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAGwAAAAAAGwAAAAABcwAAAAAAGwAAAAADGwAAAAACGwAAAAAADAAAAAABDAAAAAACDAAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAZQAAAAAAcwAAAAABGwAAAAABGwAAAAACGwAAAAADDAAAAAAADAAAAAABGwAAAAAAGwAAAAABcwAAAAAAcwAAAAAAGwAAAAAAdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAADGwAAAAAAGwAAAAACcwAAAAAAcwAAAAADGwAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAAADAAAAAADDAAAAAAAGwAAAAABGwAAAAAAGwAAAAAADAAAAAADGwAAAAACGwAAAAAAcwAAAAABcwAAAAABGwAAAAACdgAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABDAAAAAAADAAAAAACGwAAAAAAGwAAAAAAGwAAAAAADAAAAAADGwAAAAADGwAAAAAAcwAAAAACcwAAAAAAGwAAAAABdgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABdgAAAAAAcwAAAAADcwAAAAACGwAAAAACdgAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACGwAAAAABdgAAAAAAGwAAAAABdgAAAAAALQAAAAAAdgAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAADGwAAAAACdgAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAABGwAAAAACdgAAAAAAGwAAAAABdgAAAAAALQAAAAAAdgAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAACGwAAAAACVwAAAAADVwAAAAADVwAAAAABdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAGwAAAAAAdgAAAAAALQAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAACdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAADdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAACdgAAAAAAZQAAAAAAVwAAAAACVwAAAAABGwAAAAACGwAAAAACGwAAAAABdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAAAVwAAAAACVwAAAAABdgAAAAAABwAAAAAABwAAAAAAdgAAAAAAGwAAAAACGwAAAAAAdgAAAAAAdgAAAAAA
+ tiles: AAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABdgAAAAAAHQAAAAADHQAAAAACHQAAAAAADgAAAAABDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAdgAAAAABHQAAAAABHQAAAAACHQAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAABDgAAAAADHQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAADgAAAAADDgAAAAAAHQAAAAABHQAAAAAAHQAAAAAADgAAAAADHQAAAAACHQAAAAAAdgAAAAABdgAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABDgAAAAAADgAAAAACHQAAAAAAHQAAAAAAHQAAAAAADgAAAAADHQAAAAADHQAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACHQAAAAABeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAACeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: GwAAAAADGwAAAAABJAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAJAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADJAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAJAAAAAADGwAAAAAADwAAAAAADwAAAAAADwAAAAAAZQAAAAAAZQAAAAAAJAAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAJAAAAAADGwAAAAAADwAAAAAADwAAAAAADwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAJAAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAGwAAAAADGwAAAAAAGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABdgAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAADVwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAADdgAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAdgAAAAAASwAAAAAANAAAAAAANAAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAADdgAAAAAASwAAAAAADwAAAAAADwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAADdgAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAADdgAAAAAASwAAAAAASwAAAAAASwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAGwAAAAABGwAAAAADGwAAAAACdgAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAACGwAAAAADVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAAAGwAAAAAAVwAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACdgAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABGwAAAAACVwAAAAADVwAAAAAB
+ tiles: HQAAAAADHQAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAJgAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACWQAAAAADWQAAAAAB
version: 6
-1,-2:
ind: -1,-2
- tiles: dgAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAACVwAAAAABVwAAAAADdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAADAAAAAADDAAAAAABDAAAAAAAGwAAAAADGwAAAAACGwAAAAAAcwAAAAADcwAAAAABdgAAAAAAVwAAAAADVwAAAAADdgAAAAAAGwAAAAABGwAAAAABGwAAAAAAdgAAAAAADAAAAAADDAAAAAABDAAAAAADGwAAAAABGwAAAAABGwAAAAABcwAAAAAAcwAAAAADdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAGwAAAAACOgAAAAAAOgAAAAAAGwAAAAACDAAAAAADDAAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAAADAAAAAABDAAAAAABGwAAAAADVwAAAAAAVwAAAAABdgAAAAAAGwAAAAABOgAAAAAAOgAAAAAAGwAAAAABDAAAAAADDAAAAAADGwAAAAAAGwAAAAAAGwAAAAAADAAAAAACDAAAAAACDAAAAAABdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAGwAAAAADOgAAAAAAOgAAAAAAGwAAAAADDAAAAAADDAAAAAADGwAAAAACGwAAAAABGwAAAAABDAAAAAAADAAAAAADDAAAAAABGwAAAAABVwAAAAAAVwAAAAADdgAAAAAAGwAAAAAAOgAAAAAAOgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAGwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdgAAAAAALQAAAAAAdgAAAAAAGwAAAAACdgAAAAAAGwAAAAABGwAAAAABdgAAAAAAVwAAAAADVwAAAAADGwAAAAAAGwAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdgAAAAAALQAAAAAAdgAAAAAAGwAAAAADdgAAAAAAGwAAAAACGwAAAAACdgAAAAAAVwAAAAADVwAAAAABdgAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAdgAAAAAALQAAAAAAdgAAAAAAGwAAAAABdgAAAAAAGwAAAAACGwAAAAADdgAAAAAAVwAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAGwAAAAADGwAAAAADdgAAAAAABwAAAAAABwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAA
+ tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAHQAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAABHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAHQAAAAABDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAAADgAAAAACDgAAAAACDgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADPAAAAAAAPAAAAAAAHQAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAABDgAAAAAADgAAAAADDgAAAAABHQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: VwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAcwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAcwAAAAADGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADPAAAAAAAPAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: VwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAdgAAAAAALQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: GwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAACVwAAAAADdgAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABdgAAAAAAdgAAAAAABwAAAAAAdgAAAAAAGwAAAAACdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABAAAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZQAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAACVwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAABdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: VwAAAAABVwAAAAAAVwAAAAACdgAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAACdgAAAAAAGwAAAAABGwAAAAADdgAAAAAAVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAABwAAAAAAdgAAAAAAcwAAAAADcwAAAAACcwAAAAAAdgAAAAAAGwAAAAADGwAAAAABdgAAAAAAVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAAAGwAAAAACGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAABGwAAAAACdgAAAAAAGwAAAAACGwAAAAAAGwAAAAABdgAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACGwAAAAABdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAAAVwAAAAACGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAACdgAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAGwAAAAABGwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAACdgAAAAAAVwAAAAADVwAAAAADdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAGwAAAAABGwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAVwAAAAADVwAAAAADVwAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAACdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAVwAAAAADVwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABGwAAAAABGwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAABSwAAAAAA
+ tiles: WQAAAAABWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABTQAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: GwAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAADwAAAAAADwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAANAAAAAAANAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAASwAAAAAASwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAAAVwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAADVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: GwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAADdgAAAAAAGwAAAAAAGwAAAAABdgAAAAAAcwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAGwAAAAADGwAAAAADdgAAAAAAcwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcwAAAAACZQAAAAAAdgAAAAAAGwAAAAAAcwAAAAABcwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAADcwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcwAAAAAAZQAAAAAAdgAAAAAAGwAAAAABPAAAAAAAPAAAAAAAdgAAAAAAGwAAAAABGwAAAAACdgAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAADdgAAAAAAdgAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADdgAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADdgAAAAAAGwAAAAADcwAAAAADcwAAAAAAGwAAAAACGwAAAAAAPAAAAAAAPAAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAADdgAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAADdgAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: VwAAAAACVwAAAAAAVwAAAAAAGwAAAAADGwAAAAABGwAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADdgAAAAAALQAAAAAAGwAAAAACGwAAAAABGwAAAAADdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAPAAAAAAAPAAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAABdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAGwAAAAAAdgAAAAAAGwAAAAACdgAAAAAAPAAAAAAAPAAAAAAAcwAAAAACcwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAPAAAAAAAPAAAAAAAcwAAAAAAcwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAACdgAAAAAAGwAAAAADGwAAAAADdgAAAAAAGwAAAAAAGwAAAAABcwAAAAADcwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAABdgAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABcwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAcwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAcwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAaQAAAAAAaQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAaQAAAAAAaQAAAAACdgAAAAAAdQAAAAAAdQAAAAAAdgAAAAAA
+ tiles: WQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAALwAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: AAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: GwAAAAADPAAAAAAAPAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABPAAAAAAAPAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: dgAAAAAAdgAAAAAASwAAAAAASwAAAAAAdgAAAAAAGwAAAAADGwAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAABdgAAAAAAGwAAAAACGwAAAAADdgAAAAAASwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: SwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: TQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAVwAAAAAAGwAAAAABVwAAAAABGwAAAAACVwAAAAABGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAVwAAAAADGwAAAAADVwAAAAACGwAAAAADVwAAAAACGwAAAAACVwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAACVwAAAAAANAAAAAAANAAAAAAAVwAAAAAAVwAAAAADGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAVwAAAAADGwAAAAABVwAAAAAAGwAAAAACVwAAAAACGwAAAAADVwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABVwAAAAACGwAAAAACVwAAAAADGwAAAAADVwAAAAABGwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAACdgAAAAAAVwAAAAADVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAACdgAAAAAAGwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAADGwAAAAAAGwAAAAACGwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAdgAAAAAAGwAAAAADdgAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAABVwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAWQAAAAAAHQAAAAABWQAAAAABHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAADWQAAAAACHQAAAAADWQAAAAACHQAAAAACWQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACWQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAABWQAAAAAAHQAAAAACWQAAAAACHQAAAAADWQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABWQAAAAACHQAAAAACWQAAAAADHQAAAAADWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAC
version: 6
-3,-1:
ind: -3,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAACGwAAAAAAdgAAAAAAGwAAAAAAGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAABGwAAAAACGwAAAAABdgAAAAAAGwAAAAABGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAADGwAAAAACGwAAAAADdgAAAAAAdgAAAAAAGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAGwAAAAACGwAAAAADGwAAAAADdgAAAAAAGwAAAAACGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAACVwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAGwAAAAACVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAADdgAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACdgAAAAAAGwAAAAACGwAAAAADGwAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADdgAAAAAAGwAAAAABGwAAAAABGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACdgAAAAAAdgAAAAAAGwAAAAADGwAAAAABGwAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABdgAAAAAAGwAAAAADGwAAAAACGwAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAACdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAADdgAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAA
version: 6
1,-3:
ind: 1,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAC
version: 6
-2,-2:
ind: -2,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAAAVwAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAADVwAAAAADdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAABVwAAAAABdgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAADVwAAAAABVwAAAAABGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAdgAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAACVwAAAAABVwAAAAAAdgAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAVwAAAAABVwAAAAADVwAAAAABdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -4674,6 +4674,30 @@ entities:
- pos: -24.426022,-5.7340455
parent: 1668
type: Transform
+- proto: BoxFolderCentCom
+ entities:
+ - uid: 6987
+ components:
+ - pos: 0.751516,0.4821344
+ parent: 1668
+ type: Transform
+ - uid: 6990
+ components:
+ - pos: -20.40427,4.6069345
+ parent: 1668
+ type: Transform
+- proto: BoxFolderCentComClipboard
+ entities:
+ - uid: 2198
+ components:
+ - pos: -1.5118587,0.6696344
+ parent: 1668
+ type: Transform
+ - uid: 6991
+ components:
+ - pos: -20.46677,5.55778
+ parent: 1668
+ type: Transform
- proto: BoxFolderRed
entities:
- uid: 1398
@@ -16762,11 +16786,6 @@ entities:
type: Transform
- proto: CentcomPDA
entities:
- - uid: 2198
- components:
- - pos: -1.5134044,0.62284255
- parent: 1668
- type: Transform
- uid: 6617
components:
- pos: -20.428675,10.647655
@@ -32647,6 +32666,18 @@ entities:
- pos: -12.532179,11.55442
parent: 1668
type: Transform
+- proto: Screen
+ entities:
+ - uid: 6988
+ components:
+ - pos: 33.5,3.5
+ parent: 1668
+ type: Transform
+ - uid: 6989
+ components:
+ - pos: 33.5,-4.5
+ parent: 1668
+ type: Transform
- proto: SecurityTechFab
entities:
- uid: 2874
diff --git a/Resources/Maps/corvax_avrit.yml b/Resources/Maps/corvax_avrit.yml
index b821eb8e6c2..bf83917ce71 100644
--- a/Resources/Maps/corvax_avrit.yml
+++ b/Resources/Maps/corvax_avrit.yml
@@ -9,80 +9,83 @@ tilemap:
4: FloorAsphalt
7: FloorAsteroidSand
8: FloorAsteroidSandDug
- 12: FloorBar
- 14: FloorBlue
- 15: FloorBlueCircuit
- 17: FloorBrokenWood
- 18: FloorCarpetClown
- 19: FloorCarpetOffice
- 20: FloorCave
- 23: FloorClown
- 24: FloorConcrete
- 25: FloorConcreteMono
- 26: FloorConcreteSmooth
- 27: FloorDark
- 28: FloorDarkDiagonal
- 31: FloorDarkMini
- 32: FloorDarkMono
- 34: FloorDarkPavement
- 35: FloorDarkPavementVertical
- 36: FloorDarkPlastic
- 37: FloorDesert
- 39: FloorEighties
- 40: FloorElevatorShaft
- 41: FloorFlesh
- 42: FloorFreezer
- 43: FloorGlass
- 46: FloorGrassDark
- 48: FloorGrassLight
- 49: FloorGrayConcrete
- 50: FloorGrayConcreteMono
- 51: FloorGrayConcreteSmooth
- 52: FloorGreenCircuit
- 53: FloorGym
- 56: FloorHydro
- 58: FloorKitchen
- 59: FloorLaundry
- 60: FloorLino
- 62: FloorMetalDiamond
- 63: FloorMime
- 64: FloorMono
- 65: FloorOldConcrete
- 69: FloorPlanetGrass
- 70: FloorPlastic
- 71: FloorRGlass
- 72: FloorReinforced
- 73: FloorReinforcedHardened
- 74: FloorRockVault
- 75: FloorShowroom
- 76: FloorShuttleBlue
- 77: FloorShuttleOrange
- 78: FloorShuttlePurple
- 79: FloorShuttleRed
- 80: FloorShuttleWhite
- 84: FloorSteel
- 87: FloorSteelDiagonal
- 88: FloorSteelDiagonalMini
- 89: FloorSteelDirty
- 90: FloorSteelHerringbone
- 91: FloorSteelMini
- 92: FloorSteelMono
- 93: FloorSteelOffset
- 94: FloorSteelPavement
- 95: FloorSteelPavementVertical
- 96: FloorTechMaint
- 97: FloorTechMaint2
- 98: FloorTechMaint3
- 100: FloorWhite
- 101: FloorWhiteDiagonal
- 103: FloorWhiteHerringbone
- 107: FloorWhitePavement
- 108: FloorWhitePavementVertical
- 109: FloorWhitePlastic
- 110: FloorWood
- 111: FloorWoodTile
- 112: Lattice
- 113: Plating
+ 14: FloorBar
+ 16: FloorBlue
+ 17: FloorBlueCircuit
+ 19: FloorBrokenWood
+ 20: FloorCarpetClown
+ 21: FloorCarpetOffice
+ 22: FloorCave
+ 25: FloorClown
+ 26: FloorConcrete
+ 27: FloorConcreteMono
+ 28: FloorConcreteSmooth
+ 29: FloorDark
+ 30: FloorDarkDiagonal
+ 33: FloorDarkMini
+ 34: FloorDarkMono
+ 36: FloorDarkPavement
+ 37: FloorDarkPavementVertical
+ 38: FloorDarkPlastic
+ 39: FloorDesert
+ 41: FloorEighties
+ 42: FloorElevatorShaft
+ 43: FloorFlesh
+ 44: FloorFreezer
+ 45: FloorGlass
+ 48: FloorGrassDark
+ 50: FloorGrassLight
+ 51: FloorGrayConcrete
+ 52: FloorGrayConcreteMono
+ 53: FloorGrayConcreteSmooth
+ 54: FloorGreenCircuit
+ 55: FloorGym
+ 58: FloorHydro
+ 60: FloorKitchen
+ 61: FloorLaundry
+ 62: FloorLino
+ 64: FloorMetalDiamond
+ 65: FloorMime
+ 69: FloorMono
+ 70: FloorOldConcrete
+ 74: FloorPlanetGrass
+ 75: FloorPlastic
+ 76: FloorRGlass
+ 77: FloorReinforced
+ 78: FloorReinforcedHardened
+ 79: FloorRockVault
+ 80: FloorShowroom
+ 81: FloorShuttleBlue
+ 82: FloorShuttleOrange
+ 83: FloorShuttlePurple
+ 84: FloorShuttleRed
+ 85: FloorShuttleWhite
+ 87: FloorSnow
+ 88: FloorSnowDug
+ 89: FloorSteel
+ 91: FloorSteelCheckerDark
+ 94: FloorSteelDiagonal
+ 95: FloorSteelDiagonalMini
+ 96: FloorSteelDirty
+ 97: FloorSteelHerringbone
+ 99: FloorSteelMini
+ 100: FloorSteelMono
+ 101: FloorSteelOffset
+ 102: FloorSteelPavement
+ 103: FloorSteelPavementVertical
+ 104: FloorTechMaint
+ 105: FloorTechMaint2
+ 106: FloorTechMaint3
+ 108: FloorWhite
+ 109: FloorWhiteDiagonal
+ 111: FloorWhiteHerringbone
+ 115: FloorWhitePavement
+ 116: FloorWhitePavementVertical
+ 117: FloorWhitePlastic
+ 118: FloorWood
+ 119: FloorWoodTile
+ 120: Lattice
+ 121: Plating
entities:
- proto: ""
entities:
@@ -110,467 +113,479 @@ entities:
- chunks:
-1,-1:
ind: -1,-1
- tiles: ZAAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAACVAAAAAADXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARgAAAAADRgAAAAAARgAAAAACRgAAAAACRgAAAAABVAAAAAAAVAAAAAADXwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWwAAAAACXgAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAVAAAAAAAXwAAAAADXwAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAVAAAAAADXwAAAAABVAAAAAADcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAACcQAAAAAAVAAAAAABXwAAAAACVAAAAAADVAAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAAAVAAAAAACXwAAAAACVAAAAAADVAAAAAACbgAAAAADPAAAAAAAPAAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAABcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAADVAAAAAADbgAAAAAAPAAAAAAAPAAAAAAAbgAAAAADcQAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAADcQAAAAAAVAAAAAAAXwAAAAACVAAAAAABVAAAAAABbgAAAAABPAAAAAAAPAAAAAAAbgAAAAABcQAAAAAAbgAAAAADbgAAAAACVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAADXwAAAAAAVAAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAbgAAAAADbgAAAAADVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACXwAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACXwAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAA
+ tiles: bAAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAZwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAADZwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAASwAAAAADSwAAAAAASwAAAAACSwAAAAACSwAAAAABWQAAAAAAWQAAAAADZwAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAASwAAAAACZgAAAAACZgAAAAACZgAAAAABZgAAAAAAZgAAAAAAZgAAAAACZgAAAAADeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYwAAAAACZgAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAAAZwAAAAADZwAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAWQAAAAADZwAAAAABWQAAAAADeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABZwAAAAACWQAAAAADWQAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAAAWQAAAAACZwAAAAACWQAAAAADWQAAAAACdgAAAAADPgAAAAAAPgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAADWQAAAAADdgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAZwAAAAACWQAAAAABWQAAAAABdgAAAAABPgAAAAAAPgAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADZwAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACZwAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACZwAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: XgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAABXwAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACXwAAAAADVAAAAAAAcQAAAAAAUAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAADXwAAAAABVAAAAAABcQAAAAAAUAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAABGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAABXwAAAAAAVAAAAAAAcQAAAAAAUAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAACXwAAAAABVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAANAAAAAAADwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAABXwAAAAAAVAAAAAACcQAAAAAAVAAAAAADTwAAAAAATwAAAAAATwAAAAAAVAAAAAADTAAAAAAATAAAAAAAGwAAAAACGwAAAAABcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAACXwAAAAAAVAAAAAADcQAAAAAAcAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAADXwAAAAACVAAAAAADVAAAAAABVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAACXwAAAAAAXwAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWwAAAAADXgAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABWwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARgAAAAACRgAAAAADRgAAAAABRgAAAAACRgAAAAACVAAAAAACVAAAAAAAXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXwAAAAAA
+ tiles: ZgAAAAAAZgAAAAABZgAAAAADZgAAAAACZgAAAAAAZgAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABZwAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZwAAAAADWQAAAAAAeQAAAAAAVQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZwAAAAABWQAAAAABeQAAAAAAVQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZwAAAAAAWQAAAAAAeQAAAAAAVQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZwAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAANgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZwAAAAAAWQAAAAACeQAAAAAAWQAAAAADVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAADUQAAAAAAUQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZwAAAAAAWQAAAAADeQAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABHQAAAAACHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZwAAAAACWQAAAAADWQAAAAABWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZwAAAAAAZwAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYwAAAAADZgAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABZgAAAAABZgAAAAADZgAAAAACZgAAAAADZgAAAAACZgAAAAABZgAAAAABYwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAASwAAAAACSwAAAAADSwAAAAABSwAAAAACSwAAAAACWQAAAAACWQAAAAAAZwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZwAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: VAAAAAAAMAAAAAACMAAAAAACMAAAAAACMAAAAAABMAAAAAAAMAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABRgAAAAABVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAARgAAAAADRgAAAAABRgAAAAADRgAAAAABRgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAARgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACXgAAAAABWwAAAAABVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXwAAAAACXwAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXwAAAAADVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAXwAAAAABVAAAAAADcQAAAAAAIAAAAAAAVAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAADXwAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAADXwAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACIAAAAAAAbgAAAAADbgAAAAADbgAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAVAAAAAACXwAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAIAAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAbgAAAAAAbgAAAAABcQAAAAAAVAAAAAACXwAAAAACVAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAVAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABRgAAAAABXwAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAB
+ tiles: WQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABSwAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAASwAAAAADSwAAAAABSwAAAAADSwAAAAABSwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAAAZgAAAAADZgAAAAAAZgAAAAAAZgAAAAACZgAAAAAASwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACZgAAAAABYwAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZwAAAAACZwAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZwAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAZwAAAAABWQAAAAADeQAAAAAAIgAAAAAAWQAAAAADIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADZwAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADZwAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACIgAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAWQAAAAACZwAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAIgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAACZwAAAAACWQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWQAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABSwAAAAABZwAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAB
version: 6
0,0:
ind: 0,0
- tiles: VAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAARgAAAAABcQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACRgAAAAACXwAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXwAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADTgAAAAAAcQAAAAAAVAAAAAACXwAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAAATgAAAAAAcQAAAAAAVAAAAAAAXwAAAAABVAAAAAABcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADTgAAAAAAcQAAAAAAVAAAAAACXwAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAXwAAAAACVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABTAAAAAAAVAAAAAACTQAAAAAATQAAAAAATQAAAAAARgAAAAACcQAAAAAAVAAAAAADXwAAAAACVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABXwAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAABVAAAAAABXwAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADXwAAAAADXwAAAAAAVAAAAAADVAAAAAABcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAXgAAAAADWwAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADRgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADVAAAAAADRgAAAAADRgAAAAABRgAAAAADRgAAAAABRgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAAD
+ tiles: WQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAASwAAAAABeQAAAAAAZgAAAAACZgAAAAAAZgAAAAABZgAAAAABZgAAAAABZgAAAAABZgAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACSwAAAAACZwAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZwAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADUwAAAAAAeQAAAAAAWQAAAAACZwAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAUwAAAAAAeQAAAAAAWQAAAAAAZwAAAAABWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADUwAAAAAAeQAAAAAAWQAAAAACZwAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAZwAAAAACWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABUQAAAAAAWQAAAAACUgAAAAAAUgAAAAAAUgAAAAAASwAAAAACeQAAAAAAWQAAAAADZwAAAAACWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZwAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAABZwAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADZwAAAAADZwAAAAAAWQAAAAADWQAAAAABeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAZgAAAAADYwAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAZgAAAAAAZgAAAAACZgAAAAAAZgAAAAADZgAAAAAAZgAAAAABZgAAAAADSwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAABSwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAD
version: 6
1,0:
ind: 1,0
- tiles: XgAAAAACXgAAAAABXgAAAAABXgAAAAADcQAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABXwAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXwAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAHwAAAAABHwAAAAABcQAAAAAAHwAAAAABHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXwAAAAACVAAAAAAAcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAHwAAAAABHwAAAAACHwAAAAABcQAAAAAAHwAAAAACHwAAAAABVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACKwAAAAAAVAAAAAACGwAAAAABGwAAAAADGwAAAAADcQAAAAAAHwAAAAAAHwAAAAACHwAAAAABcQAAAAAAHwAAAAABHwAAAAABVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAKwAAAAAAVAAAAAABcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACKwAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAXwAAAAACVAAAAAADcQAAAAAAGwAAAAAAGwAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAbgAAAAACbgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: ZgAAAAACZgAAAAABZgAAAAABZgAAAAADeQAAAAAAZgAAAAADZgAAAAADZgAAAAABZgAAAAAAZgAAAAACZgAAAAAAZgAAAAABZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABZwAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZwAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAABIQAAAAABeQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZwAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAIQAAAAABIQAAAAACIQAAAAABeQAAAAAAIQAAAAACIQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACLQAAAAAAWQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAIQAAAAAAIQAAAAACIQAAAAABeQAAAAAAIQAAAAABIQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAALQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACLQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAZwAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAABdgAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: XgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABHwAAAAACcQAAAAAAHwAAAAACHwAAAAADHwAAAAADcQAAAAAAHwAAAAACHwAAAAADHwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAcQAAAAAAHwAAAAACHwAAAAAAHwAAAAABcQAAAAAAHwAAAAACHwAAAAAAHwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAACcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABcQAAAAAAHwAAAAACHwAAAAACHwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAA
+ tiles: ZgAAAAADZgAAAAACZgAAAAACZgAAAAAAZgAAAAABZgAAAAACZgAAAAACZgAAAAACZgAAAAACZgAAAAACZgAAAAADZgAAAAAAZgAAAAADZgAAAAAAZgAAAAADZgAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABIQAAAAACeQAAAAAAIQAAAAACIQAAAAADIQAAAAADeQAAAAAAIQAAAAACIQAAAAADIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAeQAAAAAAIQAAAAACIQAAAAAAIQAAAAABeQAAAAAAIQAAAAACIQAAAAAAIQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAIQAAAAACeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABeQAAAAAAIQAAAAACIQAAAAACIQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: VAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAARgAAAAABbgAAAAABbgAAAAABbgAAAAADbgAAAAAAVAAAAAADMAAAAAACMAAAAAACMAAAAAABMAAAAAACMAAAAAACMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAARgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAAAVAAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAADMAAAAAACMAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAARgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAVAAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAAAVAAAAAABcQAAAAAAMAAAAAABMAAAAAADMAAAAAADMAAAAAADMAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADRgAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAADMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACMAAAAAACMAAAAAADMAAAAAADMAAAAAACMAAAAAACMAAAAAADcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbQAAAAADbQAAAAABcQAAAAAAVAAAAAADVAAAAAADMAAAAAACMAAAAAABMAAAAAACMAAAAAAAMAAAAAADMAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAVAAAAAAD
+ tiles: WQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAASwAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAWQAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAASwAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAAAWQAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAASwAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAWQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAWQAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADSwAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADZgAAAAACZgAAAAAAZgAAAAACZgAAAAABZgAAAAABZgAAAAACZgAAAAAAZgAAAAABZgAAAAADZgAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdQAAAAADdQAAAAABeQAAAAAAWQAAAAADWQAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAAAWQAAAAAD
version: 6
-1,-2:
ind: -1,-2
- tiles: RQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAXgAAAAAAVAAAAAAAcQAAAAAAVAAAAAADXwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACXwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAVAAAAAACXwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAABcQAAAAAAVAAAAAACXwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAADcQAAAAAAVAAAAAAAXwAAAAADcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAVAAAAAACXwAAAAADJAAAAAACJAAAAAACJAAAAAADJAAAAAABJAAAAAADJAAAAAABJAAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAVAAAAAAAXwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAABIAAAAAAAIAAAAAAAVAAAAAACXwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADRwAAAAAARwAAAAAARwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAIAAAAAACIAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAIAAAAAADIAAAAAABVAAAAAAAXwAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAABZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAADXwAAAAABZAAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAABXwAAAAAD
+ tiles: VwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAWQAAAAADZwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACZwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZwAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZwAAAAACeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAACZwAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAACZwAAAAABeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAZwAAAAADeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAACZwAAAAADJgAAAAACJgAAAAACJgAAAAADJgAAAAABJgAAAAADJgAAAAABJgAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAZwAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABIgAAAAAAIgAAAAAAWQAAAAACZwAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADTAAAAAAATAAAAAAATAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAIgAAAAACIgAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAIgAAAAADIgAAAAABWQAAAAAAZwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAABbAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADZwAAAAABbAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABZwAAAAAD
version: 6
1,-1:
ind: 1,-1
- tiles: VAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABRgAAAAADRgAAAAABcQAAAAAAbQAAAAAAbQAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAABRgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAARgAAAAABRgAAAAADRgAAAAABRgAAAAADRgAAAAACRgAAAAABcQAAAAAAbQAAAAAAbQAAAAAARgAAAAABRgAAAAAARgAAAAAARgAAAAAAVAAAAAACRgAAAAACRgAAAAACRgAAAAACRgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAARgAAAAACRgAAAAAARgAAAAADRgAAAAADXwAAAAAARgAAAAAARgAAAAACRgAAAAAARgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAADKwAAAAAARgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAARgAAAAAAKwAAAAAARgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACRgAAAAABKwAAAAAARgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAADXwAAAAABRgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACIAAAAAAAcQAAAAAARgAAAAADKwAAAAAARgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAIAAAAAAAcQAAAAAARgAAAAACKwAAAAAARgAAAAACVAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAADVAAAAAAAIAAAAAAAcQAAAAAARgAAAAAAKwAAAAAARgAAAAADVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAIAAAAAAAcQAAAAAARgAAAAACXwAAAAABRgAAAAADVAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAACVAAAAAAAIAAAAAAAcQAAAAAARgAAAAABXwAAAAACRgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXwAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAXwAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAD
+ tiles: WQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABSwAAAAADSwAAAAABeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABSwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAASwAAAAABSwAAAAADSwAAAAABSwAAAAADSwAAAAACSwAAAAABeQAAAAAAdQAAAAAAdQAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAAAWQAAAAACSwAAAAACSwAAAAACSwAAAAACSwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAASwAAAAACSwAAAAAASwAAAAADSwAAAAADZwAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAADLQAAAAAASwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAASwAAAAAALQAAAAAASwAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACSwAAAAABLQAAAAAASwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAADZwAAAAABSwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACIgAAAAAAeQAAAAAASwAAAAADLQAAAAAASwAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAIgAAAAAAeQAAAAAASwAAAAACLQAAAAAASwAAAAACWQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADWQAAAAAAIgAAAAAAeQAAAAAASwAAAAAALQAAAAAASwAAAAADWQAAAAABAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAIgAAAAAAeQAAAAAASwAAAAACZwAAAAABSwAAAAADWQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAIgAAAAAAeQAAAAAASwAAAAABZwAAAAACSwAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZwAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAZwAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAD
version: 6
2,-1:
ind: 2,-1
- tiles: RgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAYQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAGwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAC
+ tiles: SwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAC
version: 6
0,1:
ind: 0,1
- tiles: VAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAbgAAAAACbgAAAAABbgAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAbgAAAAACbgAAAAACbgAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAABcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABSgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABcQAAAAAAcQAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAWgAAAAADWgAAAAABWgAAAAAAVAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAABWgAAAAACWgAAAAAAWgAAAAACVAAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAACcQAAAAAASgAAAAAASgAAAAAASgAAAAAA
+ tiles: WQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAZgAAAAACZgAAAAAAZgAAAAAAZgAAAAABZgAAAAACZgAAAAAAZgAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABTwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAZgAAAAACZgAAAAABZgAAAAAAZgAAAAADZgAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAYQAAAAADYQAAAAABYQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABYQAAAAACYQAAAAAAYQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: bgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXwAAAAABbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAAAMAAAAAACVAAAAAACXwAAAAACbgAAAAABbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAMAAAAAAAMAAAAAACMAAAAAABMAAAAAABMAAAAAADMAAAAAACVAAAAAABXwAAAAADbgAAAAACbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAACVAAAAAADXwAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAACMAAAAAADcQAAAAAAVAAAAAAAXwAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAAAXwAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABXwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAABMAAAAAADcQAAAAAAVAAAAAAAXwAAAAADbgAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAADMAAAAAAAVAAAAAABXwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAAAMAAAAAACMAAAAAACVAAAAAADXwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAAAVAAAAAACXwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXwAAAAABbgAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAACXwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAADXwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAD
+ tiles: dgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZwAAAAABdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAACZwAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAABZwAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAADZwAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAAAZwAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAZwAAAAADZgAAAAAAZgAAAAACZgAAAAACZgAAAAABZgAAAAACZgAAAAABZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAACZgAAAAADZgAAAAAAZgAAAAADZgAAAAACZgAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABZwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAAAZwAAAAADdgAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAABZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAADZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAACZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZwAAAAABdgAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACZwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAZwAAAAAD
version: 6
-2,-1:
ind: -2,-1
- tiles: XAAAAAABcQAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABRwAAAAAAGwAAAAABcQAAAAAAIAAAAAAAZAAAAAAAZAAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABcQAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAABbgAAAAABGwAAAAADGwAAAAAARwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAXAAAAAACcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADGwAAAAABRwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAXAAAAAACcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAADGwAAAAADGwAAAAAARwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACRwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAARwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAACRwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABIAAAAAABIAAAAAAAIAAAAAADcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAADIAAAAAADcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAB
+ tiles: ZAAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABTAAAAAAAHQAAAAABeQAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABHQAAAAADHQAAAAAATAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAZAAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAADHQAAAAABTAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAZAAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAADHQAAAAADHQAAAAAATAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACTAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAATAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACTAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABIgAAAAABIgAAAAAAIgAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAB
version: 6
-3,-1:
ind: -3,-1
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAXAAAAAAAXAAAAAACXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAAGwAAAAACGwAAAAADcQAAAAAAXAAAAAAAXAAAAAACXAAAAAACYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAXAAAAAAAXAAAAAACXAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAAALgAAAAABcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAALgAAAAACYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAACXAAAAAACLgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAALgAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAALgAAAAACcQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAACcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAADcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAAC
+ tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAZAAAAAAAZAAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAZAAAAAAAZAAAAAACZAAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAZAAAAAAAZAAAAAACZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAZAAAAAAAZAAAAAADZAAAAAAAMAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAMAAAAAACaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACZAAAAAACMAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAMAAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAaAAAAAAAMAAAAAACeQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAC
version: 6
-3,0:
ind: -3,0
- tiles: XgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAACcQAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACcQAAAAAAcQAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAAAVwAAAAACcQAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAWgAAAAAAcQAAAAAAcQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAADKAAAAAAAKAAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAcQAAAAAAVAAAAAABXQAAAAAAVAAAAAACcQAAAAAAVwAAAAAAVwAAAAABVwAAAAACVwAAAAABVwAAAAACcQAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAcQAAAAAAVAAAAAABXQAAAAAAVAAAAAADcQAAAAAAWAAAAAACcQAAAAAAWAAAAAAAcQAAAAAAWAAAAAACcQAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAcQAAAAAAVAAAAAABXQAAAAAAVAAAAAADcQAAAAAAWAAAAAACcQAAAAAAWAAAAAADcQAAAAAAWAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIwAAAAABGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAMAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAJAAAAAADcQAAAAAAcQAAAAAAIwAAAAADGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAMAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAJAAAAAABcQAAAAAAIwAAAAAAGwAAAAAAGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAGwAAAAACMAAAAAABVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAJAAAAAACcQAAAAAAcQAAAAAAIwAAAAADGwAAAAADGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAGwAAAAAA
+ tiles: ZgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAZgAAAAABZgAAAAABZgAAAAADZgAAAAAAWQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAACeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAXgAAAAACeQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAADKgAAAAAAKgAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAWQAAAAABZQAAAAAAWQAAAAACeQAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAACeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAWQAAAAABZQAAAAAAWQAAAAADeQAAAAAAXwAAAAACeQAAAAAAXwAAAAAAeQAAAAAAXwAAAAACeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAWQAAAAABZQAAAAAAWQAAAAADeQAAAAAAXwAAAAACeQAAAAAAXwAAAAADeQAAAAAAXwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJQAAAAABHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAVwAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAJQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAVwAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAJQAAAAAAHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAACVwAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAJQAAAAADHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: XgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACcQAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAXwAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAADXwAAAAADVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAKAAAAAAAVwAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADXwAAAAAAVAAAAAABcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABXwAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAWAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACXwAAAAABVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAWAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADXwAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAVAAAAAADXwAAAAADVAAAAAABcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXwAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABcQAAAAAAVAAAAAAAXwAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAABcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACcQAAAAAAVAAAAAADXwAAAAADVAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAIwAAAAACcQAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADcQAAAAAAVAAAAAACXwAAAAABVAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAIwAAAAACbgAAAAAAbgAAAAADcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAVAAAAAADXwAAAAACVAAAAAABcQAAAAAAbgAAAAACbgAAAAACbgAAAAAB
+ tiles: ZgAAAAABZgAAAAACZgAAAAAAZgAAAAADZgAAAAAAZgAAAAADZgAAAAAAZgAAAAACZgAAAAABZgAAAAACeQAAAAAAZgAAAAABZgAAAAADZgAAAAAAZgAAAAABZgAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAZwAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADZwAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAKgAAAAAAXgAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADZwAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABZwAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAXwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACZwAAAAABWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAXwAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADZwAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAWQAAAAADZwAAAAADWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZwAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJQAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAZwAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAWQAAAAADZwAAAAADWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAJQAAAAACeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAWQAAAAACZwAAAAABWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAJQAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAWQAAAAADZwAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAAB
version: 6
0,-3:
ind: 0,-3
- tiles: bQAAAAAAbQAAAAAAbQAAAAABcQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAVAAAAAABbwAAAAAAbwAAAAACbwAAAAACbwAAAAACbQAAAAADbQAAAAACbQAAAAAAcQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbwAAAAAAbwAAAAABbwAAAAACbwAAAAAAbwAAAAADbQAAAAAAVAAAAAABVAAAAAABcQAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAABbQAAAAAAbQAAAAABVAAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADbQAAAAACcQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAAAbwAAAAAAbwAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAZAAAAAABcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAVAAAAAABSwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAVAAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAABcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAbQAAAAACbQAAAAAAbQAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABSwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAZQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAZQAAAAADZQAAAAAAZQAAAAADZQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACcQAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAAAZQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABZQAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAAAZQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAA
+ tiles: dQAAAAAAdQAAAAAAdQAAAAABeQAAAAAAdQAAAAAAdQAAAAABdQAAAAADdQAAAAABdQAAAAAAdQAAAAADdQAAAAAAWQAAAAABdwAAAAAAdwAAAAACdwAAAAACdwAAAAACdQAAAAADdQAAAAACdQAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAABdQAAAAABdQAAAAABdQAAAAAAdQAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAADdQAAAAAAWQAAAAABWQAAAAABeQAAAAAAdQAAAAAAdQAAAAABdQAAAAABdQAAAAACdQAAAAABdQAAAAAAdQAAAAABWQAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdQAAAAABdQAAAAAAdQAAAAADdQAAAAAAdQAAAAAAdQAAAAADdQAAAAACeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAACdQAAAAADdQAAAAADdQAAAAACdQAAAAAAdQAAAAACdQAAAAAAbAAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAAAdQAAAAADdQAAAAACdQAAAAADdQAAAAADdQAAAAAAdQAAAAACdQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAdQAAAAADdQAAAAACdQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAdQAAAAACdQAAAAAAdQAAAAACdQAAAAABdQAAAAABdQAAAAAAdQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAdQAAAAAAdQAAAAAAdQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAdQAAAAACdQAAAAAAdQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: bgAAAAAAbgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAABbQAAAAADbgAAAAADcQAAAAAAcQAAAAAAYAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAACbQAAAAABbgAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAACbgAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAVAAAAAAAVAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAABVAAAAAABVAAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAACKwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAKwAAAAAAKwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXwAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAXgAAAAAAVAAAAAAAcQAAAAAAVAAAAAACXwAAAAACRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAXgAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAXwAAAAAC
+ tiles: dgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAABdQAAAAADdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAACdQAAAAABdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAACdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAAAdQAAAAADdQAAAAADdQAAAAAAdQAAAAADdQAAAAAAdQAAAAACdQAAAAABdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAACdQAAAAAAdQAAAAACdQAAAAACdQAAAAACdQAAAAAAdQAAAAADdQAAAAAAdQAAAAABdQAAAAAAdQAAAAACdQAAAAACdQAAAAAAdQAAAAABdQAAAAACdQAAAAABdQAAAAABdQAAAAACdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAABdQAAAAADdQAAAAACdQAAAAACdQAAAAAAdQAAAAABdQAAAAACdQAAAAABdQAAAAADdQAAAAACdQAAAAADdQAAAAADdQAAAAACdQAAAAACdQAAAAAAdQAAAAAAdQAAAAADdQAAAAAAdQAAAAADdQAAAAADdQAAAAAAdQAAAAADdQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAdQAAAAABdQAAAAAAdQAAAAAAdQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAABWQAAAAABWQAAAAACdQAAAAABdQAAAAABdQAAAAABdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACLQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAALQAAAAAALQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAWQAAAAACZwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAZwAAAAAC
version: 6
1,-2:
ind: 1,-2
- tiles: cQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAANAAAAAAADwAAAAAANAAAAAAADwAAAAAANAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAANAAAAAAADwAAAAAANAAAAAAADwAAAAAANAAAAAAADwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACbgAAAAAARgAAAAADcQAAAAAARgAAAAAARgAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAACRgAAAAAARgAAAAADcQAAAAAARgAAAAAARgAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAARgAAAAAARgAAAAADRgAAAAACRgAAAAACRgAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAARgAAAAABRgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAARgAAAAACRgAAAAADcQAAAAAAbQAAAAAAbQAAAAAA
+ tiles: eQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAANgAAAAAAEQAAAAAANgAAAAAAEQAAAAAANgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAANgAAAAAAEQAAAAAANgAAAAAAEQAAAAAANgAAAAAAEQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACdgAAAAAASwAAAAADeQAAAAAASwAAAAAASwAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACSwAAAAAASwAAAAADeQAAAAAASwAAAAAASwAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAASwAAAAAASwAAAAADSwAAAAACSwAAAAACSwAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAASwAAAAABSwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAASwAAAAACSwAAAAADeQAAAAAAdQAAAAAAdQAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: DAAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAARwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACRwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAZAAAAAABVAAAAAABVAAAAAADGwAAAAADcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAACcQAAAAAAZAAAAAADZAAAAAABZAAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAACRwAAAAAAGwAAAAACcQAAAAAAZAAAAAACZAAAAAADZAAAAAAA
+ tiles: DgAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADJgAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAATAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACTAAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAABWQAAAAABWQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACTAAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: bgAAAAAAbgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASAAAAAAASAAAAAAA
+ tiles: dgAAAAAAdgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAdgAAAAACdgAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAABdgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATQAAAAAATQAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: WwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: SgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAASAAAAAAASAAAAAAASgAAAAAASgAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAASAAAAAAASAAAAAAASgAAAAAASgAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAASAAAAAAASAAAAAAASgAAAAAASgAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACSgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASAAAAAAASAAAAAAASgAAAAAASgAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAbgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAA
+ tiles: TwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACTwAAAAAATwAAAAAATwAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: SAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAA
+ tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAVAAAAAACWQAAAAAAVAAAAAADVAAAAAABWQAAAAAAVAAAAAACWQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAADVAAAAAACWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAARgAAAAABcQAAAAAAcQAAAAAARgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAABRgAAAAABRgAAAAADRgAAAAADRgAAAAADcQAAAAAARgAAAAABRgAAAAABVAAAAAADJAAAAAAAJAAAAAACJAAAAAADcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAABRgAAAAAARgAAAAACRgAAAAAARgAAAAACcQAAAAAARgAAAAABRgAAAAADRgAAAAAARgAAAAADRgAAAAAARgAAAAABRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAACRgAAAAAARgAAAAAARgAAAAAARgAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAARgAAAAABRgAAAAACRgAAAAABcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAACRgAAAAAARgAAAAADRgAAAAAARgAAAAACcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAARgAAAAACRgAAAAABRgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAACRgAAAAACRgAAAAACRgAAAAAARgAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAARgAAAAAARgAAAAACRgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAASwAAAAABeQAAAAAAeQAAAAAASwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABSwAAAAABSwAAAAADSwAAAAADSwAAAAADeQAAAAAASwAAAAABSwAAAAABWQAAAAADJgAAAAAAJgAAAAACJgAAAAADeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAACSwAAAAAASwAAAAACeQAAAAAASwAAAAABSwAAAAADSwAAAAAASwAAAAADSwAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAASwAAAAABSwAAAAACSwAAAAABeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAADSwAAAAAASwAAAAACeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAASwAAAAACSwAAAAABSwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACSwAAAAACSwAAAAACSwAAAAAASwAAAAABeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAASwAAAAAASwAAAAACSwAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-3:
ind: 1,-3
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAADAAAAAAAcQAAAAAADAAAAAADDAAAAAACDAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAACcQAAAAAAcQAAAAAADAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAACDAAAAAACcQAAAAAADAAAAAACcQAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAADAAAAAADDAAAAAABcQAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADgAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAACeQAAAAAADgAAAAACeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAB
version: 6
1,-4:
ind: 1,-4
- tiles: AAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZAAAAAADZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA
+ tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAEwAAAAAAdgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAXQAAAAAAXQAAAAAAYgAAAAAAXQAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAACYgAAAAAAYgAAAAABcQAAAAAAbQAAAAACbQAAAAABbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAYAAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAbQAAAAABbQAAAAABbQAAAAABcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAYAAAAAAAGwAAAAABXQAAAAAAGwAAAAAAcQAAAAAAbQAAAAAAbQAAAAACbQAAAAABcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAYAAAAAAAGwAAAAABXQAAAAAAGwAAAAABcQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAABbQAAAAADbQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAACbQAAAAADbQAAAAACcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbQAAAAACbQAAAAADbQAAAAACcQAAAAAAGwAAAAABGwAAAAADGwAAAAABcQAAAAAAbQAAAAADbQAAAAABVAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbQAAAAACbQAAAAABbQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAcQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAZQAAAAAAZQAAAAAAagAAAAAAZQAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACagAAAAAAagAAAAABeQAAAAAAdQAAAAACdQAAAAABdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAaAAAAAAAHQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAaAAAAAAAHQAAAAABZQAAAAAAHQAAAAAAeQAAAAAAdQAAAAAAdQAAAAACdQAAAAABeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAaAAAAAAAHQAAAAABZQAAAAAAHQAAAAABeQAAAAAAdQAAAAAAdQAAAAABdQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdQAAAAABdQAAAAADdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAdQAAAAACdQAAAAADdQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdQAAAAACdQAAAAADdQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAdQAAAAADdQAAAAABWQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdQAAAAACdQAAAAABdQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAeQAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: YAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAADbQAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAC
+ tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAADdQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAC
version: 6
-2,-3:
ind: -2,-3
- tiles: cQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABbQAAAAABcQAAAAAAbgAAAAAAbgAAAAABYAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAcQAAAAAAbgAAAAADbgAAAAABRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAADbQAAAAABbQAAAAACbQAAAAAAcQAAAAAAbgAAAAACbgAAAAACRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAABcQAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAZwAAAAAAZwAAAAADZwAAAAACZwAAAAACZwAAAAACbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACZwAAAAADZwAAAAAAZwAAAAACZwAAAAACZwAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACcQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAGwAAAAAAGwAAAAADIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAADAAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAGwAAAAADcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAA
+ tiles: eQAAAAAAeQAAAAAASgAAAAAASgAAAAAASgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAACdQAAAAACdQAAAAACdQAAAAABdQAAAAABeQAAAAAAdgAAAAAAdgAAAAABaAAAAAAAeQAAAAAASgAAAAAASgAAAAAASgAAAAAAeQAAAAAAdQAAAAACdQAAAAACdQAAAAAAdQAAAAAAdQAAAAACdQAAAAACdQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAASgAAAAAASgAAAAAASgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAACdQAAAAACdQAAAAABdQAAAAAAdQAAAAAAeQAAAAAAdgAAAAADdgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAeQAAAAAAdQAAAAADdQAAAAADdQAAAAACdQAAAAADdQAAAAABdQAAAAACdQAAAAAAeQAAAAAAdgAAAAACdgAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAdQAAAAADdQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAACbwAAAAACdQAAAAAAdQAAAAAAdQAAAAABdQAAAAAAdQAAAAACdQAAAAACdQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAdQAAAAACbwAAAAADbwAAAAAAbwAAAAACbwAAAAACbwAAAAAAdQAAAAAAdQAAAAABdQAAAAACdQAAAAADdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAACdQAAAAACdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAAAdQAAAAAAdQAAAAACdQAAAAACeQAAAAAAdQAAAAADdQAAAAAAdQAAAAABdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAADgAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: XgAAAAAAXgAAAAACXgAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAAAbgAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAACbgAAAAABcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAAAbwAAAAADbwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABcQAAAAAAbwAAAAAAbwAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAACcQAAAAAAbwAAAAABbwAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: ZgAAAAAAZgAAAAACZgAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAdgAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdwAAAAADdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAdwAAAAAAdwAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAdwAAAAABdwAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACcQAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAC
+ tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAC
version: 6
4,-1:
ind: 4,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAAARgAAAAAAVAAAAAABVAAAAAADVAAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAADRgAAAAAAVAAAAAABVAAAAAADVAAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcAAAAAAAcAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAAASwAAAAAAWQAAAAABWQAAAAADWQAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAADSwAAAAAAWQAAAAABWQAAAAADWQAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeAAAAAAAeAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: VAAAAAAAVAAAAAACRgAAAAAAVAAAAAABVAAAAAACVAAAAAACRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAVAAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACRgAAAAAAVAAAAAAAVAAAAAADVAAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACRgAAAAAAVAAAAAABVAAAAAABVAAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAADRgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAABRgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAARgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbwAAAAABbwAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAADbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAADbwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAACSwAAAAAAWQAAAAABWQAAAAACWQAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWQAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACSwAAAAAAWQAAAAAAWQAAAAADWQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACSwAAAAAAWQAAAAABWQAAAAABWQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADSwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABSwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAdwAAAAABdwAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdwAAAAADdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdwAAAAADdwAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAbQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAMAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAADcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACbQAAAAADbQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAABcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAbQAAAAABbQAAAAABbQAAAAACcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAADbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdQAAAAACdQAAAAAAdQAAAAACdQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAABeQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdQAAAAABdQAAAAADdQAAAAAAdQAAAAAAeQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdQAAAAADdQAAAAACdQAAAAABdQAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdQAAAAACdQAAAAABdQAAAAADdQAAAAAAeQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVQAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: GwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZwAAAAADZwAAAAABcQAAAAAAYAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZwAAAAACZwAAAAADcQAAAAAAYAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZwAAAAACZwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAZwAAAAADZwAAAAAAcQAAAAAARQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAZwAAAAACZwAAAAADcQAAAAAARQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZwAAAAACZwAAAAADcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZwAAAAACZwAAAAACZwAAAAADZwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA
+ tiles: HQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAADbwAAAAABeQAAAAAAaAAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbwAAAAACbwAAAAADeQAAAAAAaAAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAADbwAAAAAAeQAAAAAASgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAADeQAAAAAASgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAACbwAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAACbwAAAAADbwAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAMAAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACbQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAACcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAABbQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAADbQAAAAABIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAACcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAACdQAAAAACdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAdQAAAAACdQAAAAACdQAAAAADdQAAAAAAdQAAAAADdQAAAAABdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAVwAAAAAAdQAAAAADdQAAAAAAdQAAAAACdQAAAAAAdQAAAAADdQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAdQAAAAADdQAAAAADdQAAAAADdQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAdQAAAAADdQAAAAAAdQAAAAAAdQAAAAABdQAAAAADdQAAAAABdQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAACdQAAAAACdQAAAAADdQAAAAABdQAAAAACeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAAAdQAAAAADdQAAAAAAdQAAAAACdQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAABdQAAAAAAdQAAAAADdQAAAAABdQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAABdQAAAAACdQAAAAACdQAAAAADdQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAAAdQAAAAABdQAAAAADdQAAAAABIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAABdQAAAAACdQAAAAACeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAADdQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAADdQAAAAACdQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: VAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: GwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAAC
+ tiles: HQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAIgAAAAAAIgAAAAAAIgAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAIgAAAAAAIgAAAAAAIgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAC
version: 6
-4,-1:
ind: -4,-1
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAABMAAAAAADMAAAAAACMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAALgAAAAABcQAAAAAAcQAAAAAAYAAAAAAAXwAAAAABMAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALgAAAAABYAAAAAAAXwAAAAABMAAAAAADMAAAAAABMAAAAAAAMAAAAAAAMAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALgAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAADMAAAAAACMAAAAAAAMAAAAAACMAAAAAACMAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAXwAAAAACXwAAAAAAXwAAAAAAXwAAAAADXwAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAYAAAAAAALgAAAAABcQAAAAAAYAAAAAAALgAAAAADXwAAAAADMAAAAAABMAAAAAADMAAAAAADXwAAAAABVAAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAALgAAAAABcQAAAAAAYAAAAAAAXwAAAAADMAAAAAACMAAAAAACMAAAAAABXwAAAAABVAAAAAADcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAABMAAAAAACMAAAAAABMAAAAAABXgAAAAACXgAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAXwAAAAABVAAAAAABVAAAAAACVAAAAAABXgAAAAABVAAAAAABcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADXgAAAAADVAAAAAABcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXgAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXgAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAMAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAZwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAMAAAAAABaAAAAAAAZwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMAAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAZwAAAAACZwAAAAAAZwAAAAAAZwAAAAADZwAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAaAAAAAAAMAAAAAABeQAAAAAAaAAAAAAAMAAAAAADZwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAABWQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAMAAAAAABeQAAAAAAaAAAAAAAZwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAABWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAACZgAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAZwAAAAABWQAAAAABWQAAAAACWQAAAAABZgAAAAABWQAAAAABeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADZgAAAAADWQAAAAABeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZgAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZgAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAA
version: 6
-4,0:
ind: -4,0
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAwAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABXgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAXgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAABXgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAXgAAAAABXgAAAAACcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAXgAAAAAAXgAAAAAAcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAXgAAAAADXgAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAXgAAAAACXgAAAAABcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAXgAAAAADXgAAAAABcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABWQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABMAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADMAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACMAAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZgAAAAABZgAAAAADZgAAAAAAZgAAAAADZgAAAAACZgAAAAADZgAAAAABZgAAAAADZgAAAAABZgAAAAADZgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABZgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAZgAAAAAAZgAAAAABZgAAAAADZgAAAAABZgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAZgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAZgAAAAABZgAAAAACeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAZgAAAAADZgAAAAADQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAZgAAAAACZgAAAAABeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAZgAAAAADZgAAAAABeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABVwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADVwAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACVwAAAAAA
version: 6
-3,-5:
ind: -3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAKgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAKgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAKgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAeQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAeQAAAAAAKgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAKgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAeQAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: bgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAADXwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAXwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAABXwAAAAAAGwAAAAAAGwAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAABXwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAABXwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAADVAAAAAAAXwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABXwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABXwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAARwAAAAAARwAAAAAARwAAAAAAbgAAAAAAcQAAAAAAVAAAAAABVAAAAAADXwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAARwAAAAAARwAAAAAARwAAAAAAbgAAAAAAcQAAAAAAVAAAAAABVAAAAAAAXwAAAAACcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAARwAAAAAARwAAAAAARwAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADXwAAAAADcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAABVAAAAAADXwAAAAABYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXwAAAAADcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAADVAAAAAADXwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAABVAAAAAACXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAXwAAAAAA
+ tiles: dgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAADZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAABZwAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAABZwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAABZwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAADWQAAAAAAZwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAABZwAAAAABdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAATAAAAAAATAAAAAAATAAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADZwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAATAAAAAAATAAAAAAATAAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAZwAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAATAAAAAAATAAAAAAATAAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZwAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADZwAAAAABaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZwAAAAADeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADZwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAACZwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAZwAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: VAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADWgAAAAACWgAAAAACWgAAAAADVAAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAABWgAAAAAAWgAAAAADWgAAAAACVAAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAACVAAAAAABcQAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAACcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAVAAAAAACVAAAAAACcQAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAVAAAAAABVAAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAA
+ tiles: WQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADYQAAAAACYQAAAAACYQAAAAADWQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABYQAAAAAAYQAAAAADYQAAAAACWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAACWQAAAAABeQAAAAAAZgAAAAABZgAAAAAAZgAAAAADZgAAAAADZgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAABeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAABWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAWQAAAAACWQAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: IwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXwAAAAACVAAAAAACcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADIwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADXwAAAAAAVAAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADIwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAXwAAAAADVAAAAAACcQAAAAAAbgAAAAAAbgAAAAADbgAAAAABIwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABXwAAAAAAVAAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABXwAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAADcQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAABXwAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABMAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA
+ tiles: JQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZwAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADJQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZwAAAAAAWQAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADJQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAZwAAAAADWQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABJQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZwAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABZwAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABZgAAAAACZgAAAAABZgAAAAABZgAAAAABZgAAAAABZgAAAAACZgAAAAADZgAAAAACZgAAAAAAZgAAAAADeQAAAAAAZgAAAAADZgAAAAAAZgAAAAACZgAAAAACZgAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABZwAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABMgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALAAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALAAAAAAALAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALAAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAALAAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: YQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAAAMAAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAARgAAAAAAcQAAAAAARgAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAZAAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAZAAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARgAAAAAAcQAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAZAAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAZAAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: aQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAWQAAAAAAMgAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAAeQAAAAAASwAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAbAAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAASwAAAAAAeQAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAbAAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAbAAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAbgAAAAACbgAAAAABbgAAAAABcQAAAAAAbgAAAAACbgAAAAACbgAAAAABcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAVAAAAAAAbgAAAAABcQAAAAAAbgAAAAADbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAVAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAWQAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: cAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
version: 6
- 3,2:
- ind: 3,2
- tiles: cQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAA
+ 4,3:
+ ind: 4,3
+ tiles: eQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- 4,2:
- ind: 4,2
- tiles: AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA
+ 6,2:
+ ind: 6,2
+ tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- 4,1:
- ind: 4,1
- tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA
+ 5,1:
+ ind: 5,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: VAAAAAABVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAGwAAAAABGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADGwAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAGwAAAAAAGwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADGwAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAIwAAAAADGwAAAAACGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABGwAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIwAAAAABGwAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADGwAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAMAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAAMAAAAAACVAAAAAAAVAAAAAABVAAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAAAMAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: WQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJQAAAAAAHQAAAAABHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAAAHQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJQAAAAADHQAAAAACHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAVwAAAAAAWQAAAAAAWQAAAAABWQAAAAADZgAAAAAAZgAAAAADZgAAAAADZgAAAAABZgAAAAABZgAAAAACZgAAAAADZgAAAAADZgAAAAADZgAAAAACZgAAAAADZgAAAAAAVwAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,2:
ind: -3,2
- tiles: SgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAASgAAAAAASgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARQAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARQAAAAAARgAAAAAARgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAARgAAAAAARgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: TwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAATwAAAAAATwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAZwAAAAAAWQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: VAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVAAAAAABcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAXgAAAAAAVAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAXgAAAAAAVAAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAVAAAAAACcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbAAAAAADcQAAAAAAIwAAAAABcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAARQAAAAAARQAAAAAAcQAAAAAAbAAAAAADcQAAAAAAIwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbAAAAAADcQAAAAAAIwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbAAAAAAAcQAAAAAAIwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAZgAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAZgAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdAAAAAADeQAAAAAAJQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAdAAAAAADeQAAAAAAJQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdAAAAAADeQAAAAAAJQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdAAAAAAAeQAAAAAAJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: bwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAJAAAAAAAVAAAAAAAVAAAAAAARgAAAAAAcQAAAAAALgAAAAAAVAAAAAAAXwAAAAAAbwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAXgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAXgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAALgAAAAAALgAAAAAALgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbAAAAAACcQAAAAAAbAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbAAAAAAAcQAAAAAAbAAAAAADcQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbAAAAAACcQAAAAAAbAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbAAAAAAAcQAAAAAAbAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAJgAAAAAAWQAAAAAAWQAAAAAASwAAAAAAeQAAAAAAMAAAAAAAWQAAAAAAZwAAAAAAdwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdAAAAAACeQAAAAAAdAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdAAAAAAAeQAAAAAAdAAAAAADeQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdAAAAAACeQAAAAAAdAAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdAAAAAAAeQAAAAAAdAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACMAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADMAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAMAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACVwAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADVwAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-5:
ind: -1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATwAAAAAATwAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-5:
ind: 0,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAA
version: 6
1,-5:
ind: 1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAcAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: cQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAABIgAAAAACIgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAIgAAAAADIgAAAAACIgAAAAAAIgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAACDwAAAAAADwAAAAAADwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAJAAAAAADJAAAAAACJAAAAAAAJAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: WQAAAAAASgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAASgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAMQAAAAAAPAAAAAAAPAAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAWQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAASgAAAAAAWQAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAWQAAAAAAWQAAAAAASgAAAAAAWQAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAcQAAAAAAWQAAAAAASgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: YAAAAAAATwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAARgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAATwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAEwAAAAAAdgAAAAAAdgAAAAAAYAAAAAAATwAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAdgAAAAAAdgAAAAAAeQAAAAAATwAAAAAAYAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAYAAAAAAAYAAAAAAATwAAAAAAYAAAAAAAdgAAAAAAdgAAAAAAEwAAAAAAeQAAAAAAYAAAAAAATwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAAAQQAAAAAAPAAAAAAASgAAAAAAWQAAAAAASgAAAAAASgAAAAAAWQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAAAPAAAAAAAPAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASgAAAAAAWQAAAAAASgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAMQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAAARgAAAAAAPgAAAAAATwAAAAAAYAAAAAAATwAAAAAATwAAAAAAYAAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATwAAAAAAYAAAAAAATwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAMwAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAJAAAAAAAJAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAJAAAAAAAJAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAJAAAAAAAJAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAJAAAAAAAJAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAARgAAAAAARgAAAAAARgAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: QQAAAAAAPAAAAAAAMQAAAAAAPAAAAAAAcQAAAAAAMQAAAAAAPAAAAAAAQQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAcQAAAAAAPAAAAAAAQQAAAAAAMQAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAQQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAASgAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAASgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA
+ tiles: RgAAAAAAPgAAAAAAMwAAAAAAPgAAAAAAeQAAAAAAMwAAAAAAPgAAAAAARgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAPgAAAAAARgAAAAAAMwAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAARgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAATwAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATwAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA
version: 6
3,-5:
ind: 3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAMQAAAAAAPAAAAAAAPAAAAAAAQQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAPgAAAAAAPgAAAAAARgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAMwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,3:
ind: -3,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA
version: 6
-3,4:
ind: -3,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAABIgAAAAADIgAAAAADIgAAAAADIgAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAIgAAAAAAIgAAAAADIgAAAAACIgAAAAADIgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGwAAAAACcQAAAAAAGwAAAAACNAAAAAAAGwAAAAABGwAAAAAANAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAIgAAAAACIgAAAAADIgAAAAADIgAAAAADIgAAAAABcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAGwAAAAABGwAAAAAAGwAAAAADNAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABGwAAAAABNAAAAAAAGwAAAAABcQAAAAAAcQAAAAAANAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJAAAAAABJAAAAAADJAAAAAADJAAAAAADJAAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAJAAAAAAAJAAAAAADJAAAAAACJAAAAAADJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAACNgAAAAAAHQAAAAABHQAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAJAAAAAACJAAAAAADJAAAAAADJAAAAAADJAAAAAABeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAABHQAAAAAAHQAAAAADNgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABHQAAAAABNgAAAAAAHQAAAAABeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAA
version: 6
- 4,3:
- ind: 4,3
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 4,1:
+ ind: 4,1
+ tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
version: 6
1,4:
ind: 1,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,4:
ind: 2,4
- tiles: YAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAawAAAAACawAAAAACawAAAAAAawAAAAADawAAAAADawAAAAABawAAAAABcQAAAAAAawAAAAAAawAAAAABawAAAAACawAAAAACYAAAAAAAYAAAAAAAYAAAAAAAZAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAADZAAAAAADZAAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADDwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAADIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAADIgAAAAADIgAAAAABIgAAAAABAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: aAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAABeQAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAACaAAAAAAAaAAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAJAAAAAACJAAAAAAAJAAAAAADJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAADJAAAAAADJAAAAAABJAAAAAABAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAABVAAAAAABcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAACVAAAAAABcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAACVAAAAAACcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAEgAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAWQAAAAABeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAWQAAAAABeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAB
version: 6
-4,3:
ind: -4,3
- tiles: AAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,2:
ind: -5,2
- tiles: cQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAVAAAAAACVAAAAAACVAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAVAAAAAABVAAAAAACVAAAAAADYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAWQAAAAABWQAAAAACWQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,1:
ind: -6,1
- tiles: VAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAARQAAAAAARQAAAAAAVAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACcQAAAAAARQAAAAAARQAAAAAAVAAAAAADcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAARQAAAAAARQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAADeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,4:
ind: -2,4
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,0:
ind: -6,0
- tiles: AAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAADVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADGwAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABGwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADGwAAAAACGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAcAAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAAC
+ tiles: AAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAC
version: 6
-5,-1:
ind: -5,-1
- tiles: SAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAADXwAAAAACXwAAAAABMAAAAAADMAAAAAACMAAAAAAAVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAABXwAAAAACNQAAAAADNQAAAAADNQAAAAABNQAAAAACNQAAAAACNQAAAAABNQAAAAADMAAAAAACMAAAAAAAMAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACXwAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAACNQAAAAAANQAAAAADNQAAAAAAMAAAAAACMAAAAAAAMAAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAADXwAAAAACNQAAAAADNQAAAAABNQAAAAAANQAAAAADNQAAAAABNQAAAAACNQAAAAAAXwAAAAAAXwAAAAADXwAAAAADXwAAAAABXwAAAAACXwAAAAABXwAAAAABXwAAAAADXwAAAAACNQAAAAABNQAAAAAANQAAAAAANQAAAAABNQAAAAADNQAAAAAANQAAAAAAMAAAAAABMAAAAAACMAAAAAADVAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAXwAAAAACNQAAAAAANQAAAAACNQAAAAADNQAAAAAANQAAAAACNQAAAAAANQAAAAACMAAAAAAAMAAAAAABMAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAXwAAAAAANQAAAAAANQAAAAAANQAAAAACNQAAAAABNQAAAAADNQAAAAACNQAAAAAAMAAAAAAAMAAAAAAAMAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAXwAAAAAANQAAAAACNQAAAAAANQAAAAACNQAAAAAANQAAAAADNQAAAAABNQAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABXwAAAAADXwAAAAAAXwAAAAADXwAAAAAAXwAAAAABXwAAAAABXwAAAAADXwAAAAADcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA
+ tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZwAAAAACZwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAABZwAAAAACNwAAAAADNwAAAAADNwAAAAABNwAAAAACNwAAAAACNwAAAAABNwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACZwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAACNwAAAAAANwAAAAADNwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADZwAAAAACNwAAAAADNwAAAAABNwAAAAAANwAAAAADNwAAAAABNwAAAAACNwAAAAAAZwAAAAAAZwAAAAADZwAAAAADZwAAAAABZwAAAAACZwAAAAABZwAAAAABZwAAAAADZwAAAAACNwAAAAABNwAAAAAANwAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAZwAAAAACNwAAAAAANwAAAAACNwAAAAADNwAAAAAANwAAAAACNwAAAAAANwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAZwAAAAAANwAAAAAANwAAAAAANwAAAAACNwAAAAABNwAAAAADNwAAAAACNwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAZwAAAAAANwAAAAACNwAAAAAANwAAAAACNwAAAAAANwAAAAADNwAAAAABNwAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABZwAAAAADZwAAAAAAZwAAAAADZwAAAAAAZwAAAAABZwAAAAABZwAAAAADZwAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA
version: 6
-6,-1:
ind: -6,-1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAATAAAAAAATAAAAAAAVAAAAAACVAAAAAACVAAAAAADTwAAAAAATwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAATAAAAAAATAAAAAAAXwAAAAABXwAAAAABXwAAAAADTwAAAAAATwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAATAAAAAAATAAAAAAAVAAAAAADXwAAAAACVAAAAAADTwAAAAAATwAAAAAAcQAAAAAAcQAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJQAAAAACJQAAAAAEJQAAAAAAJQAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAADXwAAAAADVAAAAAABVAAAAAABVAAAAAABJQAAAAAFJQAAAAAAJQAAAAADJQAAAAADcQAAAAAAVAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAAAMAAAAAADMAAAAAACXwAAAAADMAAAAAACMAAAAAAAMAAAAAACJQAAAAABJQAAAAABJQAAAAABJQAAAAABcQAAAAAAVAAAAAACMAAAAAAAMAAAAAABMAAAAAACMAAAAAACMAAAAAACMAAAAAABXwAAAAAAMAAAAAADMAAAAAADMAAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAFcQAAAAAAVAAAAAABMAAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAAAXwAAAAABMAAAAAAAMAAAAAACMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAADXwAAAAABXwAAAAACXwAAAAACXwAAAAADXwAAAAACXwAAAAAAXwAAAAACXwAAAAABXwAAAAAAXwAAAAACXwAAAAACXwAAAAACJQAAAAAEJQAAAAAFJQAAAAAAJQAAAAAFcQAAAAAAVAAAAAACMAAAAAAAMAAAAAABMAAAAAAAMAAAAAABMAAAAAABMAAAAAADXwAAAAADMAAAAAABMAAAAAABMAAAAAADJQAAAAADJQAAAAABJQAAAAAEJQAAAAAFcQAAAAAAVAAAAAADMAAAAAABMAAAAAADMAAAAAADMAAAAAADMAAAAAAAMAAAAAABXwAAAAACMAAAAAABMAAAAAABMAAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAAEcQAAAAAAVAAAAAABMAAAAAACMAAAAAACMAAAAAAAMAAAAAABMAAAAAACMAAAAAAAVAAAAAAAMAAAAAACMAAAAAACMAAAAAADJQAAAAABJQAAAAADJQAAAAABJQAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAA
+ tiles: EAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAUQAAAAAAUQAAAAAAWQAAAAACWQAAAAACWQAAAAADVAAAAAAAVAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAUQAAAAAAUQAAAAAAZwAAAAABZwAAAAABZwAAAAADVAAAAAAAVAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAUQAAAAAAUQAAAAAAWQAAAAADZwAAAAACWQAAAAADVAAAAAAAVAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADZwAAAAADWQAAAAABWQAAAAABWQAAAAABWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAABVwAAAAAAVwAAAAAAVwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAZwAAAAABZwAAAAACZwAAAAACZwAAAAADZwAAAAACZwAAAAAAZwAAAAACZwAAAAABZwAAAAAAZwAAAAACZwAAAAACZwAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZwAAAAACVwAAAAAAVwAAAAAAVwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAABVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAA
version: 6
3,4:
ind: 3,4
- tiles: awAAAAACawAAAAADawAAAAABawAAAAADawAAAAABcQAAAAAANAAAAAAAGwAAAAABcQAAAAAAcQAAAAAANAAAAAAAGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAACGwAAAAADNAAAAAAAGwAAAAACcQAAAAAAcQAAAAAANAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAGwAAAAACGwAAAAACGwAAAAACNAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAIgAAAAADIgAAAAAAIgAAAAAAIgAAAAACIgAAAAACcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGwAAAAADcQAAAAAAGwAAAAADNAAAAAAAGwAAAAAAGwAAAAAANAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAIgAAAAABIgAAAAAAIgAAAAABIgAAAAACIgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAACIgAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: cwAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAABeQAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACHQAAAAADNgAAAAAAHQAAAAACeQAAAAAAeQAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACHQAAAAACHQAAAAACNgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAJAAAAAADJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAHQAAAAADNgAAAAAAHQAAAAAAHQAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAJAAAAAACJAAAAAACJAAAAAAAJAAAAAACJAAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAHwAAAAAASAAAAAAASAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIQAAAAAATQAAAAAATQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA
version: 6
-6,2:
ind: -6,2
- tiles: VAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAADVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
version: 6
-7,0:
ind: -7,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAADVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAACVAAAAAABVAAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAADWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAACWQAAAAABWQAAAAAD
version: 6
-5,3:
ind: -5,3
- tiles: cAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,3:
ind: -6,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,3:
ind: -7,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA
version: 6
-7,-1:
ind: -7,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAAAFAAAAAAEBwAAAAAAJQAAAAAAJQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAACFAAAAAADBwAAAAAAJQAAAAADJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAAAFAAAAAAEBwAAAAAAJQAAAAAFJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAAAFAAAAAABBwAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAACFAAAAAAFBwAAAAAAJQAAAAAEJQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAAGFAAAAAADBwAAAAAAJQAAAAACJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAAFFAAAAAAFBwAAAAAAJQAAAAADJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAAFFAAAAAACBwAAAAAAJQAAAAAEJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFAAAAAADFAAAAAABBwAAAAAAJQAAAAADJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAAFgAAAAAEBwAAAAAAJwAAAAAAJwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAACFgAAAAADBwAAAAAAJwAAAAADJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAAFgAAAAAEBwAAAAAAJwAAAAAFJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAAFgAAAAABBwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAACFgAAAAAFBwAAAAAAJwAAAAAEJwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAGFgAAAAADBwAAAAAAJwAAAAACJwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAFFgAAAAAFBwAAAAAAJwAAAAADJwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAFFgAAAAACBwAAAAAAJwAAAAAEJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAADFgAAAAABBwAAAAAAJwAAAAADJwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-2:
ind: -6,-2
- tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAA
+ tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA
version: 6
-7,-2:
ind: -7,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: AAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAA
version: 6
-5,-3:
ind: -5,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-4:
ind: -5,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,0:
ind: 5,0
- tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,-6:
ind: -3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA
version: 6
-2,-6:
ind: -2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: SAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: TQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAVAAAAAAARwAAAAAARwAAAAAAVAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAHwAAAAAASAAAAAAASAAAAAAAIAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAASAAAAAAASAAAAAAASAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAA
+ tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAWQAAAAAATAAAAAAATAAAAAAAWQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIQAAAAAATQAAAAAATQAAAAAAIgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAATQAAAAAATQAAAAAATQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAA
version: 6
5,-3:
ind: 5,-3
- tiles: IAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: IgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-4:
ind: 5,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-2:
ind: 5,-2
- tiles: AAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 5,3:
- ind: 5,3
- tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,2:
ind: 5,2
- tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
- 5,1:
- ind: 5,1
- tiles: AAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 4,2:
+ ind: 4,2
+ tiles: eQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: AAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-5,-5:
ind: -5,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ version: 6
+ 5,3:
+ ind: 5,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,3:
+ ind: 6,3
+ tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,1:
+ ind: 6,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -596,44 +611,44 @@ entities:
color: '#FFFFFFFF'
id: Arrows
decals:
- 1862: -23,-3
- 1863: -22,-3
- 1864: -21,-3
+ 1861: -23,-3
+ 1862: -22,-3
+ 1863: -21,-3
- node:
color: '#FFFFFFFF'
id: Arrows
decals:
- 346: 3,23
- 691: -4,-22
- 692: -4,-21
- 693: -4,-20
- 1167: -22,-67
- 1168: -36,-65
- 1169: -35,-65
- 1170: 0,-47
- 1171: -1,-47
+ 345: 3,23
+ 690: -4,-22
+ 691: -4,-21
+ 692: -4,-20
+ 1166: -22,-67
+ 1167: -36,-65
+ 1168: -35,-65
+ 1169: 0,-47
+ 1170: -1,-47
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 347: 4.968911,22.579107
- 3916: -25,-27
+ 346: 4.968911,22.579107
+ 3874: -25,-27
- node:
color: '#FFFFFFFF'
id: Basalt1
decals:
- 5619: 44.808918,-43.982224
+ 5559: 44.808918,-43.982224
- node:
color: '#FFFFFFFF'
id: Basalt3
decals:
- 4753: -10,-33
+ 4711: -10,-33
- node:
color: '#FFFFFFFF'
id: Basalt7
decals:
- 5618: 45.74027,-45.012947
+ 5558: 45.74027,-45.012947
- node:
color: '#FFFF0096'
id: Bot
@@ -663,225 +678,221 @@ entities:
color: '#FFFFFFFF'
id: Bot
decals:
- 1041: 1,-38
- 1192: 7,-46
- 1193: 8,-46
- 1664: 24,26
- 1665: 24,25
- 1666: 24,31
- 1667: 24,30
- 1670: 7,32
- 1828: -52,30
- 1829: -51,30
- 1830: -49,30
- 1831: -46,30
- 1840: -50,35
- 1841: -50,34
- 1842: -50,33
- 1843: -47,32
- 1846: -50,32
- 1847: -49,32
- 2076: -33,-53
- 2077: -33,-54
- 2130: 10,-55
- 2390: 39,39
- 2391: 38,38
- 2392: 39,38
- 2393: 40,38
- 2394: 39,37
- 2527: 34,31
- 2749: -77,21
- 2750: -77,15
- 2751: -96,18
- 2752: -88,18
- 3039: -81,2
- 3040: -80,2
- 3041: -79,2
- 3042: -78,3
- 3043: -82,3
- 3044: -82,6
- 3045: -81,7
- 3046: -80,7
- 3047: -79,7
- 3048: -78,6
- 3049: -85,1
- 3050: -83,1
- 3051: -83,8
- 3052: -85,8
- 3053: -85,4
- 3054: -85,5
- 3055: -83,4
- 3056: -83,5
- 3057: -86,3
- 3058: -86,6
- 3059: -87,7
- 3060: -88,7
- 3061: -89,7
- 3062: -90,6
- 3063: -91,8
- 3064: -92,8
- 3065: -91,1
- 3066: -92,1
- 3067: -90,3
- 3068: -89,2
- 3069: -88,2
- 3070: -87,2
- 3178: -48,-38
- 3181: -48,-43
- 3209: -48,-38
- 3210: -48,-44
- 3225: -48,-51
- 3226: -48,-52
- 3227: -48,-46
- 3228: -48,-47
- 3252: -48,-30
- 3253: -48,-31
- 3264: -24,-36
- 3265: -24,-37
- 3390: 66,-5
- 3391: 67,-5
- 3392: 68,-5
- 3393: 69,-5
- 3394: 66,-3
- 3395: 67,-3
- 3396: 68,-3
- 3397: 69,-3
- 3398: 70,-3
- 3399: 70,-5
- 3400: 70,-1
- 3401: 69,-1
- 3402: 68,-1
- 3403: 67,-1
- 3404: 66,-1
- 3405: 65,-3
- 3406: 65,-5
- 3407: 65,-1
- 3477: 59,-1
- 3480: 58,-1
- 3481: 58,-3
- 3482: 58,-5
- 3621: -34,-30
- 3622: -33,-30
- 3623: -32,-30
- 3624: -31,-30
- 3625: -31,-26
- 3626: -32,-26
- 3627: -33,-26
- 3628: -34,-26
- 3698: -36,-24
- 3699: -37,-24
- 3700: -38,-24
- 3701: -36,-30
- 3702: -37,-30
- 3703: -38,-30
- 3704: -38,-28
- 3705: -37,-28
- 3706: -36,-28
- 3721: -34,-28
- 3722: -33,-28
- 3723: -32,-24
- 3724: -33,-24
- 3725: -34,-24
- 3727: 53,-36
- 3728: 53,-32
- 3746: -32,-28
- 3777: -27,-24
- 3778: -27,-25
- 3779: -27,-26
- 3801: -44,-23
- 3802: -43,-23
- 3803: -43,-24
- 3804: -44,-24
- 3805: -44,-25
- 3806: -43,-25
- 3807: -43,-26
- 3808: -44,-26
- 3809: -41,-23
- 3810: -41,-24
- 3811: -40,-24
- 3812: -40,-23
- 3826: -41,-26
- 3827: -40,-26
- 3867: -30,-30
- 3868: -29,-30
- 3869: -28,-30
- 3870: -27,-30
- 4022: -48,-39
- 4040: -19,-16
- 4044: 11,-3
- 4045: 12,-3
- 4046: 15,-3
- 4047: 17,-3
- 4048: 17,-4
- 4049: 17,-5
- 4050: 17,-6
- 4051: 17,-7
- 4085: 65,-9
- 4086: 65,-8
- 4087: 68,-8
- 4326: -25,-28
- 4478: 15,-4
- 4479: 15,-5
- 4484: 13,-3
- 4485: 13,-7
- 4486: 14,-7
- 4487: 15,-7
- 4488: 11,-7
- 4509: 79,-53
- 4599: 79,-37
- 4696: -24,-45
- 4697: -23,-45
- 4698: -22,-45
- 4744: -24,-48
- 4845: -30,-7
- 4846: -29,-7
- 4847: -28,-7
- 4848: -27,-7
- 4849: -27,-9
- 4850: -28,-9
- 4851: -29,-9
- 4852: -30,-9
- 5099: -3,43
- 5100: 1,43
- 5101: -3,38
- 5102: -10,11
- 5103: -9,12
- 5104: 7,12
- 5105: 8,11
- 5106: 7,-11
- 5107: 8,-10
- 5108: -9,-11
- 5109: -10,-10
- 5110: -38,3
- 5111: -37,-2
- 5112: -42,3
- 5113: -42,-3
- 5114: -24,25
- 5115: -24,30
- 5116: 76,-3
- 5117: 51,-6
- 5118: -4,-34
- 5119: -4,-33
- 5120: -4,-32
- 5121: -28,-36
- 5122: -32,-34
- 5125: 71,2
- 5126: 72,2
- 5152: 28,18
- 5153: 28,17
- 5154: 28,16
- 5159: -8,-39
- 5163: -3,-38
- 5165: -39,-3
- 5234: -9,50
- 5235: -6,54
- 5236: -2,54
- 5237: -7,49
- 5238: 3,49
- 5403: 10,45
- 5404: 11,45
- 5406: 7,47
- 5407: 8,47
+ 1040: 1,-38
+ 1191: 7,-46
+ 1192: 8,-46
+ 1663: 24,26
+ 1664: 24,25
+ 1665: 24,31
+ 1666: 24,30
+ 1669: 7,32
+ 1827: -52,30
+ 1828: -51,30
+ 1829: -49,30
+ 1830: -46,30
+ 1839: -50,35
+ 1840: -50,34
+ 1841: -50,33
+ 1842: -47,32
+ 1845: -50,32
+ 1846: -49,32
+ 2052: -33,-53
+ 2053: -33,-54
+ 2106: 10,-55
+ 2348: 39,39
+ 2349: 38,38
+ 2350: 39,38
+ 2351: 40,38
+ 2352: 39,37
+ 2485: 34,31
+ 2707: -77,21
+ 2708: -77,15
+ 2709: -96,18
+ 2710: -88,18
+ 2997: -81,2
+ 2998: -80,2
+ 2999: -79,2
+ 3000: -78,3
+ 3001: -82,3
+ 3002: -82,6
+ 3003: -81,7
+ 3004: -80,7
+ 3005: -79,7
+ 3006: -78,6
+ 3007: -85,1
+ 3008: -83,1
+ 3009: -83,8
+ 3010: -85,8
+ 3011: -85,4
+ 3012: -85,5
+ 3013: -83,4
+ 3014: -83,5
+ 3015: -86,3
+ 3016: -86,6
+ 3017: -87,7
+ 3018: -88,7
+ 3019: -89,7
+ 3020: -90,6
+ 3021: -91,8
+ 3022: -92,8
+ 3023: -91,1
+ 3024: -92,1
+ 3025: -90,3
+ 3026: -89,2
+ 3027: -88,2
+ 3028: -87,2
+ 3136: -48,-38
+ 3139: -48,-43
+ 3167: -48,-38
+ 3168: -48,-44
+ 3183: -48,-51
+ 3184: -48,-52
+ 3185: -48,-46
+ 3186: -48,-47
+ 3210: -48,-30
+ 3211: -48,-31
+ 3222: -24,-36
+ 3223: -24,-37
+ 3348: 66,-5
+ 3349: 67,-5
+ 3350: 68,-5
+ 3351: 69,-5
+ 3352: 66,-3
+ 3353: 67,-3
+ 3354: 68,-3
+ 3355: 69,-3
+ 3356: 70,-3
+ 3357: 70,-5
+ 3358: 70,-1
+ 3359: 69,-1
+ 3360: 68,-1
+ 3361: 67,-1
+ 3362: 66,-1
+ 3363: 65,-3
+ 3364: 65,-5
+ 3365: 65,-1
+ 3435: 59,-1
+ 3438: 58,-1
+ 3439: 58,-3
+ 3440: 58,-5
+ 3579: -34,-30
+ 3580: -33,-30
+ 3581: -32,-30
+ 3582: -31,-30
+ 3583: -31,-26
+ 3584: -32,-26
+ 3585: -33,-26
+ 3586: -34,-26
+ 3656: -36,-24
+ 3657: -37,-24
+ 3658: -38,-24
+ 3659: -36,-30
+ 3660: -37,-30
+ 3661: -38,-30
+ 3662: -38,-28
+ 3663: -37,-28
+ 3664: -36,-28
+ 3679: -34,-28
+ 3680: -33,-28
+ 3681: -32,-24
+ 3682: -33,-24
+ 3683: -34,-24
+ 3685: 53,-36
+ 3686: 53,-32
+ 3704: -32,-28
+ 3735: -27,-24
+ 3736: -27,-25
+ 3737: -27,-26
+ 3759: -44,-23
+ 3760: -43,-23
+ 3761: -43,-24
+ 3762: -44,-24
+ 3763: -44,-25
+ 3764: -43,-25
+ 3765: -43,-26
+ 3766: -44,-26
+ 3767: -41,-23
+ 3768: -41,-24
+ 3769: -40,-24
+ 3770: -40,-23
+ 3784: -41,-26
+ 3785: -40,-26
+ 3825: -30,-30
+ 3826: -29,-30
+ 3827: -28,-30
+ 3828: -27,-30
+ 3980: -48,-39
+ 3998: -19,-16
+ 4002: 11,-3
+ 4003: 12,-3
+ 4004: 15,-3
+ 4005: 17,-3
+ 4006: 17,-4
+ 4007: 17,-5
+ 4008: 17,-6
+ 4009: 17,-7
+ 4043: 65,-9
+ 4044: 65,-8
+ 4045: 68,-8
+ 4284: -25,-28
+ 4436: 15,-4
+ 4437: 15,-5
+ 4442: 13,-3
+ 4443: 13,-7
+ 4444: 14,-7
+ 4445: 15,-7
+ 4446: 11,-7
+ 4467: 79,-53
+ 4557: 79,-37
+ 4654: -24,-45
+ 4655: -23,-45
+ 4656: -22,-45
+ 4702: -24,-48
+ 4803: -30,-7
+ 4804: -29,-7
+ 4805: -28,-7
+ 4806: -27,-7
+ 4807: -27,-9
+ 4808: -28,-9
+ 4809: -29,-9
+ 4810: -30,-9
+ 5051: -3,43
+ 5052: 1,43
+ 5053: -3,38
+ 5054: -10,11
+ 5055: -9,12
+ 5056: 7,12
+ 5057: 8,11
+ 5058: 7,-11
+ 5059: 8,-10
+ 5060: -9,-11
+ 5061: -10,-10
+ 5062: -24,25
+ 5063: -24,30
+ 5064: 76,-3
+ 5065: 51,-6
+ 5066: -4,-34
+ 5067: -4,-33
+ 5068: -4,-32
+ 5069: -28,-36
+ 5070: -32,-34
+ 5073: 71,2
+ 5074: 72,2
+ 5104: -8,-39
+ 5108: -3,-38
+ 5174: -9,50
+ 5175: -6,54
+ 5176: -2,54
+ 5177: -7,49
+ 5178: 3,49
+ 5343: 10,45
+ 5344: 11,45
+ 5346: 7,47
+ 5347: 8,47
+ 5592: 79,38
+ 5605: 37,29
+ 5606: 38,29
+ 5607: 39,29
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -896,64 +907,63 @@ entities:
120: 13,31
121: 13,30
122: 13,29
- 2146: -11,-37
- 2147: -18,-42
- 2148: -25,-40
- 2149: -24,-40
- 2150: -23,-40
- 2153: -12,-39
- 2154: -10,-39
- 2155: 2,-34
- 2156: 3,-35
- 2157: 3,-35
- 2158: 10,-42
- 2159: 14,-39
- 2164: 24,9
- 2165: 27,10
- 2166: 65,1
- 2167: 65,5
- 2168: 64,5
- 2169: -49,24
- 2170: -45,18
- 2171: -45,20
- 2172: -45,16
- 2173: -48,12
- 2174: -52,16
- 2175: -52,20
- 2176: -59,15
- 2177: -59,21
- 2195: 56,-7
- 2196: 57,-7
- 2202: 30,31
- 2203: 31,31
- 2204: 32,31
- 2205: 33,31
- 2375: 62,33
+ 2122: -11,-37
+ 2123: -18,-42
+ 2124: -25,-40
+ 2125: -24,-40
+ 2126: -23,-40
+ 2129: -12,-39
+ 2130: -10,-39
+ 2131: 2,-34
+ 2132: 3,-35
+ 2133: 3,-35
+ 2134: 10,-42
+ 2135: 14,-39
+ 2140: 24,9
+ 2141: 27,10
+ 2142: 65,1
+ 2143: 65,5
+ 2144: 64,5
+ 2145: -49,24
+ 2146: -45,18
+ 2147: -45,20
+ 2148: -45,16
+ 2149: -48,12
+ 2150: -52,16
+ 2151: -52,20
+ 2152: -59,15
+ 2153: -59,21
+ 2171: 56,-7
+ 2172: 57,-7
+ 2178: 30,31
+ 2179: 31,31
+ 2180: 32,31
+ 2181: 33,31
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Bot
decals:
- 1164: -31,-69
- 1165: -21,-59
- 1166: -16,-62
+ 1163: -31,-69
+ 1164: -21,-59
+ 1165: -16,-62
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Bot
decals:
- 349: 3,21
- 350: 4,21
- 351: 5,21
+ 348: 3,21
+ 349: 4,21
+ 350: 5,21
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: Bot
decals:
- 3471: 74,6
- 3472: 73,6
- 3473: 74,2
- 3474: 73,2
+ 3429: 74,6
+ 3430: 73,6
+ 3431: 74,2
+ 3432: 73,2
- node:
color: '#FFF92B96'
id: BotGreyscale
@@ -964,76 +974,76 @@ entities:
color: '#FFFFFFE2'
id: BotGreyscale
decals:
- 740: -19,-22
- 741: -13,-22
+ 739: -19,-22
+ 740: -13,-22
- node:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 4006: -20,-22
- 4007: -20,-21
- 4016: -12,-21
- 4017: -12,-22
- 4061: -20,-20
- 4062: -12,-20
+ 3964: -20,-22
+ 3965: -20,-21
+ 3974: -12,-21
+ 3975: -12,-22
+ 4019: -20,-20
+ 4020: -12,-20
- node:
color: '#FFFFFFFF'
id: BotLeft
decals:
- 4303: -34,43
- 4304: -33,44
+ 4261: -34,43
+ 4262: -33,44
- node:
color: '#EFB341D9'
id: BotLeftGreyscale
decals:
- 1942: 10,16
- 1943: 9,16
- 1944: 8,16
- 1945: 8,15
- 1946: 9,15
- 1947: 10,15
+ 1923: 10,16
+ 1924: 9,16
+ 1925: 8,16
+ 1926: 8,15
+ 1927: 9,15
+ 1928: 10,15
- node:
color: '#FFFFFFE0'
id: BotLeftGreyscale
decals:
- 744: -17,-20
+ 743: -17,-20
- node:
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
- 2389: 40,39
- 2395: 38,37
+ 2347: 40,39
+ 2353: 38,37
- node:
color: '#EFB341D9'
id: BotRight
decals:
- 1937: 3,16
- 1938: 2,16
- 1939: 2,15
- 1940: 3,15
- 1941: 4,15
+ 1918: 3,16
+ 1919: 2,16
+ 1920: 2,15
+ 1921: 3,15
+ 1922: 4,15
- node:
color: '#F2AF41C0'
id: BotRight
decals:
- 1949: 4,16
+ 1930: 4,16
- node:
color: '#FFFFFFFF'
id: BotRight
decals:
- 3733: 53,-33
- 3735: 53,-37
+ 3691: 53,-33
+ 3693: 53,-37
- node:
color: '#FFFFFFE2'
id: BotRightGreyscale
decals:
- 734: -15,-20
+ 733: -15,-20
- node:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 2388: 38,39
- 2396: 40,37
+ 2346: 38,39
+ 2354: 40,37
- node:
color: '#52B4E996'
id: Box
@@ -1043,420 +1053,420 @@ entities:
color: '#FFFFFFFF'
id: Box
decals:
- 345: 3,23
- 2384: 19,28
- 3738: 64,-36
- 3739: 64,-35
- 3740: 64,-34
- 3741: 64,-37
- 3742: 63,-37
- 3743: 62,-37
- 3744: 62,-36
- 3745: 62,-35
- 3747: 66,-31
- 4694: -25,-45
- 4699: -21,-45
- 5396: 12,47
- 5397: 12,46
- 5398: 12,45
- 5399: 13,45
- 5401: 13,46
- 5402: 13,47
+ 344: 3,23
+ 2342: 19,28
+ 3696: 64,-36
+ 3697: 64,-35
+ 3698: 64,-34
+ 3699: 64,-37
+ 3700: 63,-37
+ 3701: 62,-37
+ 3702: 62,-36
+ 3703: 62,-35
+ 3705: 66,-31
+ 4652: -25,-45
+ 4657: -21,-45
+ 5336: 12,47
+ 5337: 12,46
+ 5338: 12,45
+ 5339: 13,45
+ 5341: 13,46
+ 5342: 13,47
+ 5593: 75,42
+ 5594: 75,34
+ 5595: 83,34
+ 5596: 83,42
- node:
cleanable: True
color: '#FFFFFFFF'
id: Box
decals:
118: 15,28
- 2376: 58,37
- 2377: 58,29
- 2378: 66,29
- 2379: 66,37
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Box
decals:
- 348: 5,23
+ 347: 5,23
- node:
color: '#08528DFF'
id: BoxGreyscale
decals:
- 1016: 4,-50
- 1017: 5,-50
- 1018: 6,-50
- 1019: 6,-53
- 1020: 6,-54
- 1021: 4,-53
- 1022: 4,-54
- 1023: 4,-56
+ 1015: 4,-50
+ 1016: 5,-50
+ 1017: 6,-50
+ 1018: 6,-53
+ 1019: 6,-54
+ 1020: 4,-53
+ 1021: 4,-54
+ 1022: 4,-56
- node:
color: '#D381C996'
id: BoxGreyscale
decals:
- 463: 41,-23
- 464: 42,-23
- 465: 43,-23
+ 462: 41,-23
+ 463: 42,-23
+ 464: 43,-23
- node:
color: '#FFFFFFE2'
id: BoxGreyscale
decals:
- 735: -16,-22
- 736: -17,-22
- 737: -15,-22
- 738: -14,-22
- 739: -18,-22
+ 734: -16,-22
+ 735: -17,-22
+ 736: -15,-22
+ 737: -14,-22
+ 738: -18,-22
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
- 4784: -21,-29
+ 4742: -21,-29
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
- 4785: -21,-31
+ 4743: -21,-31
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
decals:
- 4789: -2,-29
+ 4747: -2,-29
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
- 4788: -2,-31
- 4829: -5,-31
+ 4746: -2,-31
+ 4787: -5,-31
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
decals:
- 4790: -3,-29
- 4791: -4,-29
- 4792: -5,-29
- 4793: -7,-29
- 4794: -8,-29
- 4795: -6,-29
- 4797: -9,-29
- 4798: -10,-29
- 4799: -12,-29
- 4800: -11,-29
- 4801: -13,-29
- 4802: -20,-29
- 4803: -19,-29
- 4804: -18,-29
- 4805: -17,-29
- 4806: -15,-29
- 4807: -16,-29
- 4808: -14,-29
+ 4748: -3,-29
+ 4749: -4,-29
+ 4750: -5,-29
+ 4751: -7,-29
+ 4752: -8,-29
+ 4753: -6,-29
+ 4755: -9,-29
+ 4756: -10,-29
+ 4757: -12,-29
+ 4758: -11,-29
+ 4759: -13,-29
+ 4760: -20,-29
+ 4761: -19,-29
+ 4762: -18,-29
+ 4763: -17,-29
+ 4764: -15,-29
+ 4765: -16,-29
+ 4766: -14,-29
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
- 4810: -20,-31
- 4811: -19,-31
- 4812: -17,-31
- 4813: -16,-31
- 4814: -15,-31
- 4815: -14,-31
- 4816: -13,-31
- 4817: -12,-31
- 4818: -11,-31
- 4819: -10,-31
- 4820: -9,-31
- 4821: -8,-31
- 4822: -7,-31
- 4823: -6,-31
- 4824: -4,-31
- 4825: -3,-31
+ 4768: -20,-31
+ 4769: -19,-31
+ 4770: -17,-31
+ 4771: -16,-31
+ 4772: -15,-31
+ 4773: -14,-31
+ 4774: -13,-31
+ 4775: -12,-31
+ 4776: -11,-31
+ 4777: -10,-31
+ 4778: -9,-31
+ 4779: -8,-31
+ 4780: -7,-31
+ 4781: -6,-31
+ 4782: -4,-31
+ 4783: -3,-31
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
decals:
- 4787: -21,-30
- 4826: -5,-34
- 4827: -5,-33
- 4828: -5,-32
+ 4745: -21,-30
+ 4784: -5,-34
+ 4785: -5,-33
+ 4786: -5,-32
- node:
color: '#FFFFFFFF'
id: BrickTileSteelBox
decals:
- 5131: -1,-37
+ 5079: -1,-37
- node:
color: '#D381C996'
id: BrickTileSteelCornerNe
decals:
- 3933: 51,-27
+ 3891: 51,-27
- node:
color: '#DE3A3A95'
id: BrickTileSteelCornerNe
decals:
- 5337: 13,47
- 5348: 8,47
+ 5277: 13,47
+ 5288: 8,47
- node:
color: '#DE3A3A96'
id: BrickTileSteelCornerNe
decals:
- 5468: -5,47
- 5564: 8,54
+ 5408: -5,47
+ 5504: 8,54
- node:
color: '#D381C996'
id: BrickTileSteelCornerNw
decals:
- 3947: 39,-25
+ 3905: 39,-25
- node:
color: '#DE3A3A95'
id: BrickTileSteelCornerNw
decals:
- 5338: 10,47
- 5349: 3,47
- 5375: 5,54
+ 5278: 10,47
+ 5289: 3,47
+ 5315: 5,54
- node:
color: '#DE3A3A96'
id: BrickTileSteelCornerNw
decals:
- 5469: -9,47
+ 5409: -9,47
- node:
color: '#DE3A3A95'
id: BrickTileSteelCornerSe
decals:
- 5340: 13,45
- 5351: 8,44
- 5370: 8,49
+ 5280: 13,45
+ 5291: 8,44
+ 5310: 8,49
- node:
color: '#DE3A3A96'
id: BrickTileSteelCornerSe
decals:
- 5472: -5,45
+ 5412: -5,45
- node:
color: '#D381C996'
id: BrickTileSteelCornerSw
decals:
- 3950: 39,-28
+ 3908: 39,-28
- node:
color: '#DE3A3A95'
id: BrickTileSteelCornerSw
decals:
- 5339: 10,45
- 5350: 3,44
- 5371: 5,49
+ 5279: 10,45
+ 5290: 3,44
+ 5311: 5,49
- node:
color: '#DE3A3A96'
id: BrickTileSteelCornerSw
decals:
- 5471: -9,45
+ 5411: -9,45
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndE
decals:
- 5128: 0,-37
+ 5076: 0,-37
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndN
decals:
- 5127: -1,-36
- 5134: 20,-9
- 5135: 20,-5
- 5155: 20,6
+ 5075: -1,-36
+ 5082: 20,-9
+ 5083: 20,-5
+ 5100: 20,6
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndS
decals:
- 5129: -1,-38
- 5132: 20,-7
- 5133: 20,-11
- 5156: 20,4
+ 5077: -1,-38
+ 5080: 20,-7
+ 5081: 20,-11
+ 5101: 20,4
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndW
decals:
- 5130: -2,-37
+ 5078: -2,-37
- node:
color: '#D381C996'
id: BrickTileSteelInnerNe
decals:
- 3932: 47,-27
+ 3890: 47,-27
- node:
color: '#DE3A3A95'
id: BrickTileSteelInnerNe
decals:
- 5359: 8,46
- 5368: 6,47
- 5387: 8,51
+ 5299: 8,46
+ 5308: 6,47
+ 5327: 8,51
- node:
color: '#DE3A3A96'
id: BrickTileSteelInnerNe
decals:
- 5561: -8,47
- 5565: 8,53
+ 5501: -8,47
+ 5505: 8,53
- node:
color: '#DE3A3A95'
id: BrickTileSteelInnerNw
decals:
- 5342: 10,46
- 5366: 6,47
- 5384: 5,51
+ 5282: 10,46
+ 5306: 6,47
+ 5324: 5,51
- node:
color: '#DE3A3A96'
id: BrickTileSteelInnerNw
decals:
- 5562: -8,47
+ 5502: -8,47
- node:
color: '#DE3A3A95'
id: BrickTileSteelInnerSe
decals:
- 5355: 6,44
- 5358: 8,46
- 5381: 6,49
- 5382: 8,51
+ 5295: 6,44
+ 5298: 8,46
+ 5321: 6,49
+ 5322: 8,51
- node:
color: '#DE3A3A96'
id: BrickTileSteelInnerSe
decals:
- 5566: 8,53
+ 5506: 8,53
- node:
color: '#DE3A3A95'
id: BrickTileSteelInnerSw
decals:
- 5341: 10,46
- 5354: 6,44
- 5385: 5,51
- 5386: 6,49
+ 5281: 10,46
+ 5294: 6,44
+ 5325: 5,51
+ 5326: 6,49
- node:
color: '#D381C996'
id: BrickTileSteelLineE
decals:
- 3925: 51,-37
- 3926: 51,-32
- 3927: 47,-26
+ 3883: 51,-37
+ 3884: 51,-32
+ 3885: 47,-26
- node:
color: '#DE3A3A95'
id: BrickTileSteelLineE
decals:
- 5345: 13,46
- 5357: 8,45
- 5373: 8,50
- 5374: 8,52
+ 5285: 13,46
+ 5297: 8,45
+ 5313: 8,50
+ 5314: 8,52
- node:
color: '#DE3A3A96'
id: BrickTileSteelLineE
decals:
- 5474: -5,46
+ 5414: -5,46
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
decals:
- 4559: 63,-45
- 4560: 68,-45
- 4561: 71,-45
- 5136: 20,-6
- 5137: 20,-10
- 5158: 20,5
+ 4517: 63,-45
+ 4518: 68,-45
+ 4519: 71,-45
+ 5084: 20,-6
+ 5085: 20,-10
+ 5103: 20,5
- node:
color: '#D381C996'
id: BrickTileSteelLineN
decals:
- 3941: 46,-25
- 3945: 42,-25
+ 3899: 46,-25
+ 3903: 42,-25
- node:
color: '#DE3A3A95'
id: BrickTileSteelLineN
decals:
- 5343: 11,47
- 5344: 12,47
- 5360: 7,47
- 5361: 5,47
- 5362: 4,47
+ 5283: 11,47
+ 5284: 12,47
+ 5300: 7,47
+ 5301: 5,47
+ 5302: 4,47
- node:
color: '#DE3A3A96'
id: BrickTileSteelLineN
decals:
- 5475: -6,47
- 5476: -7,47
- 5569: 6,54
- 5570: 7,54
+ 5415: -6,47
+ 5416: -7,47
+ 5509: 6,54
+ 5510: 7,54
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 4549: 64,-44
- 4550: 65,-44
- 4551: 66,-44
- 4552: 67,-44
- 4553: 69,-44
- 4554: 70,-44
- 4555: 72,-44
- 4556: 73,-44
- 4557: 74,-44
- 4558: 75,-44
+ 4507: 64,-44
+ 4508: 65,-44
+ 4509: 66,-44
+ 4510: 67,-44
+ 4511: 69,-44
+ 4512: 70,-44
+ 4513: 72,-44
+ 4514: 73,-44
+ 4515: 74,-44
+ 4516: 75,-44
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 4537: 64,-46
- 4538: 65,-46
- 4539: 66,-46
- 4540: 67,-46
- 4541: 69,-46
- 4542: 70,-46
- 4543: 72,-46
- 4544: 73,-46
- 4545: 74,-46
- 4546: 75,-46
+ 4495: 64,-46
+ 4496: 65,-46
+ 4497: 66,-46
+ 4498: 67,-46
+ 4499: 69,-46
+ 4500: 70,-46
+ 4501: 72,-46
+ 4502: 73,-46
+ 4503: 74,-46
+ 4504: 75,-46
- node:
color: '#D381C996'
id: BrickTileSteelLineS
decals:
- 3957: 42,-28
+ 3915: 42,-28
- node:
color: '#DE3A3A95'
id: BrickTileSteelLineS
decals:
- 5346: 11,45
- 5347: 12,45
- 5352: 4,44
- 5353: 5,44
- 5356: 7,44
- 5380: 7,49
+ 5286: 11,45
+ 5287: 12,45
+ 5292: 4,44
+ 5293: 5,44
+ 5296: 7,44
+ 5320: 7,49
- node:
color: '#DE3A3A96'
id: BrickTileSteelLineS
decals:
- 5363: -9,49
- 5477: -6,45
- 5478: -7,45
- 5479: -8,45
+ 5303: -9,49
+ 5417: -6,45
+ 5418: -7,45
+ 5419: -8,45
- node:
color: '#D381C996'
id: BrickTileSteelLineW
decals:
- 3920: 47,-32
- 3924: 47,-36
+ 3878: 47,-32
+ 3882: 47,-36
- node:
color: '#DE3A3A95'
id: BrickTileSteelLineW
decals:
- 5364: 3,45
- 5365: 3,46
- 5376: 5,53
- 5378: 5,52
- 5379: 5,50
+ 5304: 3,45
+ 5305: 3,46
+ 5316: 5,53
+ 5318: 5,52
+ 5319: 5,50
- node:
color: '#DE3A3A96'
id: BrickTileSteelLineW
decals:
- 5480: -9,46
+ 5420: -9,46
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 4564: 68,-45
- 4565: 71,-45
- 4568: 76,-45
- 5138: 20,-10
- 5139: 20,-6
- 5157: 20,5
+ 4522: 68,-45
+ 4523: 71,-45
+ 4526: 76,-45
+ 5086: 20,-10
+ 5087: 20,-6
+ 5102: 20,5
- node:
color: '#52B4E996'
id: BrickTileWhiteBox
@@ -1468,2185 +1478,2161 @@ entities:
color: '#A05212FF'
id: BrickTileWhiteBox
decals:
- 5188: -35,-35
+ 5132: -35,-35
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNe
decals:
89: -16,-59
- 1762: 1,-36
- 1770: 6,-37
- 1889: 11,19
- 3563: 24,40
- 3577: 15,40
- 3614: 10,40
+ 1761: 1,-36
+ 1769: 6,-37
+ 1870: 11,19
+ 3521: 24,40
+ 3535: 15,40
+ 3572: 10,40
- node:
color: '#60B2FFFF'
id: BrickTileWhiteCornerNe
decals:
- 437: -16,-16
+ 436: -16,-16
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerNe
decals:
- 1881: -38,3
- 1882: -37,2
- 2855: -59,11
- 2982: -77,-4
- 4163: -25,33
- 4171: -25,29
- 4216: -21,50
- 4240: -25,50
- 4280: -25,46
- 5069: -26,38
+ 2813: -59,11
+ 2940: -77,-4
+ 4121: -25,33
+ 4129: -25,29
+ 4174: -21,50
+ 4198: -25,50
+ 4238: -25,46
+ 5021: -26,38
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteCornerNe
decals:
- 5169: -33,-32
+ 5113: -33,-32
- node:
color: '#A4610696'
id: BrickTileWhiteCornerNe
decals:
- 1774: 51,5
- 1775: 54,5
- 1777: 60,2
- 3421: 72,0
- 3439: 76,0
- 3440: 76,-5
- 3456: 74,7
+ 1773: 51,5
+ 1774: 54,5
+ 1776: 60,2
+ 3379: 72,0
+ 3397: 76,0
+ 3398: 76,-5
+ 3414: 74,7
- node:
color: '#D24646EF'
id: BrickTileWhiteCornerNe
decals:
- 4838: -23,-25
+ 4796: -23,-25
- node:
color: '#D381C996'
id: BrickTileWhiteCornerNe
decals:
- 3940: 47,-25
+ 3898: 47,-25
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNe
decals:
- 3182: -45,-34
- 3280: -41,-33
- 3292: -12,-16
- 5452: 1,47
+ 3140: -45,-34
+ 3238: -41,-33
+ 3250: -12,-16
+ 5392: 1,47
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteCornerNe
decals:
- 4101: -30,-3
+ 4059: -30,-3
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteCornerNe
decals:
- 601: -21,-7
- 641: -4,-16
- 655: -25,-3
- 721: -4,-24
+ 600: -21,-7
+ 640: -4,-16
+ 654: -25,-3
+ 720: -4,-24
- node:
color: '#E34646CE'
id: BrickTileWhiteCornerNe
decals:
- 3115: -27,-20
- 3132: -40,-14
+ 3073: -27,-20
+ 3090: -40,-14
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerNe
decals:
- 1815: -44,30
- 1838: -47,35
+ 1814: -44,30
+ 1837: -47,35
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteCornerNe
decals:
- 3898: -32,-12
- 3909: -32,-17
+ 3856: -32,-12
+ 3867: -32,-17
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNw
decals:
- 1763: -3,-36
- 1764: -6,-37
- 3576: 12,40
- 3613: 8,40
+ 1762: -3,-36
+ 1763: -6,-37
+ 3534: 12,40
+ 3571: 8,40
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerNw
decals:
- 1876: -47,2
- 2856: -60,11
- 2860: -65,5
- 2882: -65,-3
- 2990: -91,-4
- 4215: -23,50
- 4236: -34,43
- 4237: -33,44
- 4238: -28,46
- 4241: -28,50
- 4296: -27,38
- 4297: -28,37
- 5043: -61,-2
- 5056: -75,-4
+ 2814: -60,11
+ 2818: -65,5
+ 2840: -65,-3
+ 2948: -91,-4
+ 4173: -23,50
+ 4194: -34,43
+ 4195: -33,44
+ 4196: -28,46
+ 4199: -28,50
+ 4254: -27,38
+ 4255: -28,37
+ 4995: -61,-2
+ 5008: -75,-4
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteCornerNw
decals:
- 5167: -39,-32
+ 5111: -39,-32
- node:
color: '#A4610696'
id: BrickTileWhiteCornerNw
decals:
- 1771: 49,5
- 1776: 53,5
- 3438: 74,0
+ 1770: 49,5
+ 1775: 53,5
+ 3396: 74,0
- node:
color: '#D24646EF'
id: BrickTileWhiteCornerNw
decals:
- 4837: -25,-25
+ 4795: -25,-25
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNw
decals:
- 3183: -52,-34
- 3204: -50,-38
- 3220: -50,-46
- 3239: -52,-30
- 3281: -43,-33
- 3290: -14,-16
- 5451: -3,47
+ 3141: -52,-34
+ 3162: -50,-38
+ 3178: -50,-46
+ 3197: -52,-30
+ 3239: -43,-33
+ 3248: -14,-16
+ 5391: -3,47
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteCornerNw
decals:
- 4100: -35,-3
+ 4058: -35,-3
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteCornerNw
decals:
- 599: -23,-7
- 656: -28,-3
- 720: -6,-24
+ 598: -23,-7
+ 655: -28,-3
+ 719: -6,-24
- node:
color: '#E34646CE'
id: BrickTileWhiteCornerNw
decals:
- 3111: -25,-20
- 3121: -32,-20
- 3144: -41,-19
- 3161: -26,-32
- 3249: -10,-16
+ 3069: -25,-20
+ 3079: -32,-20
+ 3102: -41,-19
+ 3119: -26,-32
+ 3207: -10,-16
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerNw
decals:
- 1816: -52,30
- 1837: -50,35
+ 1815: -52,30
+ 1836: -50,35
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteCornerNw
decals:
- 3896: -35,-12
+ 3854: -35,-12
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 5071: -24,38
+ 5023: -24,38
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSe
decals:
- 3562: 24,38
- 3574: 15,38
- 3615: 10,38
+ 3520: 24,38
+ 3532: 15,38
+ 3573: 10,38
- node:
color: '#60B2FFFF'
id: BrickTileWhiteCornerSe
decals:
- 435: -16,-18
+ 434: -16,-18
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerSe
decals:
- 1883: -37,-2
- 2959: -64,-12
- 3007: -77,-12
- 4147: -26,25
- 4164: -25,32
- 4170: -25,26
- 4230: -21,34
- 4234: -29,39
- 4235: -25,40
- 4242: -25,48
- 4294: -26,35
- 5053: -59,-8
+ 2917: -64,-12
+ 2965: -77,-12
+ 4105: -26,25
+ 4122: -25,32
+ 4128: -25,26
+ 4188: -21,34
+ 4192: -29,39
+ 4193: -25,40
+ 4200: -25,48
+ 4252: -26,35
+ 5005: -59,-8
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteCornerSe
decals:
- 5168: -33,-38
+ 5112: -33,-38
- node:
color: '#A4610696'
id: BrickTileWhiteCornerSe
decals:
- 1772: 51,3
- 3435: 76,-3
- 3436: 76,-7
- 3455: 74,2
- 4091: 69,-8
+ 1771: 51,3
+ 3393: 76,-3
+ 3394: 76,-7
+ 3413: 74,2
+ 4049: 69,-8
- node:
color: '#D24646EF'
id: BrickTileWhiteCornerSe
decals:
- 4836: -23,-30
+ 4794: -23,-30
- node:
color: '#D24646FF'
id: BrickTileWhiteCornerSe
decals:
- 4830: -8,-27
+ 4788: -8,-27
- node:
color: '#D381C996'
id: BrickTileWhiteCornerSe
decals:
- 3928: 51,-38
+ 3886: 51,-38
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSe
decals:
- 3184: -45,-36
- 3238: -48,-32
- 3282: -41,-37
- 5444: 1,45
+ 3142: -45,-36
+ 3196: -48,-32
+ 3240: -41,-37
+ 5384: 1,45
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteCornerSe
decals:
- 4103: -30,-5
+ 4061: -30,-5
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteCornerSe
decals:
- 640: -4,-18
- 722: -4,-27
+ 639: -4,-18
+ 721: -4,-27
- node:
color: '#E34646CE'
id: BrickTileWhiteCornerSe
decals:
- 3142: -39,-21
+ 3100: -39,-21
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSe
decals:
- 1817: -44,27
- 1834: -47,32
+ 1816: -44,27
+ 1833: -47,32
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteCornerSe
decals:
- 3897: -32,-15
- 3908: -32,-18
+ 3855: -32,-15
+ 3866: -32,-18
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSw
decals:
- 1693: -11,-9
+ 1692: -11,-9
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSw
decals:
- 3558: 17,38
- 3575: 12,38
- 3616: 8,38
+ 3516: 17,38
+ 3533: 12,38
+ 3574: 8,38
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerSw
decals:
- 1694: -10,-10
- 1695: -9,-11
- 1696: -8,-12
- 1869: -47,-2
- 2861: -65,3
- 2951: -75,-12
- 4152: -30,25
- 4228: -23,34
- 4239: -28,48
- 5046: -61,2
- 5059: -91,-12
- 5075: -34,35
+ 1693: -10,-10
+ 1694: -9,-11
+ 1695: -8,-12
+ 2819: -65,3
+ 2909: -75,-12
+ 4110: -30,25
+ 4186: -23,34
+ 4197: -28,48
+ 4998: -61,2
+ 5011: -91,-12
+ 5027: -34,35
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteCornerSw
decals:
- 5166: -39,-38
+ 5110: -39,-38
- node:
color: '#A4610696'
id: BrickTileWhiteCornerSw
decals:
- 1773: 49,3
- 1806: 59,-8
- 3437: 74,-3
- 4095: 61,-8
+ 1772: 49,3
+ 1805: 59,-8
+ 3395: 74,-3
+ 4053: 61,-8
- node:
color: '#D24646EF'
id: BrickTileWhiteCornerSw
decals:
- 4835: -25,-30
+ 4793: -25,-30
- node:
color: '#D24646FF'
id: BrickTileWhiteCornerSw
decals:
- 4831: -9,-27
+ 4789: -9,-27
- node:
color: '#D381C996'
id: BrickTileWhiteCornerSw
decals:
- 3939: 47,-38
+ 3897: 47,-38
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSw
decals:
- 3185: -52,-36
- 3200: -50,-44
- 3219: -50,-52
- 3237: -52,-32
- 3277: -43,-37
- 3291: -14,-18
- 5450: -3,45
+ 3143: -52,-36
+ 3158: -50,-44
+ 3177: -50,-52
+ 3195: -52,-32
+ 3235: -43,-37
+ 3249: -14,-18
+ 5390: -3,45
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteCornerSw
decals:
- 4102: -35,-5
+ 4060: -35,-5
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteCornerSw
decals:
- 657: -28,-5
- 723: -6,-27
+ 656: -28,-5
+ 722: -6,-27
- node:
color: '#E34646CE'
id: BrickTileWhiteCornerSw
decals:
- 3107: -25,-23
- 3120: -32,-22
- 3143: -41,-21
- 3162: -26,-37
- 3250: -10,-18
+ 3065: -25,-23
+ 3078: -32,-22
+ 3101: -41,-21
+ 3120: -26,-37
+ 3208: -10,-18
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSw
decals:
- 1814: -52,27
- 1845: -50,32
+ 1813: -52,27
+ 1844: -50,32
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteCornerSw
decals:
- 3899: -35,-15
- 3910: -34,-18
+ 3857: -35,-15
+ 3868: -34,-18
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
- 5070: -24,35
+ 5022: -24,35
- node:
color: '#9FED5896'
id: BrickTileWhiteEndE
decals:
- 5453: 0,46
+ 5393: 0,46
- node:
color: '#E34646CE'
id: BrickTileWhiteEndE
decals:
- 3159: -23,-32
+ 3117: -23,-32
- node:
color: '#CD0000FF'
id: BrickTileWhiteEndS
decals:
- 417: -23,-34
+ 416: -23,-34
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteEndS
decals:
- 654: -25,-9
+ 653: -25,-9
- node:
color: '#9FED5896'
id: BrickTileWhiteEndW
decals:
- 5470: -2,46
+ 5410: -2,46
- node:
color: '#C70000FF'
id: BrickTileWhiteEndW
decals:
- 415: -26,-8
+ 414: -26,-8
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteEndW
decals:
- 3914: -35,-17
+ 3872: -35,-17
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerNe
decals:
- 1888: -38,2
- 2976: -64,-8
- 4168: -26,29
- 4279: -26,46
- 4289: -30,33
- 4301: -30,36
- 5230: -3,54
- 5260: -3,50
- 5367: -5,54
- 5587: -1,50
- 5588: -5,50
+ 2934: -64,-8
+ 4126: -26,29
+ 4237: -26,46
+ 4247: -30,33
+ 4259: -30,36
+ 5170: -3,54
+ 5200: -3,50
+ 5307: -5,54
+ 5527: -1,50
+ 5528: -5,50
- node:
color: '#A4610696'
id: BrickTileWhiteInnerNe
decals:
- 1789: 54,2
- 3432: 72,-5
+ 1788: 54,2
+ 3390: 72,-5
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteInnerNe
decals:
- 614: -21,-20
- 617: -19,-20
- 671: -25,-8
- 689: -25,-17
- 702: -8,-25
+ 613: -21,-20
+ 616: -19,-20
+ 670: -25,-8
+ 688: -25,-17
+ 701: -8,-25
- node:
color: '#E34646CE'
id: BrickTileWhiteInnerNe
decals:
- 3127: -27,-22
- 3134: -40,-16
- 3156: -37,-17
- 3169: -25,-36
- 3170: -24,-32
+ 3085: -27,-22
+ 3092: -40,-16
+ 3114: -37,-17
+ 3127: -25,-36
+ 3128: -24,-32
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerNw
decals:
- 1760: 7,-9
- 1761: 6,-10
+ 1759: 7,-9
+ 1760: 6,-10
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerNw
decals:
- 1885: -46,2
- 2864: -60,5
- 2872: -60,-2
- 2935: -65,-4
- 2977: -60,-8
- 4233: -23,38
- 4243: -28,49
- 4271: -33,43
- 4272: -28,44
- 4273: -26,46
- 4298: -28,36
- 4299: -27,37
- 5037: -47,1
- 5044: -61,-3
- 5229: -3,54
- 5258: -2,50
- 5259: -4,50
- 5369: -5,54
- 5388: 2,54
- 5586: 0,50
- 5604: -34,37
+ 2822: -60,5
+ 2830: -60,-2
+ 2893: -65,-4
+ 2935: -60,-8
+ 4191: -23,38
+ 4201: -28,49
+ 4229: -33,43
+ 4230: -28,44
+ 4231: -26,46
+ 4256: -28,36
+ 4257: -27,37
+ 4996: -61,-3
+ 5169: -3,54
+ 5198: -2,50
+ 5199: -4,50
+ 5309: -5,54
+ 5328: 2,54
+ 5526: 0,50
+ 5544: -34,37
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNw
decals:
- 3272: -26,-34
+ 3230: -26,-34
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteInnerNw
decals:
- 616: -19,-20
- 673: -25,-8
- 694: -8,-20
- 719: -6,-25
+ 615: -19,-20
+ 672: -25,-8
+ 693: -8,-20
+ 718: -6,-25
- node:
color: '#DE3A3AE4'
id: BrickTileWhiteInnerNw
decals:
- 639: -23,-8
+ 638: -23,-8
- node:
color: '#E34646CE'
id: BrickTileWhiteInnerNw
decals:
- 3110: -25,-22
- 3113: -23,-20
- 3128: -32,-21
- 3171: -24,-32
+ 3068: -25,-22
+ 3071: -23,-20
+ 3086: -32,-21
+ 3129: -24,-32
- node:
color: '#60B2FFFF'
id: BrickTileWhiteInnerSe
decals:
- 443: -19,-18
+ 442: -19,-18
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerSe
decals:
- 1887: -38,-2
- 2876: -59,-1
- 2963: -64,-8
- 4165: -26,32
- 4169: -26,26
- 4267: -32,38
- 4268: -29,40
- 4269: -30,39
- 4283: -26,48
- 5052: -64,-4
- 5073: -30,35
- 5261: -1,53
- 5262: -3,53
- 5589: -5,53
+ 2834: -59,-1
+ 2921: -64,-8
+ 4123: -26,32
+ 4127: -26,26
+ 4225: -32,38
+ 4226: -29,40
+ 4227: -30,39
+ 4241: -26,48
+ 5004: -64,-4
+ 5025: -30,35
+ 5201: -1,53
+ 5202: -3,53
+ 5529: -5,53
- node:
color: '#A4610696'
id: BrickTileWhiteInnerSe
decals:
- 4099: 69,-7
+ 4057: 69,-7
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteInnerSe
decals:
- 651: -8,-18
- 670: -25,-8
- 690: -25,-17
- 701: -8,-25
+ 650: -8,-18
+ 669: -25,-8
+ 689: -25,-17
+ 700: -8,-25
- node:
color: '#E34646CE'
id: BrickTileWhiteInnerSe
decals:
- 3125: -29,-22
- 3153: -42,-17
- 3172: -25,-32
+ 3083: -29,-22
+ 3111: -42,-17
+ 3130: -25,-32
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerSw
decals:
- 1886: -46,-2
- 2867: -61,3
- 2868: -60,2
- 2978: -60,-4
- 4229: -23,35
- 4244: -28,49
- 4265: -32,35
- 4266: -30,38
- 4284: -26,48
- 5036: -47,-1
- 5263: -4,53
- 5264: -2,53
- 5265: 0,53
- 5605: -34,37
+ 2825: -61,3
+ 2826: -60,2
+ 2936: -60,-4
+ 4187: -23,35
+ 4202: -28,49
+ 4223: -32,35
+ 4224: -30,38
+ 4242: -26,48
+ 5203: -4,53
+ 5204: -2,53
+ 5205: 0,53
+ 5545: -34,37
- node:
color: '#A4610696'
id: BrickTileWhiteInnerSw
decals:
- 4098: 61,-7
+ 4056: 61,-7
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSw
decals:
- 3956: 47,-28
+ 3914: 47,-28
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSw
decals:
- 3273: -26,-36
+ 3231: -26,-36
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteInnerSw
decals:
- 650: -8,-18
- 663: -25,-5
- 672: -25,-8
- 706: -9,-23
- 718: -6,-25
+ 649: -8,-18
+ 662: -25,-5
+ 671: -25,-8
+ 705: -9,-23
+ 717: -6,-25
- node:
color: '#DE3A3AE4'
id: BrickTileWhiteInnerSw
decals:
- 638: -23,-8
+ 637: -23,-8
- node:
color: '#E34646CE'
id: BrickTileWhiteInnerSw
decals:
- 3109: -25,-22
- 3124: -30,-22
- 3129: -32,-21
+ 3067: -25,-22
+ 3082: -30,-22
+ 3087: -32,-21
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteInnerSw
decals:
- 3915: -34,-17
+ 3873: -34,-17
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineE
decals:
- 1671: -21,12
- 1672: -21,11
- 1673: -21,10
- 1674: -21,9
- 1675: -21,8
- 1676: -21,7
- 1677: -21,5
- 1678: -21,4
- 1679: -21,3
- 5032: -21,6
+ 1670: -21,12
+ 1671: -21,11
+ 1672: -21,10
+ 1673: -21,9
+ 1674: -21,8
+ 1675: -21,7
+ 1676: -21,5
+ 1677: -21,4
+ 1678: -21,3
+ 4990: -21,6
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
decals:
- 1708: 0,-27
- 1709: 0,-28
- 1710: 0,-29
- 1711: 0,-30
- 1712: 0,-32
- 1713: 0,-34
- 3573: 15,39
- 3618: 10,39
+ 1707: 0,-27
+ 1708: 0,-28
+ 1709: 0,-29
+ 1710: 0,-30
+ 1711: 0,-32
+ 1712: 0,-34
+ 3531: 15,39
+ 3576: 10,39
- node:
color: '#60B2FFFF'
id: BrickTileWhiteLineE
decals:
- 436: -16,-17
+ 435: -16,-17
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
decals:
- 1250: -21,19
- 1251: -21,16
- 1252: -21,15
- 1286: 0,30
- 1288: 0,29
- 1289: 0,28
- 1290: 0,27
- 1291: 0,26
- 1292: 0,25
- 1884: -38,-3
- 2852: -59,7
- 2853: -59,8
- 2854: -59,10
- 2877: -59,-2
- 2878: -59,-3
- 2879: -59,-4
- 2880: -59,-6
- 2881: -59,-7
- 2960: -64,-11
- 2961: -64,-10
- 2962: -64,-9
- 2973: -64,-7
- 2974: -64,-6
- 2975: -64,-5
- 2979: -77,-7
- 2980: -77,-6
- 2981: -77,-5
- 3008: -77,-11
- 3009: -77,-9
- 4166: -26,31
- 4167: -26,30
- 4173: -25,28
- 4175: -25,27
- 4203: -21,36
- 4204: -21,35
- 4205: -21,37
- 4206: -21,39
- 4207: -21,38
- 4208: -21,40
- 4209: -21,41
- 4210: -21,44
- 4211: -21,45
- 4212: -21,47
- 4213: -21,48
- 4214: -21,49
- 4263: -32,37
- 4264: -32,35
- 4270: -30,38
- 4274: -25,41
- 4275: -25,42
- 4276: -25,43
- 4277: -25,44
- 4278: -25,45
- 4281: -26,47
- 4285: -30,37
- 4290: -30,34
- 4295: -26,37
- 5026: -21,18
- 5027: -21,14
- 5050: -59,6
- 5057: -77,-10
- 5064: -21,42
- 5065: -21,43
- 5067: -21,46
- 5068: -26,36
- 5074: -32,36
- 5246: -3,52
- 5247: -3,51
- 5248: -1,52
- 5249: -1,51
- 5250: -5,52
- 5251: -5,51
+ 1249: -21,19
+ 1250: -21,16
+ 1251: -21,15
+ 1285: 0,30
+ 1287: 0,29
+ 1288: 0,28
+ 1289: 0,27
+ 1290: 0,26
+ 1291: 0,25
+ 2810: -59,7
+ 2811: -59,8
+ 2812: -59,10
+ 2835: -59,-2
+ 2836: -59,-3
+ 2837: -59,-4
+ 2838: -59,-6
+ 2839: -59,-7
+ 2918: -64,-11
+ 2919: -64,-10
+ 2920: -64,-9
+ 2931: -64,-7
+ 2932: -64,-6
+ 2933: -64,-5
+ 2937: -77,-7
+ 2938: -77,-6
+ 2939: -77,-5
+ 2966: -77,-11
+ 2967: -77,-9
+ 4124: -26,31
+ 4125: -26,30
+ 4131: -25,28
+ 4133: -25,27
+ 4161: -21,36
+ 4162: -21,35
+ 4163: -21,37
+ 4164: -21,39
+ 4165: -21,38
+ 4166: -21,40
+ 4167: -21,41
+ 4168: -21,44
+ 4169: -21,45
+ 4170: -21,47
+ 4171: -21,48
+ 4172: -21,49
+ 4221: -32,37
+ 4222: -32,35
+ 4228: -30,38
+ 4232: -25,41
+ 4233: -25,42
+ 4234: -25,43
+ 4235: -25,44
+ 4236: -25,45
+ 4239: -26,47
+ 4243: -30,37
+ 4248: -30,34
+ 4253: -26,37
+ 4984: -21,18
+ 4985: -21,14
+ 5002: -59,6
+ 5009: -77,-10
+ 5016: -21,42
+ 5017: -21,43
+ 5019: -21,46
+ 5020: -26,36
+ 5026: -32,36
+ 5186: -3,52
+ 5187: -3,51
+ 5188: -1,52
+ 5189: -1,51
+ 5190: -5,52
+ 5191: -5,51
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteLineE
decals:
- 5184: -33,-33
- 5185: -33,-34
- 5186: -33,-37
- 5187: -33,-36
+ 5128: -33,-33
+ 5129: -33,-34
+ 5130: -33,-37
+ 5131: -33,-36
- node:
color: '#A4610696'
id: BrickTileWhiteLineE
decals:
- 1778: 60,1
- 1787: 54,4
- 1788: 54,3
- 3422: 72,-1
- 3423: 72,-2
- 3424: 72,-3
- 3425: 72,-4
- 3426: 76,-2
- 3427: 76,-1
- 3428: 76,-6
- 3441: 64,-5
- 3442: 64,-3
- 3443: 64,-1
- 3444: 56,-5
- 3445: 56,-3
- 3446: 56,-1
- 3453: 74,6
- 3454: 74,4
+ 1777: 60,1
+ 1786: 54,4
+ 1787: 54,3
+ 3380: 72,-1
+ 3381: 72,-2
+ 3382: 72,-3
+ 3383: 72,-4
+ 3384: 76,-2
+ 3385: 76,-1
+ 3386: 76,-6
+ 3399: 64,-5
+ 3400: 64,-3
+ 3401: 64,-1
+ 3402: 56,-5
+ 3403: 56,-3
+ 3404: 56,-1
+ 3411: 74,6
+ 3412: 74,4
- node:
color: '#CD0000FF'
id: BrickTileWhiteLineE
decals:
- 418: -23,-33
+ 417: -23,-33
- node:
color: '#D24646EF'
id: BrickTileWhiteLineE
decals:
- 4839: -23,-26
- 4840: -23,-27
- 4841: -23,-28
- 4842: -23,-29
+ 4797: -23,-26
+ 4798: -23,-27
+ 4799: -23,-28
+ 4800: -23,-29
- node:
color: '#D381C996'
id: BrickTileWhiteLineE
decals:
- 1745: 4,5
- 1746: 4,4
- 1747: 4,3
- 3934: 51,-29
- 3935: 51,-30
- 3936: 51,-35
- 3937: 51,-36
+ 1744: 4,5
+ 1745: 4,4
+ 1746: 4,3
+ 3892: 51,-29
+ 3893: 51,-30
+ 3894: 51,-35
+ 3895: 51,-36
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
- 1855: -21,-2
- 1856: -21,-3
- 3186: -45,-35
- 3201: -48,-43
- 3202: -48,-42
- 3203: -48,-41
- 3233: -48,-50
- 3234: -48,-49
- 3235: -48,-48
- 3283: -41,-36
- 3284: -41,-35
- 3285: -41,-34
- 3295: -12,-17
- 4025: -48,-40
- 5377: 3,53
- 5449: 1,46
+ 1854: -21,-2
+ 1855: -21,-3
+ 3144: -45,-35
+ 3159: -48,-43
+ 3160: -48,-42
+ 3161: -48,-41
+ 3191: -48,-50
+ 3192: -48,-49
+ 3193: -48,-48
+ 3241: -41,-36
+ 3242: -41,-35
+ 3243: -41,-34
+ 3253: -12,-17
+ 3983: -48,-40
+ 5317: 3,53
+ 5389: 1,46
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteLineE
decals:
- 4108: -30,-4
+ 4066: -30,-4
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteLineE
decals:
- 602: -21,-8
- 603: -21,-9
- 604: -21,-10
- 605: -21,-11
- 606: -21,-12
- 607: -21,-13
- 608: -21,-14
- 609: -21,-15
- 610: -21,-16
- 611: -21,-17
- 612: -21,-18
- 613: -21,-19
- 634: -19,-19
- 636: -8,-19
- 646: -4,-17
- 664: -25,-4
- 665: -25,-5
- 666: -25,-6
- 667: -25,-7
- 695: -8,-20
- 696: -8,-21
- 697: -8,-22
- 698: -8,-23
- 699: -8,-24
- 700: -8,-26
- 724: -4,-26
- 725: -4,-25
+ 601: -21,-8
+ 602: -21,-9
+ 603: -21,-10
+ 604: -21,-11
+ 605: -21,-12
+ 606: -21,-13
+ 607: -21,-14
+ 608: -21,-15
+ 609: -21,-16
+ 610: -21,-17
+ 611: -21,-18
+ 612: -21,-19
+ 633: -19,-19
+ 635: -8,-19
+ 645: -4,-17
+ 663: -25,-4
+ 664: -25,-5
+ 665: -25,-6
+ 666: -25,-7
+ 694: -8,-20
+ 695: -8,-21
+ 696: -8,-22
+ 697: -8,-23
+ 698: -8,-24
+ 699: -8,-26
+ 723: -4,-26
+ 724: -4,-25
- node:
color: '#E34646CE'
id: BrickTileWhiteLineE
decals:
- 3114: -27,-21
- 3133: -40,-15
- 3140: -39,-19
- 3141: -39,-20
- 3152: -42,-18
- 3157: -37,-16
- 3165: -25,-35
- 3166: -25,-34
- 3167: -25,-33
+ 3072: -27,-21
+ 3091: -40,-15
+ 3098: -39,-19
+ 3099: -39,-20
+ 3110: -42,-18
+ 3115: -37,-16
+ 3123: -25,-35
+ 3124: -25,-34
+ 3125: -25,-33
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
decals:
- 1818: -44,28
- 1819: -44,29
- 1832: -47,34
- 1833: -47,33
+ 1817: -44,28
+ 1818: -44,29
+ 1831: -47,34
+ 1832: -47,33
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteLineE
decals:
- 3904: -32,-14
- 3905: -32,-13
+ 3862: -32,-14
+ 3863: -32,-13
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineN
decals:
- 1680: -19,1
- 1681: -18,1
- 1682: -17,1
- 1683: -15,1
- 1684: -14,1
- 1685: -13,1
- 1731: -5,1
- 1732: -4,1
- 1733: -3,1
- 1734: -1,1
- 1735: 2,1
- 1736: 3,1
- 1737: 1,1
- 1739: -2,6
- 1740: -1,6
- 1741: 0,6
+ 1679: -19,1
+ 1680: -18,1
+ 1681: -17,1
+ 1682: -15,1
+ 1683: -14,1
+ 1684: -13,1
+ 1730: -5,1
+ 1731: -4,1
+ 1732: -3,1
+ 1733: -1,1
+ 1734: 2,1
+ 1735: 3,1
+ 1736: 1,1
+ 1738: -2,6
+ 1739: -1,6
+ 1740: 0,6
- node:
color: '#52B4E996'
id: BrickTileWhiteLineN
decals:
- 1765: -5,-37
- 1766: -4,-37
- 1767: 5,-37
- 1768: 3,-37
- 1769: 2,-37
- 1890: 10,19
- 3564: 23,40
- 3565: 22,40
- 3566: 21,40
- 3567: 20,40
- 3568: 19,40
- 3569: 18,40
- 3570: 14,40
- 3571: 13,40
- 3619: 9,40
+ 1764: -5,-37
+ 1765: -4,-37
+ 1766: 5,-37
+ 1767: 3,-37
+ 1768: 2,-37
+ 1871: 10,19
+ 3522: 23,40
+ 3523: 22,40
+ 3524: 21,40
+ 3525: 20,40
+ 3526: 19,40
+ 3527: 18,40
+ 3528: 14,40
+ 3529: 13,40
+ 3577: 9,40
- node:
color: '#60B2FFFF'
id: BrickTileWhiteLineN
decals:
- 438: -17,-16
- 439: -18,-16
+ 437: -17,-16
+ 438: -18,-16
- node:
color: '#9FED5896'
id: BrickTileWhiteLineN
decals:
- 1224: -43,23
- 1225: -41,23
- 1226: -40,23
- 1227: -39,23
- 1228: -38,23
- 1229: -37,23
- 1230: -36,23
- 1231: -34,23
- 1232: -32,23
- 1233: -31,23
- 1234: -29,23
- 1235: -28,23
- 1236: -27,23
- 1237: -25,23
- 1262: -19,23
- 1263: -18,23
- 1264: -17,23
- 1265: -16,23
- 1266: -15,23
- 1267: -14,23
- 1268: -13,23
- 1279: -11,23
- 1280: -10,23
- 1281: -9,23
- 1848: -25,1
- 1849: -28,1
- 1850: -29,1
- 1851: -30,1
- 1852: -31,1
- 1853: -35,1
- 1854: -34,1
- 1873: -53,1
- 1874: -51,1
- 1875: -50,1
- 1878: -42,3
- 1879: -41,3
- 1880: -39,3
- 2831: -54,1
- 2863: -61,5
- 2873: -62,-3
- 2874: -63,-3
- 2875: -64,-3
- 2936: -66,-4
- 2937: -67,-4
- 2938: -68,-4
- 2939: -69,-4
- 2940: -71,-4
- 2941: -70,-4
- 2942: -72,-4
- 2943: -73,-4
- 2944: -74,-4
- 2964: -63,-8
- 2965: -62,-8
- 2966: -61,-8
- 2983: -78,-4
- 2984: -80,-4
- 2985: -82,-4
- 2986: -83,-4
- 2987: -84,-4
- 2988: -86,-4
- 2989: -88,-4
- 4160: -29,33
- 4161: -27,33
- 4162: -26,33
- 4178: -28,33
- 4217: -22,50
- 4251: -26,50
- 4252: -27,50
- 4253: -29,44
- 4254: -30,44
- 4255: -32,44
- 4256: -31,44
- 4257: -27,46
- 4300: -29,36
- 5019: -35,23
- 5023: -30,23
- 5033: -32,1
- 5038: -45,3
- 5039: -44,3
- 5040: -48,1
- 5047: -64,5
- 5048: -63,5
- 5049: -62,5
- 5061: -90,-4
- 5062: -85,-4
- 5221: 1,54
- 5222: 0,54
- 5223: -1,54
- 5224: -2,54
- 5225: -6,54
- 5233: -4,54
- 5454: -1,46
- 5506: 0,45
- 5507: -1,45
- 5508: -2,45
+ 1223: -43,23
+ 1224: -41,23
+ 1225: -40,23
+ 1226: -39,23
+ 1227: -38,23
+ 1228: -37,23
+ 1229: -36,23
+ 1230: -34,23
+ 1231: -32,23
+ 1232: -31,23
+ 1233: -29,23
+ 1234: -28,23
+ 1235: -27,23
+ 1236: -25,23
+ 1261: -19,23
+ 1262: -18,23
+ 1263: -17,23
+ 1264: -16,23
+ 1265: -15,23
+ 1266: -14,23
+ 1267: -13,23
+ 1278: -11,23
+ 1279: -10,23
+ 1280: -9,23
+ 1847: -25,1
+ 1848: -28,1
+ 1849: -29,1
+ 1850: -30,1
+ 1851: -31,1
+ 1852: -35,1
+ 1853: -34,1
+ 1867: -53,1
+ 1868: -51,1
+ 1869: -50,1
+ 2789: -54,1
+ 2821: -61,5
+ 2831: -62,-3
+ 2832: -63,-3
+ 2833: -64,-3
+ 2894: -66,-4
+ 2895: -67,-4
+ 2896: -68,-4
+ 2897: -69,-4
+ 2898: -71,-4
+ 2899: -70,-4
+ 2900: -72,-4
+ 2901: -73,-4
+ 2902: -74,-4
+ 2922: -63,-8
+ 2923: -62,-8
+ 2924: -61,-8
+ 2941: -78,-4
+ 2942: -80,-4
+ 2943: -82,-4
+ 2944: -83,-4
+ 2945: -84,-4
+ 2946: -86,-4
+ 2947: -88,-4
+ 4118: -29,33
+ 4119: -27,33
+ 4120: -26,33
+ 4136: -28,33
+ 4175: -22,50
+ 4209: -26,50
+ 4210: -27,50
+ 4211: -29,44
+ 4212: -30,44
+ 4213: -32,44
+ 4214: -31,44
+ 4215: -27,46
+ 4258: -29,36
+ 4977: -35,23
+ 4981: -30,23
+ 4991: -32,1
+ 4992: -48,1
+ 4999: -64,5
+ 5000: -63,5
+ 5001: -62,5
+ 5013: -90,-4
+ 5014: -85,-4
+ 5161: 1,54
+ 5162: 0,54
+ 5163: -1,54
+ 5164: -2,54
+ 5165: -6,54
+ 5173: -4,54
+ 5394: -1,46
+ 5446: 0,45
+ 5447: -1,45
+ 5448: -2,45
- node:
cleanable: True
color: '#9FED5896'
id: BrickTileWhiteLineN
decals:
- 2560: -74,23
+ 2518: -74,23
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteLineN
decals:
- 5170: -38,-32
- 5171: -37,-32
- 5172: -36,-32
- 5173: -35,-32
- 5174: -34,-32
+ 5114: -38,-32
+ 5115: -37,-32
+ 5116: -36,-32
+ 5117: -35,-32
+ 5118: -34,-32
- node:
color: '#A4610696'
id: BrickTileWhiteLineN
decals:
- 1779: 61,0
- 1780: 62,0
- 1781: 65,0
- 1782: 63,0
- 1783: 57,2
- 1784: 56,2
- 1785: 55,2
- 1786: 59,2
- 3414: 75,0
- 3415: 71,0
- 3416: 67,0
- 3417: 68,0
- 3418: 70,0
- 3419: 69,0
- 3420: 66,0
- 3429: 75,-5
- 3430: 74,-5
- 3431: 73,-5
- 3457: 73,7
- 3458: 72,7
- 3459: 71,7
- 3460: 70,7
- 3461: 69,7
+ 1778: 61,0
+ 1779: 62,0
+ 1780: 65,0
+ 1781: 63,0
+ 1782: 57,2
+ 1783: 56,2
+ 1784: 55,2
+ 1785: 59,2
+ 3372: 75,0
+ 3373: 71,0
+ 3374: 67,0
+ 3375: 68,0
+ 3376: 70,0
+ 3377: 69,0
+ 3378: 66,0
+ 3387: 75,-5
+ 3388: 74,-5
+ 3389: 73,-5
+ 3415: 73,7
+ 3416: 72,7
+ 3417: 71,7
+ 3418: 70,7
+ 3419: 69,7
- node:
color: '#CD0000FF'
id: BrickTileWhiteLineN
decals:
- 419: -24,-17
+ 418: -24,-17
- node:
color: '#D381C996'
id: BrickTileWhiteLineN
decals:
- 3929: 50,-27
- 3930: 49,-27
- 3931: 48,-27
- 3942: 45,-25
- 3943: 44,-25
- 3944: 43,-25
- 3946: 40,-25
+ 3887: 50,-27
+ 3888: 49,-27
+ 3889: 48,-27
+ 3900: 45,-25
+ 3901: 44,-25
+ 3902: 43,-25
+ 3904: 40,-25
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineN
decals:
- 1669: 9,41
- 1721: -4,-20
- 1722: -3,-20
- 1748: -6,6
- 1749: -5,6
- 1750: -4,6
- 3188: -51,-34
- 3189: -50,-34
- 3190: -49,-34
- 3191: -48,-34
- 3192: -47,-34
- 3193: -46,-34
- 3208: -49,-38
- 3223: -49,-46
- 3242: -51,-30
- 3243: -50,-30
- 3244: -49,-30
- 3279: -42,-33
- 3293: -13,-16
- 5445: 0,47
- 5446: -1,47
- 5447: -2,47
+ 1668: 9,41
+ 1720: -4,-20
+ 1721: -3,-20
+ 1747: -6,6
+ 1748: -5,6
+ 1749: -4,6
+ 3146: -51,-34
+ 3147: -50,-34
+ 3148: -49,-34
+ 3149: -48,-34
+ 3150: -47,-34
+ 3151: -46,-34
+ 3166: -49,-38
+ 3181: -49,-46
+ 3200: -51,-30
+ 3201: -50,-30
+ 3202: -49,-30
+ 3237: -42,-33
+ 3251: -13,-16
+ 5385: 0,47
+ 5386: -1,47
+ 5387: -2,47
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteLineN
decals:
- 4110: -34,-3
- 4111: -33,-3
- 4112: -32,-3
- 4113: -31,-3
+ 4068: -34,-3
+ 4069: -33,-3
+ 4070: -32,-3
+ 4071: -31,-3
- node:
color: '#DE3A3AE0'
id: BrickTileWhiteLineN
decals:
- 742: -16,-20
- 743: -17,-20
+ 741: -16,-20
+ 742: -17,-20
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteLineN
decals:
- 600: -22,-7
- 615: -20,-20
- 618: -18,-20
- 629: -13,-20
- 630: -12,-20
- 631: -11,-20
- 632: -10,-20
- 633: -9,-20
- 642: -8,-16
- 643: -7,-16
- 644: -6,-16
- 645: -5,-16
- 652: -24,-8
- 658: -27,-3
- 659: -26,-3
- 674: -26,-8
- 676: -24,-17
- 688: -29,-16
- 716: -7,-25
- 726: -5,-24
- 729: -15,-20
+ 599: -22,-7
+ 614: -20,-20
+ 617: -18,-20
+ 628: -13,-20
+ 629: -12,-20
+ 630: -11,-20
+ 631: -10,-20
+ 632: -9,-20
+ 641: -8,-16
+ 642: -7,-16
+ 643: -6,-16
+ 644: -5,-16
+ 651: -24,-8
+ 657: -27,-3
+ 658: -26,-3
+ 673: -26,-8
+ 675: -24,-17
+ 687: -29,-16
+ 715: -7,-25
+ 725: -5,-24
+ 728: -15,-20
- node:
color: '#E34646CE'
id: BrickTileWhiteLineN
decals:
- 3112: -24,-20
- 3116: -28,-20
- 3117: -29,-20
- 3118: -30,-20
- 3119: -31,-20
- 3131: -36,-17
- 3135: -39,-16
- 3136: -38,-16
- 3146: -40,-19
- 3154: -41,-14
- 3158: -42,-14
- 3160: -25,-32
- 3236: -14,-20
- 3247: -9,-16
+ 3070: -24,-20
+ 3074: -28,-20
+ 3075: -29,-20
+ 3076: -30,-20
+ 3077: -31,-20
+ 3089: -36,-17
+ 3093: -39,-16
+ 3094: -38,-16
+ 3104: -40,-19
+ 3112: -41,-14
+ 3116: -42,-14
+ 3118: -25,-32
+ 3194: -14,-20
+ 3205: -9,-16
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
decals:
- 1742: 2,6
- 1743: 3,6
- 1744: 4,6
- 1820: -45,30
- 1821: -46,30
- 1822: -47,30
- 1823: -49,30
- 1824: -50,30
- 1825: -51,30
- 1839: -48,35
+ 1741: 2,6
+ 1742: 3,6
+ 1743: 4,6
+ 1819: -45,30
+ 1820: -46,30
+ 1821: -47,30
+ 1822: -49,30
+ 1823: -50,30
+ 1824: -51,30
+ 1838: -48,35
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteLineN
decals:
- 3900: -34,-12
- 3901: -33,-12
- 3911: -34,-17
- 3912: -33,-17
+ 3858: -34,-12
+ 3859: -33,-12
+ 3869: -34,-17
+ 3870: -33,-17
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineS
decals:
- 1686: -19,-1
- 1687: -13,-1
- 1724: 3,-1
- 1725: 2,-1
- 1726: 1,-1
- 1727: 0,-1
- 1728: -2,-1
- 1729: -3,-1
- 1730: -5,-1
- 1738: -1,3
+ 1685: -19,-1
+ 1686: -13,-1
+ 1723: 3,-1
+ 1724: 2,-1
+ 1725: 1,-1
+ 1726: 0,-1
+ 1727: -2,-1
+ 1728: -3,-1
+ 1729: -5,-1
+ 1737: -1,3
- node:
color: '#52B4E996'
id: BrickTileWhiteLineS
decals:
- 3559: 21,38
- 3560: 20,38
- 3561: 23,38
- 3572: 13,38
- 3581: 14,38
+ 3517: 21,38
+ 3518: 20,38
+ 3519: 23,38
+ 3530: 13,38
+ 3539: 14,38
- node:
color: '#60B2FFFF'
id: BrickTileWhiteLineS
decals:
- 440: -17,-18
- 441: -18,-18
+ 439: -17,-18
+ 440: -18,-18
- node:
color: '#9FED5896'
id: BrickTileWhiteLineS
decals:
- 1238: -25,21
- 1239: -26,21
- 1240: -29,21
- 1241: -31,21
- 1242: -32,21
- 1243: -33,21
- 1244: -38,21
- 1245: -39,21
- 1246: -40,21
- 1247: -41,21
- 1248: -42,21
- 1249: -43,21
- 1269: -19,21
- 1270: -18,21
- 1271: -17,21
- 1272: -16,21
- 1273: -15,21
- 1274: -14,21
- 1275: -13,21
- 1276: -11,21
- 1277: -10,21
- 1278: -9,21
- 1697: -7,-12
- 1698: -6,-12
- 1699: -5,-12
- 1700: -4,-12
- 1865: -42,-3
- 1866: -43,-3
- 1867: -45,-3
- 1870: -48,-1
- 1871: -51,-1
- 1872: -52,-1
- 2832: -54,-1
- 2833: -56,-1
- 2834: -57,-1
- 2835: -58,-1
- 2865: -63,3
- 2866: -62,3
- 2931: -60,-8
- 2932: -61,-8
- 2933: -62,-8
- 2934: -63,-8
- 2952: -72,-12
- 2953: -71,-12
- 2954: -70,-12
- 2955: -69,-12
- 2956: -67,-12
- 2957: -66,-12
- 2958: -65,-12
- 2967: -63,-4
- 2968: -62,-4
- 2969: -61,-4
- 2997: -90,-12
- 2998: -89,-12
- 2999: -88,-12
- 3000: -87,-12
- 3001: -86,-12
- 3002: -83,-12
- 3003: -82,-12
- 3004: -81,-12
- 3005: -80,-12
- 3006: -79,-12
- 4148: -27,25
- 4150: -28,25
- 4151: -29,25
- 4245: -26,40
- 4246: -27,40
- 4247: -28,40
- 4248: -31,38
- 4249: -33,35
- 4250: -27,48
- 4291: -29,35
- 4292: -28,35
- 4293: -27,35
- 5020: -36,21
- 5021: -34,21
- 5022: -30,21
- 5024: -27,21
- 5034: -39,-3
- 5035: -40,-3
- 5041: -49,-1
- 5042: -55,-1
- 5045: -64,3
- 5054: -68,-12
- 5055: -74,-12
- 5058: -78,-12
- 5060: -85,-12
- 5063: -22,34
- 5455: -1,46
- 5456: -2,47
- 5457: -1,47
- 5458: 0,47
- 5473: -2,47
+ 1237: -25,21
+ 1238: -26,21
+ 1239: -29,21
+ 1240: -31,21
+ 1241: -32,21
+ 1242: -33,21
+ 1243: -38,21
+ 1244: -39,21
+ 1245: -40,21
+ 1246: -41,21
+ 1247: -42,21
+ 1248: -43,21
+ 1268: -19,21
+ 1269: -18,21
+ 1270: -17,21
+ 1271: -16,21
+ 1272: -15,21
+ 1273: -14,21
+ 1274: -13,21
+ 1275: -11,21
+ 1276: -10,21
+ 1277: -9,21
+ 1696: -7,-12
+ 1697: -6,-12
+ 1698: -5,-12
+ 1699: -4,-12
+ 1864: -48,-1
+ 1865: -51,-1
+ 1866: -52,-1
+ 2790: -54,-1
+ 2791: -56,-1
+ 2792: -57,-1
+ 2793: -58,-1
+ 2823: -63,3
+ 2824: -62,3
+ 2889: -60,-8
+ 2890: -61,-8
+ 2891: -62,-8
+ 2892: -63,-8
+ 2910: -72,-12
+ 2911: -71,-12
+ 2912: -70,-12
+ 2913: -69,-12
+ 2914: -67,-12
+ 2915: -66,-12
+ 2916: -65,-12
+ 2925: -63,-4
+ 2926: -62,-4
+ 2927: -61,-4
+ 2955: -90,-12
+ 2956: -89,-12
+ 2957: -88,-12
+ 2958: -87,-12
+ 2959: -86,-12
+ 2960: -83,-12
+ 2961: -82,-12
+ 2962: -81,-12
+ 2963: -80,-12
+ 2964: -79,-12
+ 4106: -27,25
+ 4108: -28,25
+ 4109: -29,25
+ 4203: -26,40
+ 4204: -27,40
+ 4205: -28,40
+ 4206: -31,38
+ 4207: -33,35
+ 4208: -27,48
+ 4249: -29,35
+ 4250: -28,35
+ 4251: -27,35
+ 4978: -36,21
+ 4979: -34,21
+ 4980: -30,21
+ 4982: -27,21
+ 4993: -49,-1
+ 4994: -55,-1
+ 4997: -64,3
+ 5006: -68,-12
+ 5007: -74,-12
+ 5010: -78,-12
+ 5012: -85,-12
+ 5015: -22,34
+ 5395: -1,46
+ 5396: -2,47
+ 5397: -1,47
+ 5398: 0,47
+ 5413: -2,47
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteLineS
decals:
- 5175: -38,-38
- 5176: -37,-38
- 5177: -36,-38
- 5178: -35,-38
- 5179: -34,-38
+ 5119: -38,-38
+ 5120: -37,-38
+ 5121: -36,-38
+ 5122: -35,-38
+ 5123: -34,-38
- node:
color: '#A4610696'
id: BrickTileWhiteLineS
decals:
- 1799: 53,-7
- 1800: 54,-7
- 1801: 55,-7
- 1802: 56,-7
- 1803: 57,-7
- 1804: 58,-7
- 1805: 60,-8
- 3408: 70,-7
- 3409: 72,-7
- 3410: 73,-7
- 3411: 74,-7
- 3412: 75,-7
- 3413: 75,-3
- 3462: 70,2
- 3463: 73,2
- 3464: 68,2
- 3465: 67,2
- 3476: 69,2
- 4090: 71,-7
- 4092: 68,-8
- 4093: 65,-9
- 4094: 62,-8
- 4096: 60,-7
- 4097: 59,-7
- 5123: 71,2
- 5124: 72,2
+ 1798: 53,-7
+ 1799: 54,-7
+ 1800: 55,-7
+ 1801: 56,-7
+ 1802: 57,-7
+ 1803: 58,-7
+ 1804: 60,-8
+ 3366: 70,-7
+ 3367: 72,-7
+ 3368: 73,-7
+ 3369: 74,-7
+ 3370: 75,-7
+ 3371: 75,-3
+ 3420: 70,2
+ 3421: 73,2
+ 3422: 68,2
+ 3423: 67,2
+ 3434: 69,2
+ 4048: 71,-7
+ 4050: 68,-8
+ 4051: 65,-9
+ 4052: 62,-8
+ 4054: 60,-7
+ 4055: 59,-7
+ 5071: 71,2
+ 5072: 72,2
- node:
color: '#CD0000FF'
id: BrickTileWhiteLineS
decals:
- 420: -24,-17
+ 419: -24,-17
- node:
color: '#D381C996'
id: BrickTileWhiteLineS
decals:
- 3938: 48,-38
- 3951: 41,-28
- 3952: 43,-28
- 3953: 44,-28
- 3954: 45,-28
- 3955: 46,-28
+ 3896: 48,-38
+ 3909: 41,-28
+ 3910: 43,-28
+ 3911: 44,-28
+ 3912: 45,-28
+ 3913: 46,-28
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
decals:
- 1668: 4,43
- 1719: -3,-22
- 1720: -4,-22
- 3194: -46,-36
- 3195: -47,-36
- 3196: -48,-36
- 3197: -49,-36
- 3198: -51,-36
- 3199: -50,-36
- 3207: -49,-44
- 3224: -49,-52
- 3240: -50,-32
- 3241: -49,-32
- 3246: -51,-32
- 3278: -42,-37
- 3294: -13,-18
- 5383: -5,49
- 5490: 0,45
- 5491: -1,45
- 5492: -2,45
+ 1667: 4,43
+ 1718: -3,-22
+ 1719: -4,-22
+ 3152: -46,-36
+ 3153: -47,-36
+ 3154: -48,-36
+ 3155: -49,-36
+ 3156: -51,-36
+ 3157: -50,-36
+ 3165: -49,-44
+ 3182: -49,-52
+ 3198: -50,-32
+ 3199: -49,-32
+ 3204: -51,-32
+ 3236: -42,-37
+ 3252: -13,-18
+ 5323: -5,49
+ 5430: 0,45
+ 5431: -1,45
+ 5432: -2,45
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteLineS
decals:
- 4104: -34,-5
- 4105: -33,-5
- 4106: -32,-5
- 4107: -31,-5
- 4114: -30,-1
- 4115: -29,-1
- 4116: -31,-1
- 4117: -33,-1
- 4118: -32,-1
- 4119: -34,-1
- 4120: -35,-1
- 4121: -25,-1
- 4122: -26,-1
- 4123: -27,-1
- 4124: -28,-1
- 4126: -36,-1
- 4127: -24,-1
+ 4062: -34,-5
+ 4063: -33,-5
+ 4064: -32,-5
+ 4065: -31,-5
+ 4072: -30,-1
+ 4073: -29,-1
+ 4074: -31,-1
+ 4075: -33,-1
+ 4076: -32,-1
+ 4077: -34,-1
+ 4078: -35,-1
+ 4079: -25,-1
+ 4080: -26,-1
+ 4081: -27,-1
+ 4082: -28,-1
+ 4084: -36,-1
+ 4085: -24,-1
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteLineS
decals:
- 647: -5,-18
- 648: -6,-18
- 649: -7,-18
- 653: -24,-8
- 661: -27,-5
- 662: -26,-5
- 675: -26,-8
- 677: -24,-17
- 707: -10,-23
- 708: -12,-23
- 709: -13,-23
- 710: -15,-23
- 711: -16,-23
- 712: -19,-23
- 713: -18,-23
- 714: -21,-23
- 715: -22,-23
- 717: -7,-25
- 727: -5,-27
+ 646: -5,-18
+ 647: -6,-18
+ 648: -7,-18
+ 652: -24,-8
+ 660: -27,-5
+ 661: -26,-5
+ 674: -26,-8
+ 676: -24,-17
+ 706: -10,-23
+ 707: -12,-23
+ 708: -13,-23
+ 709: -15,-23
+ 710: -16,-23
+ 711: -19,-23
+ 712: -18,-23
+ 713: -21,-23
+ 714: -22,-23
+ 716: -7,-25
+ 726: -5,-27
- node:
color: '#E34646CE'
id: BrickTileWhiteLineS
decals:
- 3106: -23,-23
- 3122: -31,-22
- 3123: -28,-22
- 3126: -27,-22
- 3130: -36,-17
- 3137: -41,-17
- 3138: -40,-17
- 3139: -38,-17
- 3145: -40,-21
- 3155: -37,-17
- 3163: -25,-37
- 3168: -24,-32
- 3248: -9,-18
+ 3064: -23,-23
+ 3080: -31,-22
+ 3081: -28,-22
+ 3084: -27,-22
+ 3088: -36,-17
+ 3095: -41,-17
+ 3096: -40,-17
+ 3097: -38,-17
+ 3103: -40,-21
+ 3113: -37,-17
+ 3121: -25,-37
+ 3126: -24,-32
+ 3206: -9,-18
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
decals:
- 1808: -51,27
- 1809: -50,27
- 1810: -49,27
- 1811: -47,27
- 1812: -46,27
- 1813: -45,27
- 1844: -49,32
+ 1807: -51,27
+ 1808: -50,27
+ 1809: -49,27
+ 1810: -47,27
+ 1811: -46,27
+ 1812: -45,27
+ 1843: -49,32
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteLineS
decals:
- 3902: -33,-15
- 3903: -34,-15
- 3913: -33,-18
+ 3860: -33,-15
+ 3861: -34,-15
+ 3871: -33,-18
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineW
decals:
- 1688: -11,-3
- 1689: -11,-4
- 1690: -11,-5
- 1691: -11,-7
- 1692: -11,-8
- 1723: 7,0
- 1754: 7,-3
- 1755: 7,-4
- 1756: 7,-5
- 1757: 7,-6
- 1758: 7,-7
- 1759: 7,-8
+ 1687: -11,-3
+ 1688: -11,-4
+ 1689: -11,-5
+ 1690: -11,-7
+ 1691: -11,-8
+ 1722: 7,0
+ 1753: 7,-3
+ 1754: 7,-4
+ 1755: 7,-5
+ 1756: 7,-6
+ 1757: 7,-7
+ 1758: 7,-8
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
decals:
- 1714: -2,-34
- 1715: -2,-33
- 1716: -2,-32
- 1717: -2,-28
- 1718: -2,-27
- 1751: -6,5
- 1752: -6,4
- 1753: -6,3
- 3557: 17,39
- 3580: 12,39
- 3617: 8,39
+ 1713: -2,-34
+ 1714: -2,-33
+ 1715: -2,-32
+ 1716: -2,-28
+ 1717: -2,-27
+ 1750: -6,5
+ 1751: -6,4
+ 1752: -6,3
+ 3515: 17,39
+ 3538: 12,39
+ 3575: 8,39
- node:
color: '#60B2FFFF'
id: BrickTileWhiteLineW
decals:
- 442: -19,-18
- 444: -19,-17
+ 441: -19,-18
+ 443: -19,-17
- node:
color: '#9FED5896'
id: BrickTileWhiteLineW
decals:
- 1253: -23,18
- 1254: -23,17
- 1255: -23,15
- 1256: -23,14
- 1257: -23,12
- 1258: -23,11
- 1259: -23,10
- 1260: -23,8
- 1261: -23,7
- 1868: -46,-3
- 1877: -46,3
- 2857: -60,8
- 2858: -60,7
- 2859: -60,6
- 2862: -65,4
- 2869: -60,1
- 2870: -60,0
- 2871: -60,-1
- 2945: -75,-5
- 2946: -75,-6
- 2947: -75,-7
- 2948: -75,-9
- 2949: -75,-10
- 2950: -75,-11
- 2970: -60,-7
- 2971: -60,-6
- 2972: -60,-5
- 2991: -91,-5
- 2992: -91,-6
- 2993: -91,-7
- 2994: -91,-9
- 2995: -91,-10
- 2996: -91,-11
- 4153: -30,26
- 4154: -30,27
- 4155: -30,28
- 4156: -30,29
- 4157: -30,30
- 4158: -30,31
- 4159: -30,32
- 4218: -23,49
- 4219: -23,48
- 4220: -23,47
- 4221: -23,45
- 4222: -23,46
- 4223: -23,43
- 4224: -23,42
- 4225: -23,41
- 4226: -23,40
- 4227: -23,39
- 4258: -34,42
- 4259: -34,41
- 4260: -34,40
- 4261: -34,39
- 4262: -34,38
- 4282: -26,47
- 4286: -30,37
- 4287: -30,34
- 4288: -30,33
- 4302: -30,36
- 4306: -28,45
- 5025: -23,19
- 5028: -23,13
- 5029: -23,16
- 5030: -23,6
- 5031: -23,3
- 5051: -60,10
- 5066: -23,44
- 5072: -30,35
- 5076: -34,36
- 5226: -9,51
- 5227: -9,52
- 5228: -9,53
- 5252: -4,52
- 5253: -4,51
- 5254: -2,52
- 5255: -2,51
- 5256: 0,52
- 5257: 0,51
+ 1252: -23,18
+ 1253: -23,17
+ 1254: -23,15
+ 1255: -23,14
+ 1256: -23,12
+ 1257: -23,11
+ 1258: -23,10
+ 1259: -23,8
+ 1260: -23,7
+ 2815: -60,8
+ 2816: -60,7
+ 2817: -60,6
+ 2820: -65,4
+ 2827: -60,1
+ 2828: -60,0
+ 2829: -60,-1
+ 2903: -75,-5
+ 2904: -75,-6
+ 2905: -75,-7
+ 2906: -75,-9
+ 2907: -75,-10
+ 2908: -75,-11
+ 2928: -60,-7
+ 2929: -60,-6
+ 2930: -60,-5
+ 2949: -91,-5
+ 2950: -91,-6
+ 2951: -91,-7
+ 2952: -91,-9
+ 2953: -91,-10
+ 2954: -91,-11
+ 4111: -30,26
+ 4112: -30,27
+ 4113: -30,28
+ 4114: -30,29
+ 4115: -30,30
+ 4116: -30,31
+ 4117: -30,32
+ 4176: -23,49
+ 4177: -23,48
+ 4178: -23,47
+ 4179: -23,45
+ 4180: -23,46
+ 4181: -23,43
+ 4182: -23,42
+ 4183: -23,41
+ 4184: -23,40
+ 4185: -23,39
+ 4216: -34,42
+ 4217: -34,41
+ 4218: -34,40
+ 4219: -34,39
+ 4220: -34,38
+ 4240: -26,47
+ 4244: -30,37
+ 4245: -30,34
+ 4246: -30,33
+ 4260: -30,36
+ 4264: -28,45
+ 4983: -23,19
+ 4986: -23,13
+ 4987: -23,16
+ 4988: -23,6
+ 4989: -23,3
+ 5003: -60,10
+ 5018: -23,44
+ 5024: -30,35
+ 5028: -34,36
+ 5166: -9,51
+ 5167: -9,52
+ 5168: -9,53
+ 5192: -4,52
+ 5193: -4,51
+ 5194: -2,52
+ 5195: -2,51
+ 5196: 0,52
+ 5197: 0,51
- node:
cleanable: True
color: '#A05212FF'
id: BrickTileWhiteLineW
decals:
- 5180: -39,-37
- 5181: -39,-36
- 5182: -39,-34
- 5183: -39,-33
+ 5124: -39,-37
+ 5125: -39,-36
+ 5126: -39,-34
+ 5127: -39,-33
- node:
color: '#A4610696'
id: BrickTileWhiteLineW
decals:
- 1790: 53,3
- 1791: 53,2
- 1792: 53,1
- 1793: 53,0
- 1794: 53,-2
- 1795: 53,-3
- 3433: 74,-1
- 3434: 74,-2
- 3447: 63,-1
- 3448: 63,-3
- 3449: 63,-5
- 3450: 71,-5
- 3451: 71,-3
- 3452: 71,-1
+ 1789: 53,3
+ 1790: 53,2
+ 1791: 53,1
+ 1792: 53,0
+ 1793: 53,-2
+ 1794: 53,-3
+ 3391: 74,-1
+ 3392: 74,-2
+ 3405: 63,-1
+ 3406: 63,-3
+ 3407: 63,-5
+ 3408: 71,-5
+ 3409: 71,-3
+ 3410: 71,-1
- node:
color: '#CD0000FF'
id: BrickTileWhiteLineW
decals:
- 416: -23,-33
+ 415: -23,-33
- node:
color: '#D24646EF'
id: BrickTileWhiteLineW
decals:
- 4843: -25,-26
- 4844: -25,-27
+ 4801: -25,-26
+ 4802: -25,-27
- node:
color: '#D381C996'
id: BrickTileWhiteLineW
decals:
- 3917: 47,-30
- 3918: 47,-31
- 3919: 47,-32
- 3921: 47,-33
- 3922: 47,-35
- 3923: 47,-37
- 3948: 39,-26
- 3949: 39,-27
+ 3875: 47,-30
+ 3876: 47,-31
+ 3877: 47,-32
+ 3879: 47,-33
+ 3880: 47,-35
+ 3881: 47,-37
+ 3906: 39,-26
+ 3907: 39,-27
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
- 1701: -2,-15
- 1702: -2,-16
- 1703: -2,-17
- 1704: -2,-18
- 1705: -2,-24
- 1706: -2,-25
- 1707: -2,-26
- 1796: 53,-4
- 1797: 53,-5
- 1798: 53,-6
- 1857: -23,-2
- 3187: -52,-35
- 3205: -50,-39
- 3206: -50,-43
- 3221: -50,-51
- 3222: -50,-47
- 3245: -52,-31
- 3286: -43,-36
- 3287: -43,-35
- 3288: -43,-34
- 3296: -14,-17
- 5448: -3,46
+ 1700: -2,-15
+ 1701: -2,-16
+ 1702: -2,-17
+ 1703: -2,-18
+ 1704: -2,-24
+ 1705: -2,-25
+ 1706: -2,-26
+ 1795: 53,-4
+ 1796: 53,-5
+ 1797: 53,-6
+ 1856: -23,-2
+ 3145: -52,-35
+ 3163: -50,-39
+ 3164: -50,-43
+ 3179: -50,-51
+ 3180: -50,-47
+ 3203: -52,-31
+ 3244: -43,-36
+ 3245: -43,-35
+ 3246: -43,-34
+ 3254: -14,-17
+ 5388: -3,46
- node:
color: '#DE3A3AD9'
id: BrickTileWhiteLineW
decals:
- 4109: -35,-4
+ 4067: -35,-4
- node:
color: '#DE3A3AE2'
id: BrickTileWhiteLineW
decals:
- 619: -14,-19
- 635: -19,-19
- 637: -8,-19
- 660: -28,-4
- 668: -25,-6
- 669: -25,-7
- 703: -9,-26
- 704: -9,-25
- 705: -9,-24
- 728: -6,-26
+ 618: -14,-19
+ 634: -19,-19
+ 636: -8,-19
+ 659: -28,-4
+ 667: -25,-6
+ 668: -25,-7
+ 702: -9,-26
+ 703: -9,-25
+ 704: -9,-24
+ 727: -6,-26
- node:
color: '#DE3A3AE4'
id: BrickTileWhiteLineW
decals:
- 620: -23,-9
- 621: -23,-10
- 622: -23,-11
- 623: -23,-12
- 624: -23,-14
- 625: -23,-15
- 626: -23,-16
- 627: -23,-18
- 628: -23,-19
+ 619: -23,-9
+ 620: -23,-10
+ 621: -23,-11
+ 622: -23,-12
+ 623: -23,-14
+ 624: -23,-15
+ 625: -23,-16
+ 626: -23,-18
+ 627: -23,-19
- node:
color: '#E34646CE'
id: BrickTileWhiteLineW
decals:
- 3108: -25,-21
- 3147: -41,-20
- 3148: -42,-18
- 3149: -42,-17
- 3150: -42,-16
- 3151: -42,-15
- 3164: -26,-33
- 3251: -10,-17
+ 3066: -25,-21
+ 3105: -41,-20
+ 3106: -42,-18
+ 3107: -42,-17
+ 3108: -42,-16
+ 3109: -42,-15
+ 3122: -26,-33
+ 3209: -10,-17
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
decals:
- 1826: -52,29
- 1827: -52,28
- 1835: -50,33
- 1836: -50,34
+ 1825: -52,29
+ 1826: -52,28
+ 1834: -50,33
+ 1835: -50,34
- node:
color: '#FF4E3AFF'
id: BrickTileWhiteLineW
decals:
- 3906: -35,-14
- 3907: -35,-13
+ 3864: -35,-14
+ 3865: -35,-13
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 4231: -24,37
- 4232: -24,36
+ 4189: -24,37
+ 4190: -24,36
- node:
color: '#FFFFFFFF'
id: BushAOne
decals:
- 372: 11.373918,10.082428
- 430: 37.988625,-7.9187446
- 2478: -29.469578,-51.01724
- 4751: -9,-34
+ 371: 11.373918,10.082428
+ 429: 37.988625,-7.9187446
+ 2436: -29.469578,-51.01724
+ 4709: -9,-34
- node:
color: '#FFFFFFFF'
id: BushATwo
decals:
- 373: 11.046463,10.604376
- 378: -11.451739,18.308088
- 398: -36.717087,33.018204
- 548: 4.4311695,-30.942404
- 4747: -20,-33
- 4748: -8,-33
+ 372: 11.046463,10.604376
+ 377: -11.451739,18.308088
+ 397: -36.717087,33.018204
+ 547: 4.4311695,-30.942404
+ 4705: -20,-33
+ 4706: -8,-33
- node:
color: '#FFFFFFFF'
id: BushCOne
decals:
- 375: -14.01243,13.852696
- 379: -7.8685637,15.023532
- 400: -37.675014,31.960892
- 401: -38.6189,27.011755
- 402: -33.475502,10.01921
- 516: 13.513805,-9.04923
- 575: 19.245619,-38.898838
- 581: 19.479221,-60.46959
- 2468: -29.292074,-65.92565
- 2555: -40.10394,34.165638
- 3021: -56.02164,-12.841251
- 3027: -69.63793,-16.7884
+ 374: -14.01243,13.852696
+ 378: -7.8685637,15.023532
+ 399: -37.675014,31.960892
+ 400: -38.6189,27.011755
+ 401: -33.475502,10.01921
+ 515: 13.513805,-9.04923
+ 574: 19.245619,-38.898838
+ 580: 19.479221,-60.46959
+ 2426: -29.292074,-65.92565
+ 2513: -40.10394,34.165638
+ 2979: -56.02164,-12.841251
+ 2985: -69.63793,-16.7884
- node:
color: '#FFFFFFFF'
id: BushCThree
decals:
- 363: 41.08317,-9.41639
- 399: -42.066586,25.49292
- 545: 8.002057,-31.05696
- 549: 13.781928,-30.01949
- 2482: -26.026142,-61.418507
- 2557: -37.070595,36.472115
- 3173: -70.0174,-24.089645
- 3175: -55.0828,-24.120956
- 3271: -96,-23
- 3620: 9.034152,37.877556
- 4361: -31.072529,51.65369
+ 362: 41.08317,-9.41639
+ 398: -42.066586,25.49292
+ 544: 8.002057,-31.05696
+ 548: 13.781928,-30.01949
+ 2440: -26.026142,-61.418507
+ 2515: -37.070595,36.472115
+ 3131: -70.0174,-24.089645
+ 3133: -55.0828,-24.120956
+ 3229: -96,-23
+ 3578: 9.034152,37.877556
+ 4319: -31.072529,51.65369
- node:
color: '#FFFFFFFF'
id: BushCTwo
decals:
- 374: 11.093338,12.510626
- 376: -11.312197,14.305866
- 377: -11.046572,16.946493
- 413: 26.297338,-10.984658
- 515: 15.037233,-9.133544
- 572: 21.985521,-36.839016
- 583: 9.956545,-59.838276
- 1033: -16.806883,-57.021297
- 2451: 44.01449,9.976801
- 2471: -25.554935,-65.97253
- 3274: -86,-28
- 3556: 16.94355,40.121414
- 4019: -81.14412,-25.940325
- 4020: -93.94905,-22.289558
- 4021: -40.916122,28.093424
- 4024: -39.218174,31.748444
- 4026: -9.811589,26.243921
- 4030: -30.660412,-66.088745
- 4746: -18,-34
- 5617: 49.120117,-43.05056
+ 373: 11.093338,12.510626
+ 375: -11.312197,14.305866
+ 376: -11.046572,16.946493
+ 412: 26.297338,-10.984658
+ 514: 15.037233,-9.133544
+ 571: 21.985521,-36.839016
+ 582: 9.956545,-59.838276
+ 1032: -16.806883,-57.021297
+ 2409: 44.01449,9.976801
+ 2429: -25.554935,-65.97253
+ 3232: -86,-28
+ 3514: 16.94355,40.121414
+ 3977: -81.14412,-25.940325
+ 3978: -93.94905,-22.289558
+ 3979: -40.916122,28.093424
+ 3982: -39.218174,31.748444
+ 3984: -9.811589,26.243921
+ 3988: -30.660412,-66.088745
+ 4704: -18,-34
+ 5557: 49.120117,-43.05056
- node:
color: '#FFFFFFFF'
id: BushDOne
decals:
- 508: 1.7532151,-17.442657
- 509: 5.846965,-26.057783
- 2469: -25.336185,-62.7694
- 3023: -72.71451,-14.765793
- 4028: 8.582758,-61.737583
+ 507: 1.7532151,-17.442657
+ 508: 5.846965,-26.057783
+ 2427: -25.336185,-62.7694
+ 2981: -72.71451,-14.765793
+ 3986: 8.582758,-61.737583
- node:
color: '#FFFFFFFF'
id: BushDThree
decals:
- 1057: -5.8644323,27.085602
- 2470: -24.78931,-62.910027
- 2894: -85.111626,-10.793869
- 3022: -73.23013,-14.375168
+ 1056: -5.8644323,27.085602
+ 2428: -24.78931,-62.910027
+ 2852: -85.111626,-10.793869
+ 2980: -73.23013,-14.375168
- node:
color: '#FFFFFFFF'
id: BushDTwo
decals:
- 4029: 8.129633,-61.06571
+ 3987: 8.129633,-61.06571
- node:
color: '#FFFFFFFF'
id: Busha1
decals:
- 359: -37.76244,10.056003
- 369: -14.020037,46.649075
- 381: -12.072199,17.736418
- 411: 23.560513,-9.922158
- 462: -42.776886,12.919985
- 2480: -26.561981,-54.0737
- 2481: -26.530731,-55.954853
- 4339: -30.703804,52.564796
- 4360: -18.591827,52.58128
- 4749: -20,-34
+ 358: -37.76244,10.056003
+ 368: -14.020037,46.649075
+ 380: -12.072199,17.736418
+ 410: 23.560513,-9.922158
+ 461: -42.776886,12.919985
+ 2438: -26.561981,-54.0737
+ 2439: -26.530731,-55.954853
+ 4297: -30.703804,52.564796
+ 4318: -18.591827,52.58128
+ 4707: -20,-34
- node:
color: '#FFFFFFFF'
id: Busha2
decals:
- 518: 27.432602,-9.016756
- 3177: -67.92765,-24.179083
+ 517: 27.432602,-9.016756
+ 3135: -67.92765,-24.179083
- node:
color: '#FFFFFFFF'
id: Busha3
decals:
- 364: 42.046333,-11.28359
- 4750: -7,-34
+ 363: 42.046333,-11.28359
+ 4708: -7,-34
- node:
color: '#FFFFFFFF'
id: Bushb1
decals:
- 546: 5.048932,-29.15071
- 580: 20.761244,-42.1122
- 585: 13.864058,-58.182125
- 1031: -16.538874,-56.196735
- 1032: -18.585749,-56.040485
- 4023: -40.20255,31.935944
- 4033: 18.254955,-30.101465
+ 545: 5.048932,-29.15071
+ 579: 20.761244,-42.1122
+ 584: 13.864058,-58.182125
+ 1030: -16.538874,-56.196735
+ 1031: -18.585749,-56.040485
+ 3981: -40.20255,31.935944
+ 3991: 18.254955,-30.101465
- node:
color: '#FFFFFFFF'
id: Bushb2
decals:
- 361: 43.442547,-11.057015
- 362: 40.70817,-8.994515
- 365: -11.973366,30.352365
- 371: 13.514543,9.973053
- 397: -34.342087,33.03383
- 406: -47.60119,-14.0485935
- 407: 33.42746,6.0713215
- 414: 32.968758,-9.062783
- 431: 38.598,-7.030212
- 547: 12.964976,-32.575108
- 558: 18.659796,-32.913776
- 584: 7.1419945,-58.88515
- 2448: 43.002182,8.311773
- 2449: 45.995632,10.566605
- 2556: -41.088314,33.493763
- 4031: 8.001865,-23.954905
- 5606: 33,-45
+ 360: 43.442547,-11.057015
+ 361: 40.70817,-8.994515
+ 364: -11.973366,30.352365
+ 370: 13.514543,9.973053
+ 396: -34.342087,33.03383
+ 405: -47.60119,-14.0485935
+ 406: 33.42746,6.0713215
+ 413: 32.968758,-9.062783
+ 430: 38.598,-7.030212
+ 546: 12.964976,-32.575108
+ 557: 18.659796,-32.913776
+ 583: 7.1419945,-58.88515
+ 2406: 43.002182,8.311773
+ 2407: 45.995632,10.566605
+ 2514: -41.088314,33.493763
+ 3989: 8.001865,-23.954905
+ 5546: 33,-45
- node:
color: '#FFFFFFFF'
id: Bushb3
decals:
- 514: -13.692439,-11.484555
- 517: 27.963852,-11.001131
- 557: 20.748043,-30.038776
- 582: 12.741528,-61.047016
- 2467: -32.198326,-66.06628
- 3020: -56.974766,-12.231876
- 3555: 24.021675,39.058914
- 4032: 8.042632,-28.251831
- 4362: -26.416283,52.653687
+ 513: -13.692439,-11.484555
+ 516: 27.963852,-11.001131
+ 556: 20.748043,-30.038776
+ 581: 12.741528,-61.047016
+ 2425: -32.198326,-66.06628
+ 2978: -56.974766,-12.231876
+ 3513: 24.021675,39.058914
+ 3990: 8.042632,-28.251831
+ 4320: -26.416283,52.653687
- node:
color: '#FFFFFFFF'
id: Bushc1
decals:
- 380: -6.498577,15.101657
- 412: 29.024334,-9.969033
- 550: 10.594428,-30.035114
- 2450: 50.469868,7.0255485
- 2479: -26.120043,-53.455257
- 3275: -73,-18
+ 379: -6.498577,15.101657
+ 411: 29.024334,-9.969033
+ 549: 10.594428,-30.035114
+ 2408: 50.469868,7.0255485
+ 2437: -26.120043,-53.455257
+ 3233: -73,-18
- node:
color: '#FFFFFFFF'
id: Bushc2
decals:
- 366: -11.973366,28.569687
- 367: -11.997062,33.69559
- 370: -30.990105,47.441864
- 3029: -61.511253,-14.040881
- 3030: -63.65657,-13.915881
+ 365: -11.973366,28.569687
+ 366: -11.997062,33.69559
+ 369: -30.990105,47.441864
+ 2987: -61.511253,-14.040881
+ 2988: -63.65657,-13.915881
- node:
color: '#FFFFFFFF'
id: Bushc3
decals:
- 360: -40.722523,10.024753
- 519: 24.452305,-9.024114
- 520: 37.448223,-8.930364
- 3297: -72.143105,-22.909624
+ 359: -40.722523,10.024753
+ 518: 24.452305,-9.024114
+ 519: 37.448223,-8.930364
+ 3255: -72.143105,-22.909624
- node:
color: '#FFFFFFFF'
id: Bushd1
decals:
- 3276: -60.02429,-25.221315
- 4027: 46.385242,4.9781556
+ 3234: -60.02429,-25.221315
+ 3985: 46.385242,4.9781556
- node:
color: '#FFFFFFFF'
id: Bushd2
decals:
- 512: -41.084003,28.826519
- 513: -9.498163,-13.953305
+ 511: -41.084003,28.826519
+ 512: -9.498163,-13.953305
- node:
color: '#FFFFFFFF'
id: Bushd4
decals:
- 2906: -78.25681,-6.0130177
- 4358: -20.977093,51.937218
+ 2864: -78.25681,-6.0130177
+ 4316: -20.977093,51.937218
- node:
color: '#FFFFFFFF'
id: Bushe2
decals:
- 1188: -48.023796,14.122482
+ 1187: -48.023796,14.122482
- node:
color: '#FFFFFFFF'
id: Bushe3
decals:
- 1054: -7.907997,18.95669
- 1055: -5.0850806,19.488308
- 1056: -4.0831823,24.615135
- 5220: -8.951675,54.1634
+ 1053: -7.907997,18.95669
+ 1054: -5.0850806,19.488308
+ 1055: -4.0831823,24.615135
+ 5160: -8.951675,54.1634
- node:
color: '#FFFFFFFF'
id: Bushe4
decals:
- 1066: -30.060707,-59.640705
+ 1065: -30.060707,-59.640705
- node:
color: '#FFFFFFFF'
id: Bushf1
decals:
- 1042: -6.594675,24.668077
- 1043: -5.344675,26.471413
- 1062: 6.11073,-17.194168
- 1063: 3.2341068,-23.672308
- 1064: -30.056541,-59.33808
- 2903: -79.652885,-5.5113792
+ 1041: -6.594675,24.668077
+ 1042: -5.344675,26.471413
+ 1061: 6.11073,-17.194168
+ 1062: 3.2341068,-23.672308
+ 1063: -30.056541,-59.33808
+ 2861: -79.652885,-5.5113792
- node:
color: '#FFFFFFFF'
id: Bushf2
decals:
- 386: -4.9502716,24.411314
- 389: 1.3933232,-16.379318
- 1045: -3.3759248,25.230968
- 1051: -3.3030083,18.738024
- 2466: -28.98949,-44.871017
+ 385: -4.9502716,24.411314
+ 388: 1.3933232,-16.379318
+ 1044: -3.3759248,25.230968
+ 1050: -3.3030083,18.738024
+ 2424: -28.98949,-44.871017
- node:
color: '#FFFFFFFF'
id: Bushf3
decals:
- 388: 5.643323,-18.543146
- 1050: -5.292592,16.840872
- 1052: -7.157175,18.206167
- 1053: -3.2821748,17.622429
+ 387: 5.643323,-18.543146
+ 1049: -5.292592,16.840872
+ 1051: -7.157175,18.206167
+ 1052: -3.2821748,17.622429
- node:
color: '#FFFFFFFF'
id: Bushg1
decals:
- 3298: -93.08861,-18.12887
- 3300: -88.250656,-23.204586
+ 3256: -93.08861,-18.12887
+ 3258: -88.250656,-23.204586
- node:
color: '#FFFFFFFF'
id: Bushg3
decals:
- 1191: -48.207165,22.855616
- 2558: -37.789345,35.86274
- 3299: -92.714905,-23.97289
+ 1190: -48.207165,22.855616
+ 2516: -37.789345,35.86274
+ 3257: -92.714905,-23.97289
- node:
color: '#FFFFFFFF'
id: Bushh1
decals:
- 506: 1.3573816,-24.871485
- 507: 5.076132,-17.262033
+ 505: 1.3573816,-24.871485
+ 506: 5.076132,-17.262033
- node:
color: '#FFFFFFFF'
id: Bushi1
decals:
- 1034: -22.624771,-56.967094
- 1189: -48.571747,21.147282
- 2483: -30.30723,-57.059185
- 2554: -43.057064,33.931263
- 2559: -37.914345,37.905872
- 2893: -87.1745,-10.903244
- 2917: -59.326077,-9.930442
+ 1033: -22.624771,-56.967094
+ 1188: -48.571747,21.147282
+ 2441: -30.30723,-57.059185
+ 2512: -43.057064,33.931263
+ 2517: -37.914345,37.905872
+ 2851: -87.1745,-10.903244
+ 2875: -59.326077,-9.930442
- node:
color: '#FFFFFFFF'
id: Bushi2
decals:
- 382: -3.4815214,16.970793
- 405: -46.016106,-11.942304
- 448: -54,17
- 1058: 2.999348,-24.913628
- 1059: 1.6139314,-16.360256
- 1060: 4.8118486,-16.11008
- 1187: -48.825882,13.487066
- 2892: -87.565125,-10.153244
- 2918: -58.9042,-9.352317
- 3024: -66.01293,-16.776505
- 3028: -57.12063,-13.767191
- 4363: -22.767273,52.72973
+ 381: -3.4815214,16.970793
+ 404: -46.016106,-11.942304
+ 447: -54,17
+ 1057: 2.999348,-24.913628
+ 1058: 1.6139314,-16.360256
+ 1059: 4.8118486,-16.11008
+ 1186: -48.825882,13.487066
+ 2850: -87.565125,-10.153244
+ 2876: -58.9042,-9.352317
+ 2982: -66.01293,-16.776505
+ 2986: -57.12063,-13.767191
+ 4321: -22.767273,52.72973
- node:
color: '#FFFFFFFF'
id: Bushi3
decals:
- 2465: -27.973866,-46.808517
- 2484: -24.440557,-65.853485
- 2891: -88.08075,-10.762619
- 3174: -56.122093,-22.73031
- 3176: -45.77058,-23.91312
+ 2423: -27.973866,-46.808517
+ 2442: -24.440557,-65.853485
+ 2849: -88.08075,-10.762619
+ 3132: -56.122093,-22.73031
+ 3134: -45.77058,-23.91312
- node:
color: '#FFFFFFFF'
id: Bushi4
decals:
- 510: 3.7636318,-16.286268
- 2485: -23.909307,-66.15036
- 2486: -23.924932,-65.74411
- 3025: -65.65356,-17.182755
+ 509: 3.7636318,-16.286268
+ 2443: -23.909307,-66.15036
+ 2444: -23.924932,-65.74411
+ 2983: -65.65356,-17.182755
- node:
color: '#FFFFFFFF'
id: Bushj1
decals:
- 1467: -63.67908,18.16475
+ 1466: -63.67908,18.16475
- node:
color: '#FFFFFFFF'
id: Bushj2
decals:
- 447: -54,19
- 2902: -82.405205,-5.7140646
+ 446: -54,19
+ 2860: -82.405205,-5.7140646
- node:
color: '#FFFFFFFF'
id: Bushj3
decals:
- 383: -7.8252716,17.345793
- 2567: -91.338936,19.053886
- 2890: -88.0495,-9.075119
- 2901: -82.717705,-6.5734396
- 2907: -62.31045,-5.305588
- 3026: -69.82543,-14.085277
+ 382: -7.8252716,17.345793
+ 2525: -91.338936,19.053886
+ 2848: -88.0495,-9.075119
+ 2859: -82.717705,-6.5734396
+ 2865: -62.31045,-5.305588
+ 2984: -69.82543,-14.085277
- node:
color: '#FFFFFFFF'
id: Bushk1
decals:
- 1065: -27.935707,-61.47531
- 2565: -74.8092,18.012127
- 2566: -92.28845,17.266336
- 2916: -62.701077,-6.696066
- 4359: -14.09183,52.675026
- 5219: -7.139177,54.2259
+ 1064: -27.935707,-61.47531
+ 2523: -74.8092,18.012127
+ 2524: -92.28845,17.266336
+ 2874: -62.701077,-6.696066
+ 4317: -14.09183,52.675026
+ 5159: -7.139177,54.2259
- node:
color: '#FFFFFFFF'
id: Bushk2
decals:
- 1186: -48.732132,14.799566
- 2904: -78.10601,-4.9176292
+ 1185: -48.732132,14.799566
+ 2862: -78.10601,-4.9176292
- node:
color: '#FFFFFFFF'
id: Bushk3
decals:
- 387: -5.9971466,26.427769
- 1061: 4.0201817,-18.549274
- 2905: -80.434135,-6.9332542
+ 386: -5.9971466,26.427769
+ 1060: 4.0201817,-18.549274
+ 2863: -80.434135,-6.9332542
- node:
color: '#FFFFFFFF'
id: Bushl1
decals:
- 3105: -41.86759,-62.67357
+ 3063: -41.86759,-62.67357
- node:
color: '#FFFFFFFF'
id: Bushl2
decals:
- 384: -5.8721466,19.725794
- 391: 2.7390597,-26.030264
- 1044: -7.782175,25.064186
+ 383: -5.8721466,19.725794
+ 390: 2.7390597,-26.030264
+ 1043: -7.782175,25.064186
- node:
color: '#FFFFFFFF'
id: Bushl3
decals:
- 1465: -57.08178,18.35225
+ 1464: -57.08178,18.35225
- node:
color: '#FFFFFFFF'
id: Bushl4
decals:
- 385: -5.2158966,18.617846
- 390: 4.143323,-17.435427
- 392: 3.9384613,-23.577139
- 2464: -28.98949,-47.996017
+ 384: -5.2158966,18.617846
+ 389: 4.143323,-17.435427
+ 391: 3.9384613,-23.577139
+ 2422: -28.98949,-47.996017
- node:
color: '#FFFFFFFF'
id: Bushm1
decals:
- 1046: -6.386342,26.54438
+ 1045: -6.386342,26.54438
- node:
color: '#FFFFFFFF'
id: Bushm3
decals:
- 1190: -48.905083,22.105616
+ 1189: -48.905083,22.105616
- node:
color: '#FFFFFFFF'
id: Bushn1
decals:
- 449: -54,18
- 2564: -79.479675,17.309002
- 2895: -82.65627,-9.098636
- 2908: -61.3417,-6.180588
+ 448: -54,18
+ 2522: -79.479675,17.309002
+ 2853: -82.65627,-9.098636
+ 2866: -61.3417,-6.180588
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
id: Caution
decals:
- 2828: -89,13
- 2829: -87,13
- 2830: -79,13
- 4088: 64,-9
- 4089: 66,-9
+ 2786: -89,13
+ 2787: -87,13
+ 2788: -79,13
+ 4046: 64,-9
+ 4047: 66,-9
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: Caution
decals:
- 2812: -94,40
- 2813: -94,33
- 2814: -76,33
- 2815: -76,40
+ 2770: -94,40
+ 2771: -94,33
+ 2772: -76,33
+ 2773: -76,40
- node:
color: '#FFFFFFFF'
id: Caution
decals:
- 1172: -49,35
- 2811: -95,43
- 2816: -77,43
- 2817: -59,43
- 3010: -87,-4
- 3011: -89,-4
- 3012: -81,-4
- 3013: -79,-4
- 4597: 79,-34
+ 1171: -49,35
+ 2769: -95,43
+ 2774: -77,43
+ 2775: -59,43
+ 2968: -87,-4
+ 2969: -89,-4
+ 2970: -81,-4
+ 2971: -79,-4
+ 4555: 79,-34
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Caution
decals:
- 2790: -96,33
- 2791: -96,40
- 2792: -99,23
- 2793: -99,15
- 2794: -99,13
- 2796: -78,33
- 2797: -78,40
- 2798: -60,40
- 2799: -60,33
- 3254: -50,-41
- 3255: -50,-49
+ 2748: -96,33
+ 2749: -96,40
+ 2750: -99,23
+ 2751: -99,15
+ 2752: -99,13
+ 2754: -78,33
+ 2755: -78,40
+ 2756: -60,40
+ 2757: -60,33
+ 3212: -50,-41
+ 3213: -50,-49
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Caution
decals:
- 4598: 79,-56
- 5018: -81,13
+ 4556: 79,-56
+ 4976: -81,13
- node:
color: '#52B4E996'
id: CheckerNESW
@@ -3662,8 +3648,8 @@ entities:
108: 1,-47
109: 9,-50
110: 8,-50
- 1039: 1,-38
- 1040: 2,-38
+ 1038: 1,-38
+ 1039: 2,-38
- node:
color: '#EFB34196'
id: CheckerNESW
@@ -3675,157 +3661,157 @@ entities:
127: 9,-40
128: 9,-41
129: 9,-42
- 1011: 9,-43
- 1012: 9,-38
- 1013: 6,-45
+ 1010: 9,-43
+ 1011: 9,-38
+ 1012: 6,-45
- node:
color: '#52B4E996'
id: CheckerNWSE
decals:
- 5160: -2,-38
- 5161: -3,-38
- 5162: -4,-38
+ 5105: -2,-38
+ 5106: -3,-38
+ 5107: -4,-38
- node:
color: '#DE3A3A95'
id: ConcreteTrimCornerSe
decals:
- 5209: 3,49
+ 5149: 3,49
- node:
color: '#DE3A3A95'
id: ConcreteTrimInnerNe
decals:
- 5215: 3,51
- 5426: 6,50
- 5443: 4,45
+ 5155: 3,51
+ 5366: 6,50
+ 5383: 4,45
- node:
color: '#DE3A3A96'
id: ConcreteTrimInnerNe
decals:
- 5203: 1,38
- 5205: 1,42
+ 5143: 1,38
+ 5145: 1,42
- node:
color: '#DE3A3A95'
id: ConcreteTrimInnerNw
decals:
- 5427: 7,50
- 5433: 7,45
+ 5367: 7,50
+ 5373: 7,45
- node:
color: '#DE3A3A95'
id: ConcreteTrimInnerSe
decals:
- 5214: 3,51
- 5216: 0,49
- 5424: 6,53
- 5432: 4,46
+ 5154: 3,51
+ 5156: 0,49
+ 5364: 6,53
+ 5372: 4,46
- node:
color: '#DE3A3A96'
id: ConcreteTrimInnerSe
decals:
- 5202: 1,38
- 5204: 1,42
+ 5142: 1,38
+ 5144: 1,42
- node:
color: '#DE3A3A95'
id: ConcreteTrimInnerSw
decals:
- 5217: -2,49
- 5425: 7,53
- 5434: 7,46
+ 5157: -2,49
+ 5365: 7,53
+ 5374: 7,46
- node:
color: '#DE3A3A95'
id: ConcreteTrimLineE
decals:
- 5206: 3,50
- 5207: 3,52
- 5208: 3,54
- 5420: 6,51
- 5421: 6,52
+ 5146: 3,50
+ 5147: 3,52
+ 5148: 3,54
+ 5360: 6,51
+ 5361: 6,52
- node:
color: '#DE3A3A95'
id: ConcreteTrimLineN
decals:
- 5429: 6,45
- 5442: 5,45
+ 5369: 6,45
+ 5382: 5,45
- node:
color: '#DE3A3A95'
id: ConcreteTrimLineS
decals:
- 5210: 2,49
- 5211: -4,49
- 5212: -6,49
- 5213: -7,49
- 5218: -3,49
- 5430: 5,46
- 5431: 6,46
+ 5150: 2,49
+ 5151: -4,49
+ 5152: -6,49
+ 5153: -7,49
+ 5158: -3,49
+ 5370: 5,46
+ 5371: 6,46
- node:
color: '#DE3A3A95'
id: ConcreteTrimLineW
decals:
- 5422: 7,51
- 5423: 7,52
+ 5362: 7,51
+ 5363: 7,52
- node:
color: '#00AF57FF'
id: Damaged
decals:
- 4905: 30,-61
+ 4863: 30,-61
- node:
color: '#258F4AFF'
id: Damaged
decals:
- 4972: 37,-65
+ 4930: 37,-65
- node:
color: '#25B54AFF'
id: Damaged
decals:
- 4961: 49,-58
- 4962: 47,-64
- 4963: 48,-68
- 4964: 36,-55
- 4965: 44,-55
- 4966: 48,-54
- 4967: 51,-65
- 4968: 41,-65
+ 4919: 49,-58
+ 4920: 47,-64
+ 4921: 48,-68
+ 4922: 36,-55
+ 4923: 44,-55
+ 4924: 48,-54
+ 4925: 51,-65
+ 4926: 41,-65
- node:
color: '#25E24AFF'
id: Damaged
decals:
- 4973: 52,-57
- 4974: 57,-64
- 4975: 56,-67
- 4976: 54,-66
- 4977: 50,-68
+ 4931: 52,-57
+ 4932: 57,-64
+ 4933: 56,-67
+ 4934: 54,-66
+ 4935: 50,-68
- node:
color: '#4DC585FF'
id: Damaged
decals:
- 4955: 31,-60
- 4956: 33,-66
+ 4913: 31,-60
+ 4914: 33,-66
- node:
color: '#4DFF85FF'
id: Damaged
decals:
- 4946: 33,-62
- 4947: 40,-64
- 4948: 48,-60
- 4949: 45,-57
- 4950: 47,-55
- 4951: 46,-66
- 4952: 50,-63
- 4953: 55,-65
- 4954: 53,-60
+ 4904: 33,-62
+ 4905: 40,-64
+ 4906: 48,-60
+ 4907: 45,-57
+ 4908: 47,-55
+ 4909: 46,-66
+ 4910: 50,-63
+ 4911: 55,-65
+ 4912: 53,-60
- node:
color: '#57C585FF'
id: Damaged
decals:
- 4957: 36,-61
- 4958: 42,-63
- 4959: 40,-60
- 4960: 46,-61
+ 4915: 36,-61
+ 4916: 42,-63
+ 4917: 40,-60
+ 4918: 46,-61
- node:
angle: 3.141592653589793 rad
color: '#F9FFFE5E'
id: Delivery
decals:
- 2151: 37,-25
+ 2127: 37,-25
- node:
color: '#FFF92B96'
id: Delivery
@@ -3911,1321 +3897,1321 @@ entities:
203: 44,-1
204: 1,11
205: 1,13
- 206: -3,11
- 207: -3,13
- 208: -2,14
- 209: -1,14
- 210: 0,14
- 427: -44,22
- 428: -44,23
- 429: -44,21
- 450: -12,-1
- 451: -12,0
- 452: -12,1
- 453: -11,2
- 454: -10,2
- 455: -9,2
- 456: -9,-2
- 457: -10,-2
- 458: -11,-2
- 459: -2,-35
- 460: -1,-35
- 461: 0,-35
- 973: -23,-18
- 974: -21,-18
- 1293: -2,36
- 1303: -53,21
- 1304: -53,22
- 1305: -53,23
- 1306: -53,13
- 1307: -53,14
- 1308: -53,15
- 1309: -65,13
- 1310: -65,14
- 1311: -65,15
- 1312: -65,21
- 1313: -65,22
- 1314: -65,23
- 2359: 20,2
- 2360: 21,2
- 2361: 8,2
- 2362: 9,2
- 2724: -71,13
- 2725: -71,14
- 2726: -71,15
- 2727: -71,21
- 2728: -71,22
- 2729: -71,23
- 2730: -83,21
- 2731: -83,22
- 2732: -83,23
- 2733: -83,13
- 2734: -83,14
- 2735: -83,15
- 2736: -92,15
- 2737: -92,14
- 2738: -92,13
- 2739: -92,21
- 2740: -92,21
- 2741: -92,23
- 2742: -92,22
- 2743: -96,24
- 2744: -95,24
- 2745: -94,24
- 2746: -78,24
- 2747: -77,24
- 2748: -76,24
- 2787: -60,24
- 2788: -59,24
- 2789: -58,24
- 3091: -75,3
- 3466: 70,2
- 3475: 69,2
- 3478: 57,-3
- 3479: 57,-1
- 3483: 57,-5
- 3962: -54,-1
- 3963: -54,0
- 3964: -54,1
- 3987: -22,-18
- 4125: -24,0
- 4128: -24,-1
- 4129: -36,-1
- 4172: -23,33
- 4174: -21,33
- 4832: -3,-31
- 4833: -3,-30
- 4834: -3,-29
- 4881: 38,-61
- 4882: 43,-61
- 5093: 0,44
- 5094: -1,44
- 5095: -2,44
- 5197: -3,12
- 5198: 1,12
- 5199: 0,48
- 5200: -1,48
- 5201: -2,48
- 5389: 10,47
- 5390: 11,47
- 5391: 8,52
- 5567: 6,54
- 5568: 7,54
+ 206: -3,13
+ 207: -2,14
+ 208: -1,14
+ 209: 0,14
+ 426: -44,22
+ 427: -44,23
+ 428: -44,21
+ 449: -12,-1
+ 450: -12,0
+ 451: -12,1
+ 452: -11,2
+ 453: -10,2
+ 454: -9,2
+ 455: -9,-2
+ 456: -10,-2
+ 457: -11,-2
+ 458: -2,-35
+ 459: -1,-35
+ 460: 0,-35
+ 972: -23,-18
+ 973: -21,-18
+ 1292: -2,36
+ 1302: -53,21
+ 1303: -53,22
+ 1304: -53,23
+ 1305: -53,13
+ 1306: -53,14
+ 1307: -53,15
+ 1308: -65,13
+ 1309: -65,14
+ 1310: -65,15
+ 1311: -65,21
+ 1312: -65,22
+ 1313: -65,23
+ 2335: 20,2
+ 2336: 21,2
+ 2337: 8,2
+ 2338: 9,2
+ 2682: -71,13
+ 2683: -71,14
+ 2684: -71,15
+ 2685: -71,21
+ 2686: -71,22
+ 2687: -71,23
+ 2688: -83,21
+ 2689: -83,22
+ 2690: -83,23
+ 2691: -83,13
+ 2692: -83,14
+ 2693: -83,15
+ 2694: -92,15
+ 2695: -92,14
+ 2696: -92,13
+ 2697: -92,21
+ 2698: -92,21
+ 2699: -92,23
+ 2700: -92,22
+ 2701: -96,24
+ 2702: -95,24
+ 2703: -94,24
+ 2704: -78,24
+ 2705: -77,24
+ 2706: -76,24
+ 2745: -60,24
+ 2746: -59,24
+ 2747: -58,24
+ 3049: -75,3
+ 3424: 70,2
+ 3433: 69,2
+ 3436: 57,-3
+ 3437: 57,-1
+ 3441: 57,-5
+ 3920: -54,-1
+ 3921: -54,0
+ 3922: -54,1
+ 3945: -22,-18
+ 4083: -24,0
+ 4086: -24,-1
+ 4087: -36,-1
+ 4130: -23,33
+ 4132: -21,33
+ 4790: -3,-31
+ 4791: -3,-30
+ 4792: -3,-29
+ 4839: 38,-61
+ 4840: 43,-61
+ 5045: 0,44
+ 5046: -1,44
+ 5047: -2,44
+ 5139: 0,48
+ 5140: -1,48
+ 5141: -2,48
+ 5329: 10,47
+ 5330: 11,47
+ 5331: 8,52
+ 5507: 6,54
+ 5508: 7,54
+ 5585: -3,12
+ 5586: -3,11
+ 5587: 1,12
+ 5597: 75,46
+ 5598: 71,42
+ 5599: 83,46
+ 5600: 87,42
+ 5601: 87,34
+ 5602: 83,30
+ 5603: 75,30
+ 5604: 71,34
- node:
cleanable: True
color: '#FFFFFFFF'
id: Delivery
decals:
- 472: 21,17
- 473: 21,16
- 474: 21,15
- 475: 21,14
- 476: 7,19
- 477: 8,19
- 478: 9,19
- 2206: 30,34
- 2207: 30,35
- 2208: 31,35
- 2209: 31,34
- 2210: 32,34
- 2211: 32,35
- 2212: 33,35
- 2213: 33,34
- 2214: 34,34
- 2215: 34,35
- 2367: 58,25
- 2368: 54,29
- 2369: 66,25
- 2370: 70,29
- 2371: 70,37
- 2372: 66,41
- 2373: 58,41
- 2374: 54,37
- 5559: -9,47
- 5560: -9,46
- 5597: -4,54
- 5598: -2,48
- 5599: -1,48
- 5600: 0,48
- 5601: -2,44
- 5602: -1,44
- 5603: 0,44
+ 471: 21,17
+ 472: 21,16
+ 473: 21,15
+ 474: 21,14
+ 475: 7,19
+ 476: 8,19
+ 477: 9,19
+ 2182: 30,34
+ 2183: 30,35
+ 2184: 31,35
+ 2185: 31,34
+ 2186: 32,34
+ 2187: 32,35
+ 2188: 33,35
+ 2189: 33,34
+ 2190: 34,34
+ 2191: 34,35
+ 5499: -9,47
+ 5500: -9,46
+ 5537: -4,54
+ 5538: -2,48
+ 5539: -1,48
+ 5540: 0,48
+ 5541: -2,44
+ 5542: -1,44
+ 5543: 0,44
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Delivery
decals:
- 975: -7,-1
- 976: -7,0
- 977: -7,1
- 978: 5,-1
- 979: 5,0
- 980: 5,1
- 981: -6,-22
- 982: -6,-21
- 983: -6,-20
- 984: -21,-5
- 985: -22,-5
- 986: -23,-5
- 3035: -73,2
- 3036: -73,4
- 3037: -73,5
- 3038: -73,7
- 3711: 68,-32
- 3712: 68,-31
- 3713: 68,-30
- 3714: 55,-35
- 3715: 55,-33
+ 974: -7,-1
+ 975: -7,0
+ 976: -7,1
+ 977: 5,-1
+ 978: 5,0
+ 979: 5,1
+ 980: -6,-22
+ 981: -6,-21
+ 982: -6,-20
+ 983: -21,-5
+ 984: -22,-5
+ 985: -23,-5
+ 2993: -73,2
+ 2994: -73,4
+ 2995: -73,5
+ 2996: -73,7
+ 3669: 68,-32
+ 3670: 68,-31
+ 3671: 68,-30
+ 3672: 55,-35
+ 3673: 55,-33
- node:
color: '#FFFFFFE0'
id: DeliveryGreyscale
decals:
- 745: -16,-20
+ 744: -16,-20
- node:
color: '#FFFFFFFF'
id: Diablo
decals:
- 238: -42.23448,-11.124035
+ 237: -42.23448,-11.124035
- node:
color: '#00AF57FF'
id: Dirt
decals:
- 4903: 31,-62
- 4904: 33,-61
+ 4861: 31,-62
+ 4862: 33,-61
- node:
color: '#FFFFFFFF'
id: Dirt
decals:
- 211: 5,-52
- 212: 6,-53
- 217: -25,-41
- 220: 0,-24
- 221: -2,-21
- 222: 0,-22
- 227: -9,-9
- 228: -10,-8
- 263: -2,23
- 264: 5,22
- 265: -1,28
- 266: 0,30
- 267: -2,39
- 269: -7,49
- 274: -2,15
- 275: -1,18
- 318: 9,-8
- 319: -1,-10
- 320: -2,-11
- 324: 8,-21
- 325: 4,-20
- 326: 9,-21
- 340: -9,5
- 341: -11,8
- 342: -11,10
- 343: -8,13
- 749: -28,9
- 3096: -60,-14
- 3306: -41,-44
- 3307: -41,-39
- 3308: -43,-47
- 3309: -42,-47
- 3310: -38,-48
- 3311: -38,-43
- 3312: -41,-51
- 3313: -45,-55
- 3314: -46,-57
- 3315: -47,-60
- 3316: -43,-55
- 3317: -46,-46
- 3318: -42,-41
- 3339: -44,-73
- 3340: -49,-70
- 3341: -44,-69
- 3342: -41,-69
- 3351: -48,-70
- 3353: -47,-64
- 3354: -38,-65
- 3355: -39,-72
- 3356: -31,-71
- 3357: -28,-73
- 3358: -24,-71
- 3359: -25,-73
- 3360: -20,-73
- 3361: -19,-71
- 3382: -18,-72
- 3383: -15,-67
- 3384: -18,-66
- 3550: -31,-79
- 3551: -34,-75
- 3552: -29,-76
- 3586: -53,-23
- 3587: -45,-29
- 3588: -41,-31
- 3589: -50,-25
- 3598: -62,-23
- 3599: -47,-23
- 3600: -52,-28
- 4368: -25,52
- 4371: -31,51
- 4372: -17,52
- 4374: -22,53
- 4422: 58,-39
- 4423: 58,-42
- 4429: 57,-46
- 4430: 59,-45
- 4431: 58,-46
- 4438: 33,-45
- 4439: 36,-45
- 4440: 33,-42
- 4441: 36,-40
- 4442: 33,-40
- 4443: 34,-44
- 4456: 50,-43
- 4457: 44,-45
- 4458: 39,-44
- 4459: 47,-44
- 4460: 45,-44
- 4461: 54,-45
- 4462: 55,-43
- 4467: 46,-44
- 4468: 53,-45
- 4883: 39,-65
- 4884: 42,-64
- 4885: 40,-63
- 4896: 39,-60
- 4897: 41,-60
- 4898: 42,-61
- 4911: 36,-61
- 4912: 36,-65
- 4913: 33,-66
- 4935: 46,-61
- 4936: 50,-59
- 4937: 48,-57
- 4938: 50,-61
- 4939: 49,-60
- 5266: -14,49
- 5267: -14,49
- 5268: -15,51
- 5269: -14,52
- 5270: -18,53
- 5271: -18,53
- 5272: -20,52
- 5273: -23,53
- 5274: -25,52
- 5275: -27,53
- 5276: -28,52
- 5277: -28,52
- 5278: -30,53
- 5279: -31,52
- 5280: -28,52
- 5281: -28,53
- 5282: -26,53
- 5283: -25,52
- 5284: -20,53
- 5285: -18,53
- 5286: -19,53
- 5287: -17,52
- 5288: -16,53
- 5289: -14,46
+ 210: 5,-52
+ 211: 6,-53
+ 216: -25,-41
+ 219: 0,-24
+ 220: -2,-21
+ 221: 0,-22
+ 226: -9,-9
+ 227: -10,-8
+ 262: -2,23
+ 263: 5,22
+ 264: -1,28
+ 265: 0,30
+ 266: -2,39
+ 268: -7,49
+ 273: -2,15
+ 274: -1,18
+ 317: 9,-8
+ 318: -1,-10
+ 319: -2,-11
+ 323: 8,-21
+ 324: 4,-20
+ 325: 9,-21
+ 339: -9,5
+ 340: -11,8
+ 341: -11,10
+ 342: -8,13
+ 748: -28,9
+ 3054: -60,-14
+ 3264: -41,-44
+ 3265: -41,-39
+ 3266: -43,-47
+ 3267: -42,-47
+ 3268: -38,-48
+ 3269: -38,-43
+ 3270: -41,-51
+ 3271: -45,-55
+ 3272: -46,-57
+ 3273: -47,-60
+ 3274: -43,-55
+ 3275: -46,-46
+ 3276: -42,-41
+ 3297: -44,-73
+ 3298: -49,-70
+ 3299: -44,-69
+ 3300: -41,-69
+ 3309: -48,-70
+ 3311: -47,-64
+ 3312: -38,-65
+ 3313: -39,-72
+ 3314: -31,-71
+ 3315: -28,-73
+ 3316: -24,-71
+ 3317: -25,-73
+ 3318: -20,-73
+ 3319: -19,-71
+ 3340: -18,-72
+ 3341: -15,-67
+ 3342: -18,-66
+ 3508: -31,-79
+ 3509: -34,-75
+ 3510: -29,-76
+ 3544: -53,-23
+ 3545: -45,-29
+ 3546: -41,-31
+ 3547: -50,-25
+ 3556: -62,-23
+ 3557: -47,-23
+ 3558: -52,-28
+ 4326: -25,52
+ 4329: -31,51
+ 4330: -17,52
+ 4332: -22,53
+ 4380: 58,-39
+ 4381: 58,-42
+ 4387: 57,-46
+ 4388: 59,-45
+ 4389: 58,-46
+ 4396: 33,-45
+ 4397: 36,-45
+ 4398: 33,-42
+ 4399: 36,-40
+ 4400: 33,-40
+ 4401: 34,-44
+ 4414: 50,-43
+ 4415: 44,-45
+ 4416: 39,-44
+ 4417: 47,-44
+ 4418: 45,-44
+ 4419: 54,-45
+ 4420: 55,-43
+ 4425: 46,-44
+ 4426: 53,-45
+ 4841: 39,-65
+ 4842: 42,-64
+ 4843: 40,-63
+ 4854: 39,-60
+ 4855: 41,-60
+ 4856: 42,-61
+ 4869: 36,-61
+ 4870: 36,-65
+ 4871: 33,-66
+ 4893: 46,-61
+ 4894: 50,-59
+ 4895: 48,-57
+ 4896: 50,-61
+ 4897: 49,-60
+ 5206: -14,49
+ 5207: -14,49
+ 5208: -15,51
+ 5209: -14,52
+ 5210: -18,53
+ 5211: -18,53
+ 5212: -20,52
+ 5213: -23,53
+ 5214: -25,52
+ 5215: -27,53
+ 5216: -28,52
+ 5217: -28,52
+ 5218: -30,53
+ 5219: -31,52
+ 5220: -28,52
+ 5221: -28,53
+ 5222: -26,53
+ 5223: -25,52
+ 5224: -20,53
+ 5225: -18,53
+ 5226: -19,53
+ 5227: -17,52
+ 5228: -16,53
+ 5229: -14,46
- node:
cleanable: True
color: '#FFFFFFFF'
id: Dirt
decals:
- 4311: -21,52
- 4469: 39,-47
- 4470: 40,-45
- 4471: 40,-48
- 4472: 48,-45
- 4473: 49,-46
- 4474: 49,-47
- 4475: 51,-46
- 4476: 52,-44
- 4477: 52,-43
- 4899: 36,-57
- 4900: 35,-56
- 4901: 37,-55
- 4927: 50,-65
- 4928: 51,-67
- 4929: 53,-68
- 4930: 54,-68
- 4931: 57,-66
- 4932: 56,-65
- 4933: 45,-67
- 4934: 46,-66
- 4969: 41,-67
- 4970: 42,-68
- 5392: 1,52
- 5393: -2,49
- 5394: -6,51
- 5395: -9,49
- 5400: -6,54
- 5518: 1,45
- 5520: -3,47
- 5528: 4,45
- 5529: 4,47
- 5530: 3,46
- 5531: 8,45
- 5532: 7,44
- 5533: 6,50
- 5534: 5,53
- 5535: 7,53
- 5536: 11,50
- 5537: 10,54
- 5538: 12,53
- 5539: 7,52
- 5557: -5,46
- 5558: -9,47
- 5583: 9,56
- 5590: -2,50
- 5591: -4,53
- 5592: -7,50
+ 4269: -21,52
+ 4427: 39,-47
+ 4428: 40,-45
+ 4429: 40,-48
+ 4430: 48,-45
+ 4431: 49,-46
+ 4432: 49,-47
+ 4433: 51,-46
+ 4434: 52,-44
+ 4435: 52,-43
+ 4857: 36,-57
+ 4858: 35,-56
+ 4859: 37,-55
+ 4885: 50,-65
+ 4886: 51,-67
+ 4887: 53,-68
+ 4888: 54,-68
+ 4889: 57,-66
+ 4890: 56,-65
+ 4891: 45,-67
+ 4892: 46,-66
+ 4927: 41,-67
+ 4928: 42,-68
+ 5332: 1,52
+ 5333: -2,49
+ 5334: -6,51
+ 5335: -9,49
+ 5340: -6,54
+ 5458: 1,45
+ 5460: -3,47
+ 5468: 4,45
+ 5469: 4,47
+ 5470: 3,46
+ 5471: 8,45
+ 5472: 7,44
+ 5473: 6,50
+ 5474: 5,53
+ 5475: 7,53
+ 5476: 11,50
+ 5477: 10,54
+ 5478: 12,53
+ 5479: 7,52
+ 5497: -5,46
+ 5498: -9,47
+ 5523: 9,56
+ 5530: -2,50
+ 5531: -4,53
+ 5532: -7,50
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Dirt
decals:
- 4071: -91,-24
- 4072: -81,-22
- 4073: -80,-26
- 4074: -86,-27
- 4075: -95,-23
- 4076: -93,-19
- 4077: -84,-27
- 4078: -87,-24
+ 4029: -91,-24
+ 4030: -81,-22
+ 4031: -80,-26
+ 4032: -86,-27
+ 4033: -95,-23
+ 4034: -93,-19
+ 4035: -84,-27
+ 4036: -87,-24
- node:
color: '#00AF57FF'
id: DirtHeavy
decals:
- 4902: 34,-60
+ 4860: 34,-60
- node:
color: '#EFB34196'
id: DirtHeavy
decals:
- 2298: 17,16
- 2299: 17,18
- 2300: 14,19
- 2301: 15,18
- 2302: 13,18
- 2303: 15,19
- 2304: 17,14
- 2305: 17,18
- 2309: -48,28
- 2310: -48,30
- 2311: -45,28
- 2312: -52,28
- 2313: -51,28
- 2317: -48,35
- 2318: -49,33
- 2323: -19,-12
- 2324: -15,-11
- 2325: -14,-12
- 2326: -7,-14
- 2327: -10,-14
- 2328: 9,-14
- 2329: 9,-13
- 2330: 2,-14
- 2331: 9,-18
- 2332: 8,-18
- 2333: 9,-16
- 2334: 10,-17
- 2335: 14,-9
- 2336: 14,-10
- 2337: 17,-10
- 2338: 29,-11
- 2339: 26,15
- 2340: 26,19
- 2341: 23,17
- 2342: 25,17
- 2343: 23,14
- 2344: 26,25
- 2345: 27,28
- 2346: 27,22
+ 2274: 17,16
+ 2275: 17,18
+ 2276: 14,19
+ 2277: 15,18
+ 2278: 13,18
+ 2279: 15,19
+ 2280: 17,14
+ 2281: 17,18
+ 2285: -48,28
+ 2286: -48,30
+ 2287: -45,28
+ 2288: -52,28
+ 2289: -51,28
+ 2293: -48,35
+ 2294: -49,33
+ 2299: -19,-12
+ 2300: -15,-11
+ 2301: -14,-12
+ 2302: -7,-14
+ 2303: -10,-14
+ 2304: 9,-14
+ 2305: 9,-13
+ 2306: 2,-14
+ 2307: 9,-18
+ 2308: 8,-18
+ 2309: 9,-16
+ 2310: 10,-17
+ 2311: 14,-9
+ 2312: 14,-10
+ 2313: 17,-10
+ 2314: 29,-11
+ 2315: 26,15
+ 2316: 26,19
+ 2317: 23,17
+ 2318: 25,17
+ 2319: 23,14
+ 2320: 26,25
+ 2321: 27,28
+ 2322: 27,22
- node:
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 223: -1,-18
- 224: -2,-16
- 234: -13,0
- 235: -14,-1
- 236: -17,0
- 237: -18,1
- 240: -14,27
- 247: -16,23
- 248: -14,21
- 249: -6,23
- 250: -2,26
- 251: 0,27
- 252: -2,32
- 253: -3,40
- 254: 0,41
- 255: 1,39
- 256: -3,38
- 270: 6,29
- 271: 3,32
- 272: -2,18
- 273: 0,16
- 282: 3,12
- 283: 9,6
- 284: 7,7
- 285: 5,11
- 286: 12,0
- 287: 15,1
- 288: 24,1
- 289: 27,-1
- 290: 29,0
- 291: 34,1
- 292: 40,0
- 309: 19,-9
- 310: 21,-7
- 311: 21,-5
- 312: 19,-5
- 313: 21,-3
- 314: 8,-5
- 315: 9,-7
- 316: 7,-10
- 317: 4,-11
- 321: -1,-12
- 327: -1,-1
- 336: -9,3
- 337: -11,6
- 338: -10,8
- 339: -5,11
- 746: -30,9
- 747: -27,9
- 3093: -72,-15
- 3304: -46,-39
- 3321: -43,-57
- 3323: -42,-46
- 3325: -47,-59
- 3344: -46,-69
- 3346: -50,-71
- 3387: -13,-67
- 3525: 33,-20
- 3530: 34,-19
- 3531: 32,-22
- 3546: -30,-75
- 3584: -41,-29
- 3590: -59,-24
- 3591: -65,-23
- 3596: -75,-18
- 3597: -67,-17
- 3828: 48,-22
- 3829: 47,-22
- 3830: 52,-23
- 3831: 51,-22
- 3832: 50,-23
- 3839: 56,-25
- 3840: 57,-22
- 3841: 56,-28
- 3842: 55,-28
- 3843: 54,-32
- 3856: 60,-30
- 3857: 60,-32
- 3861: 58,-40
- 3877: 31,-17
- 3878: 30,-13
- 3882: 33,-13
- 4379: -29,53
- 4384: -19,52
- 4451: 41,-44
- 4452: 49,-43
- 4453: 47,-44
- 4454: 54,-45
- 4455: 51,-43
- 4465: 35,-42
- 4466: 50,-44
- 4891: 41,-64
- 4892: 39,-61
- 4893: 42,-60
- 4914: 31,-66
- 5290: -3,52
+ 222: -1,-18
+ 223: -2,-16
+ 233: -13,0
+ 234: -14,-1
+ 235: -17,0
+ 236: -18,1
+ 239: -14,27
+ 246: -16,23
+ 247: -14,21
+ 248: -6,23
+ 249: -2,26
+ 250: 0,27
+ 251: -2,32
+ 252: -3,40
+ 253: 0,41
+ 254: 1,39
+ 255: -3,38
+ 269: 6,29
+ 270: 3,32
+ 271: -2,18
+ 272: 0,16
+ 281: 3,12
+ 282: 9,6
+ 283: 7,7
+ 284: 5,11
+ 285: 12,0
+ 286: 15,1
+ 287: 24,1
+ 288: 27,-1
+ 289: 29,0
+ 290: 34,1
+ 291: 40,0
+ 308: 19,-9
+ 309: 21,-7
+ 310: 21,-5
+ 311: 19,-5
+ 312: 21,-3
+ 313: 8,-5
+ 314: 9,-7
+ 315: 7,-10
+ 316: 4,-11
+ 320: -1,-12
+ 326: -1,-1
+ 335: -9,3
+ 336: -11,6
+ 337: -10,8
+ 338: -5,11
+ 745: -30,9
+ 746: -27,9
+ 3051: -72,-15
+ 3262: -46,-39
+ 3279: -43,-57
+ 3281: -42,-46
+ 3283: -47,-59
+ 3302: -46,-69
+ 3304: -50,-71
+ 3345: -13,-67
+ 3483: 33,-20
+ 3488: 34,-19
+ 3489: 32,-22
+ 3504: -30,-75
+ 3542: -41,-29
+ 3548: -59,-24
+ 3549: -65,-23
+ 3554: -75,-18
+ 3555: -67,-17
+ 3786: 48,-22
+ 3787: 47,-22
+ 3788: 52,-23
+ 3789: 51,-22
+ 3790: 50,-23
+ 3797: 56,-25
+ 3798: 57,-22
+ 3799: 56,-28
+ 3800: 55,-28
+ 3801: 54,-32
+ 3814: 60,-30
+ 3815: 60,-32
+ 3819: 58,-40
+ 3835: 31,-17
+ 3836: 30,-13
+ 3840: 33,-13
+ 4337: -29,53
+ 4342: -19,52
+ 4409: 41,-44
+ 4410: 49,-43
+ 4411: 47,-44
+ 4412: 54,-45
+ 4413: 51,-43
+ 4423: 35,-42
+ 4424: 50,-44
+ 4849: 41,-64
+ 4850: 39,-61
+ 4851: 42,-60
+ 4872: 31,-66
+ 5230: -3,52
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 2221: 24,7
- 2222: 21,3
- 4316: -26,48
- 4318: -24,26
- 4321: -16,46
- 4629: 2,-53
- 5405: 3,53
- 5522: -3,45
- 5540: 7,52
- 5541: 5,51
- 5542: 5,54
- 5543: 6,44
- 5544: 10,46
- 5545: 12,45
- 5546: 3,47
- 5584: 8,57
- 5593: -1,49
+ 2197: 24,7
+ 2198: 21,3
+ 4274: -26,48
+ 4276: -24,26
+ 4279: -16,46
+ 4587: 2,-53
+ 5345: 3,53
+ 5462: -3,45
+ 5480: 7,52
+ 5481: 5,51
+ 5482: 5,54
+ 5483: 6,44
+ 5484: 10,46
+ 5485: 12,45
+ 5486: 3,47
+ 5524: 8,57
+ 5533: -1,49
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 987: 42,-22
- 988: 33,-22
- 989: 35,-21
- 990: 27,-22
- 991: 27,-21
- 992: 25,-20
- 993: 24,-22
- 994: 13,-21
- 995: 21,-16
- 996: 24,-16
- 997: 26,-17
+ 986: 42,-22
+ 987: 33,-22
+ 988: 35,-21
+ 989: 27,-22
+ 990: 27,-21
+ 991: 25,-20
+ 992: 24,-22
+ 993: 13,-21
+ 994: 21,-16
+ 995: 24,-16
+ 996: 26,-17
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 4068: -81,-27
- 4069: -90,-27
- 4070: -91,-22
- 4083: -77,-22
- 4084: -73,-20
+ 4026: -81,-27
+ 4027: -90,-27
+ 4028: -91,-22
+ 4041: -77,-22
+ 4042: -73,-20
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 5410: 2,50
- 5411: -3,54
- 5428: -6,49
- 5524: 1,47
+ 5350: 2,50
+ 5351: -3,54
+ 5368: -6,49
+ 5464: 1,47
- node:
color: '#474F52D6'
id: DirtLight
decals:
- 2241: 27,26
+ 2217: 27,26
- node:
color: '#EFB34196'
id: DirtLight
decals:
- 2243: 21,22
- 2244: 18,22
- 2245: 19,21
- 2246: 10,23
- 2257: 20,14
- 2258: 26,23
- 2259: 27,32
- 2260: 28,31
- 2261: 27,33
- 2262: 27,29
- 2263: 20,22
- 2264: 22,23
- 2265: 19,25
- 2266: 19,30
- 2267: 24,28
- 2268: 24,27
- 2287: 14,34
- 2288: 14,36
- 2289: 16,36
- 2290: 14,26
- 2291: 15,25
- 2292: 14,29
- 2306: -48,27
- 2307: -47,29
- 2308: -50,29
- 2314: -48,33
- 2315: -48,34
- 2316: -49,34
- 2319: -46,29
- 2320: -46,28
- 2321: -18,-12
- 2322: -17,-13
- 2348: 25,23
- 2349: 15,23
- 2350: 15,25
- 2351: 4,26
- 2352: 4,26
- 2353: 19,30
- 2354: 23,25
- 2355: 28,32
- 2356: 27,33
- 2357: 24,-15
+ 2219: 21,22
+ 2220: 18,22
+ 2221: 19,21
+ 2222: 10,23
+ 2233: 20,14
+ 2234: 26,23
+ 2235: 27,32
+ 2236: 28,31
+ 2237: 27,33
+ 2238: 27,29
+ 2239: 20,22
+ 2240: 22,23
+ 2241: 19,25
+ 2242: 19,30
+ 2243: 24,28
+ 2244: 24,27
+ 2263: 14,34
+ 2264: 14,36
+ 2265: 16,36
+ 2266: 14,26
+ 2267: 15,25
+ 2268: 14,29
+ 2282: -48,27
+ 2283: -47,29
+ 2284: -50,29
+ 2290: -48,33
+ 2291: -48,34
+ 2292: -49,34
+ 2295: -46,29
+ 2296: -46,28
+ 2297: -18,-12
+ 2298: -17,-13
+ 2324: 25,23
+ 2325: 15,23
+ 2326: 15,25
+ 2327: 4,26
+ 2328: 4,26
+ 2329: 19,30
+ 2330: 23,25
+ 2331: 28,32
+ 2332: 27,33
+ 2333: 24,-15
- node:
color: '#FFFFFFFF'
id: DirtLight
decals:
- 214: 4,-56
- 215: 4,-51
- 216: -35,-51
- 229: -9,-7
- 230: -11,-6
- 239: -22,12
- 242: -18,23
- 243: -7,21
- 244: -11,21
- 245: -17,21
- 246: -8,23
- 257: 0,38
- 258: 0,32
- 259: 3,22
- 276: -1,16
- 277: 4,13
- 278: 9,8
- 279: 7,5
- 280: 9,4
- 281: 8,9
- 293: 39,-1
- 294: 35,0
- 295: 34,-1
- 296: 48,-1
- 297: 38,1
- 298: 26,0
- 299: 24,0
- 300: 24,-1
- 301: 19,0
- 302: 21,-1
- 303: 19,4
- 304: 21,6
- 305: 19,-4
- 306: 20,-7
- 307: 20,-11
- 308: 21,-9
- 322: 7,-21
- 323: 5,-21
- 328: 0,1
- 329: -4,4
- 330: 3,4
- 331: 2,5
- 332: -11,4
- 333: -9,7
- 334: -12,8
- 335: -6,12
- 445: -47,14
- 446: -47,18
- 730: -33,12
- 731: -32,14
- 732: -39,15
- 733: -40,13
- 748: -30,10
- 1807: -83,22
- 2226: 24,19
- 2227: 27,16
- 2228: 26,21
- 3092: -91,-6
- 3095: -69,-14
- 3099: -55,-9
- 3302: -40,-42
- 3303: -41,-39
- 3319: -38,-46
- 3326: -45,-57
- 3327: -40,-53
- 3328: -38,-42
- 3347: -46,-68
- 3348: -42,-71
- 3364: -38,-68
- 3365: -44,-66
- 3366: -47,-63
- 3367: -39,-66
- 3369: -39,-72
- 3370: -34,-71
- 3371: -30,-72
- 3385: -17,-71
- 3388: -17,-66
- 3523: 31,-23
- 3524: 31,-20
- 3548: -28,-79
- 3549: -34,-75
- 3554: -32,-77
- 3578: -66,-23
- 3579: -66,-25
- 3582: -47,-24
- 3583: -56,-25
- 3592: -61,-25
- 3593: -67,-25
- 3594: -72,-19
- 3595: -79,-22
- 3601: -51,-24
- 3834: 46,-22
- 3835: 52,-22
- 3836: 53,-22
- 3837: 56,-23
- 3838: 56,-24
- 3844: 53,-31
- 3845: 57,-28
- 3846: 57,-34
- 3847: 58,-36
- 3851: 62,-34
- 3852: 63,-36
- 3858: 61,-33
- 3859: 60,-26
- 3860: 59,-25
- 3864: 61,-40
- 3865: 41,-20
- 3866: 41,-21
- 3875: 34,-15
- 3876: 35,-14
- 3879: 31,-13
- 3880: 31,-16
- 3881: 34,-17
- 4387: -31,53
- 4420: 57,-43
- 4421: 59,-41
- 4424: 57,-46
- 4426: 57,-45
- 4427: 57,-45
- 4428: 59,-46
- 4435: 35,-44
- 4436: 36,-41
- 4437: 33,-40
- 4446: 55,-45
- 4447: 50,-43
- 4448: 55,-43
- 4449: 56,-44
- 4450: 42,-45
- 4888: 40,-64
- 4889: 43,-65
- 4890: 39,-63
- 4894: 41,-61
- 4895: 40,-60
- 5291: -14,50
- 5292: -18,52
- 5293: -18,52
- 5294: -18,52
- 5295: -22,52
- 5296: -22,53
+ 213: 4,-56
+ 214: 4,-51
+ 215: -35,-51
+ 228: -9,-7
+ 229: -11,-6
+ 238: -22,12
+ 241: -18,23
+ 242: -7,21
+ 243: -11,21
+ 244: -17,21
+ 245: -8,23
+ 256: 0,38
+ 257: 0,32
+ 258: 3,22
+ 275: -1,16
+ 276: 4,13
+ 277: 9,8
+ 278: 7,5
+ 279: 9,4
+ 280: 8,9
+ 292: 39,-1
+ 293: 35,0
+ 294: 34,-1
+ 295: 48,-1
+ 296: 38,1
+ 297: 26,0
+ 298: 24,0
+ 299: 24,-1
+ 300: 19,0
+ 301: 21,-1
+ 302: 19,4
+ 303: 21,6
+ 304: 19,-4
+ 305: 20,-7
+ 306: 20,-11
+ 307: 21,-9
+ 321: 7,-21
+ 322: 5,-21
+ 327: 0,1
+ 328: -4,4
+ 329: 3,4
+ 330: 2,5
+ 331: -11,4
+ 332: -9,7
+ 333: -12,8
+ 334: -6,12
+ 444: -47,14
+ 445: -47,18
+ 729: -33,12
+ 730: -32,14
+ 731: -39,15
+ 732: -40,13
+ 747: -30,10
+ 1806: -83,22
+ 2202: 24,19
+ 2203: 27,16
+ 2204: 26,21
+ 3050: -91,-6
+ 3053: -69,-14
+ 3057: -55,-9
+ 3260: -40,-42
+ 3261: -41,-39
+ 3277: -38,-46
+ 3284: -45,-57
+ 3285: -40,-53
+ 3286: -38,-42
+ 3305: -46,-68
+ 3306: -42,-71
+ 3322: -38,-68
+ 3323: -44,-66
+ 3324: -47,-63
+ 3325: -39,-66
+ 3327: -39,-72
+ 3328: -34,-71
+ 3329: -30,-72
+ 3343: -17,-71
+ 3346: -17,-66
+ 3481: 31,-23
+ 3482: 31,-20
+ 3506: -28,-79
+ 3507: -34,-75
+ 3512: -32,-77
+ 3536: -66,-23
+ 3537: -66,-25
+ 3540: -47,-24
+ 3541: -56,-25
+ 3550: -61,-25
+ 3551: -67,-25
+ 3552: -72,-19
+ 3553: -79,-22
+ 3559: -51,-24
+ 3792: 46,-22
+ 3793: 52,-22
+ 3794: 53,-22
+ 3795: 56,-23
+ 3796: 56,-24
+ 3802: 53,-31
+ 3803: 57,-28
+ 3804: 57,-34
+ 3805: 58,-36
+ 3809: 62,-34
+ 3810: 63,-36
+ 3816: 61,-33
+ 3817: 60,-26
+ 3818: 59,-25
+ 3822: 61,-40
+ 3823: 41,-20
+ 3824: 41,-21
+ 3833: 34,-15
+ 3834: 35,-14
+ 3837: 31,-13
+ 3838: 31,-16
+ 3839: 34,-17
+ 4345: -31,53
+ 4378: 57,-43
+ 4379: 59,-41
+ 4382: 57,-46
+ 4384: 57,-45
+ 4385: 57,-45
+ 4386: 59,-46
+ 4393: 35,-44
+ 4394: 36,-41
+ 4395: 33,-40
+ 4404: 55,-45
+ 4405: 50,-43
+ 4406: 55,-43
+ 4407: 56,-44
+ 4408: 42,-45
+ 4846: 40,-64
+ 4847: 43,-65
+ 4848: 39,-63
+ 4852: 41,-61
+ 4853: 40,-60
+ 5231: -14,50
+ 5232: -18,52
+ 5233: -18,52
+ 5234: -18,52
+ 5235: -22,52
+ 5236: -22,53
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtLight
decals:
- 2199: 27,34
- 2200: 28,34
- 2201: 26,35
- 2216: 16,23
- 2217: 4,22
- 4313: -18,47
- 4314: -19,50
- 4315: -31,43
- 4317: -15,39
- 4320: -22,26
- 4382: -17,43
- 4627: -6,-50
- 4628: -4,-52
- 4922: 53,-63
- 4923: 55,-65
- 4924: 55,-65
- 4925: 55,-65
- 4926: 49,-63
- 5408: -5,49
- 5527: -1,46
- 5547: 10,51
- 5548: 12,50
- 5549: 11,53
- 5550: 12,54
- 5585: 7,56
- 5595: -2,51
- 5596: -6,52
+ 2175: 27,34
+ 2176: 28,34
+ 2177: 26,35
+ 2192: 16,23
+ 2193: 4,22
+ 4271: -18,47
+ 4272: -19,50
+ 4273: -31,43
+ 4275: -15,39
+ 4278: -22,26
+ 4340: -17,43
+ 4585: -6,-50
+ 4586: -4,-52
+ 4880: 53,-63
+ 4881: 55,-65
+ 4882: 55,-65
+ 4883: 55,-65
+ 4884: 49,-63
+ 5348: -5,49
+ 5467: -1,46
+ 5487: 10,51
+ 5488: 12,50
+ 5489: 11,53
+ 5490: 12,54
+ 5525: 7,56
+ 5535: -2,51
+ 5536: -6,52
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtLight
decals:
- 998: 25,-21
- 999: 24,-21
- 1000: 32,-21
- 1001: 40,-23
- 1002: 39,-21
- 1003: 26,-22
- 1004: 28,-21
- 1005: 20,-15
- 1006: 27,-16
- 1007: 26,-15
- 1008: 25,-15
- 1009: 16,-21
- 1010: 16,-20
+ 997: 25,-21
+ 998: 24,-21
+ 999: 32,-21
+ 1000: 40,-23
+ 1001: 39,-21
+ 1002: 26,-22
+ 1003: 28,-21
+ 1004: 20,-15
+ 1005: 27,-16
+ 1006: 26,-15
+ 1007: 25,-15
+ 1008: 16,-21
+ 1009: 16,-20
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: DirtLight
decals:
- 352: -32,43
- 353: -35,28
- 4064: -81,-22
- 4065: -92,-24
- 4066: -96,-22
- 4067: -93,-19
- 4080: -88,-22
- 4081: -95,-24
- 4082: -84,-28
+ 351: -32,43
+ 352: -35,28
+ 4022: -81,-22
+ 4023: -92,-24
+ 4024: -96,-22
+ 4025: -93,-19
+ 4038: -88,-22
+ 4039: -95,-24
+ 4040: -84,-28
- node:
color: '#EFB34196'
id: DirtMedium
decals:
- 2247: 5,25
- 2248: 7,21
- 2249: 7,23
- 2250: 10,22
- 2251: 11,21
- 2252: 20,17
- 2253: 20,16
- 2254: 19,12
- 2255: 20,11
- 2256: 21,13
- 2269: 15,22
- 2270: 13,22
- 2271: 14,21
- 2272: 3,26
- 2273: 3,25
- 2274: 11,26
- 2275: 10,25
- 2276: 26,18
- 2277: 24,14
- 2278: 23,17
- 2279: 25,17
- 2280: 20,18
- 2281: 20,19
- 2282: 19,20
- 2283: 15,29
- 2284: 16,30
- 2285: 16,33
- 2286: 15,33
- 2293: 16,31
- 2294: 16,34
- 2295: 14,30
- 2296: 20,23
- 2297: 19,22
+ 2223: 5,25
+ 2224: 7,21
+ 2225: 7,23
+ 2226: 10,22
+ 2227: 11,21
+ 2228: 20,17
+ 2229: 20,16
+ 2230: 19,12
+ 2231: 20,11
+ 2232: 21,13
+ 2245: 15,22
+ 2246: 13,22
+ 2247: 14,21
+ 2248: 3,26
+ 2249: 3,25
+ 2250: 11,26
+ 2251: 10,25
+ 2252: 26,18
+ 2253: 24,14
+ 2254: 23,17
+ 2255: 25,17
+ 2256: 20,18
+ 2257: 20,19
+ 2258: 19,20
+ 2259: 15,29
+ 2260: 16,30
+ 2261: 16,33
+ 2262: 15,33
+ 2269: 16,31
+ 2270: 16,34
+ 2271: 14,30
+ 2272: 20,23
+ 2273: 19,22
- node:
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 213: 4,-53
- 218: 0,-31
- 219: -2,-26
- 225: 0,-14
- 226: -6,-10
- 231: -9,-5
- 232: -9,-4
- 233: -11,-2
- 260: 4,21
- 261: -2,21
- 262: 0,23
- 3094: -69,-17
- 3097: -65,-14
- 3098: -57,-13
- 3301: -44,-41
- 3305: -46,-48
- 3320: -42,-51
- 3322: -45,-53
- 3324: -45,-42
- 3343: -48,-72
- 3345: -45,-73
- 3349: -43,-72
- 3350: -47,-73
- 3362: -38,-69
- 3363: -28,-73
- 3368: -47,-65
- 3386: -19,-69
- 3526: 31,-22
- 3527: 32,-22
- 3528: 35,-22
- 3529: 34,-22
- 3547: -33,-79
- 3553: -27,-79
- 3585: -51,-27
- 3602: -47,-26
- 3833: 49,-22
- 3848: 54,-27
- 3849: 57,-37
- 3850: 57,-31
- 3853: 64,-32
- 3854: 61,-27
- 3855: 62,-27
- 3862: 60,-39
- 3863: 58,-39
- 4377: -27,53
- 4425: 59,-45
- 4432: 36,-45
- 4433: 33,-42
- 4434: 36,-40
- 4444: 38,-45
- 4445: 49,-45
- 4463: 48,-45
- 4464: 42,-44
- 4886: 40,-65
- 4887: 42,-63
- 4940: 48,-61
- 4941: 48,-61
- 4942: 48,-59
- 4943: 45,-61
- 4944: 45,-61
- 4945: 45,-61
+ 212: 4,-53
+ 217: 0,-31
+ 218: -2,-26
+ 224: 0,-14
+ 225: -6,-10
+ 230: -9,-5
+ 231: -9,-4
+ 232: -11,-2
+ 259: 4,21
+ 260: -2,21
+ 261: 0,23
+ 3052: -69,-17
+ 3055: -65,-14
+ 3056: -57,-13
+ 3259: -44,-41
+ 3263: -46,-48
+ 3278: -42,-51
+ 3280: -45,-53
+ 3282: -45,-42
+ 3301: -48,-72
+ 3303: -45,-73
+ 3307: -43,-72
+ 3308: -47,-73
+ 3320: -38,-69
+ 3321: -28,-73
+ 3326: -47,-65
+ 3344: -19,-69
+ 3484: 31,-22
+ 3485: 32,-22
+ 3486: 35,-22
+ 3487: 34,-22
+ 3505: -33,-79
+ 3511: -27,-79
+ 3543: -51,-27
+ 3560: -47,-26
+ 3791: 49,-22
+ 3806: 54,-27
+ 3807: 57,-37
+ 3808: 57,-31
+ 3811: 64,-32
+ 3812: 61,-27
+ 3813: 62,-27
+ 3820: 60,-39
+ 3821: 58,-39
+ 4335: -27,53
+ 4383: 59,-45
+ 4390: 36,-45
+ 4391: 33,-42
+ 4392: 36,-40
+ 4402: 38,-45
+ 4403: 49,-45
+ 4421: 48,-45
+ 4422: 42,-44
+ 4844: 40,-65
+ 4845: 42,-63
+ 4898: 48,-61
+ 4899: 48,-61
+ 4900: 48,-59
+ 4901: 45,-61
+ 4902: 45,-61
+ 4903: 45,-61
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 2218: 20,10
- 2219: 17,6
- 2220: 23,5
- 4312: -19,43
- 4325: -34,42
- 4375: -17,44
- 4917: 50,-64
- 4918: 50,-64
- 4919: 52,-65
- 4920: 55,-64
- 4921: 57,-65
- 5409: -5,53
- 5551: 12,53
- 5552: 10,53
- 5553: 10,51
- 5554: -5,45
- 5555: -8,46
- 5556: -7,47
- 5594: -2,52
+ 2194: 20,10
+ 2195: 17,6
+ 2196: 23,5
+ 4270: -19,43
+ 4283: -34,42
+ 4333: -17,44
+ 4875: 50,-64
+ 4876: 50,-64
+ 4877: 52,-65
+ 4878: 55,-64
+ 4879: 57,-65
+ 5349: -5,53
+ 5491: 12,53
+ 5492: 10,53
+ 5493: 10,51
+ 5494: -5,45
+ 5495: -8,46
+ 5496: -7,47
+ 5534: -2,52
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 4063: -87,-26
- 4079: -83,-24
+ 4021: -87,-26
+ 4037: -83,-24
- node:
cleanable: True
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 2141: 13,32
+ 2117: 13,32
- node:
color: '#FFFFFFFF'
id: FlowersBROne
decals:
- 432: -53.967384,17.06149
- 2462: -31.23949,-44.324142
- 2568: -93.870186,17.100761
- 2883: -89.82415,-6.9300165
- 2925: -66.82471,3.6005492
- 3100: -42.85999,-62.902733
- 4307: -14,29
- 4309: -15,25
- 4757: -11,-33
- 4758: -21,-34
- 4764: -9,-33
- 4765: -12,-34
+ 431: -53.967384,17.06149
+ 2420: -31.23949,-44.324142
+ 2526: -93.870186,17.100761
+ 2841: -89.82415,-6.9300165
+ 2883: -66.82471,3.6005492
+ 3058: -42.85999,-62.902733
+ 4265: -14,29
+ 4267: -15,25
+ 4715: -11,-33
+ 4716: -21,-34
+ 4722: -9,-33
+ 4723: -12,-34
- node:
color: '#FFFFFFFF'
id: FlowersBRThree
decals:
- 433: -53.967384,18.00637
- 467: -29.708357,-60.651573
- 469: -30.020857,-62.67381
- 2919: -66.79346,4.850549
- 3101: -42.703682,-59.720562
- 4767: -19,-32
- 4768: -7,-32
- 4769: -7,-33
- 4770: -20,-32
- 4771: -18,-33
+ 432: -53.967384,18.00637
+ 466: -29.708357,-60.651573
+ 468: -30.020857,-62.67381
+ 2877: -66.79346,4.850549
+ 3059: -42.703682,-59.720562
+ 4725: -19,-32
+ 4726: -7,-32
+ 4727: -7,-33
+ 4728: -20,-32
+ 4729: -18,-33
- node:
color: '#FFFFFFFF'
id: FlowersBRTwo
decals:
- 530: -27.96831,-63.066265
- 2562: -72.138016,17.018951
- 2884: -89.433525,-6.0393915
- 2920: -66.34033,4.538049
- 5089: -0.27920312,55.886658
+ 529: -27.96831,-63.066265
+ 2520: -72.138016,17.018951
+ 2842: -89.433525,-6.0393915
+ 2878: -66.34033,4.538049
+ 5041: -0.27920312,55.886658
- node:
color: '#FFFFFFFF'
id: Flowersbr1
decals:
- 2885: -88.01165,-6.7893915
- 4773: -12,-32
+ 2843: -88.01165,-6.7893915
+ 4731: -12,-32
- node:
color: '#FFFFFFFF'
id: Flowersbr2
decals:
- 2927: -66.66846,2.9911737
- 5087: 0.5176717,55.886658
+ 2885: -66.66846,2.9911737
+ 5039: 0.5176717,55.886658
- node:
color: '#FFFFFFFF'
id: Flowersbr3
decals:
- 434: -53.98546,18.922457
- 1068: -63.7718,18.864635
- 2913: -62.31045,-6.352316
- 4131: -22.023563,23.954266
+ 433: -53.98546,18.922457
+ 1067: -63.7718,18.864635
+ 2871: -62.31045,-6.352316
+ 4089: -22.023563,23.954266
- node:
color: '#7F5C462E'
id: Flowerspv1
decals:
- 756: 19,-33
+ 755: 19,-33
- node:
color: '#FFFFFFFF'
id: Flowerspv1
decals:
- 470: -28.270857,-61.28743
- 1069: -61.787426,17.19276
- 2563: -81.71614,17.143951
- 2912: -61.93545,-11.946067
+ 469: -28.270857,-61.28743
+ 1068: -61.787426,17.19276
+ 2521: -81.71614,17.143951
+ 2870: -61.93545,-11.946067
- node:
color: '#FFFFFFFF'
id: Flowerspv2
decals:
- 2569: -89.94831,18.413261
- 2889: -85.4804,-5.2737665
- 2900: -80.29238,-10.61983
- 2911: -62.56045,-11.071067
- 2924: -66.12158,3.6630492
- 2930: -66.15283,4.944299
- 4133: -22.007938,23.969893
- 4310: -14,25
+ 2527: -89.94831,18.413261
+ 2847: -85.4804,-5.2737665
+ 2858: -80.29238,-10.61983
+ 2869: -62.56045,-11.071067
+ 2882: -66.12158,3.6630492
+ 2888: -66.15283,4.944299
+ 4091: -22.007938,23.969893
+ 4268: -14,25
- node:
color: '#FFFFFFFF'
id: Flowerspv3
decals:
- 421: -32,-61
- 422: -39,-61
- 1070: -58.911724,18.645885
- 2899: -80.21426,-9.447955
- 2910: -61.044827,-11.149192
- 2923: -66.80908,3.8974242
- 2928: -66.38721,3.053674
- 3103: -42.91447,-61.07982
- 4755: -17,-33
- 4756: -10,-34
- 5085: -0.9667031,55.94916
+ 420: -32,-61
+ 421: -39,-61
+ 1069: -58.911724,18.645885
+ 2857: -80.21426,-9.447955
+ 2868: -61.044827,-11.149192
+ 2881: -66.80908,3.8974242
+ 2886: -66.38721,3.053674
+ 3061: -42.91447,-61.07982
+ 4713: -17,-33
+ 4714: -10,-34
+ 5037: -0.9667031,55.94916
- node:
color: '#7F5C462E'
id: Flowersy1
decals:
- 757: 19,-36
- 758: 18,-35
- 759: 19,-35
- 760: 35,-38
- 761: 34,-38
- 762: 17,-42
- 763: 21,-42
- 764: 20,-42
- 765: 18,-42
+ 756: 19,-36
+ 757: 18,-35
+ 758: 19,-35
+ 759: 35,-38
+ 760: 34,-38
+ 761: 17,-42
+ 762: 21,-42
+ 763: 20,-42
+ 764: 18,-42
- node:
color: '#FFFFFFFF'
id: Flowersy1
decals:
- 468: -29.989607,-62.77805
- 529: -28.009977,-59.29281
- 2561: -78.12239,18.456451
- 2886: -87.26165,-5.5081415
- 2897: -82.95316,-10.045585
- 3102: -41.17243,-62.26744
- 4132: -21.961063,23.907393
- 4177: -22,33
- 4761: -6,-32
+ 467: -29.989607,-62.77805
+ 528: -28.009977,-59.29281
+ 2519: -78.12239,18.456451
+ 2844: -87.26165,-5.5081415
+ 2855: -82.95316,-10.045585
+ 3060: -41.17243,-62.26744
+ 4090: -21.961063,23.907393
+ 4135: -22,33
+ 4719: -6,-32
- node:
color: '#7F5C462E'
id: Flowersy2
decals:
- 754: 24,-30
- 755: 24,-31
+ 753: 24,-30
+ 754: 24,-31
- node:
color: '#FFFFFFFF'
id: Flowersy2
decals:
+ 422: -32,-61
423: -32,-61
- 424: -32,-61
- 425: -39,-61
- 466: -29.677107,-60.599453
- 471: -28.333357,-61.39167
- 2463: -30.067616,-47.199142
- 2896: -78.23441,-10.920585
- 2909: -59.93545,-9.524192
- 2921: -66.63721,4.303674
- 2926: -66.35596,3.303674
- 4809: -16.764076,-34.01431
- 5086: 0.9707966,55.949158
+ 424: -39,-61
+ 465: -29.677107,-60.599453
+ 470: -28.333357,-61.39167
+ 2421: -30.067616,-47.199142
+ 2854: -78.23441,-10.920585
+ 2867: -59.93545,-9.524192
+ 2879: -66.63721,4.303674
+ 2884: -66.35596,3.303674
+ 4767: -16.764076,-34.01431
+ 5038: 0.9707966,55.949158
- node:
color: '#7F5C462E'
id: Flowersy3
decals:
- 751: -12,31
- 752: 8,-31
- 753: 13,-32
+ 750: -12,31
+ 751: 8,-31
+ 752: 13,-32
- node:
color: '#FFFFFFFF'
id: Flowersy3
decals:
- 1071: -55.42735,16.989635
- 1072: -57.692974,17.083385
- 1073: -63.88401,16.88026
- 2914: -61.24795,-5.336691
- 2922: -66.18408,3.9911742
- 2929: -66.66846,4.959924
- 4308: -15,29
- 4762: -6,-34
- 5088: 0.12704682,55.855408
+ 1070: -55.42735,16.989635
+ 1071: -57.692974,17.083385
+ 1072: -63.88401,16.88026
+ 2872: -61.24795,-5.336691
+ 2880: -66.18408,3.9911742
+ 2887: -66.66846,4.959924
+ 4266: -15,29
+ 4720: -6,-34
+ 5040: 0.12704682,55.855408
- node:
color: '#FFFFFFFF'
id: Flowersy4
decals:
- 531: -28.12456,-63.139233
- 2898: -81.75004,-9.108085
- 4759: -21,-33
- 4760: -8,-34
+ 530: -28.12456,-63.139233
+ 2856: -81.75004,-9.108085
+ 4717: -21,-33
+ 4718: -8,-34
- node:
color: '#FF0000FF'
id: Gene
decals:
- 268: -41.63992,27.936338
+ 267: -41.63992,27.936338
- node:
color: '#7F5C462E'
id: Grassa1
decals:
- 804: 25,-10
- 805: 29,-9
- 806: 42,-12
- 807: 43,-12
- 808: 45,-12
- 889: 19,-40
- 890: 22,-37
- 891: 30,-33
- 892: 32,-33
- 893: 34,-35
- 913: 30,-4
- 930: -12,31
- 931: -12,33
- 932: -34,32
+ 803: 25,-10
+ 804: 29,-9
+ 805: 42,-12
+ 806: 43,-12
+ 807: 45,-12
+ 888: 19,-40
+ 889: 22,-37
+ 890: 30,-33
+ 891: 32,-33
+ 892: 34,-35
+ 912: 30,-4
+ 929: -12,31
+ 930: -12,33
+ 931: -34,32
- node:
color: '#FFFFFFFF'
id: Grassa1
decals:
- 396: -38.01396,30.115616
- 521: 48.05359,-10.973281
- 528: 36.514786,6.033877
- 534: 9.0064535,-16.403347
- 535: 8.2408285,-16.903347
- 539: -11.500416,32.68835
- 544: 2.2690213,-30.99835
- 551: 3.6195345,-31.01168
- 552: 5.9632845,-29.10543
- 553: 5.9476595,-29.66793
- 554: 5.9164095,-30.089806
- 556: 14.38542,-32.882526
- 560: 19.816046,-31.788776
- 561: 19.67542,-32.382526
- 562: 19.026402,-36.287754
- 567: 25.046812,-34.287083
- 570: 25.781187,-35.083958
- 579: 17.042494,-42.940327
- 590: 5.931547,-59.978046
- 1027: -23.454065,-56.36861
- 1028: -21.641565,-56.352985
- 1035: -13.965528,-55.310844
- 2453: 47.37828,9.992167
- 2472: -24.00806,-64.97956
- 2473: -24.054935,-64.01081
- 2474: -26.00806,-60.387554
- 2477: -30.82056,-50.907864
- 2553: -41.63519,32.087513
- 2887: -86.246025,-6.7112665
- 3019: -55.488087,-9.114427
- 3034: -60.621918,-13.9619875
- 3352: -50,-70
- 4338: -30.485058,49.47105
+ 395: -38.01396,30.115616
+ 520: 48.05359,-10.973281
+ 527: 36.514786,6.033877
+ 533: 9.0064535,-16.403347
+ 534: 8.2408285,-16.903347
+ 538: -11.500416,32.68835
+ 543: 2.2690213,-30.99835
+ 550: 3.6195345,-31.01168
+ 551: 5.9632845,-29.10543
+ 552: 5.9476595,-29.66793
+ 553: 5.9164095,-30.089806
+ 555: 14.38542,-32.882526
+ 559: 19.816046,-31.788776
+ 560: 19.67542,-32.382526
+ 561: 19.026402,-36.287754
+ 566: 25.046812,-34.287083
+ 569: 25.781187,-35.083958
+ 578: 17.042494,-42.940327
+ 589: 5.931547,-59.978046
+ 1026: -23.454065,-56.36861
+ 1027: -21.641565,-56.352985
+ 1034: -13.965528,-55.310844
+ 2411: 47.37828,9.992167
+ 2430: -24.00806,-64.97956
+ 2431: -24.054935,-64.01081
+ 2432: -26.00806,-60.387554
+ 2435: -30.82056,-50.907864
+ 2511: -41.63519,32.087513
+ 2845: -86.246025,-6.7112665
+ 2977: -55.488087,-9.114427
+ 2992: -60.621918,-13.9619875
+ 3310: -50,-70
+ 4296: -30.485058,49.47105
- node:
color: '#7F5C462E'
id: Grassa2
decals:
- 820: -13,13
- 821: -34,33
- 831: -43,16
- 832: -43,15
- 833: -42,18
- 851: -46,-8
- 852: -41,-9
- 853: -43,-11
- 854: -42,-11
- 855: -39,-11
- 856: -39,-12
- 900: 41,-14
- 901: 42,-15
- 902: 45,-15
- 903: 45,-14
- 904: 48,-14
- 905: 47,-14
- 906: 50,-14
- 907: 48,-11
- 908: 46,-7
+ 819: -13,13
+ 820: -34,33
+ 830: -43,16
+ 831: -43,15
+ 832: -42,18
+ 850: -46,-8
+ 851: -41,-9
+ 852: -43,-11
+ 853: -42,-11
+ 854: -39,-11
+ 855: -39,-12
+ 899: 41,-14
+ 900: 42,-15
+ 901: 45,-15
+ 902: 45,-14
+ 903: 48,-14
+ 904: 47,-14
+ 905: 50,-14
+ 906: 48,-11
+ 907: 46,-7
- node:
color: '#FFFFFFFF'
id: Grassa2
decals:
- 368: -13.988787,44.466625
- 403: -34.773777,9.345797
- 503: 4.096965,-25.663702
- 504: 2.0136316,-25.95557
- 523: 39.00174,-8.715597
- 526: 38.59578,-16.456875
- 527: 43.879974,-11.541558
- 532: 12.948211,-9.985517
- 533: 8.9752035,-17.153345
- 538: -12.016041,31.93835
- 555: 10.027269,-32.320026
- 571: 26.843687,-34.771458
- 1038: -13.981153,-48.981297
- 4775: -21.013237,-33.63932
- 4777: -6.1096616,-32.13932
+ 367: -13.988787,44.466625
+ 402: -34.773777,9.345797
+ 502: 4.096965,-25.663702
+ 503: 2.0136316,-25.95557
+ 522: 39.00174,-8.715597
+ 525: 38.59578,-16.456875
+ 526: 43.879974,-11.541558
+ 531: 12.948211,-9.985517
+ 532: 8.9752035,-17.153345
+ 537: -12.016041,31.93835
+ 554: 10.027269,-32.320026
+ 570: 26.843687,-34.771458
+ 1037: -13.981153,-48.981297
+ 4733: -21.013237,-33.63932
+ 4735: -6.1096616,-32.13932
- node:
color: '#7F5C462E'
id: Grassa3
decals:
- 813: 32,6
- 862: -24,-68
- 863: -23,-68
- 864: -22,-67
- 882: 19,-60
- 883: 18,-62
- 884: 19,-56
- 885: 19,-55
- 886: 19,-49
- 887: 19,-48
- 888: 17,-50
- 894: 30,-34
- 895: 36,-33
- 896: 36,-32
- 897: 30,-32
- 898: 38,-17
- 899: 38,-15
- 909: 42,6
- 910: 30,-6
- 911: 31,-6
- 912: 31,-5
- 933: -40,7
- 934: -33,-8
- 935: -34,-8
- 936: -36,-8
- 943: 21,-31
- 944: 15,-30
- 945: 12,-33
- 946: 11,-33
- 947: 12,-30
- 948: 37,-35
- 949: 38,-35
- 950: 32,-35
- 951: 30,-30
- 952: 40,-31
- 953: 38,-32
- 954: 23,-57
- 955: 22,-56
- 956: 21,-56
- 957: 26,-56
- 958: 25,-57
- 959: 13,-54
- 960: 12,-53
- 961: 14,-55
- 962: 14,-56
- 963: 15,-55
- 964: 17,-56
- 965: 17,-53
- 966: 34,-25
+ 812: 32,6
+ 861: -24,-68
+ 862: -23,-68
+ 863: -22,-67
+ 881: 19,-60
+ 882: 18,-62
+ 883: 19,-56
+ 884: 19,-55
+ 885: 19,-49
+ 886: 19,-48
+ 887: 17,-50
+ 893: 30,-34
+ 894: 36,-33
+ 895: 36,-32
+ 896: 30,-32
+ 897: 38,-17
+ 898: 38,-15
+ 908: 42,6
+ 909: 30,-6
+ 910: 31,-6
+ 911: 31,-5
+ 932: -40,7
+ 933: -33,-8
+ 934: -34,-8
+ 935: -36,-8
+ 942: 21,-31
+ 943: 15,-30
+ 944: 12,-33
+ 945: 11,-33
+ 946: 12,-30
+ 947: 37,-35
+ 948: 38,-35
+ 949: 32,-35
+ 950: 30,-30
+ 951: 40,-31
+ 952: 38,-32
+ 953: 23,-57
+ 954: 22,-56
+ 955: 21,-56
+ 956: 26,-56
+ 957: 25,-57
+ 958: 13,-54
+ 959: 12,-53
+ 960: 14,-55
+ 961: 14,-56
+ 962: 15,-55
+ 963: 17,-56
+ 964: 17,-53
+ 965: 34,-25
- node:
color: '#FFFFFFFF'
id: Grassa3
@@ -5234,154 +5220,154 @@ entities:
24: -51.73134,-8.281564
25: -51.32509,-7.0315638
26: -49.16884,-8.047189
- 566: 23.826113,-31.116142
- 591: 12.96104,-59.915546
- 592: 14.8360405,-58.571796
- 597: 18.935484,-50.07076
- 2452: 48.300156,9.976542
- 3018: -56.831837,-9.286302
- 5607: 42,-39
+ 565: 23.826113,-31.116142
+ 590: 12.96104,-59.915546
+ 591: 14.8360405,-58.571796
+ 596: 18.935484,-50.07076
+ 2410: 48.300156,9.976542
+ 2976: -56.831837,-9.286302
+ 5547: 42,-39
- node:
color: '#7F5C462E'
id: Grassa4
decals:
- 809: 45,-10
- 810: 40,-9
- 811: 43,3
- 812: 43,4
- 815: -6,15
- 816: -8,15
- 817: -11,14
- 818: -12,17
- 819: -11,18
- 822: -42,25
- 823: -41,25
- 824: -41,26
- 825: -32,25
- 834: -43,12
- 835: -42,11
- 836: -43,11
- 858: -32,-68
- 859: -32,-69
- 860: -30,-68
- 861: -29,-69
- 872: -22,-69
- 873: -23,-69
- 874: -28,-69
- 875: -35,-69
- 876: -35,-66
- 877: -18,-63
- 878: -17,-63
- 879: -20,-63
- 880: 15,-60
- 881: 15,-58
- 937: -35,-8
- 938: -35,-7
- 967: 32,-27
- 968: 36,-27
- 969: 39,-27
+ 808: 45,-10
+ 809: 40,-9
+ 810: 43,3
+ 811: 43,4
+ 814: -6,15
+ 815: -8,15
+ 816: -11,14
+ 817: -12,17
+ 818: -11,18
+ 821: -42,25
+ 822: -41,25
+ 823: -41,26
+ 824: -32,25
+ 833: -43,12
+ 834: -42,11
+ 835: -43,11
+ 857: -32,-68
+ 858: -32,-69
+ 859: -30,-68
+ 860: -29,-69
+ 871: -22,-69
+ 872: -23,-69
+ 873: -28,-69
+ 874: -35,-69
+ 875: -35,-66
+ 876: -18,-63
+ 877: -17,-63
+ 878: -20,-63
+ 879: 15,-60
+ 880: 15,-58
+ 936: -35,-8
+ 937: -35,-7
+ 966: 32,-27
+ 967: 36,-27
+ 968: 39,-27
- node:
color: '#FFFFFFFF'
id: Grassa4
decals:
27: -46.403214,-5.5784388
- 505: 2.221965,-24.412832
- 536: -41.93076,17.65336
- 563: 17.229527,-35.64713
- 568: 27.187437,-33.443333
- 593: 4.8497095,-59.61867
- 5608: 42,-38
+ 504: 2.221965,-24.412832
+ 535: -41.93076,17.65336
+ 562: 17.229527,-35.64713
+ 567: 27.187437,-33.443333
+ 592: 4.8497095,-59.61867
+ 5548: 42,-38
- node:
color: '#7F5C462E'
id: Grassa5
decals:
- 837: -41,10
- 838: -40,10
- 839: -40,9
+ 836: -41,10
+ 837: -40,10
+ 838: -40,9
- node:
color: '#FFFFFFFF'
id: Grassa5
decals:
- 522: 38.236115,-4.3763046
- 537: -42.040134,11.38987
- 565: 23.966738,-30.225517
- 569: 26.249937,-34.146458
- 598: 15.333179,-60.00758
- 1036: -13.090528,-52.000862
- 2476: -27.211185,-56.98896
+ 521: 38.236115,-4.3763046
+ 536: -42.040134,11.38987
+ 564: 23.966738,-30.225517
+ 568: 26.249937,-34.146458
+ 597: 15.333179,-60.00758
+ 1035: -13.090528,-52.000862
+ 2434: -27.211185,-56.98896
- node:
color: '#7F5C462E'
id: Grassb1
decals:
- 848: -53,-8
- 849: -50,-9
- 850: -49,-9
- 928: -12,26
- 929: -12,28
+ 847: -53,-8
+ 848: -50,-9
+ 849: -49,-9
+ 927: -12,26
+ 928: -12,28
- node:
color: '#FFFFFFFF'
id: Grassb1
decals:
- 578: 17.933119,-42.065327
- 594: 18.900845,-55.885845
- 1029: -22.06344,-56.99361
- 4779: -7.68141,-33.326813
- 4782: -11.314973,-33.076813
- 5616: 54.549698,-42.951454
+ 577: 17.933119,-42.065327
+ 593: 18.900845,-55.885845
+ 1028: -22.06344,-56.99361
+ 4737: -7.68141,-33.326813
+ 4740: -11.314973,-33.076813
+ 5556: 54.549698,-42.951454
- node:
color: '#FFFFFFFF'
id: Grassb2
decals:
- 576: 20.026869,-39.023838
- 595: 19.154234,-54.659214
- 1037: -12.871778,-52.641487
- 2888: -85.277275,-6.5706415
- 3032: -67.090866,-14.603381
- 4766: -11.230522,-32.092453
- 4776: -10,-33
- 4778: -17,-32
- 5615: 53.975037,-42.9911
+ 575: 20.026869,-39.023838
+ 594: 19.154234,-54.659214
+ 1036: -12.871778,-52.641487
+ 2846: -85.277275,-6.5706415
+ 2990: -67.090866,-14.603381
+ 4724: -11.230522,-32.092453
+ 4734: -10,-33
+ 4736: -17,-32
+ 5555: 53.975037,-42.9911
- node:
color: '#7F5C462E'
id: Grassb3
decals:
- 826: -42,28
- 827: -41,29
- 828: -45,10
- 829: -46,10
- 830: -46,9
- 865: -18,-64
- 866: -23,-64
- 867: -22,-64
- 868: -22,-65
- 869: -21,-64
- 870: -21,-61
- 871: -20,-61
- 923: 12,10
- 924: 17,11
- 925: 13,10
- 926: -12,36
- 927: -12,37
+ 825: -42,28
+ 826: -41,29
+ 827: -45,10
+ 828: -46,10
+ 829: -46,9
+ 864: -18,-64
+ 865: -23,-64
+ 866: -22,-64
+ 867: -22,-65
+ 868: -21,-64
+ 869: -21,-61
+ 870: -20,-61
+ 922: 12,10
+ 923: 17,11
+ 924: 13,10
+ 925: -12,36
+ 926: -12,37
- node:
color: '#FFFFFFFF'
id: Grassb3
decals:
- 564: 18.245152,-34.86588
- 577: 17.011244,-41.95595
- 596: 18.935484,-51.957344
- 1026: 18.06535,-43.00797
- 1030: -22.829065,-56.99361
- 2456: 42.35935,6.6098104
- 4796: -16.857828,-33.920563
+ 563: 18.245152,-34.86588
+ 576: 17.011244,-41.95595
+ 595: 18.935484,-51.957344
+ 1025: 18.06535,-43.00797
+ 1029: -22.829065,-56.99361
+ 2414: 42.35935,6.6098104
+ 4754: -16.857828,-33.920563
- node:
color: '#7F5C462E'
id: Grassb4
decals:
- 840: -36,10
- 841: -35,9
- 842: -45,-9
- 843: -46,-9
- 844: -47,-7
+ 839: -36,10
+ 840: -35,9
+ 841: -45,-9
+ 842: -46,-9
+ 843: -47,-7
- node:
color: '#FFFFFFFF'
id: Grassb4
@@ -5394,14 +5380,14 @@ entities:
40: -52.528214,-7.4065638
41: -49.88759,-6.9221888
42: -46.04384,-7.0628138
- 2475: -28.617435,-56.942085
- 4763: -10.511771,-33.764328
- 4783: -16.563572,-32.76432
+ 2433: -28.617435,-56.942085
+ 4721: -10.511771,-33.764328
+ 4741: -16.563572,-32.76432
- node:
color: '#7F5C462E'
id: Grassb5
decals:
- 857: -48,-14
+ 856: -48,-14
- node:
color: '#FFFFFFFF'
id: Grassb5
@@ -5413,2647 +5399,2711 @@ entities:
32: -42.528214,-11.484689
33: -40.215714,-10.781564
34: -39.684464,-11.437814
- 3033: -67.67776,-16.88463
- 4772: -15.851156,-31.9362
- 4774: -12.457638,-31.826822
- 4780: -5.7524724,-33.983063
- 4781: -11.971222,-34.076813
+ 2991: -67.67776,-16.88463
+ 4730: -15.851156,-31.9362
+ 4732: -12.457638,-31.826822
+ 4738: -5.7524724,-33.983063
+ 4739: -11.971222,-34.076813
- node:
color: '#7F5C462E'
id: Grassc1
decals:
- 797: 24,-51
- 798: 22,-51
- 799: 21,-50
- 800: 22,-53
- 801: 23,-53
- 802: 32,-10
- 803: 32,-9
+ 796: 24,-51
+ 797: 22,-51
+ 798: 21,-50
+ 799: 22,-53
+ 800: 23,-53
+ 801: 32,-10
+ 802: 32,-9
- node:
color: '#7F5C462E'
id: Grassc4
decals:
- 767: 17,-58
- 768: 19,-60
- 769: 20,-61
- 770: 18,-44
- 771: 17,-44
- 772: 19,-44
- 773: 24,-46
- 774: 23,-47
- 775: 22,-45
- 776: 23,-45
- 777: 16,-58
- 778: 9,-61
- 779: 11,-62
- 780: 5,-63
- 781: -1,-60
- 782: -2,-60
- 783: -10,-64
- 784: -10,-61
- 785: -13,-62
- 786: -13,-61
- 787: -13,-60
- 788: -12,-63
- 914: 36,-7
- 915: 35,-6
- 916: 35,-5
- 917: 38,-4
- 918: 30,-7
- 919: 35,-3
- 920: 17,10
- 921: 11,12
- 922: 12,10
- 939: -33,-7
- 940: 19,-32
- 941: 18,-32
- 942: 19,-31
+ 766: 17,-58
+ 767: 19,-60
+ 768: 20,-61
+ 769: 18,-44
+ 770: 17,-44
+ 771: 19,-44
+ 772: 24,-46
+ 773: 23,-47
+ 774: 22,-45
+ 775: 23,-45
+ 776: 16,-58
+ 777: 9,-61
+ 778: 11,-62
+ 779: 5,-63
+ 780: -1,-60
+ 781: -2,-60
+ 782: -10,-64
+ 783: -10,-61
+ 784: -13,-62
+ 785: -13,-61
+ 786: -13,-60
+ 787: -12,-63
+ 913: 36,-7
+ 914: 35,-6
+ 915: 35,-5
+ 916: 38,-4
+ 917: 30,-7
+ 918: 35,-3
+ 919: 17,10
+ 920: 11,12
+ 921: 12,10
+ 938: -33,-7
+ 939: 19,-32
+ 940: 18,-32
+ 941: 19,-31
- node:
color: '#FFFFFFFF'
id: Grassc4
decals:
- 4786: -15.736607,-33.858067
+ 4744: -15.736607,-33.858067
- node:
color: '#7F5C462E'
id: Grassd1
decals:
- 789: -22,-57
- 790: -23,-57
- 791: -18,-56
- 792: -13,-58
- 793: -13,-56
- 794: -14,-52
- 795: -13,-48
- 796: -13,-47
- 814: 33,6
+ 788: -22,-57
+ 789: -23,-57
+ 790: -18,-56
+ 791: -13,-58
+ 792: -13,-56
+ 793: -14,-52
+ 794: -13,-48
+ 795: -13,-47
+ 813: 33,6
- node:
color: '#FFFFFFFF'
id: Grassd1
decals:
- 1047: -5.834258,25.481142
- 1048: -4.865508,17.382915
- 1049: -7.740508,18.248098
+ 1046: -5.834258,25.481142
+ 1047: -4.865508,17.382915
+ 1048: -7.740508,18.248098
- node:
color: '#7F5C462E'
id: Grassd2
decals:
- 845: -48,-9
- 846: -48,-8
- 847: -48,-7
+ 844: -48,-9
+ 845: -48,-8
+ 846: -48,-7
- node:
cleanable: True
color: '#919D972F'
id: Grasse2
decals:
- 2223: 8,25
- 2224: 6,25
- 2225: 10,24
+ 2199: 8,25
+ 2200: 6,25
+ 2201: 10,24
- node:
color: '#FFFFFFFF'
id: Grasse2
decals:
- 5609: 41.48581,-41.242943
- 5610: 40.871517,-40.767223
- 5611: 41.584896,-40.759068
+ 5549: 41.48581,-41.242943
+ 5550: 40.871517,-40.767223
+ 5551: 41.584896,-40.759068
- node:
color: '#FFFFFFFF'
id: Grasse3
decals:
- 511: 2.1109376,-18.48142
- 3104: -41.07072,-60.954823
+ 510: 2.1109376,-18.48142
+ 3062: -41.07072,-60.954823
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimCornerNe
decals:
- 5509: 12,54
- 5521: 12,51
- 5577: 9,57
+ 5449: 12,54
+ 5461: 12,51
+ 5517: 9,57
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimCornerNw
decals:
- 5510: 10,54
- 5523: 10,51
- 5578: 7,57
+ 5450: 10,54
+ 5463: 10,51
+ 5518: 7,57
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimCornerSe
decals:
- 5512: 12,53
- 5526: 12,50
- 5579: 9,56
+ 5452: 12,53
+ 5466: 12,50
+ 5519: 9,56
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimCornerSw
decals:
- 5511: 10,53
- 5525: 10,50
- 5580: 7,56
+ 5451: 10,53
+ 5465: 10,50
+ 5520: 7,56
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimLineN
decals:
- 5514: 11,54
- 5517: 11,51
- 5519: 12,51
- 5581: 8,57
+ 5454: 11,54
+ 5457: 11,51
+ 5459: 12,51
+ 5521: 8,57
- node:
color: '#FFFFFFFF'
id: GrayConcreteTrimLineS
decals:
- 5515: 11,53
- 5516: 11,50
- 5582: 8,56
+ 5455: 11,53
+ 5456: 11,50
+ 5522: 8,56
- node:
color: '#48B9FF8C'
id: HalfTileOverlayGreyscale
decals:
- 4680: -10,-50
- 4681: -9,-50
+ 4638: -10,-50
+ 4639: -9,-50
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: HalfTileOverlayGreyscale
decals:
- 4739: -10,-46
- 4740: -9,-46
+ 4697: -10,-46
+ 4698: -9,-46
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale
decals:
84: -19,-52
85: -16,-52
+ 5619: 29,17
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale
decals:
- 5489: 11,51
- 5505: 11,54
- 5576: 8,57
+ 5429: 11,51
+ 5445: 11,54
+ 5516: 8,57
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 5612: 30,17
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: HalfTileOverlayGreyscale180
decals:
- 4741: -10,-48
- 4742: -9,-48
+ 4699: -10,-48
+ 4700: -9,-48
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5616: 30,14
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale180
decals:
- 5488: 11,50
- 5504: 11,53
- 5575: 8,56
+ 5428: 11,50
+ 5444: 11,53
+ 5515: 8,56
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5610: 29,14
- node:
color: '#48B9FF8C'
id: HalfTileOverlayGreyscale270
decals:
- 4652: -3,-55
- 4653: 0,-55
- 4654: -6,-55
- 4682: -11,-51
+ 4610: -3,-55
+ 4611: 0,-55
+ 4612: -6,-55
+ 4640: -11,-51
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: HalfTileOverlayGreyscale270
decals:
- 4743: -11,-47
+ 4701: -11,-47
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 5617: 28,16
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 5609: 28,15
- node:
color: '#48B9FF8C'
id: HalfTileOverlayGreyscale90
decals:
- 4655: -4,-55
- 4656: -1,-55
- 4657: 2,-55
- 4683: -8,-51
+ 4613: -4,-55
+ 4614: -1,-55
+ 4615: 2,-55
+ 4641: -8,-51
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: HalfTileOverlayGreyscale90
decals:
- 4738: -8,-47
+ 4696: -8,-47
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5618: 31,15
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5611: 31,16
- node:
angle: 1.5707963267948966 rad
color: '#F9FFFE5E'
id: LoadingArea
decals:
- 2152: 38,-25
+ 2128: 38,-25
- node:
color: '#F9FFFEFF'
id: LoadingArea
decals:
- 2139: 32,-24
- 2140: 35,-24
+ 2115: 32,-24
+ 2116: 35,-24
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 344: 7,22
- 3895: -24,-28
+ 343: 7,22
+ 3853: -24,-28
- node:
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 3083: -89,8
- 3084: -87,8
- 3085: -81,8
- 3086: -79,8
+ 3041: -89,8
+ 3042: -87,8
+ 3043: -81,8
+ 3044: -79,8
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 3709: 61,-31
- 3710: 64,-31
- 3716: 67,-32
- 3717: 67,-31
- 3718: 67,-30
- 3787: 61,-34
+ 3667: 61,-31
+ 3668: 64,-31
+ 3674: 67,-32
+ 3675: 67,-31
+ 3676: 67,-30
+ 3745: 61,-34
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 1173: -48,32
- 3087: -89,1
- 3088: -87,1
- 3089: -81,1
- 3090: -79,1
- 5485: 0,45
- 5486: -1,45
- 5487: -2,45
+ 1172: -48,32
+ 3045: -89,1
+ 3046: -87,1
+ 3047: -81,1
+ 3048: -79,1
+ 5425: 0,45
+ 5426: -1,45
+ 5427: -2,45
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 3719: 56,-35
- 3720: 56,-33
+ 3677: 56,-35
+ 3678: 56,-33
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#1861D5FF'
+ id: LoadingAreaGreyscale
+ decals:
+ 5624: -30,-25
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#951710FF'
+ id: LoadingAreaGreyscale
+ decals:
+ 5625: -30,-29
- node:
cleanable: True
color: '#8932B87F'
id: MiniTileCheckerAOverlay
decals:
- 497: 38,4
- 498: 38,3
- 499: 39,4
- 500: 39,3
- 501: 40,4
- 502: 40,3
+ 496: 38,4
+ 497: 38,3
+ 498: 39,4
+ 499: 39,3
+ 500: 40,4
+ 501: 40,3
- node:
cleanable: True
color: '#B02E26B1'
id: MiniTileCheckerAOverlay
decals:
- 491: 34,4
- 492: 34,3
- 493: 35,4
- 494: 36,3
- 495: 35,3
- 496: 36,4
+ 490: 34,4
+ 491: 34,3
+ 492: 35,4
+ 493: 36,3
+ 494: 35,3
+ 495: 36,4
- node:
cleanable: True
color: '#F38BAAA4'
id: MiniTileCheckerAOverlay
decals:
- 485: 30,4
- 486: 30,3
- 487: 31,4
- 488: 31,3
- 489: 32,4
- 490: 32,3
+ 484: 30,4
+ 485: 30,3
+ 486: 31,4
+ 487: 31,3
+ 488: 32,4
+ 489: 32,3
- node:
cleanable: True
color: '#F9801DA1'
id: MiniTileCheckerAOverlay
decals:
- 479: 26,4
- 480: 26,3
- 481: 27,3
- 482: 27,4
- 483: 28,4
- 484: 28,3
+ 478: 26,4
+ 479: 26,3
+ 480: 27,3
+ 481: 27,4
+ 482: 28,4
+ 483: 28,3
- node:
color: '#FFFFFFFF'
id: MiniTileDarkCornerNe
decals:
- 4518: 81,-51
- 4562: 81,-35
- 5413: 7,53
- 5435: 7,46
+ 4476: 81,-51
+ 4520: 81,-35
+ 5353: 7,53
+ 5375: 7,46
- node:
color: '#FFFFFFFF'
id: MiniTileDarkCornerNw
decals:
- 3992: -23,-22
- 4519: 77,-51
- 4563: 77,-35
- 5412: 6,53
- 5436: 4,46
+ 3950: -23,-22
+ 4477: 77,-51
+ 4521: 77,-35
+ 5352: 6,53
+ 5376: 4,46
- node:
color: '#FFFFFFFF'
id: MiniTileDarkCornerSe
decals:
- 3990: -23,-20
- 4514: 81,-55
- 4567: 81,-39
- 5414: 7,50
- 5437: 7,45
+ 3948: -23,-20
+ 4472: 81,-55
+ 4525: 81,-39
+ 5354: 7,50
+ 5377: 7,45
- node:
color: '#FFFFFFFF'
id: MiniTileDarkCornerSw
decals:
- 3991: -21,-20
- 4511: 77,-55
- 4566: 77,-39
- 5415: 6,50
- 5438: 4,45
+ 3949: -21,-20
+ 4469: 77,-55
+ 4524: 77,-39
+ 5355: 6,50
+ 5378: 4,45
- node:
color: '#FFFFFFFF'
id: MiniTileDarkEndE
decals:
- 5482: -6,46
+ 5422: -6,46
- node:
color: '#FFFFFFFF'
id: MiniTileDarkEndW
decals:
- 5481: -8,46
+ 5421: -8,46
- node:
color: '#FFFFFFFF'
id: MiniTileDarkInnerNe
decals:
- 3995: -25,-23
+ 3953: -25,-23
- node:
color: '#FFFFFFFF'
id: MiniTileDarkInnerNw
decals:
- 3994: -23,-23
- 4004: -20,-22
+ 3952: -23,-23
+ 3962: -20,-22
- node:
color: '#FFFFFFFF'
id: MiniTileDarkInnerSe
decals:
- 3996: -25,-20
- 4001: -23,-19
+ 3954: -25,-20
+ 3959: -23,-19
- node:
color: '#FFFFFFFF'
id: MiniTileDarkInnerSw
decals:
- 4002: -21,-19
- 4003: -20,-20
+ 3960: -21,-19
+ 3961: -20,-20
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineE
decals:
- 3965: -23,-17
- 3966: -23,-16
- 3980: -23,-10
- 3981: -23,-9
- 3982: -23,-8
- 3983: -23,-12
- 3984: -23,-13
- 3985: -23,-14
- 3988: -25,-21
- 3989: -25,-22
- 4015: -12,-21
- 4520: 81,-52
- 4522: 81,-53
- 4523: 81,-54
- 4548: 81,-54
- 4569: 81,-38
- 4570: 81,-37
- 4571: 81,-36
- 5416: 7,51
- 5417: 7,52
+ 3923: -23,-17
+ 3924: -23,-16
+ 3938: -23,-10
+ 3939: -23,-9
+ 3940: -23,-8
+ 3941: -23,-12
+ 3942: -23,-13
+ 3943: -23,-14
+ 3946: -25,-21
+ 3947: -25,-22
+ 3973: -12,-21
+ 4478: 81,-52
+ 4480: 81,-53
+ 4481: 81,-54
+ 4506: 81,-54
+ 4527: 81,-38
+ 4528: 81,-37
+ 4529: 81,-36
+ 5356: 7,51
+ 5357: 7,52
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineN
decals:
- 3968: -22,-15
- 3969: -22,-11
- 3986: -22,-18
- 3993: -24,-23
- 3999: -22,-22
- 4000: -21,-22
- 4008: -11,-22
- 4009: -10,-22
- 4010: -9,-22
- 4130: -18,35
- 4527: 80,-51
- 4529: 79,-51
- 4530: 78,-51
- 4572: 80,-35
- 4573: 79,-35
- 4574: 78,-35
- 5299: 49,65
- 5300: 47,65
- 5301: 48,65
- 5302: 36,65
- 5303: 37,65
- 5304: 38,65
- 5305: 39,65
- 5306: 40,65
- 5307: 41,65
- 5308: 42,65
- 5309: 43,65
- 5310: 44,65
- 5311: 44,65
- 5312: 45,65
- 5313: 46,65
- 5314: 50,65
- 5315: 51,65
- 5316: 52,65
- 5317: 53,65
- 5440: 5,46
- 5441: 6,46
- 5483: -7,46
+ 3926: -22,-15
+ 3927: -22,-11
+ 3944: -22,-18
+ 3951: -24,-23
+ 3957: -22,-22
+ 3958: -21,-22
+ 3966: -11,-22
+ 3967: -10,-22
+ 3968: -9,-22
+ 4088: -18,35
+ 4485: 80,-51
+ 4487: 79,-51
+ 4488: 78,-51
+ 4530: 80,-35
+ 4531: 79,-35
+ 4532: 78,-35
+ 5239: 49,65
+ 5240: 47,65
+ 5241: 48,65
+ 5242: 36,65
+ 5243: 37,65
+ 5244: 38,65
+ 5245: 39,65
+ 5246: 40,65
+ 5247: 41,65
+ 5248: 42,65
+ 5249: 43,65
+ 5250: 44,65
+ 5251: 44,65
+ 5252: 45,65
+ 5253: 46,65
+ 5254: 50,65
+ 5255: 51,65
+ 5256: 52,65
+ 5257: 53,65
+ 5380: 5,46
+ 5381: 6,46
+ 5423: -7,46
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineS
decals:
- 3967: -22,-15
- 3970: -22,-7
- 3971: -22,-11
- 3997: -24,-20
- 3998: -22,-19
- 4011: -11,-20
- 4012: -10,-20
- 4013: -9,-20
- 4534: 80,-55
- 4535: 79,-55
- 4536: 78,-55
- 4547: 78,-55
- 4575: 78,-39
- 4576: 79,-39
- 4577: 80,-39
- 5318: 53,63
- 5319: 52,63
- 5320: 51,63
- 5321: 50,63
- 5322: 49,63
- 5323: 48,63
- 5324: 47,63
- 5325: 46,63
- 5326: 45,63
- 5327: 44,63
- 5328: 43,63
- 5329: 42,63
- 5330: 41,63
- 5331: 40,63
- 5332: 39,63
- 5333: 38,63
- 5334: 37,63
- 5335: 36,63
- 5336: 35,63
- 5439: 6,45
- 5459: 5,45
- 5484: -7,46
+ 3925: -22,-15
+ 3928: -22,-7
+ 3929: -22,-11
+ 3955: -24,-20
+ 3956: -22,-19
+ 3969: -11,-20
+ 3970: -10,-20
+ 3971: -9,-20
+ 4492: 80,-55
+ 4493: 79,-55
+ 4494: 78,-55
+ 4505: 78,-55
+ 4533: 78,-39
+ 4534: 79,-39
+ 4535: 80,-39
+ 5258: 53,63
+ 5259: 52,63
+ 5260: 51,63
+ 5261: 50,63
+ 5262: 49,63
+ 5263: 48,63
+ 5264: 47,63
+ 5265: 46,63
+ 5266: 45,63
+ 5267: 44,63
+ 5268: 43,63
+ 5269: 42,63
+ 5270: 41,63
+ 5271: 40,63
+ 5272: 39,63
+ 5273: 38,63
+ 5274: 37,63
+ 5275: 36,63
+ 5276: 35,63
+ 5379: 6,45
+ 5399: 5,45
+ 5424: -7,46
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineW
decals:
- 3972: -21,-10
- 3973: -21,-9
- 3974: -21,-8
- 3975: -21,-12
- 3976: -21,-13
- 3977: -21,-14
- 3978: -21,-16
- 3979: -21,-17
- 4005: -20,-21
- 4014: -8,-21
- 4531: 77,-52
- 4532: 77,-53
- 4533: 77,-54
- 4578: 77,-38
- 4579: 77,-37
- 4580: 77,-36
- 5418: 6,51
- 5419: 6,52
+ 3930: -21,-10
+ 3931: -21,-9
+ 3932: -21,-8
+ 3933: -21,-12
+ 3934: -21,-13
+ 3935: -21,-14
+ 3936: -21,-16
+ 3937: -21,-17
+ 3963: -20,-21
+ 3972: -8,-21
+ 4489: 77,-52
+ 4490: 77,-53
+ 4491: 77,-54
+ 4536: 77,-38
+ 4537: 77,-37
+ 4538: 77,-36
+ 5358: 6,51
+ 5359: 6,52
- node:
angle: 1.5707963267948966 rad
color: '#DF81C9E2'
id: MiniTileSteelCornerNe
decals:
- 2163: 38,-19
+ 2139: 38,-19
- node:
angle: 1.5707963267948966 rad
color: '#DF81C9E2'
id: MiniTileSteelCornerNw
decals:
- 2162: 38,-20
+ 2138: 38,-20
- node:
angle: 1.5707963267948966 rad
color: '#DF81C9E2'
id: MiniTileSteelCornerSe
decals:
- 2160: 40,-19
+ 2136: 40,-19
- node:
angle: 1.5707963267948966 rad
color: '#DF81C9E2'
id: MiniTileSteelCornerSw
decals:
- 2161: 40,-20
+ 2137: 40,-20
- node:
color: '#DE3A3A96'
id: MiniTileSteelInnerSe
decals:
- 5297: -8,49
+ 5237: -8,49
- node:
color: '#DE3A3A96'
id: MiniTileSteelInnerSw
decals:
- 5298: -8,49
+ 5238: -8,49
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerNe
decals:
- 1518: -8,-9
+ 1517: -8,-9
- node:
color: '#48B9FF8C'
id: MiniTileWhiteCornerNe
decals:
- 4640: -4,-51
- 4665: -4,-46
+ 4598: -4,-51
+ 4623: -4,-46
- node:
color: '#4D69B7C6'
id: MiniTileWhiteCornerNe
decals:
- 3071: -94,6
+ 3029: -94,6
- node:
color: '#52B4E996'
id: MiniTileWhiteCornerNe
decals:
- 1598: 28,29
- 1967: 35,29
- 1975: 39,29
- 1985: 6,-41
- 2005: -15,-40
- 2028: 10,-46
- 2046: 2,-47
- 2099: -16,-50
- 4413: 7,16
- 4708: -21,-50
+ 1597: 28,29
+ 1948: 35,29
+ 1961: 6,-41
+ 1981: -15,-40
+ 2004: 10,-46
+ 2022: 2,-47
+ 2075: -16,-50
+ 4371: 7,16
+ 4666: -21,-50
- node:
color: '#79150096'
id: MiniTileWhiteCornerNe
decals:
- 2848: -55,5
- 4195: -14,37
+ 2806: -55,5
+ 4153: -14,37
- node:
color: '#9FED5896'
id: MiniTileWhiteCornerNe
decals:
- 1317: 1,35
- 1338: 6,13
- 1339: 7,12
- 1340: 8,11
- 2060: -34,-50
- 2061: -33,-53
- 2078: -32,-59
- 2098: -22,-40
- 2677: -94,43
- 2706: -76,43
- 2772: -58,43
+ 1316: 1,35
+ 1337: 6,13
+ 1338: 7,12
+ 1339: 8,11
+ 2036: -34,-50
+ 2037: -33,-53
+ 2054: -32,-59
+ 2074: -22,-40
+ 2635: -94,43
+ 2664: -76,43
+ 2730: -58,43
- node:
color: '#D381C996'
id: MiniTileWhiteCornerNe
decals:
- 1432: 21,-15
- 1433: 24,-12
- 1434: 28,-14
- 1453: 28,-20
- 1458: 10,-20
- 1475: 17,-12
- 1488: 43,-19
- 1493: 36,-19
- 3636: 53,-21
- 3655: 57,-21
- 3662: 58,-27
- 3749: 60,-25
- 3750: 64,-26
- 3752: 59,-24
- 3799: 61,-39
- 3889: 36,-13
- 4508: 76,-44
- 4604: 80,-44
+ 1431: 21,-15
+ 1432: 24,-12
+ 1433: 28,-14
+ 1452: 28,-20
+ 1457: 10,-20
+ 1474: 17,-12
+ 1487: 43,-19
+ 1492: 36,-19
+ 3594: 53,-21
+ 3613: 57,-21
+ 3620: 58,-27
+ 3707: 60,-25
+ 3708: 64,-26
+ 3710: 59,-24
+ 3757: 61,-39
+ 3847: 36,-13
+ 4466: 76,-44
+ 4562: 80,-44
- node:
cleanable: True
color: '#D4D4D4A7'
id: MiniTileWhiteCornerNe
decals:
- 2398: 42,61
+ 2356: 42,61
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerNe
decals:
- 1616: 24,11
- 1634: 21,8
- 5090: 1,43
+ 1615: 24,11
+ 1633: 21,8
+ 5042: 1,43
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteCornerNe
decals:
- 2145: -8,-37
- 2180: 51,-3
+ 2121: -8,-37
+ 2156: 51,-3
- node:
cleanable: True
angle: 3.141592653589793 rad
color: '#DE3A3A96'
id: MiniTileWhiteCornerNe
decals:
- 2142: -13,-39
+ 2118: -13,-39
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerNe
decals:
- 1162: -45,25
- 1561: 7,23
- 1568: 8,27
- 1579: 11,27
- 1641: 17,8
- 1648: 24,31
- 1926: 17,36
- 1933: 28,35
- 2054: 15,-39
- 2055: 10,-37
- 5143: 28,41
+ 1161: -45,25
+ 1560: 7,23
+ 1567: 8,27
+ 1578: 11,27
+ 1640: 17,8
+ 1647: 24,31
+ 1907: 17,36
+ 1914: 28,35
+ 2030: 15,-39
+ 2031: 10,-37
+ 5091: 28,41
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerNe
decals:
- 3257: -75,-24
+ 3215: -75,-24
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerNw
decals:
- 1507: 6,-9
+ 1506: 6,-9
- node:
color: '#48B9FF8C'
id: MiniTileWhiteCornerNw
decals:
- 4641: -6,-51
- 4666: -6,-46
- 4689: -26,-45
+ 4599: -6,-51
+ 4624: -6,-46
+ 4647: -26,-45
- node:
color: '#4D69B7C6'
id: MiniTileWhiteCornerNw
decals:
- 3072: -96,6
- 3077: -98,5
+ 3030: -96,6
+ 3035: -98,5
- node:
color: '#52B4E996'
id: MiniTileWhiteCornerNw
decals:
- 1965: 32,29
- 1974: 37,29
- 1986: 3,-41
- 2025: -20,-40
- 2045: -2,-47
- 2100: -19,-50
- 4412: 5,16
- 4417: 2,19
- 4707: -24,-50
+ 1946: 32,29
+ 1962: 3,-41
+ 2001: -20,-40
+ 2021: -2,-47
+ 2076: -19,-50
+ 4370: 5,16
+ 4375: 2,19
+ 4665: -24,-50
- node:
color: '#79150096'
id: MiniTileWhiteCornerNw
decals:
- 2844: -59,5
- 4188: -19,37
+ 2802: -59,5
+ 4146: -19,37
- node:
color: '#9FED5896'
id: MiniTileWhiteCornerNw
decals:
- 1194: -36,-41
- 1323: -8,13
- 1324: -9,12
- 1325: -10,11
- 1326: -11,10
- 2059: -37,-50
- 2062: -38,-53
- 2079: -39,-59
- 2097: -26,-40
- 2678: -96,43
- 2705: -78,43
- 2773: -60,43
- 5091: -3,43
+ 1193: -36,-41
+ 1322: -8,13
+ 1323: -9,12
+ 1324: -10,11
+ 1325: -11,10
+ 2035: -37,-50
+ 2038: -38,-53
+ 2055: -39,-59
+ 2073: -26,-40
+ 2636: -96,43
+ 2663: -78,43
+ 2731: -60,43
+ 5043: -3,43
- node:
color: '#A4610696'
id: MiniTileWhiteCornerNw
decals:
- 2115: 67,7
- 2122: 62,5
+ 2091: 67,7
+ 2098: 62,5
- node:
color: '#D381C996'
id: MiniTileWhiteCornerNw
decals:
- 1431: 19,-15
- 1435: 23,-12
- 1456: 12,-20
- 1468: 12,-14
- 1472: 16,-12
- 3534: 30,-19
- 3634: 45,-21
- 3654: 55,-21
- 3661: 53,-27
- 3798: 57,-39
- 4489: 63,-44
- 4603: 78,-44
+ 1430: 19,-15
+ 1434: 23,-12
+ 1455: 12,-20
+ 1467: 12,-14
+ 1471: 16,-12
+ 3492: 30,-19
+ 3592: 45,-21
+ 3612: 55,-21
+ 3619: 53,-27
+ 3756: 57,-39
+ 4447: 63,-44
+ 4561: 78,-44
- node:
cleanable: True
color: '#D4D4D4A7'
id: MiniTileWhiteCornerNw
decals:
- 2397: 36,61
+ 2355: 36,61
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerNw
decals:
- 1615: 23,11
+ 1614: 23,11
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteCornerNw
decals:
- 2143: -13,-37
- 2179: 45,-3
+ 2119: -13,-37
+ 2155: 45,-3
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerNw
decals:
- 1157: -52,25
- 1576: 2,27
- 1578: 10,27
- 1582: 9,23
- 1596: 26,29
- 1639: 19,8
- 1640: 15,8
- 1647: 23,19
- 1649: 19,31
- 1925: 13,36
- 1932: 26,35
- 2052: 12,-39
- 2056: 8,-37
- 5142: 26,41
+ 1156: -52,25
+ 1575: 2,27
+ 1577: 10,27
+ 1581: 9,23
+ 1595: 26,29
+ 1638: 19,8
+ 1639: 15,8
+ 1646: 23,19
+ 1648: 19,31
+ 1906: 13,36
+ 1913: 26,35
+ 2028: 12,-39
+ 2032: 8,-37
+ 5090: 26,41
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerNw
decals:
- 3256: -78,-24
+ 3214: -78,-24
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerSe
decals:
- 1399: 17,-7
- 1535: -8,10
+ 1398: 17,-7
+ 1534: -8,10
- node:
color: '#48B9FF8C'
id: MiniTileWhiteCornerSe
decals:
- 4634: 2,-53
- 4667: -4,-49
- 4726: -20,-46
+ 4592: 2,-53
+ 4625: -4,-49
+ 4684: -20,-46
- node:
color: '#4D69B7C6'
id: MiniTileWhiteCornerSe
decals:
- 3074: -94,3
+ 3032: -94,3
- node:
color: '#52B4E996'
id: MiniTileWhiteCornerSe
decals:
- 1597: 28,27
- 1599: 27,21
- 1894: 7,21
- 1896: 7,15
- 1966: 35,28
- 1973: 39,28
- 2029: 10,-48
- 4711: -21,-52
+ 1596: 28,27
+ 1598: 27,21
+ 1875: 7,21
+ 1877: 7,15
+ 1947: 35,28
+ 2005: 10,-48
+ 4669: -21,-52
- node:
color: '#79150096'
id: MiniTileWhiteCornerSe
decals:
- 2836: -55,1
- 4198: -16,35
+ 2794: -55,1
+ 4156: -16,35
- node:
color: '#9FED5896'
id: MiniTileWhiteCornerSe
decals:
- 1176: -45,11
- 1316: 1,31
- 1504: 6,-12
- 1505: 7,-11
- 1506: 8,-10
- 2063: -33,-57
- 2080: -32,-63
- 2096: -22,-43
+ 1175: -45,11
+ 1315: 1,31
+ 1503: 6,-12
+ 1504: 7,-11
+ 1505: 8,-10
+ 2039: -33,-57
+ 2056: -32,-63
+ 2072: -22,-43
- node:
color: '#A4610696'
id: MiniTileWhiteCornerSe
decals:
- 1374: 51,-1
+ 1373: 51,-1
- node:
color: '#D381C996'
id: MiniTileWhiteCornerSe
decals:
- 1428: 21,-13
- 1429: 21,-18
- 1443: 28,-18
- 1454: 28,-22
- 1457: 10,-22
- 1480: 17,-18
- 1499: 36,-23
- 3635: 53,-23
- 3653: 57,-25
- 3751: 64,-28
- 3784: 61,-37
- 3883: 34,-17
- 3886: 36,-15
- 4406: 61,-46
- 4507: 76,-46
- 4600: 81,-46
- 4602: 80,-46
+ 1427: 21,-13
+ 1428: 21,-18
+ 1442: 28,-18
+ 1453: 28,-22
+ 1456: 10,-22
+ 1479: 17,-18
+ 1498: 36,-23
+ 3593: 53,-23
+ 3611: 57,-25
+ 3709: 64,-28
+ 3742: 61,-37
+ 3841: 34,-17
+ 3844: 36,-15
+ 4364: 61,-46
+ 4465: 76,-46
+ 4558: 81,-46
+ 4560: 80,-46
- node:
cleanable: True
color: '#D4D4D4A7'
id: MiniTileWhiteCornerSe
decals:
- 2399: 37,58
- 2400: 42,58
+ 2357: 37,58
+ 2358: 42,58
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerSe
decals:
- 1297: 1,37
- 1623: 24,3
+ 1296: 1,37
+ 1622: 24,3
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteCornerSe
decals:
- 2144: -8,-39
+ 2120: -8,-39
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerSe
decals:
- 1642: 17,4
- 1646: 24,13
- 1650: 24,25
- 1918: 17,32
- 1930: 28,31
- 2051: 15,-42
- 2057: 10,-44
- 5144: 28,37
- 5151: 26,14
+ 1641: 17,4
+ 1645: 24,13
+ 1649: 24,25
+ 1899: 17,32
+ 1911: 28,31
+ 2027: 15,-42
+ 2033: 10,-44
+ 5092: 28,37
+ 5099: 26,14
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerSe
decals:
- 3260: -75,-25
+ 3218: -75,-25
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerSw
decals:
- 1547: 6,10
+ 1546: 6,10
- node:
color: '#48B9FF8C'
id: MiniTileWhiteCornerSw
decals:
- 4639: -6,-53
- 4664: -6,-49
- 4684: -26,-48
+ 4597: -6,-53
+ 4622: -6,-49
+ 4642: -26,-48
- node:
color: '#4D69B7C6'
id: MiniTileWhiteCornerSw
decals:
- 3073: -96,3
- 3078: -98,4
+ 3031: -96,3
+ 3036: -98,4
- node:
color: '#52B4E996'
id: MiniTileWhiteCornerSw
decals:
- 1897: 5,15
- 1898: 9,21
- 1968: 32,28
- 1976: 37,28
- 2014: -11,-44
- 2033: 4,-48
- 2040: -2,-50
- 2104: 8,-56
+ 1878: 5,15
+ 1879: 9,21
+ 1949: 32,28
+ 1990: -11,-44
+ 2009: 4,-48
+ 2016: -2,-50
+ 2080: 8,-56
- node:
color: '#79150096'
id: MiniTileWhiteCornerSw
decals:
- 2839: -58,1
- 2840: -59,2
+ 2797: -58,1
+ 2798: -59,2
- node:
color: '#9FED5896'
id: MiniTileWhiteCornerSw
decals:
- 1177: -52,11
- 1301: -3,37
- 2064: -38,-57
- 2081: -39,-63
- 2095: -26,-43
+ 1176: -52,11
+ 1300: -3,37
+ 2040: -38,-57
+ 2057: -39,-63
+ 2071: -26,-43
- node:
color: '#A4610696'
id: MiniTileWhiteCornerSw
decals:
- 2119: 62,2
+ 2095: 62,2
- node:
color: '#D381C996'
id: MiniTileWhiteCornerSw
decals:
- 1427: 19,-13
- 1430: 19,-18
- 1451: 23,-18
- 1455: 12,-22
- 1466: 12,-15
- 1481: 15,-18
- 1489: 38,-23
- 3533: 30,-23
- 3637: 45,-23
- 3652: 55,-25
- 3663: 53,-29
- 3664: 56,-37
- 3748: 59,-25
- 4401: 57,-44
- 4405: 60,-46
- 4490: 63,-46
- 4601: 78,-46
+ 1426: 19,-13
+ 1429: 19,-18
+ 1450: 23,-18
+ 1454: 12,-22
+ 1465: 12,-15
+ 1480: 15,-18
+ 1488: 38,-23
+ 3491: 30,-23
+ 3595: 45,-23
+ 3610: 55,-25
+ 3621: 53,-29
+ 3622: 56,-37
+ 3706: 59,-25
+ 4359: 57,-44
+ 4363: 60,-46
+ 4448: 63,-46
+ 4559: 78,-46
- node:
cleanable: True
color: '#D4D4D4A7'
id: MiniTileWhiteCornerSw
decals:
- 2401: 36,58
- 2402: 41,58
+ 2359: 36,58
+ 2360: 41,58
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerSw
decals:
- 1622: 23,3
+ 1621: 23,3
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteCornerSw
decals:
- 2178: 45,-5
+ 2154: 45,-5
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerSw
decals:
- 1575: 2,25
- 1643: 15,4
- 1651: 19,25
- 1917: 13,32
- 1931: 26,31
- 2053: 12,-42
- 2058: 8,-44
- 5145: 26,37
+ 1574: 2,25
+ 1642: 15,4
+ 1650: 19,25
+ 1898: 13,32
+ 1912: 26,31
+ 2029: 12,-42
+ 2034: 8,-44
+ 5093: 26,37
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerSw
decals:
- 3261: -78,-25
+ 3219: -78,-25
- node:
color: '#D381C996'
id: MiniTileWhiteEndE
decals:
- 4608: 80,-48
- 4609: 80,-42
+ 4566: 80,-48
+ 4567: 80,-42
- node:
color: '#D381C996'
id: MiniTileWhiteEndW
decals:
- 4606: 78,-48
- 4607: 78,-42
+ 4564: 78,-48
+ 4565: 78,-42
- node:
color: '#334E6DC8'
id: MiniTileWhiteInnerNe
decals:
- 1519: -8,-10
- 1526: -9,-9
+ 1518: -8,-10
+ 1525: -9,-9
- node:
color: '#48B9FF8C'
id: MiniTileWhiteInnerNe
decals:
- 4643: -4,-52
- 4651: -5,-51
+ 4601: -4,-52
+ 4609: -5,-51
- node:
color: '#52B4E996'
id: MiniTileWhiteInnerNe
decals:
- 1997: -5,-43
- 2006: -15,-41
- 4416: 6,16
- 4715: -23,-50
- 4733: -23,-54
+ 1973: -5,-43
+ 1982: -15,-41
+ 4374: 6,16
+ 4673: -23,-50
+ 4691: -23,-54
- node:
color: '#79150096'
id: MiniTileWhiteInnerNe
decals:
- 4194: -15,37
+ 4152: -15,37
- node:
color: '#9FED5896'
id: MiniTileWhiteInnerNe
decals:
- 1154: -66,15
- 2074: -34,-53
- 2642: -84,15
- 2660: -94,23
- 2661: -58,23
- 4980: -96,15
- 4990: -76,23
+ 1153: -66,15
+ 2050: -34,-53
+ 2600: -84,15
+ 2618: -94,23
+ 2619: -58,23
+ 4938: -96,15
+ 4948: -76,23
- node:
color: '#A4610696'
id: MiniTileWhiteInnerNe
decals:
- 2129: 60,0
+ 2105: 60,0
- node:
color: '#D381C996'
id: MiniTileWhiteInnerNe
decals:
- 1450: 24,-14
- 3756: 60,-26
- 4491: 61,-45
- 4615: 76,-45
- 4616: 76,-45
- 4622: 79,-44
+ 1449: 24,-14
+ 3714: 60,-26
+ 4449: 61,-45
+ 4573: 76,-45
+ 4574: 76,-45
+ 4580: 79,-44
- node:
color: '#EFB34196'
id: MiniTileWhiteInnerNe
decals:
- 2236: 11,23
+ 2212: 11,23
- node:
color: '#48B9FF8C'
id: MiniTileWhiteInnerNw
decals:
- 4650: -5,-51
- 4706: -20,-45
+ 4608: -5,-51
+ 4664: -20,-45
- node:
color: '#4D69B7C6'
id: MiniTileWhiteInnerNw
decals:
- 3081: -96,5
+ 3039: -96,5
- node:
color: '#52B4E996'
id: MiniTileWhiteInnerNw
decals:
- 1996: 3,-43
- 4415: 6,16
- 4716: -23,-50
+ 1972: 3,-43
+ 4373: 6,16
+ 4674: -23,-50
- node:
color: '#79150096'
id: MiniTileWhiteInnerNw
decals:
- 4193: -15,37
+ 4151: -15,37
- node:
color: '#9FED5896'
id: MiniTileWhiteInnerNw
decals:
- 1155: -52,15
- 2072: -37,-53
- 2640: -88,15
- 2641: -70,15
- 2658: -96,23
- 2659: -78,23
- 2662: -60,23
+ 1154: -52,15
+ 2048: -37,-53
+ 2598: -88,15
+ 2599: -70,15
+ 2616: -96,23
+ 2617: -78,23
+ 2620: -60,23
- node:
color: '#A4610696'
id: MiniTileWhiteInnerNw
decals:
- 2128: 67,5
+ 2104: 67,5
- node:
color: '#D381C996'
id: MiniTileWhiteInnerNw
decals:
- 1474: 16,-14
- 4493: 63,-45
- 4618: 78,-45
- 4621: 79,-44
+ 1473: 16,-14
+ 4451: 63,-45
+ 4576: 78,-45
+ 4579: 79,-44
- node:
color: '#EFB34196'
id: MiniTileWhiteInnerNw
decals:
- 2237: 10,23
- 2242: 26,23
+ 2213: 10,23
+ 2218: 26,23
- node:
color: '#334E6DC8'
id: MiniTileWhiteInnerSe
decals:
- 1536: -9,10
- 1557: -8,11
+ 1535: -9,10
+ 1556: -8,11
- node:
color: '#48B9FF8C'
id: MiniTileWhiteInnerSe
decals:
- 4644: 1,-53
- 4648: -5,-53
- 4649: -2,-53
- 4673: -5,-49
- 4729: -23,-46
+ 4602: 1,-53
+ 4606: -5,-53
+ 4607: -2,-53
+ 4631: -5,-49
+ 4687: -23,-46
- node:
color: '#52B4E996'
id: MiniTileWhiteInnerSe
decals:
- 1602: 27,27
- 4714: -23,-52
+ 1601: 27,27
+ 4672: -23,-52
- node:
color: '#79150096'
id: MiniTileWhiteInnerSe
decals:
- 4199: -16,36
+ 4157: -16,36
- node:
color: '#9FED5896'
id: MiniTileWhiteInnerSe
decals:
- 1153: -66,21
- 1223: -35,-42
- 1318: 0,31
- 2643: -96,21
- 2644: -84,21
+ 1152: -66,21
+ 1222: -35,-42
+ 1317: 0,31
+ 2601: -96,21
+ 2602: -84,21
- node:
color: '#D381C996'
id: MiniTileWhiteInnerSe
decals:
- 3780: 61,-28
- 3887: 34,-15
- 4492: 61,-45
- 4614: 76,-45
- 4620: 79,-46
+ 3738: 61,-28
+ 3845: 34,-15
+ 4450: 61,-45
+ 4572: 76,-45
+ 4578: 79,-46
- node:
color: '#334E6DC8'
id: MiniTileWhiteInnerSw
decals:
- 1548: 6,11
- 1556: 7,10
- 1913: 19,21
+ 1547: 6,11
+ 1555: 7,10
+ 1894: 19,21
- node:
color: '#48B9FF8C'
id: MiniTileWhiteInnerSw
decals:
- 4645: 1,-53
- 4646: -2,-53
- 4647: -5,-53
- 4672: -5,-49
- 4723: -23,-48
+ 4603: 1,-53
+ 4604: -2,-53
+ 4605: -5,-53
+ 4630: -5,-49
+ 4681: -23,-48
- node:
color: '#4D69B7C6'
id: MiniTileWhiteInnerSw
decals:
- 3082: -96,4
+ 3040: -96,4
- node:
color: '#52B4E996'
id: MiniTileWhiteInnerSw
decals:
- 2036: 4,-45
- 2049: -11,-42
+ 2012: 4,-45
+ 2025: -11,-42
- node:
color: '#79150096'
id: MiniTileWhiteInnerSw
decals:
- 2841: -58,2
- 4201: -14,36
+ 2799: -58,2
+ 4159: -14,36
- node:
color: '#9FED5896'
id: MiniTileWhiteInnerSw
decals:
- 1117: -52,13
- 1156: -52,21
- 2645: -70,21
- 4989: -88,21
+ 1116: -52,13
+ 1155: -52,21
+ 2603: -70,21
+ 4947: -88,21
- node:
color: '#D381C996'
id: MiniTileWhiteInnerSw
decals:
- 1483: 15,-15
- 3707: 56,-29
- 3755: 60,-25
- 4411: 60,-44
- 4494: 63,-45
- 4617: 78,-45
- 4619: 79,-46
+ 1482: 15,-15
+ 3665: 56,-29
+ 3713: 60,-25
+ 4369: 60,-44
+ 4452: 63,-45
+ 4575: 78,-45
+ 4577: 79,-46
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteInnerSw
decals:
- 2194: 50,-5
+ 2170: 50,-5
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineE
decals:
- 1400: 9,-3
- 1401: 9,-7
- 1402: 9,-8
- 1520: -9,-8
- 1521: -9,-7
- 1522: -9,-6
- 1523: -9,-5
- 1524: -9,-4
- 1525: -9,-3
- 1527: -9,0
- 1528: -9,3
- 1529: -9,4
- 1530: -9,5
- 1531: -9,6
- 1532: -9,7
- 1533: -9,8
- 1534: -9,9
+ 1399: 9,-3
+ 1400: 9,-7
+ 1401: 9,-8
+ 1519: -9,-8
+ 1520: -9,-7
+ 1521: -9,-6
+ 1522: -9,-5
+ 1523: -9,-4
+ 1524: -9,-3
+ 1526: -9,0
+ 1527: -9,3
+ 1528: -9,4
+ 1529: -9,5
+ 1530: -9,6
+ 1531: -9,7
+ 1532: -9,8
+ 1533: -9,9
- node:
cleanable: True
color: '#334E6DC8'
id: MiniTileWhiteLineE
decals:
- 2438: 55,65
- 2439: 55,64
- 2440: 55,63
- 2443: 59,66
- 2444: 59,65
- 2445: 59,64
- 2446: 59,63
- 2447: 59,62
- 2522: 52,61
- 2523: 52,60
- 2524: 52,59
- 2525: 52,57
- 2526: 52,58
+ 2396: 55,65
+ 2397: 55,64
+ 2398: 55,63
+ 2401: 59,66
+ 2402: 59,65
+ 2403: 59,64
+ 2404: 59,63
+ 2405: 59,62
+ 2480: 52,61
+ 2481: 52,60
+ 2482: 52,59
+ 2483: 52,57
+ 2484: 52,58
- node:
color: '#48B9FF8C'
id: MiniTileWhiteLineE
decals:
- 4670: -4,-48
- 4671: -4,-47
- 4675: -5,-50
- 4700: -20,-45
- 4701: -20,-44
- 4720: -23,-48
- 4722: -23,-47
+ 4628: -4,-48
+ 4629: -4,-47
+ 4633: -5,-50
+ 4658: -20,-45
+ 4659: -20,-44
+ 4678: -23,-48
+ 4680: -23,-47
- node:
color: '#52B4E996'
id: MiniTileWhiteLineE
decals:
- 1600: 27,23
- 1601: 27,24
- 1950: 11,18
- 1951: 11,17
- 1953: 11,16
- 1954: 11,15
- 1994: -5,-42
- 1995: -5,-41
- 2037: 2,-50
- 2038: 2,-49
- 2039: 2,-48
- 2101: -16,-51
- 2106: 10,-56
- 2107: 10,-55
- 2108: 10,-54
- 2109: 10,-53
- 2110: 10,-52
- 2111: 10,-51
- 2229: 27,26
- 2232: 27,25
- 2347: 27,22
- 4710: -21,-51
- 4712: -23,-53
- 4718: -23,-49
- 4730: -21,-54
+ 1599: 27,23
+ 1600: 27,24
+ 1931: 11,18
+ 1932: 11,17
+ 1934: 11,16
+ 1935: 11,15
+ 1970: -5,-42
+ 1971: -5,-41
+ 2013: 2,-50
+ 2014: 2,-49
+ 2015: 2,-48
+ 2077: -16,-51
+ 2082: 10,-56
+ 2083: 10,-55
+ 2084: 10,-54
+ 2085: 10,-53
+ 2086: 10,-52
+ 2087: 10,-51
+ 2205: 27,26
+ 2208: 27,25
+ 2323: 27,22
+ 4668: -21,-51
+ 4670: -23,-53
+ 4676: -23,-49
+ 4688: -21,-54
- node:
color: '#79150096'
id: MiniTileWhiteLineE
decals:
- 2849: -55,4
- 2850: -55,3
- 2851: -55,2
- 4202: -14,36
+ 2807: -55,4
+ 2808: -55,3
+ 2809: -55,2
+ 4160: -14,36
- node:
color: '#9FED5896'
id: MiniTileWhiteLineE
decals:
- 1074: -66,20
- 1075: -66,19
- 1076: -66,18
- 1077: -66,17
- 1078: -66,16
- 1079: -45,20
- 1080: -45,19
- 1081: -45,18
- 1082: -45,17
- 1083: -45,16
- 1084: -45,15
- 1085: -45,14
- 1086: -45,13
- 1179: -45,12
- 1202: -35,-48
- 1203: -35,-47
- 1204: -35,-46
- 1205: -35,-45
- 1206: -35,-44
- 1222: -35,-43
- 1315: 1,34
- 1342: 9,9
- 1343: 9,8
- 1344: 9,7
- 1345: 9,6
- 1346: 9,5
- 1347: 9,4
- 1348: 9,3
- 1415: 21,-3
- 1416: 21,-4
- 1417: 21,-5
- 1418: 21,-6
- 1419: 21,-7
- 1420: 21,-8
- 2068: -33,-56
- 2069: -34,-51
- 2073: -34,-52
- 2075: -33,-54
- 2090: -32,-60
- 2651: -96,17
- 2652: -96,18
- 2653: -96,19
- 2654: -84,16
- 2655: -84,17
- 2656: -84,19
- 2657: -84,20
- 2663: -94,24
- 2664: -94,25
- 2665: -94,26
- 2666: -94,27
- 2667: -94,29
- 2668: -94,30
- 2669: -94,31
- 2670: -94,32
- 2671: -94,34
- 2672: -94,35
- 2673: -94,36
- 2674: -94,39
- 2675: -94,38
- 2676: -94,41
- 2707: -76,42
- 2708: -76,41
- 2709: -76,38
- 2710: -76,36
- 2711: -76,35
- 2712: -76,34
- 2713: -76,32
- 2714: -76,31
- 2715: -76,29
- 2716: -76,28
- 2717: -76,27
- 2718: -76,26
- 2719: -76,24
- 2753: -84,18
- 2754: -96,16
- 2757: -96,20
- 2758: -58,24
- 2759: -58,27
- 2760: -58,28
- 2761: -58,29
- 2762: -58,30
- 2763: -58,31
- 2764: -58,32
- 2765: -58,33
- 2766: -58,35
- 2767: -58,36
- 2768: -58,37
- 2769: -58,38
- 2770: -58,40
- 2771: -58,42
- 4983: -94,28
- 4986: -94,37
- 4987: -94,42
- 4991: -76,25
- 4994: -76,30
- 4997: -76,37
- 4998: -76,39
- 5006: -58,25
- 5007: -58,26
- 5008: -58,34
- 5011: -58,39
- 5012: -58,41
+ 1073: -66,20
+ 1074: -66,19
+ 1075: -66,18
+ 1076: -66,17
+ 1077: -66,16
+ 1078: -45,20
+ 1079: -45,19
+ 1080: -45,18
+ 1081: -45,17
+ 1082: -45,16
+ 1083: -45,15
+ 1084: -45,14
+ 1085: -45,13
+ 1178: -45,12
+ 1201: -35,-48
+ 1202: -35,-47
+ 1203: -35,-46
+ 1204: -35,-45
+ 1205: -35,-44
+ 1221: -35,-43
+ 1314: 1,34
+ 1341: 9,9
+ 1342: 9,8
+ 1343: 9,7
+ 1344: 9,6
+ 1345: 9,5
+ 1346: 9,4
+ 1347: 9,3
+ 1414: 21,-3
+ 1415: 21,-4
+ 1416: 21,-5
+ 1417: 21,-6
+ 1418: 21,-7
+ 1419: 21,-8
+ 2044: -33,-56
+ 2045: -34,-51
+ 2049: -34,-52
+ 2051: -33,-54
+ 2066: -32,-60
+ 2609: -96,17
+ 2610: -96,18
+ 2611: -96,19
+ 2612: -84,16
+ 2613: -84,17
+ 2614: -84,19
+ 2615: -84,20
+ 2621: -94,24
+ 2622: -94,25
+ 2623: -94,26
+ 2624: -94,27
+ 2625: -94,29
+ 2626: -94,30
+ 2627: -94,31
+ 2628: -94,32
+ 2629: -94,34
+ 2630: -94,35
+ 2631: -94,36
+ 2632: -94,39
+ 2633: -94,38
+ 2634: -94,41
+ 2665: -76,42
+ 2666: -76,41
+ 2667: -76,38
+ 2668: -76,36
+ 2669: -76,35
+ 2670: -76,34
+ 2671: -76,32
+ 2672: -76,31
+ 2673: -76,29
+ 2674: -76,28
+ 2675: -76,27
+ 2676: -76,26
+ 2677: -76,24
+ 2711: -84,18
+ 2712: -96,16
+ 2715: -96,20
+ 2716: -58,24
+ 2717: -58,27
+ 2718: -58,28
+ 2719: -58,29
+ 2720: -58,30
+ 2721: -58,31
+ 2722: -58,32
+ 2723: -58,33
+ 2724: -58,35
+ 2725: -58,36
+ 2726: -58,37
+ 2727: -58,38
+ 2728: -58,40
+ 2729: -58,42
+ 4941: -94,28
+ 4944: -94,37
+ 4945: -94,42
+ 4949: -76,25
+ 4952: -76,30
+ 4955: -76,37
+ 4956: -76,39
+ 4964: -58,25
+ 4965: -58,26
+ 4966: -58,34
+ 4969: -58,39
+ 4970: -58,41
- node:
color: '#A4610696'
id: MiniTileWhiteLineE
decals:
- 1367: 51,1
- 1368: 51,0
+ 1366: 51,1
+ 1367: 51,0
- node:
color: '#D381C996'
id: MiniTileWhiteLineE
decals:
- 1421: 21,-10
- 1422: 21,-11
- 1423: 21,-12
- 1440: 28,-15
- 1441: 28,-16
- 1442: 28,-17
- 1449: 24,-13
- 1476: 17,-13
- 1477: 17,-14
- 1478: 17,-15
- 1479: 17,-17
- 1486: 43,-21
- 1487: 43,-20
- 2358: 36,-22
- 3658: 57,-22
- 3659: 57,-23
- 3683: 58,-29
- 3685: 58,-28
- 3688: 58,-30
- 3690: 58,-31
- 3691: 58,-32
- 3692: 58,-33
- 3693: 58,-34
- 3694: 58,-35
- 3695: 58,-36
- 3696: 58,-37
- 3770: 64,-27
- 3773: 61,-29
- 3774: 61,-30
- 3775: 61,-32
- 3776: 61,-33
- 3785: 61,-36
- 3786: 61,-35
- 3797: 61,-40
- 3884: 34,-16
- 3888: 36,-14
- 4407: 61,-44
- 4408: 61,-43
- 4409: 61,-42
- 4410: 61,-41
- 4605: 80,-45
+ 1420: 21,-10
+ 1421: 21,-11
+ 1422: 21,-12
+ 1439: 28,-15
+ 1440: 28,-16
+ 1441: 28,-17
+ 1448: 24,-13
+ 1475: 17,-13
+ 1476: 17,-14
+ 1477: 17,-15
+ 1478: 17,-17
+ 1485: 43,-21
+ 1486: 43,-20
+ 2334: 36,-22
+ 3616: 57,-22
+ 3617: 57,-23
+ 3641: 58,-29
+ 3643: 58,-28
+ 3646: 58,-30
+ 3648: 58,-31
+ 3649: 58,-32
+ 3650: 58,-33
+ 3651: 58,-34
+ 3652: 58,-35
+ 3653: 58,-36
+ 3654: 58,-37
+ 3728: 64,-27
+ 3731: 61,-29
+ 3732: 61,-30
+ 3733: 61,-32
+ 3734: 61,-33
+ 3743: 61,-36
+ 3744: 61,-35
+ 3755: 61,-40
+ 3842: 34,-16
+ 3846: 36,-14
+ 4365: 61,-44
+ 4366: 61,-43
+ 4367: 61,-42
+ 4368: 61,-41
+ 4563: 80,-45
- node:
cleanable: True
color: '#D4D4D4A7'
id: MiniTileWhiteLineE
decals:
- 2405: 42,60
- 2406: 42,59
+ 2363: 42,60
+ 2364: 42,59
- node:
color: '#DE3A3A96'
id: MiniTileWhiteLineE
decals:
- 1294: 1,41
- 1295: 1,40
- 1296: 1,39
- 1611: 21,12
- 1612: 21,11
- 1624: 24,4
- 1625: 24,5
- 1626: 24,6
- 1627: 24,8
- 1628: 24,9
- 1629: 24,10
- 1630: 21,3
- 1631: 21,5
- 1632: 21,6
- 1633: 21,7
+ 1293: 1,41
+ 1294: 1,40
+ 1295: 1,39
+ 1610: 21,12
+ 1611: 21,11
+ 1623: 24,4
+ 1624: 24,5
+ 1625: 24,6
+ 1626: 24,8
+ 1627: 24,9
+ 1628: 24,10
+ 1629: 21,3
+ 1630: 21,5
+ 1631: 21,6
+ 1632: 21,7
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteLineE
decals:
- 2182: 51,-6
- 2183: 51,-5
- 2184: 51,-4
+ 2158: 51,-6
+ 2159: 51,-5
+ 2160: 51,-4
- node:
color: '#EFB34196'
id: MiniTileWhiteLineE
decals:
- 1163: -45,24
- 1580: 11,24
- 1607: 21,20
- 1608: 21,19
- 1609: 21,18
- 1610: 21,13
- 1652: 24,26
- 1653: 24,27
- 1654: 24,30
- 1919: 17,33
- 1920: 17,34
- 1921: 17,35
- 2234: 11,25
- 2235: 11,26
- 5146: 28,38
- 5147: 28,39
- 5148: 28,40
- 5150: 26,19
+ 1162: -45,24
+ 1579: 11,24
+ 1606: 21,20
+ 1607: 21,19
+ 1608: 21,18
+ 1609: 21,13
+ 1651: 24,26
+ 1652: 24,27
+ 1653: 24,30
+ 1900: 17,33
+ 1901: 17,34
+ 1902: 17,35
+ 2210: 11,25
+ 2211: 11,26
+ 5094: 28,38
+ 5095: 28,39
+ 5096: 28,40
+ 5098: 26,19
- node:
cleanable: True
color: '#EFB34196'
id: MiniTileWhiteLineE
decals:
- 2428: 34,64
- 2429: 34,63
- 2431: 34,62
- 2432: 34,66
- 2433: 34,65
+ 2386: 34,64
+ 2387: 34,63
+ 2389: 34,62
+ 2390: 34,66
+ 2391: 34,65
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineN
decals:
- 1398: 16,-3
- 1508: 5,-10
- 1509: 4,-10
- 1510: 3,-10
- 1511: 2,-10
- 1512: 0,-10
- 1513: -2,-10
- 1514: -5,-10
- 1515: -4,-10
- 1516: -6,-10
- 1517: -7,-10
+ 1397: 16,-3
+ 1507: 5,-10
+ 1508: 4,-10
+ 1509: 3,-10
+ 1510: 2,-10
+ 1511: 0,-10
+ 1512: -2,-10
+ 1513: -5,-10
+ 1514: -4,-10
+ 1515: -6,-10
+ 1516: -7,-10
- node:
cleanable: True
color: '#334E6DC8'
id: MiniTileWhiteLineN
decals:
- 2441: 56,62
- 2442: 57,62
- 2501: 45,69
- 2510: 45,57
- 2511: 46,57
- 2512: 47,57
- 2513: 48,57
- 2514: 50,57
- 2515: 51,57
- 2516: 49,57
+ 2399: 56,62
+ 2400: 57,62
+ 2459: 45,69
+ 2468: 45,57
+ 2469: 46,57
+ 2470: 47,57
+ 2471: 48,57
+ 2472: 50,57
+ 2473: 51,57
+ 2474: 49,57
- node:
cleanable: True
color: '#474F52EC'
id: MiniTileWhiteLineN
decals:
- 2435: 47,65
+ 2393: 47,65
- node:
color: '#48B9FF8C'
id: MiniTileWhiteLineN
decals:
- 4635: 0,-52
- 4636: -1,-52
- 4637: -2,-52
- 4638: -3,-52
- 4690: -25,-45
- 4691: -24,-45
- 4692: -23,-45
- 4693: -22,-45
- 4695: -21,-45
+ 4593: 0,-52
+ 4594: -1,-52
+ 4595: -2,-52
+ 4596: -3,-52
+ 4648: -25,-45
+ 4649: -24,-45
+ 4650: -23,-45
+ 4651: -22,-45
+ 4653: -21,-45
- node:
color: '#4D69B7C6'
id: MiniTileWhiteLineN
decals:
- 3075: -95,6
- 3080: -97,5
+ 3033: -95,6
+ 3038: -97,5
- node:
color: '#52B4E996'
id: MiniTileWhiteLineN
decals:
- 1891: 3,19
- 1892: 4,19
- 1893: 5,19
- 1971: 33,29
- 1972: 34,29
- 1977: 38,29
- 1988: 2,-43
- 1989: 1,-43
- 1990: 0,-43
- 1991: -2,-43
- 1992: -3,-43
- 1993: -4,-43
- 1998: -7,-41
- 1999: -8,-41
- 2000: -9,-41
- 2001: -10,-41
- 2002: -12,-41
- 2003: -13,-41
- 2004: -14,-41
- 2021: -16,-40
- 2022: -18,-40
- 2023: -17,-40
- 2024: -19,-40
- 2047: 8,-46
- 2048: 7,-46
- 2103: -18,-50
- 4709: -22,-50
- 4721: -22,-54
- 4727: -21,-54
+ 1872: 3,19
+ 1873: 4,19
+ 1874: 5,19
+ 1952: 33,29
+ 1953: 34,29
+ 1964: 2,-43
+ 1965: 1,-43
+ 1966: 0,-43
+ 1967: -2,-43
+ 1968: -3,-43
+ 1969: -4,-43
+ 1974: -7,-41
+ 1975: -8,-41
+ 1976: -9,-41
+ 1977: -10,-41
+ 1978: -12,-41
+ 1979: -13,-41
+ 1980: -14,-41
+ 1997: -16,-40
+ 1998: -18,-40
+ 1999: -17,-40
+ 2000: -19,-40
+ 2023: 8,-46
+ 2024: 7,-46
+ 2079: -18,-50
+ 4667: -22,-50
+ 4679: -22,-54
+ 4685: -21,-54
- node:
cleanable: True
color: '#52B4E996'
id: MiniTileWhiteLineN
decals:
- 2500: 47,69
+ 2458: 47,69
- node:
color: '#79150096'
id: MiniTileWhiteLineN
decals:
- 2845: -58,5
- 2846: -57,5
- 2847: -56,5
- 4189: -18,37
- 4190: -17,37
- 4192: -16,37
+ 2803: -58,5
+ 2804: -57,5
+ 2805: -56,5
+ 4147: -18,37
+ 4148: -17,37
+ 4150: -16,37
- node:
color: '#9FED5896'
id: MiniTileWhiteLineN
decals:
- 1123: -65,15
- 1124: -64,15
- 1125: -63,15
- 1126: -62,15
- 1127: -61,15
- 1128: -59,15
- 1129: -58,15
- 1130: -57,15
- 1131: -56,15
- 1132: -55,15
- 1133: -54,15
- 1134: -53,15
- 1135: -83,23
- 1136: -82,23
- 1137: -80,23
- 1138: -79,23
- 1139: -75,23
- 1140: -73,23
- 1141: -72,23
- 1142: -71,23
- 1143: -70,23
- 1144: -65,23
- 1145: -64,23
- 1146: -63,23
- 1147: -62,23
- 1148: -61,23
- 1149: -56,23
- 1150: -54,23
- 1151: -55,23
- 1152: -53,23
- 1207: -35,-41
- 1208: -34,-41
- 1209: -33,-41
- 1210: -32,-41
- 1211: -31,-41
- 1212: -29,-41
- 1213: -30,-41
- 1214: -28,-41
- 1284: -84,23
- 1285: -85,23
- 1287: -88,23
- 1319: -7,13
- 1320: -6,13
- 1321: -5,13
- 1322: -4,13
- 1334: 2,13
- 1335: 3,13
- 1336: 4,13
- 1337: 5,13
- 1341: 9,10
- 1349: 11,1
- 1350: 12,1
- 1351: 13,1
- 1352: 14,1
- 1353: 15,1
- 1354: 16,1
- 1355: 17,1
- 1356: 23,1
- 1357: 24,1
- 1358: 25,1
- 1359: 29,1
- 1360: 33,1
- 1361: 37,1
- 2088: -33,-59
- 2089: -34,-59
- 2091: -38,-59
- 2092: -37,-59
- 2599: -95,15
- 2600: -94,15
- 2601: -93,15
- 2602: -92,15
- 2603: -90,15
- 2604: -89,15
- 2605: -83,15
- 2606: -82,15
- 2607: -81,15
- 2608: -80,15
- 2609: -79,15
- 2610: -78,15
- 2611: -77,15
- 2612: -76,15
- 2613: -75,15
- 2614: -74,15
- 2615: -73,15
- 2616: -72,15
- 2617: -71,15
- 2618: -69,23
- 2619: -68,23
- 2620: -66,23
- 2621: -81,23
- 2622: -86,23
- 2623: -87,23
- 2624: -89,23
- 2625: -90,23
- 2626: -92,23
- 2627: -91,23
- 2628: -93,23
- 2629: -97,23
- 2630: -98,23
- 4978: -91,15
- 4999: -67,23
- 5001: -60,15
- 5004: -57,23
+ 1122: -65,15
+ 1123: -64,15
+ 1124: -63,15
+ 1125: -62,15
+ 1126: -61,15
+ 1127: -59,15
+ 1128: -58,15
+ 1129: -57,15
+ 1130: -56,15
+ 1131: -55,15
+ 1132: -54,15
+ 1133: -53,15
+ 1134: -83,23
+ 1135: -82,23
+ 1136: -80,23
+ 1137: -79,23
+ 1138: -75,23
+ 1139: -73,23
+ 1140: -72,23
+ 1141: -71,23
+ 1142: -70,23
+ 1143: -65,23
+ 1144: -64,23
+ 1145: -63,23
+ 1146: -62,23
+ 1147: -61,23
+ 1148: -56,23
+ 1149: -54,23
+ 1150: -55,23
+ 1151: -53,23
+ 1206: -35,-41
+ 1207: -34,-41
+ 1208: -33,-41
+ 1209: -32,-41
+ 1210: -31,-41
+ 1211: -29,-41
+ 1212: -30,-41
+ 1213: -28,-41
+ 1283: -84,23
+ 1284: -85,23
+ 1286: -88,23
+ 1318: -7,13
+ 1319: -6,13
+ 1320: -5,13
+ 1321: -4,13
+ 1333: 2,13
+ 1334: 3,13
+ 1335: 4,13
+ 1336: 5,13
+ 1340: 9,10
+ 1348: 11,1
+ 1349: 12,1
+ 1350: 13,1
+ 1351: 14,1
+ 1352: 15,1
+ 1353: 16,1
+ 1354: 17,1
+ 1355: 23,1
+ 1356: 24,1
+ 1357: 25,1
+ 1358: 29,1
+ 1359: 33,1
+ 1360: 37,1
+ 2064: -33,-59
+ 2065: -34,-59
+ 2067: -38,-59
+ 2068: -37,-59
+ 2557: -95,15
+ 2558: -94,15
+ 2559: -93,15
+ 2560: -92,15
+ 2561: -90,15
+ 2562: -89,15
+ 2563: -83,15
+ 2564: -82,15
+ 2565: -81,15
+ 2566: -80,15
+ 2567: -79,15
+ 2568: -78,15
+ 2569: -77,15
+ 2570: -76,15
+ 2571: -75,15
+ 2572: -74,15
+ 2573: -73,15
+ 2574: -72,15
+ 2575: -71,15
+ 2576: -69,23
+ 2577: -68,23
+ 2578: -66,23
+ 2579: -81,23
+ 2580: -86,23
+ 2581: -87,23
+ 2582: -89,23
+ 2583: -90,23
+ 2584: -92,23
+ 2585: -91,23
+ 2586: -93,23
+ 2587: -97,23
+ 2588: -98,23
+ 4936: -91,15
+ 4957: -67,23
+ 4959: -60,15
+ 4962: -57,23
- node:
cleanable: True
color: '#9FED5896'
id: MiniTileWhiteLineN
decals:
- 2496: 51,69
+ 2454: 51,69
- node:
color: '#A4610696'
id: MiniTileWhiteLineN
decals:
- 1362: 41,1
- 1363: 42,1
- 1364: 45,1
- 1365: 46,1
- 1366: 47,1
- 2116: 68,7
- 2123: 63,5
- 2124: 64,5
- 2125: 65,5
- 2126: 66,5
+ 1361: 41,1
+ 1362: 42,1
+ 1363: 45,1
+ 1364: 46,1
+ 1365: 47,1
+ 2092: 68,7
+ 2099: 63,5
+ 2100: 64,5
+ 2101: 65,5
+ 2102: 66,5
- node:
cleanable: True
color: '#A4610696'
id: MiniTileWhiteLineN
decals:
- 2497: 49,69
+ 2455: 49,69
- node:
color: '#D381C996'
id: MiniTileWhiteLineN
decals:
- 1446: 27,-14
- 1447: 26,-14
- 1448: 25,-14
- 1459: 9,-20
- 1460: 7,-20
- 1469: 13,-14
- 1470: 14,-14
- 1471: 15,-14
- 1484: 42,-19
- 1485: 41,-19
- 1494: 35,-19
- 1495: 34,-19
- 1496: 32,-19
- 2528: 13,-20
- 2529: 14,-20
- 2530: 15,-20
- 2531: 17,-20
- 2532: 18,-20
- 2533: 19,-20
- 2534: 21,-20
- 2535: 22,-20
- 2536: 23,-20
- 2537: 24,-20
- 2538: 26,-20
- 2539: 27,-20
- 3535: 31,-19
- 3645: 46,-21
- 3646: 47,-21
- 3647: 48,-21
- 3648: 49,-21
- 3649: 50,-21
- 3650: 51,-21
- 3651: 52,-21
- 3660: 56,-21
- 3672: 54,-27
- 3673: 55,-27
- 3674: 57,-27
- 3754: 61,-26
- 3757: 62,-26
- 3758: 63,-26
- 3795: 59,-39
- 3890: 35,-13
- 3891: 34,-13
- 4510: 65,-44
- 4512: 66,-44
- 4513: 67,-44
- 4515: 68,-44
- 4516: 69,-44
- 4517: 70,-44
- 4521: 71,-44
- 4524: 72,-44
- 4525: 73,-44
- 4526: 74,-44
- 4528: 75,-44
- 4611: 79,-48
- 4612: 79,-42
+ 1445: 27,-14
+ 1446: 26,-14
+ 1447: 25,-14
+ 1458: 9,-20
+ 1459: 7,-20
+ 1468: 13,-14
+ 1469: 14,-14
+ 1470: 15,-14
+ 1483: 42,-19
+ 1484: 41,-19
+ 1493: 35,-19
+ 1494: 34,-19
+ 1495: 32,-19
+ 2486: 13,-20
+ 2487: 14,-20
+ 2488: 15,-20
+ 2489: 17,-20
+ 2490: 18,-20
+ 2491: 19,-20
+ 2492: 21,-20
+ 2493: 22,-20
+ 2494: 23,-20
+ 2495: 24,-20
+ 2496: 26,-20
+ 2497: 27,-20
+ 3493: 31,-19
+ 3603: 46,-21
+ 3604: 47,-21
+ 3605: 48,-21
+ 3606: 49,-21
+ 3607: 50,-21
+ 3608: 51,-21
+ 3609: 52,-21
+ 3618: 56,-21
+ 3630: 54,-27
+ 3631: 55,-27
+ 3632: 57,-27
+ 3712: 61,-26
+ 3715: 62,-26
+ 3716: 63,-26
+ 3753: 59,-39
+ 3848: 35,-13
+ 3849: 34,-13
+ 4468: 65,-44
+ 4470: 66,-44
+ 4471: 67,-44
+ 4473: 68,-44
+ 4474: 69,-44
+ 4475: 70,-44
+ 4479: 71,-44
+ 4482: 72,-44
+ 4483: 73,-44
+ 4484: 74,-44
+ 4486: 75,-44
+ 4569: 79,-48
+ 4570: 79,-42
- node:
cleanable: True
color: '#D381C996'
id: MiniTileWhiteLineN
decals:
- 2489: 47,67
+ 2447: 47,67
- node:
cleanable: True
color: '#D4D4D496'
id: MiniTileWhiteLineN
decals:
- 2492: 49,67
+ 2450: 49,67
- node:
cleanable: True
color: '#D4D4D4A7'
id: MiniTileWhiteLineN
decals:
- 2407: 37,61
- 2408: 38,61
- 2409: 40,61
- 2410: 41,61
- 2411: 39,61
+ 2365: 37,61
+ 2366: 38,61
+ 2367: 40,61
+ 2368: 41,61
+ 2369: 39,61
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteLineN
decals:
- 2189: 47,-3
- 2190: 48,-3
- 2191: 49,-3
- 2192: 50,-3
- 2493: 51,67
+ 2165: 47,-3
+ 2166: 48,-3
+ 2167: 49,-3
+ 2168: 50,-3
+ 2451: 51,67
- node:
color: '#EFB34196'
id: MiniTileWhiteLineN
decals:
- 1158: -51,25
- 1159: -49,25
- 1160: -47,25
- 1161: -46,25
- 1558: 2,23
- 1559: 4,23
- 1560: 6,23
- 1563: 3,27
- 1564: 4,27
- 1565: 5,27
- 1566: 6,27
- 1567: 7,27
- 1583: 12,23
- 1584: 13,23
- 1585: 14,23
- 1586: 16,23
- 1587: 17,23
- 1588: 18,23
- 1589: 19,23
- 1590: 20,23
- 1591: 22,23
- 1592: 23,23
- 1593: 24,23
- 1594: 25,23
- 1644: 13,7
- 1655: 20,31
- 1656: 21,31
- 1657: 22,31
- 1658: 23,31
- 1927: 14,36
- 1928: 15,36
- 1929: 16,36
- 5002: -50,25
+ 1157: -51,25
+ 1158: -49,25
+ 1159: -47,25
+ 1160: -46,25
+ 1557: 2,23
+ 1558: 4,23
+ 1559: 6,23
+ 1562: 3,27
+ 1563: 4,27
+ 1564: 5,27
+ 1565: 6,27
+ 1566: 7,27
+ 1582: 12,23
+ 1583: 13,23
+ 1584: 14,23
+ 1585: 16,23
+ 1586: 17,23
+ 1587: 18,23
+ 1588: 19,23
+ 1589: 20,23
+ 1590: 22,23
+ 1591: 23,23
+ 1592: 24,23
+ 1593: 25,23
+ 1643: 13,7
+ 1654: 20,31
+ 1655: 21,31
+ 1656: 22,31
+ 1657: 23,31
+ 1908: 14,36
+ 1909: 15,36
+ 1910: 16,36
+ 4960: -50,25
- node:
cleanable: True
color: '#EFB34196'
id: MiniTileWhiteLineN
decals:
- 2488: 45,67
+ 2446: 45,67
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineN
decals:
- 3262: -76,-24
- 3263: -77,-24
+ 3220: -76,-24
+ 3221: -77,-24
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineS
decals:
- 1403: 11,-1
- 1404: 12,-1
- 1405: 13,-1
- 1406: 15,-1
- 1407: 16,-1
- 1408: 17,-1
- 1414: 16,-7
- 1537: -7,11
- 1538: -6,11
- 1539: -5,11
- 1540: -4,11
- 1541: -2,11
- 1542: -1,11
- 1543: 0,11
- 1544: 3,11
- 1545: 4,11
- 1546: 5,11
- 1909: 18,21
- 1910: 17,21
- 1911: 16,21
- 1912: 15,21
+ 1402: 11,-1
+ 1403: 12,-1
+ 1404: 13,-1
+ 1405: 15,-1
+ 1406: 16,-1
+ 1407: 17,-1
+ 1413: 16,-7
+ 1536: -7,11
+ 1537: -6,11
+ 1538: -5,11
+ 1539: -4,11
+ 1540: -2,11
+ 1541: -1,11
+ 1542: 0,11
+ 1543: 3,11
+ 1544: 4,11
+ 1545: 5,11
+ 1890: 18,21
+ 1891: 17,21
+ 1892: 16,21
+ 1893: 15,21
+ 5582: 2,11
- node:
cleanable: True
color: '#334E6DC8'
id: MiniTileWhiteLineS
decals:
- 2436: 56,66
- 2437: 57,66
- 2502: 45,71
- 2503: 45,61
- 2504: 46,61
- 2505: 47,61
- 2506: 48,61
- 2507: 49,61
- 2508: 50,61
- 2509: 51,61
+ 2394: 56,66
+ 2395: 57,66
+ 2460: 45,71
+ 2461: 45,61
+ 2462: 46,61
+ 2463: 47,61
+ 2464: 48,61
+ 2465: 49,61
+ 2466: 50,61
+ 2467: 51,61
- node:
color: '#48B9FF7F'
id: MiniTileWhiteLineS
decals:
- 4630: 1,-45
+ 4588: 1,-45
- node:
color: '#48B9FF8C'
id: MiniTileWhiteLineS
decals:
- 4631: -3,-53
- 4632: -1,-53
- 4633: 0,-53
- 4642: -4,-53
- 4685: -25,-48
- 4686: -24,-48
- 4724: -22,-46
- 4725: -21,-46
+ 4589: -3,-53
+ 4590: -1,-53
+ 4591: 0,-53
+ 4600: -4,-53
+ 4643: -25,-48
+ 4644: -24,-48
+ 4682: -22,-46
+ 4683: -21,-46
- node:
color: '#4D69B7C6'
id: MiniTileWhiteLineS
decals:
- 3076: -95,3
- 3079: -97,4
+ 3034: -95,3
+ 3037: -97,4
- node:
color: '#52B4E996'
id: MiniTileWhiteLineS
decals:
- 1562: 2,21
- 1895: 6,21
- 1899: 11,21
- 1900: 13,21
- 1969: 33,28
- 1970: 34,28
- 2007: -19,-42
- 2008: -18,-42
- 2009: -16,-42
- 2010: -15,-42
- 2011: -13,-42
- 2012: -12,-42
- 2015: -10,-44
- 2016: -8,-44
- 2017: -7,-44
- 2018: -6,-44
- 2019: -4,-44
- 2020: -3,-44
- 2026: 2,-45
- 2027: 3,-45
- 2030: 7,-48
- 2031: 6,-48
- 2032: 5,-48
- 2041: -1,-50
- 2042: 0,-50
- 2105: 9,-56
- 2240: 12,21
- 4414: 6,15
- 4713: -22,-52
- 4719: -22,-54
- 4728: -21,-54
- 4732: -23,-54
+ 1561: 2,21
+ 1876: 6,21
+ 1880: 11,21
+ 1881: 13,21
+ 1950: 33,28
+ 1951: 34,28
+ 1983: -19,-42
+ 1984: -18,-42
+ 1985: -16,-42
+ 1986: -15,-42
+ 1987: -13,-42
+ 1988: -12,-42
+ 1991: -10,-44
+ 1992: -8,-44
+ 1993: -7,-44
+ 1994: -6,-44
+ 1995: -4,-44
+ 1996: -3,-44
+ 2002: 2,-45
+ 2003: 3,-45
+ 2006: 7,-48
+ 2007: 6,-48
+ 2008: 5,-48
+ 2017: -1,-50
+ 2018: 0,-50
+ 2081: 9,-56
+ 2216: 12,21
+ 4372: 6,15
+ 4671: -22,-52
+ 4677: -22,-54
+ 4686: -21,-54
+ 4690: -23,-54
- node:
cleanable: True
color: '#52B4E996'
id: MiniTileWhiteLineS
decals:
- 2499: 47,71
+ 2457: 47,71
- node:
color: '#79150096'
id: MiniTileWhiteLineS
decals:
- 2837: -56,1
- 2838: -57,1
- 4196: -18,35
- 4197: -17,35
- 4200: -15,36
+ 2795: -56,1
+ 2796: -57,1
+ 4154: -18,35
+ 4155: -17,35
+ 4158: -15,36
- node:
color: '#9FED5896'
id: MiniTileWhiteLineS
decals:
- 1087: -53,13
- 1088: -55,13
- 1089: -54,13
- 1090: -56,13
- 1091: -57,13
- 1092: -61,13
- 1093: -62,13
- 1094: -65,13
- 1095: -64,13
- 1096: -70,13
- 1097: -71,13
- 1098: -72,13
- 1099: -73,13
- 1100: -77,13
- 1101: -78,13
- 1102: -82,13
- 1103: -83,13
- 1104: -65,21
- 1105: -64,21
- 1106: -63,21
- 1107: -62,21
- 1108: -61,21
- 1109: -60,21
- 1110: -59,21
- 1111: -58,21
- 1112: -57,21
- 1113: -56,21
- 1114: -55,21
- 1115: -54,21
- 1116: -53,21
- 1180: -51,11
- 1181: -50,11
- 1182: -49,11
- 1183: -48,11
- 1184: -47,11
- 1185: -46,11
- 1215: -28,-42
- 1216: -29,-42
- 1217: -30,-42
- 1218: -31,-42
- 1219: -32,-42
- 1220: -33,-42
- 1221: -34,-42
- 1282: -85,13
- 1283: -88,13
- 1375: 43,-1
- 1376: 42,-1
- 1377: 41,-1
- 1378: 40,-1
- 1379: 39,-1
- 1380: 37,-1
- 1381: 36,-1
- 1382: 35,-1
- 1383: 34,-1
- 1384: 33,-1
- 1385: 31,-1
- 1386: 32,-1
- 1387: 30,-1
- 1388: 29,-1
- 1389: 28,-1
- 1390: 27,-1
- 1391: 26,-1
- 1392: 25,-1
- 1393: 24,-1
- 1394: 23,-1
- 1500: 2,-12
- 1501: 3,-12
- 1502: 4,-12
- 1503: 5,-12
- 2084: -38,-63
- 2085: -37,-63
- 2086: -34,-63
- 2087: -33,-63
- 2093: -37,-57
- 2094: -34,-57
- 2570: -74,13
- 2571: -75,13
- 2572: -76,13
- 2573: -68,13
- 2574: -67,13
- 2575: -66,13
- 2576: -86,13
- 2577: -91,13
- 2578: -92,13
- 2579: -93,13
- 2580: -71,21
- 2581: -72,21
- 2582: -73,21
- 2583: -74,21
- 2584: -75,21
- 2585: -76,21
- 2586: -77,21
- 2587: -78,21
- 2588: -79,21
- 2589: -80,21
- 2590: -81,21
- 2591: -82,21
- 2592: -83,21
- 2593: -89,21
- 2594: -90,21
- 2595: -91,21
- 2596: -92,21
- 2597: -94,21
- 2598: -95,21
- 2720: -95,13
- 2721: -96,13
- 2722: -97,13
- 2723: -98,13
- 4979: -94,13
- 4981: -93,21
- 5000: -69,13
- 5014: -63,13
- 5015: -80,13
- 5016: -84,13
- 5017: -90,13
+ 1086: -53,13
+ 1087: -55,13
+ 1088: -54,13
+ 1089: -56,13
+ 1090: -57,13
+ 1091: -61,13
+ 1092: -62,13
+ 1093: -65,13
+ 1094: -64,13
+ 1095: -70,13
+ 1096: -71,13
+ 1097: -72,13
+ 1098: -73,13
+ 1099: -77,13
+ 1100: -78,13
+ 1101: -82,13
+ 1102: -83,13
+ 1103: -65,21
+ 1104: -64,21
+ 1105: -63,21
+ 1106: -62,21
+ 1107: -61,21
+ 1108: -60,21
+ 1109: -59,21
+ 1110: -58,21
+ 1111: -57,21
+ 1112: -56,21
+ 1113: -55,21
+ 1114: -54,21
+ 1115: -53,21
+ 1179: -51,11
+ 1180: -50,11
+ 1181: -49,11
+ 1182: -48,11
+ 1183: -47,11
+ 1184: -46,11
+ 1214: -28,-42
+ 1215: -29,-42
+ 1216: -30,-42
+ 1217: -31,-42
+ 1218: -32,-42
+ 1219: -33,-42
+ 1220: -34,-42
+ 1281: -85,13
+ 1282: -88,13
+ 1374: 43,-1
+ 1375: 42,-1
+ 1376: 41,-1
+ 1377: 40,-1
+ 1378: 39,-1
+ 1379: 37,-1
+ 1380: 36,-1
+ 1381: 35,-1
+ 1382: 34,-1
+ 1383: 33,-1
+ 1384: 31,-1
+ 1385: 32,-1
+ 1386: 30,-1
+ 1387: 29,-1
+ 1388: 28,-1
+ 1389: 27,-1
+ 1390: 26,-1
+ 1391: 25,-1
+ 1392: 24,-1
+ 1393: 23,-1
+ 1499: 2,-12
+ 1500: 3,-12
+ 1501: 4,-12
+ 1502: 5,-12
+ 2060: -38,-63
+ 2061: -37,-63
+ 2062: -34,-63
+ 2063: -33,-63
+ 2069: -37,-57
+ 2070: -34,-57
+ 2528: -74,13
+ 2529: -75,13
+ 2530: -76,13
+ 2531: -68,13
+ 2532: -67,13
+ 2533: -66,13
+ 2534: -86,13
+ 2535: -91,13
+ 2536: -92,13
+ 2537: -93,13
+ 2538: -71,21
+ 2539: -72,21
+ 2540: -73,21
+ 2541: -74,21
+ 2542: -75,21
+ 2543: -76,21
+ 2544: -77,21
+ 2545: -78,21
+ 2546: -79,21
+ 2547: -80,21
+ 2548: -81,21
+ 2549: -82,21
+ 2550: -83,21
+ 2551: -89,21
+ 2552: -90,21
+ 2553: -91,21
+ 2554: -92,21
+ 2555: -94,21
+ 2556: -95,21
+ 2678: -95,13
+ 2679: -96,13
+ 2680: -97,13
+ 2681: -98,13
+ 4937: -94,13
+ 4939: -93,21
+ 4958: -69,13
+ 4972: -63,13
+ 4973: -80,13
+ 4974: -84,13
+ 4975: -90,13
- node:
cleanable: True
color: '#9FED5896'
id: MiniTileWhiteLineS
decals:
- 2495: 51,71
+ 2453: 51,71
- node:
color: '#A4610696'
id: MiniTileWhiteLineS
decals:
- 2117: 66,2
- 2118: 63,2
+ 2093: 66,2
+ 2094: 63,2
- node:
cleanable: True
color: '#A4610696'
id: MiniTileWhiteLineS
decals:
- 2498: 49,71
+ 2456: 49,71
- node:
color: '#D381C996'
id: MiniTileWhiteLineS
decals:
- 1444: 27,-18
- 1445: 26,-18
- 1452: 24,-18
- 1461: 9,-22
- 1462: 7,-22
- 1463: 13,-15
- 1464: 14,-15
- 1491: 39,-23
- 1492: 40,-23
- 1497: 33,-23
- 1498: 34,-23
- 2540: 14,-22
- 2541: 15,-22
- 2542: 16,-22
- 2543: 17,-22
- 2544: 18,-22
- 2545: 19,-22
- 2546: 21,-22
- 2547: 22,-22
- 2548: 23,-22
- 2549: 24,-22
- 2550: 25,-22
- 2551: 26,-22
- 3532: 31,-23
- 3638: 51,-23
- 3639: 46,-23
- 3640: 47,-23
- 3641: 52,-23
- 3642: 48,-23
- 3643: 49,-23
- 3644: 50,-23
- 3669: 55,-29
- 3670: 54,-29
- 3697: 57,-37
- 3771: 63,-28
- 3772: 62,-28
- 3885: 35,-15
- 4402: 58,-44
- 4403: 59,-44
- 4495: 64,-46
- 4496: 65,-46
- 4497: 66,-46
- 4498: 67,-46
- 4499: 75,-46
- 4500: 74,-46
- 4501: 73,-46
- 4502: 72,-46
- 4503: 71,-46
- 4504: 70,-46
- 4505: 69,-46
- 4506: 68,-46
- 4610: 79,-48
- 4613: 79,-42
+ 1443: 27,-18
+ 1444: 26,-18
+ 1451: 24,-18
+ 1460: 9,-22
+ 1461: 7,-22
+ 1462: 13,-15
+ 1463: 14,-15
+ 1490: 39,-23
+ 1491: 40,-23
+ 1496: 33,-23
+ 1497: 34,-23
+ 2498: 14,-22
+ 2499: 15,-22
+ 2500: 16,-22
+ 2501: 17,-22
+ 2502: 18,-22
+ 2503: 19,-22
+ 2504: 21,-22
+ 2505: 22,-22
+ 2506: 23,-22
+ 2507: 24,-22
+ 2508: 25,-22
+ 2509: 26,-22
+ 3490: 31,-23
+ 3596: 51,-23
+ 3597: 46,-23
+ 3598: 47,-23
+ 3599: 52,-23
+ 3600: 48,-23
+ 3601: 49,-23
+ 3602: 50,-23
+ 3627: 55,-29
+ 3628: 54,-29
+ 3655: 57,-37
+ 3729: 63,-28
+ 3730: 62,-28
+ 3843: 35,-15
+ 4360: 58,-44
+ 4361: 59,-44
+ 4453: 64,-46
+ 4454: 65,-46
+ 4455: 66,-46
+ 4456: 67,-46
+ 4457: 75,-46
+ 4458: 74,-46
+ 4459: 73,-46
+ 4460: 72,-46
+ 4461: 71,-46
+ 4462: 70,-46
+ 4463: 69,-46
+ 4464: 68,-46
+ 4568: 79,-48
+ 4571: 79,-42
- node:
cleanable: True
color: '#D381C996'
id: MiniTileWhiteLineS
decals:
- 2490: 47,69
+ 2448: 47,69
- node:
cleanable: True
color: '#D4D4D496'
id: MiniTileWhiteLineS
decals:
- 2491: 49,69
+ 2449: 49,69
- node:
color: '#DE3A3A96'
id: MiniTileWhiteLineS
decals:
- 1369: 45,-1
- 1370: 47,-1
- 1371: 48,-1
- 1372: 49,-1
- 1373: 50,-1
- 1613: 21,10
+ 1368: 45,-1
+ 1369: 47,-1
+ 1370: 48,-1
+ 1371: 49,-1
+ 1372: 50,-1
+ 1612: 21,10
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteLineS
decals:
- 2181: 51,-7
- 2185: 49,-5
- 2186: 48,-5
- 2187: 47,-5
- 2494: 51,69
+ 2157: 51,-7
+ 2161: 49,-5
+ 2162: 48,-5
+ 2163: 47,-5
+ 2452: 51,69
- node:
color: '#EFB34196'
id: MiniTileWhiteLineS
decals:
- 1569: 8,25
- 1570: 7,25
- 1571: 6,25
- 1572: 5,25
- 1573: 4,25
- 1574: 3,25
- 1603: 25,21
- 1604: 24,21
- 1605: 23,21
- 1606: 22,21
- 1614: 19,10
- 1645: 13,5
- 1661: 20,25
- 1662: 22,25
- 1663: 23,25
- 1914: 14,32
- 1915: 15,32
- 1916: 16,32
+ 1568: 8,25
+ 1569: 7,25
+ 1570: 6,25
+ 1571: 5,25
+ 1572: 4,25
+ 1573: 3,25
+ 1602: 25,21
+ 1603: 24,21
+ 1604: 23,21
+ 1605: 22,21
+ 1613: 19,10
+ 1644: 13,5
+ 1660: 20,25
+ 1661: 22,25
+ 1662: 23,25
+ 1895: 14,32
+ 1896: 15,32
+ 1897: 16,32
- node:
cleanable: True
color: '#EFB34196'
id: MiniTileWhiteLineS
decals:
- 2487: 45,69
+ 2445: 45,69
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineS
decals:
- 3258: -77,-25
- 3259: -76,-25
+ 3216: -77,-25
+ 3217: -76,-25
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineW
decals:
- 1395: 11,-4
- 1396: 11,-5
- 1397: 11,-6
- 1409: 19,-3
- 1410: 19,-4
- 1411: 19,-5
- 1412: 19,-6
- 1413: 19,-7
- 1549: 7,9
- 1550: 7,8
- 1551: 7,7
- 1552: 7,6
- 1553: 7,5
- 1554: 7,4
- 1555: 7,3
- 1901: 19,20
- 1902: 19,18
- 1903: 19,17
- 1904: 19,15
- 1905: 19,14
- 1906: 19,13
- 1907: 19,12
- 1908: 19,11
- 2238: 19,16
- 2239: 19,19
+ 1394: 11,-4
+ 1395: 11,-5
+ 1396: 11,-6
+ 1408: 19,-3
+ 1409: 19,-4
+ 1410: 19,-5
+ 1411: 19,-6
+ 1412: 19,-7
+ 1548: 7,9
+ 1549: 7,8
+ 1550: 7,7
+ 1551: 7,6
+ 1552: 7,5
+ 1553: 7,4
+ 1554: 7,3
+ 1882: 19,20
+ 1883: 19,18
+ 1884: 19,17
+ 1885: 19,15
+ 1886: 19,14
+ 1887: 19,13
+ 1888: 19,12
+ 1889: 19,11
+ 2214: 19,16
+ 2215: 19,19
- node:
cleanable: True
color: '#334E6DC8'
id: MiniTileWhiteLineW
decals:
- 2517: 44,57
- 2518: 44,58
- 2519: 44,59
- 2520: 44,61
- 2521: 44,60
+ 2475: 44,57
+ 2476: 44,58
+ 2477: 44,59
+ 2478: 44,61
+ 2479: 44,60
- node:
color: '#334E6DD5'
id: MiniTileWhiteLineW
decals:
- 4018: 19,-8
+ 3976: 19,-8
- node:
color: '#48B9FF8C'
id: MiniTileWhiteLineW
decals:
- 4668: -6,-48
- 4669: -6,-47
- 4674: -5,-50
- 4687: -26,-47
- 4688: -26,-46
- 4702: -20,-44
+ 4626: -6,-48
+ 4627: -6,-47
+ 4632: -5,-50
+ 4645: -26,-47
+ 4646: -26,-46
+ 4660: -20,-44
- node:
color: '#52B4E996'
id: MiniTileWhiteLineW
decals:
- 1987: 3,-42
- 2013: -11,-43
- 2034: 4,-47
- 2035: 4,-46
- 2043: -2,-49
- 2044: -2,-48
- 2050: -24,-49
- 2102: -19,-51
- 2112: 8,-55
- 2113: 8,-54
- 2114: 8,-53
- 4418: 2,18
- 4419: 2,17
- 4703: -24,-53
- 4704: -24,-52
- 4705: -24,-51
- 4717: -23,-49
- 4731: -24,-54
+ 1963: 3,-42
+ 1989: -11,-43
+ 2010: 4,-47
+ 2011: 4,-46
+ 2019: -2,-49
+ 2020: -2,-48
+ 2026: -24,-49
+ 2078: -19,-51
+ 2088: 8,-55
+ 2089: 8,-54
+ 2090: 8,-53
+ 4376: 2,18
+ 4377: 2,17
+ 4661: -24,-53
+ 4662: -24,-52
+ 4663: -24,-51
+ 4675: -23,-49
+ 4689: -24,-54
- node:
color: '#79150096'
id: MiniTileWhiteLineW
decals:
- 2842: -59,3
- 2843: -59,4
- 4187: -19,36
+ 2800: -59,3
+ 2801: -59,4
+ 4145: -19,36
- node:
color: '#9FED5896'
id: MiniTileWhiteLineW
decals:
- 1118: -52,20
- 1119: -52,19
- 1120: -52,18
- 1121: -52,17
- 1122: -52,16
- 1178: -52,12
- 1195: -36,-42
- 1196: -36,-43
- 1197: -36,-44
- 1198: -36,-45
- 1199: -36,-46
- 1200: -36,-47
- 1201: -36,-48
- 1298: -3,40
- 1299: -3,39
- 1300: -3,38
- 1302: -3,41
- 1327: -11,9
- 1328: -11,8
- 1329: -11,7
- 1330: -11,6
- 1331: -11,5
- 1332: -11,4
- 1333: -11,3
- 1978: -2,31
- 1979: -2,30
- 1980: -2,29
- 1981: -2,28
- 1982: -2,34
- 1983: -2,35
- 2065: -38,-56
- 2066: -38,-55
- 2067: -38,-54
- 2070: -37,-51
- 2071: -37,-52
- 2082: -39,-60
- 2083: -39,-62
- 2631: -99,14
- 2632: -99,17
- 2633: -99,18
- 2634: -99,19
- 2635: -88,16
- 2636: -88,17
- 2637: -88,18
- 2638: -88,19
- 2639: -88,20
- 2646: -70,16
- 2647: -70,17
- 2648: -70,18
- 2649: -70,19
- 2650: -70,20
- 2679: -96,41
- 2680: -96,39
- 2681: -96,38
- 2682: -96,37
- 2683: -96,36
- 2684: -96,32
- 2685: -96,31
- 2686: -96,29
- 2687: -96,28
- 2688: -96,27
- 2689: -96,24
- 2690: -96,26
- 2691: -96,34
- 2692: -78,24
- 2693: -78,26
- 2694: -78,27
- 2695: -78,28
- 2696: -78,29
- 2697: -78,30
- 2698: -78,32
- 2699: -78,35
- 2700: -78,36
- 2701: -78,37
- 2702: -78,39
- 2703: -78,41
- 2704: -78,42
- 2755: -99,16
- 2756: -99,20
- 2774: -60,41
- 2775: -60,39
- 2776: -60,38
- 2777: -60,36
- 2778: -60,35
- 2779: -60,34
- 2780: -60,32
- 2781: -60,30
- 2782: -60,29
- 2783: -60,28
- 2784: -60,27
- 2785: -60,26
- 2786: -60,24
- 2795: -99,22
- 4982: -96,25
- 4984: -96,30
- 4985: -96,35
- 4988: -96,42
- 4992: -78,25
- 4993: -78,31
- 4995: -78,34
- 4996: -78,38
- 5005: -60,25
- 5009: -60,31
- 5010: -60,37
- 5013: -60,42
- 5092: -3,42
+ 1117: -52,20
+ 1118: -52,19
+ 1119: -52,18
+ 1120: -52,17
+ 1121: -52,16
+ 1177: -52,12
+ 1194: -36,-42
+ 1195: -36,-43
+ 1196: -36,-44
+ 1197: -36,-45
+ 1198: -36,-46
+ 1199: -36,-47
+ 1200: -36,-48
+ 1297: -3,40
+ 1298: -3,39
+ 1299: -3,38
+ 1301: -3,41
+ 1326: -11,9
+ 1327: -11,8
+ 1328: -11,7
+ 1329: -11,6
+ 1330: -11,5
+ 1331: -11,4
+ 1332: -11,3
+ 1954: -2,31
+ 1955: -2,30
+ 1956: -2,29
+ 1957: -2,28
+ 1958: -2,34
+ 1959: -2,35
+ 2041: -38,-56
+ 2042: -38,-55
+ 2043: -38,-54
+ 2046: -37,-51
+ 2047: -37,-52
+ 2058: -39,-60
+ 2059: -39,-62
+ 2589: -99,14
+ 2590: -99,17
+ 2591: -99,18
+ 2592: -99,19
+ 2593: -88,16
+ 2594: -88,17
+ 2595: -88,18
+ 2596: -88,19
+ 2597: -88,20
+ 2604: -70,16
+ 2605: -70,17
+ 2606: -70,18
+ 2607: -70,19
+ 2608: -70,20
+ 2637: -96,41
+ 2638: -96,39
+ 2639: -96,38
+ 2640: -96,37
+ 2641: -96,36
+ 2642: -96,32
+ 2643: -96,31
+ 2644: -96,29
+ 2645: -96,28
+ 2646: -96,27
+ 2647: -96,24
+ 2648: -96,26
+ 2649: -96,34
+ 2650: -78,24
+ 2651: -78,26
+ 2652: -78,27
+ 2653: -78,28
+ 2654: -78,29
+ 2655: -78,30
+ 2656: -78,32
+ 2657: -78,35
+ 2658: -78,36
+ 2659: -78,37
+ 2660: -78,39
+ 2661: -78,41
+ 2662: -78,42
+ 2713: -99,16
+ 2714: -99,20
+ 2732: -60,41
+ 2733: -60,39
+ 2734: -60,38
+ 2735: -60,36
+ 2736: -60,35
+ 2737: -60,34
+ 2738: -60,32
+ 2739: -60,30
+ 2740: -60,29
+ 2741: -60,28
+ 2742: -60,27
+ 2743: -60,26
+ 2744: -60,24
+ 2753: -99,22
+ 4940: -96,25
+ 4942: -96,30
+ 4943: -96,35
+ 4946: -96,42
+ 4950: -78,25
+ 4951: -78,31
+ 4953: -78,34
+ 4954: -78,38
+ 4963: -60,25
+ 4967: -60,31
+ 4968: -60,37
+ 4971: -60,42
+ 5044: -3,42
- node:
color: '#A4610696'
id: MiniTileWhiteLineW
decals:
- 2120: 62,3
- 2121: 62,4
- 2127: 67,6
+ 2096: 62,3
+ 2097: 62,4
+ 2103: 67,6
- node:
color: '#D381C996'
id: MiniTileWhiteLineW
decals:
- 1424: 19,-10
- 1425: 19,-11
- 1426: 19,-12
- 1436: 23,-13
- 1437: 23,-14
- 1438: 23,-15
- 1439: 23,-17
- 1473: 16,-13
- 1482: 15,-16
- 1490: 38,-22
- 3536: 30,-22
- 3537: 30,-20
- 3656: 55,-23
- 3657: 55,-24
- 3665: 56,-36
- 3666: 56,-34
- 3667: 56,-32
- 3668: 56,-31
- 3671: 53,-28
- 3708: 56,-30
- 3753: 60,-26
- 3759: 60,-27
- 3760: 60,-28
- 3761: 60,-29
- 3762: 60,-30
- 3763: 60,-31
- 3764: 60,-32
- 3765: 60,-33
- 3766: 60,-34
- 3767: 60,-35
- 3768: 60,-36
- 3769: 60,-37
- 3796: 57,-40
- 3892: 33,-16
- 3893: 33,-15
- 3894: 33,-14
- 4398: 57,-41
- 4399: 57,-42
- 4400: 57,-43
- 4404: 60,-45
+ 1423: 19,-10
+ 1424: 19,-11
+ 1425: 19,-12
+ 1435: 23,-13
+ 1436: 23,-14
+ 1437: 23,-15
+ 1438: 23,-17
+ 1472: 16,-13
+ 1481: 15,-16
+ 1489: 38,-22
+ 3494: 30,-22
+ 3495: 30,-20
+ 3614: 55,-23
+ 3615: 55,-24
+ 3623: 56,-36
+ 3624: 56,-34
+ 3625: 56,-32
+ 3626: 56,-31
+ 3629: 53,-28
+ 3666: 56,-30
+ 3711: 60,-26
+ 3717: 60,-27
+ 3718: 60,-28
+ 3719: 60,-29
+ 3720: 60,-30
+ 3721: 60,-31
+ 3722: 60,-32
+ 3723: 60,-33
+ 3724: 60,-34
+ 3725: 60,-35
+ 3726: 60,-36
+ 3727: 60,-37
+ 3754: 57,-40
+ 3850: 33,-16
+ 3851: 33,-15
+ 3852: 33,-14
+ 4356: 57,-41
+ 4357: 57,-42
+ 4358: 57,-43
+ 4362: 60,-45
- node:
cleanable: True
color: '#D4D4D4A7'
id: MiniTileWhiteLineW
decals:
- 2403: 36,60
- 2404: 36,59
+ 2361: 36,60
+ 2362: 36,59
- node:
color: '#DE3A3A96'
id: MiniTileWhiteLineW
decals:
- 1617: 23,9
- 1618: 23,8
- 1619: 23,7
- 1620: 23,6
- 1621: 23,5
- 1860: -23,-3
+ 1616: 23,9
+ 1617: 23,8
+ 1618: 23,7
+ 1619: 23,6
+ 1620: 23,5
+ 1859: -23,-3
- node:
cleanable: True
color: '#DE3A3A96'
id: MiniTileWhiteLineW
decals:
- 2188: 45,-4
- 2193: 50,-6
+ 2164: 45,-4
+ 2169: 50,-6
- node:
color: '#EFB34196'
id: MiniTileWhiteLineW
decals:
- 1577: 2,26
- 1581: 10,24
- 1595: 26,27
- 1635: 19,7
- 1636: 19,5
- 1637: 19,4
- 1638: 19,3
- 1659: 19,30
- 1660: 19,27
- 1922: 13,33
- 1923: 13,34
- 1924: 13,35
- 1934: 26,32
- 1935: 26,33
- 1936: 26,34
- 2230: 26,25
- 2231: 26,24
- 2233: 26,26
- 2383: 19,28
- 5003: -52,24
- 5140: 26,39
- 5141: 26,40
+ 1576: 2,26
+ 1580: 10,24
+ 1594: 26,27
+ 1634: 19,7
+ 1635: 19,5
+ 1636: 19,4
+ 1637: 19,3
+ 1658: 19,30
+ 1659: 19,27
+ 1903: 13,33
+ 1904: 13,34
+ 1905: 13,35
+ 1915: 26,32
+ 1916: 26,33
+ 1917: 26,34
+ 2206: 26,25
+ 2207: 26,24
+ 2209: 26,26
+ 2341: 19,28
+ 4961: -52,24
+ 5088: 26,39
+ 5089: 26,40
- node:
cleanable: True
color: '#EFB34196'
id: MiniTileWhiteLineW
decals:
- 2381: 19,26
- 2382: 19,29
- 2423: 32,62
- 2424: 32,63
- 2425: 32,64
- 2426: 32,65
- 2427: 32,66
+ 2339: 19,26
+ 2340: 19,29
+ 2381: 32,62
+ 2382: 32,63
+ 2383: 32,64
+ 2384: 32,65
+ 2385: 32,66
- node:
color: '#503F66FF'
id: Omni
decals:
- 409: 44.964478,3.9967928
+ 408: 44.964478,3.9967928
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5622: 32,16
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 5623: 32,16
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 5620: 32,16
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 5621: 32,16
- node:
color: '#FFFFFFFF'
id: Remains
decals:
- 3543: -31.431255,-76.12591
+ 3501: -31.431255,-76.12591
- node:
cleanable: True
color: '#FFFFFFFF'
id: Remains
decals:
- 4916: 51,-67
+ 4874: 51,-67
- node:
color: '#FFFFFFFF'
id: Rock01
decals:
43: -52.489395,-7.742259
- 395: -35.904587,32.00624
- 524: 38.361404,-14.035
- 587: 17.093979,-61.63204
- 2455: 54.096867,7.04215
- 3268: -65,-25
- 3329: -40,-53
- 3331: -46,-56
- 3333: -41,-39
- 3373: -45,-66
- 3379: -38,-72
- 3380: -19,-67
- 3541: -27,-76
- 3603: -74.80446,-19.363585
- 3609: -52.526882,-23.105782
- 3610: -42.065277,-30.645542
- 5612: 39.941925,-43.94008
+ 394: -35.904587,32.00624
+ 523: 38.361404,-14.035
+ 586: 17.093979,-61.63204
+ 2413: 54.096867,7.04215
+ 3226: -65,-25
+ 3287: -40,-53
+ 3289: -46,-56
+ 3291: -41,-39
+ 3331: -45,-66
+ 3337: -38,-72
+ 3338: -19,-67
+ 3499: -27,-76
+ 3561: -74.80446,-19.363585
+ 3567: -52.526882,-23.105782
+ 3568: -42.065277,-30.645542
+ 5552: 39.941925,-43.94008
- node:
cleanable: True
color: '#FFFFFFFF'
id: Rock01
decals:
- 4319: -14,43
+ 4277: -14,43
- node:
color: '#FFFFFFFF'
id: Rock02
@@ -8066,11 +8116,11 @@ entities:
72: -39.656174,-10.7174635
73: -40.687424,-11.4205885
74: -40.6093,-10.3112135
- 573: 20.823744,-38.945713
- 586: 9.781478,-61.28829
- 1067: -60.88588,17.177135
- 3330: -41,-53
- 3378: -24,-72
+ 572: 20.823744,-38.945713
+ 585: 9.781478,-61.28829
+ 1066: -60.88588,17.177135
+ 3288: -41,-53
+ 3336: -24,-72
- node:
color: '#FFFFFFFF'
id: Rock03
@@ -8084,16 +8134,16 @@ entities:
79: -48.437424,-10.5768385
80: -48.4843,-11.7955885
81: -53.062424,-10.09477
- 404: -34.06182,9.033297
- 574: 19.995619,-39.883213
- 2454: 53.253117,7.0109
- 2552: -44.85394,31.962513
- 3335: -45,-51
- 3372: -38,-65
- 3377: -24,-71
- 3540: -28,-75
- 3606: -58.50792,-23.183817
- 3612: -44.925186,-27.942406
+ 403: -34.06182,9.033297
+ 573: 19.995619,-39.883213
+ 2412: 53.253117,7.0109
+ 2510: -44.85394,31.962513
+ 3293: -45,-51
+ 3330: -38,-65
+ 3335: -24,-71
+ 3498: -28,-75
+ 3564: -58.50792,-23.183817
+ 3570: -44.925186,-27.942406
- node:
color: '#FFFFFFFF'
id: Rock04
@@ -8103,17 +8153,17 @@ entities:
57: -47.801895,-11.586009
70: -49.6093,-8.483088
71: -49.3593,-7.2487125
- 394: -14.039047,49.780285
- 408: 41.98061,4.9957447
- 589: 8.94667,-58.7273
- 2915: -60.044827,-10.867942
- 3031: -67.01088,-15.572131
- 3269: -49,-24
- 3332: -45,-55
- 3336: -38,-41
- 3337: -41,-73
- 3374: -34,-71
- 3607: -58.007935,-23.527567
+ 393: -14.039047,49.780285
+ 407: 41.98061,4.9957447
+ 588: 8.94667,-58.7273
+ 2873: -60.044827,-10.867942
+ 2989: -67.01088,-15.572131
+ 3227: -49,-24
+ 3290: -45,-55
+ 3294: -38,-41
+ 3295: -41,-73
+ 3332: -34,-71
+ 3565: -58.007935,-23.527567
- node:
color: '#FFFFFFFF'
id: Rock05
@@ -8133,350 +8183,350 @@ entities:
67: -49.4218,-7.9674625
68: -48.4218,-7.6862125
69: -48.51555,-8.545588
- 393: -12.029936,26.95484
- 410: 32.99591,-10.984658
- 559: 19.92542,-31.038776
- 3376: -25,-72
- 3604: -74.17946,-18.754208
- 3608: -53.558136,-22.902658
- 5620: 40.051594,-38.10324
+ 392: -12.029936,26.95484
+ 409: 32.99591,-10.984658
+ 558: 19.92542,-31.038776
+ 3334: -25,-72
+ 3562: -74.17946,-18.754208
+ 3566: -53.558136,-22.902658
+ 5560: 40.051594,-38.10324
- node:
color: '#FFFFFFFF'
id: Rock06
decals:
46: -52.00502,-11.476634
- 525: 40.90828,-17.019373
- 588: 11.085471,-58.085163
- 3270: -45,-28
- 3334: -42,-57
- 3338: -42,-73
- 3375: -33,-71
- 3381: -17,-70
- 3542: -28,-76
- 3605: -74.92947,-18.707333
- 3611: -42.815277,-30.879917
- 5613: 41.88389,-42.572388
- 5614: 54.113747,-45.032722
+ 524: 40.90828,-17.019373
+ 587: 11.085471,-58.085163
+ 3228: -45,-28
+ 3292: -42,-57
+ 3296: -42,-73
+ 3333: -33,-71
+ 3339: -17,-70
+ 3500: -28,-76
+ 3563: -74.92947,-18.707333
+ 3569: -42.815277,-30.879917
+ 5553: 41.88389,-42.572388
+ 5554: 54.113747,-45.032722
- node:
angle: 7.853981633974483 rad
color: '#FFFFFFFF'
id: Rock07
decals:
- 3485: -13.939968,50.953747
+ 3443: -13.939968,50.953747
- node:
color: '#FFFFFFFF'
id: SpaceStationSign1
decals:
- 5196: -4,12
+ 5138: -4,12
- node:
color: '#FFFFFFFF'
id: SpaceStationSign2
decals:
- 5195: -3,12
+ 5584: -3,12
- node:
color: '#FFFFFFFF'
id: SpaceStationSign3
decals:
- 5194: -2,12
+ 5137: -2,12
- node:
color: '#FFFFFFFF'
id: SpaceStationSign4
decals:
- 5193: -1,12
+ 5136: -1,12
- node:
color: '#FFFFFFFF'
id: SpaceStationSign5
decals:
- 5192: 0,12
+ 5135: 0,12
- node:
color: '#FFFFFFFF'
id: SpaceStationSign6
decals:
- 5191: 1,12
+ 5583: 1,12
- node:
color: '#FFFFFFFF'
id: SpaceStationSign7
decals:
- 5190: 2,12
+ 5134: 2,12
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
id: StandClear
decals:
- 2824: -89,11
- 2825: -87,11
- 2826: -81,11
- 2827: -79,11
+ 2782: -89,11
+ 2783: -87,11
+ 2784: -81,11
+ 2785: -79,11
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: StandClear
decals:
- 2820: -74,33
- 2821: -74,40
- 2822: -92,40
- 2823: -92,33
+ 2778: -74,33
+ 2779: -74,40
+ 2780: -92,40
+ 2781: -92,33
- node:
color: '#FFFFFFFF'
id: StandClear
decals:
- 2810: -95,45
- 2818: -77,45
- 2819: -59,45
- 3014: -79,-2
- 3015: -81,-2
- 3016: -87,-2
- 3017: -89,-2
- 5077: -5,58
- 5078: -3,58
- 5079: 3,58
- 5080: 5,58
- 5231: 3,54
- 5232: -3,54
- 5467: 0,46
- 5513: -2,46
+ 2768: -95,45
+ 2776: -77,45
+ 2777: -59,45
+ 2972: -79,-2
+ 2973: -81,-2
+ 2974: -87,-2
+ 2975: -89,-2
+ 5029: -5,58
+ 5030: -3,58
+ 5031: 3,58
+ 5032: 5,58
+ 5171: 3,54
+ 5172: -3,54
+ 5407: 0,46
+ 5453: -2,46
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: StandClear
decals:
- 2800: -62,33
- 2801: -62,40
- 2802: -80,40
- 2803: -80,33
- 2804: -98,33
- 2805: -98,40
- 2806: -101,21
- 2807: -101,23
- 2808: -101,13
- 2809: -101,15
+ 2758: -62,33
+ 2759: -62,40
+ 2760: -80,40
+ 2761: -80,33
+ 2762: -98,33
+ 2763: -98,40
+ 2764: -101,21
+ 2765: -101,23
+ 2766: -101,13
+ 2767: -101,15
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: StandClear
decals:
- 3469: 74,3
- 3470: 74,5
+ 3427: 74,3
+ 3428: 74,5
- node:
color: '#48B9FF8C'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 4661: -6,-54
- 4662: -3,-54
- 4663: 0,-54
- 4678: -11,-50
+ 4619: -6,-54
+ 4620: -3,-54
+ 4621: 0,-54
+ 4636: -11,-50
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 4734: -11,-46
+ 4692: -11,-46
- node:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 5497: 10,54
- 5499: 10,51
- 5571: 7,57
+ 5437: 10,54
+ 5439: 10,51
+ 5511: 7,57
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 5608: 28,17
- node:
color: '#48B9FF8C'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 4679: -8,-52
+ 4637: -8,-52
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 4736: -8,-48
+ 4694: -8,-48
- node:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 5493: 12,50
- 5494: 12,53
- 5572: 9,56
+ 5433: 12,50
+ 5434: 12,53
+ 5512: 9,56
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 5613: 31,14
- node:
cleanable: True
color: '#EFB34196'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 750: 17,25
+ 749: 17,25
- node:
color: '#48B9FF8C'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 4677: -11,-52
+ 4635: -11,-52
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 4735: -11,-48
+ 4693: -11,-48
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 5614: 28,14
- node:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 5502: 10,50
- 5503: 10,53
- 5573: 7,56
+ 5442: 10,50
+ 5443: 10,53
+ 5513: 7,56
- node:
color: '#48B9FF8C'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 4658: -4,-54
- 4659: -1,-54
- 4660: 2,-54
- 4676: -8,-50
+ 4616: -4,-54
+ 4617: -1,-54
+ 4618: 2,-54
+ 4634: -8,-50
- node:
angle: -6.283185307179586 rad
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 4737: -8,-46
+ 4695: -8,-46
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 5615: 31,17
- node:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 5500: 12,54
- 5501: 12,51
- 5574: 9,57
+ 5440: 12,54
+ 5441: 12,51
+ 5514: 9,57
- node:
color: '#FFFFFFFF'
id: WarnBox
decals:
- 4745: 3,-57
- - node:
- cleanable: True
- color: '#FFFFFF85'
- id: WarnCornerNE
- decals:
- 2366: 63,34
+ 4703: 3,-57
- node:
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 4626: 6,-56
+ 4584: 6,-56
+ 5588: 80,39
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 2422: 32,61
- - node:
- cleanable: True
- color: '#FFFFFF85'
- id: WarnCornerNW
- decals:
- 2365: 61,34
+ 2380: 32,61
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
- 4625: 5,-56
+ 4583: 5,-56
+ 5589: 78,39
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
- 2421: 34,61
- - node:
- cleanable: True
- color: '#FFFFFF85'
- id: WarnCornerSE
- decals:
- 2364: 63,32
+ 2379: 34,61
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
decals:
- 4623: 6,-57
- - node:
- cleanable: True
- color: '#FFFFFF85'
- id: WarnCornerSW
- decals:
- 2363: 61,32
+ 4581: 6,-57
+ 5591: 80,37
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
decals:
- 4624: 5,-57
+ 4582: 5,-57
+ 5590: 78,37
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
- 3820: -42,-25
- 4590: 77,-34
- 5465: -3,47
+ 3778: -42,-25
+ 4548: 77,-34
+ 5405: -3,47
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
decals:
- 4589: 81,-34
- 5466: 1,47
+ 4547: 81,-34
+ 5406: 1,47
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 3824: -42,-25
- 4587: 77,-56
- 5241: -3,49
- 5464: -3,45
+ 3782: -42,-25
+ 4545: 77,-56
+ 5181: -3,49
+ 5404: -3,45
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
decals:
- 4588: 81,-56
- 5463: 1,45
- 5563: 1,49
+ 4546: 81,-56
+ 5403: 1,45
+ 5503: 1,49
- node:
color: '#DE3A3AE2'
id: WarnEndGreyscaleN
decals:
- 678: -25,-16
- 679: -26,-16
- 680: -27,-16
- 681: -28,-16
+ 677: -25,-16
+ 678: -26,-16
+ 679: -27,-16
+ 680: -28,-16
- node:
color: '#DE3A3A96'
id: WarnEndGreyscaleS
decals:
- 3289: -12,-18
+ 3247: -12,-18
- node:
color: '#DE3A3AE2'
id: WarnEndGreyscaleS
decals:
- 682: -28,-18
- 683: -27,-18
- 684: -26,-18
- 685: -25,-18
+ 681: -28,-18
+ 682: -27,-18
+ 683: -26,-18
+ 684: -25,-18
- node:
color: '#DE3A3AE2'
id: WarnEndGreyscaleW
decals:
- 686: -30,-16
- 687: -30,-18
+ 685: -30,-16
+ 686: -30,-18
- node:
color: '#F2AF415D'
id: WarnFull
decals:
- 1948: 3,16
+ 1929: 3,16
- node:
color: '#F2AF4160'
id: WarnFull
decals:
- 1952: 2,16
- 1955: 2,15
- 1956: 3,15
- 1957: 4,15
- 1958: 4,16
- 1959: 8,15
- 1960: 9,15
- 1961: 10,15
- 1962: 10,16
- 1963: 8,16
- 1964: 9,16
+ 1933: 2,16
+ 1936: 2,15
+ 1937: 3,15
+ 1938: 4,15
+ 1939: 4,16
+ 1940: 8,15
+ 1941: 9,15
+ 1942: 10,15
+ 1943: 10,16
+ 1944: 8,16
+ 1945: 9,16
- node:
color: '#52B4E996'
id: WarnFullGreyscale
@@ -8495,550 +8545,581 @@ entities:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 3179: -49,-39
- 3180: -49,-43
- 3211: -49,-44
- 3212: -49,-38
- 3229: -49,-46
- 3230: -49,-47
- 3231: -49,-51
- 3232: -49,-52
- 3266: -25,-36
- 3267: -25,-37
- 3467: 74,3
- 3468: 74,5
- 3781: -28,-26
- 3782: -28,-25
- 3783: -28,-24
- 3817: -42,-23
- 3818: -42,-24
- 3825: -42,-26
- 4056: 16,-7
- 4057: 16,-6
- 4058: 16,-5
- 4059: 16,-4
- 4060: 16,-3
+ 3137: -49,-39
+ 3138: -49,-43
+ 3169: -49,-44
+ 3170: -49,-38
+ 3187: -49,-46
+ 3188: -49,-47
+ 3189: -49,-51
+ 3190: -49,-52
+ 3224: -25,-36
+ 3225: -25,-37
+ 3425: 74,3
+ 3426: 74,5
+ 3739: -28,-26
+ 3740: -28,-25
+ 3741: -28,-24
+ 3775: -42,-23
+ 3776: -42,-24
+ 3783: -42,-26
+ 4014: 16,-7
+ 4015: 16,-6
+ 4016: 16,-5
+ 4017: 16,-4
+ 4018: 16,-3
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 2380: 46,37
- 2416: 41,70
- 2417: 41,69
- 2418: 41,68
- 2419: 41,67
+ 2374: 41,70
+ 2375: 41,69
+ 2376: 41,68
+ 2377: 41,67
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 356: -2,37
- 357: -1,37
- 358: 0,37
- 540: -20,-23
- 541: -17,-23
- 542: -14,-23
- 543: -11,-23
- 1025: 1,-56
- 1858: -21,-3
- 1859: -22,-3
- 1861: -23,-3
- 3629: -34,-29
- 3630: -31,-25
- 3631: -32,-25
- 3632: -33,-25
- 3633: -34,-25
- 3675: -36,-25
- 3676: -37,-25
- 3677: -38,-25
- 3678: -36,-29
- 3679: -37,-29
- 3680: -38,-29
- 3736: -33,-29
- 3737: -32,-29
- 3791: -30,-22
- 3792: -29,-22
- 3800: -31,-29
- 3821: -41,-25
- 3822: -40,-25
- 3871: -30,-29
- 3872: -29,-29
- 3873: -28,-29
- 3874: -27,-29
- 4037: -39,-25
- 4038: -35,-25
- 4039: -35,-29
- 4052: 11,-6
- 4053: 13,-6
- 4054: 14,-6
- 4055: 15,-6
- 4584: 78,-56
- 4585: 79,-56
- 4586: 80,-56
- 4594: 78,-33
- 4595: 79,-33
- 4596: 80,-33
- 4857: -27,-8
- 4858: -28,-8
- 4859: -29,-8
- 4860: -30,-8
- 5239: 0,49
- 5240: -2,49
- 5242: -3,56
- 5243: -5,56
- 5244: 3,56
- 5245: 5,56
- 5372: -1,49
- 5495: 0,45
- 5496: -1,45
- 5498: -2,45
+ 355: -2,37
+ 356: -1,37
+ 357: 0,37
+ 539: -20,-23
+ 540: -17,-23
+ 541: -14,-23
+ 542: -11,-23
+ 1024: 1,-56
+ 1857: -21,-3
+ 1858: -22,-3
+ 1860: -23,-3
+ 3587: -34,-29
+ 3588: -31,-25
+ 3589: -32,-25
+ 3590: -33,-25
+ 3591: -34,-25
+ 3633: -36,-25
+ 3634: -37,-25
+ 3635: -38,-25
+ 3636: -36,-29
+ 3637: -37,-29
+ 3638: -38,-29
+ 3694: -33,-29
+ 3695: -32,-29
+ 3749: -30,-22
+ 3750: -29,-22
+ 3758: -31,-29
+ 3779: -41,-25
+ 3780: -40,-25
+ 3829: -30,-29
+ 3830: -29,-29
+ 3831: -28,-29
+ 3832: -27,-29
+ 3995: -39,-25
+ 3996: -35,-25
+ 3997: -35,-29
+ 4010: 11,-6
+ 4011: 13,-6
+ 4012: 14,-6
+ 4013: 15,-6
+ 4542: 78,-56
+ 4543: 79,-56
+ 4544: 80,-56
+ 4552: 78,-33
+ 4553: 79,-33
+ 4554: 80,-33
+ 4815: -27,-8
+ 4816: -28,-8
+ 4817: -29,-8
+ 4818: -30,-8
+ 5179: 0,49
+ 5180: -2,49
+ 5182: -3,56
+ 5183: -5,56
+ 5184: 3,56
+ 5185: 5,56
+ 5312: -1,49
+ 5435: 0,45
+ 5436: -1,45
+ 5438: -2,45
- node:
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 1024: 2,-56
- 3213: -50,-40
- 3214: -50,-41
- 3215: -50,-42
- 3216: -50,-48
- 3217: -50,-49
- 3218: -50,-50
- 3813: -42,-23
- 3814: -42,-24
- 3815: -42,-25
- 3816: -42,-26
- 4480: 16,-5
- 4481: 16,-4
- 4482: 16,-3
+ 1023: 2,-56
+ 3171: -50,-40
+ 3172: -50,-41
+ 3173: -50,-42
+ 3174: -50,-48
+ 3175: -50,-49
+ 3176: -50,-50
+ 3771: -42,-23
+ 3772: -42,-24
+ 3773: -42,-25
+ 3774: -42,-26
+ 4438: 16,-5
+ 4439: 16,-4
+ 4440: 16,-3
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 2412: 37,70
- 2413: 37,69
- 2414: 37,68
- 2415: 37,67
+ 2370: 37,70
+ 2371: 37,69
+ 2372: 37,68
+ 2373: 37,67
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 354: -1,35
- 355: 0,35
- 1174: -48,30
- 1175: -49,35
- 1984: -2,35
- 2385: 38,36
- 2386: 39,36
- 2387: 40,36
- 3681: -38,-29
- 3682: -37,-29
- 3684: -36,-29
- 3686: -36,-25
- 3687: -37,-25
- 3689: -38,-25
- 3726: -34,-29
- 3729: -33,-29
- 3730: -32,-29
- 3731: -32,-25
- 3732: -33,-25
- 3734: -34,-25
- 3793: -29,-24
- 3794: -30,-24
- 3819: -40,-25
- 3823: -41,-25
- 4034: -39,-25
- 4035: -35,-25
- 4036: -35,-29
- 4041: -19,-17
- 4042: 11,-4
- 4043: 12,-4
- 4483: 13,-4
- 4581: 78,-34
- 4582: 79,-34
- 4583: 80,-34
- 4591: 78,-57
- 4592: 79,-57
- 4593: 80,-57
- 4853: -30,-8
- 4854: -29,-8
- 4855: -28,-8
- 4856: -27,-8
- 5081: -5,58
- 5082: -3,58
- 5083: 3,58
- 5084: 5,58
- 5096: -2,43
- 5097: -1,43
- 5098: 0,43
- 5149: 27,41
- 5460: 0,47
- 5461: -1,47
- 5462: -2,47
+ 353: -1,35
+ 354: 0,35
+ 1173: -48,30
+ 1174: -49,35
+ 1960: -2,35
+ 2343: 38,36
+ 2344: 39,36
+ 2345: 40,36
+ 3639: -38,-29
+ 3640: -37,-29
+ 3642: -36,-29
+ 3644: -36,-25
+ 3645: -37,-25
+ 3647: -38,-25
+ 3684: -34,-29
+ 3687: -33,-29
+ 3688: -32,-29
+ 3689: -32,-25
+ 3690: -33,-25
+ 3692: -34,-25
+ 3751: -29,-24
+ 3752: -30,-24
+ 3777: -40,-25
+ 3781: -41,-25
+ 3992: -39,-25
+ 3993: -35,-25
+ 3994: -35,-29
+ 3999: -19,-17
+ 4000: 11,-4
+ 4001: 12,-4
+ 4441: 13,-4
+ 4539: 78,-34
+ 4540: 79,-34
+ 4541: 80,-34
+ 4549: 78,-57
+ 4550: 79,-57
+ 4551: 80,-57
+ 4811: -30,-8
+ 4812: -29,-8
+ 4813: -28,-8
+ 4814: -27,-8
+ 5033: -5,58
+ 5034: -3,58
+ 5035: 3,58
+ 5036: 5,58
+ 5048: -2,43
+ 5049: -1,43
+ 5050: 0,43
+ 5097: 27,41
+ 5400: 0,47
+ 5401: -1,47
+ 5402: -2,47
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 2420: 33,66
- 2430: 32,66
- 2434: 34,66
+ 2378: 33,66
+ 2388: 32,66
+ 2392: 34,66
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
decals:
- 3486: -7,37
- 3494: -7,37
- 3502: -5,37
- 3503: -4,35
- 3518: -7,30
- 4142: -14,32
- 4183: -14,34
- 4340: -14,19
- 4385: -14,41
- 4392: -16,50
- 4862: -28,-32
- 4876: -28,-36
+ 3444: -7,37
+ 3452: -7,37
+ 3460: -5,37
+ 3461: -4,35
+ 3476: -7,30
+ 4100: -14,32
+ 4141: -14,34
+ 4298: -14,19
+ 4343: -14,41
+ 4350: -16,50
+ 4820: -28,-32
+ 4834: -28,-36
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
- 3487: -9,37
- 3501: -6,37
- 3519: -9,30
- 4185: -19,34
- 4324: -23,32
- 4346: -19,19
- 4364: -19,41
- 4388: -19,50
- 4861: -30,-32
- 4869: -32,-36
+ 3445: -9,37
+ 3459: -6,37
+ 3477: -9,30
+ 4143: -19,34
+ 4282: -23,32
+ 4304: -19,19
+ 4322: -19,41
+ 4346: -19,50
+ 4819: -30,-32
+ 4827: -32,-36
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
decals:
- 3493: -7,32
- 3508: -4,32
- 3517: -7,29
- 4341: -14,18
- 4342: -15,17
- 4343: -16,16
- 4344: -17,15
- 4365: -14,39
- 4389: -16,48
- 4864: -28,-34
- 4870: -28,-38
+ 3451: -7,32
+ 3466: -4,32
+ 3475: -7,29
+ 4299: -14,18
+ 4300: -15,17
+ 4301: -16,16
+ 4302: -17,15
+ 4323: -14,39
+ 4347: -16,48
+ 4822: -28,-34
+ 4828: -28,-38
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
decals:
- 3492: -9,32
- 3509: -6,32
- 3520: -9,29
- 4333: -23,25
- 4345: -19,15
- 4373: -19,39
- 4396: -19,48
- 4865: -30,-34
- 4871: -32,-38
+ 3450: -9,32
+ 3467: -6,32
+ 3478: -9,29
+ 4291: -23,25
+ 4303: -19,15
+ 4331: -19,39
+ 4354: -19,48
+ 4823: -30,-34
+ 4829: -32,-38
- node:
cleanable: True
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
decals:
- 2461: 22,34
+ 2419: 22,34
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNe
decals:
- 3504: -5,35
+ 3462: -5,35
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNw
decals:
- 4191: -19,32
+ 4149: -19,32
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSe
decals:
- 4355: -17,16
- 4356: -16,17
- 4357: -15,18
+ 4313: -17,16
+ 4314: -16,17
+ 4315: -15,18
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
decals:
- 3495: -7,36
- 3496: -7,35
- 3497: -7,34
- 3498: -7,33
- 3505: -5,36
- 3506: -4,34
- 3507: -4,33
- 4137: -14,26
- 4138: -14,27
- 4139: -14,28
- 4140: -14,30
- 4141: -14,31
- 4184: -14,33
- 4386: -14,40
- 4393: -16,49
- 4867: -28,-33
- 4877: -28,-37
+ 3453: -7,36
+ 3454: -7,35
+ 3455: -7,34
+ 3456: -7,33
+ 3463: -5,36
+ 3464: -4,34
+ 3465: -4,33
+ 4095: -14,26
+ 4096: -14,27
+ 4097: -14,28
+ 4098: -14,30
+ 4099: -14,31
+ 4142: -14,33
+ 4344: -14,40
+ 4351: -16,49
+ 4825: -28,-33
+ 4835: -28,-37
+ 5569: -48,-1
+ 5570: -48,0
+ 5571: -48,1
+ 5572: -37,-1
+ 5573: -37,0
+ 5574: -37,1
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
decals:
- 3500: -8,37
- 3515: -4,31
- 3516: -5,31
- 3521: -8,30
- 4143: -15,32
- 4144: -16,32
- 4145: -17,32
- 4146: -18,32
- 4176: -19,32
- 4179: -18,34
- 4180: -17,34
- 4181: -16,34
- 4182: -15,34
- 4322: -21,32
- 4323: -22,32
- 4347: -18,19
- 4348: -17,19
- 4349: -16,19
- 4350: -15,19
- 4378: -18,41
- 4380: -17,41
- 4381: -16,41
- 4383: -15,41
- 4390: -18,50
- 4391: -17,50
- 4863: -29,-32
- 4873: -31,-36
- 4874: -30,-36
- 4875: -29,-36
+ 3458: -8,37
+ 3473: -4,31
+ 3474: -5,31
+ 3479: -8,30
+ 4101: -15,32
+ 4102: -16,32
+ 4103: -17,32
+ 4104: -18,32
+ 4134: -19,32
+ 4137: -18,34
+ 4138: -17,34
+ 4139: -16,34
+ 4140: -15,34
+ 4280: -21,32
+ 4281: -22,32
+ 4305: -18,19
+ 4306: -17,19
+ 4307: -16,19
+ 4308: -15,19
+ 4336: -18,41
+ 4338: -17,41
+ 4339: -16,41
+ 4341: -15,41
+ 4348: -18,50
+ 4349: -17,50
+ 4821: -29,-32
+ 4831: -31,-36
+ 4832: -30,-36
+ 4833: -29,-36
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
decals:
- 3499: -8,32
- 3514: -5,32
- 3522: -8,29
- 4134: -18,25
- 4135: -17,25
- 4136: -16,25
- 4149: -19,25
- 4334: -22,25
- 4335: -21,25
- 4336: -20,25
- 4354: -18,15
- 4366: -15,39
- 4367: -16,39
- 4369: -17,39
- 4370: -18,39
- 4394: -17,48
- 4395: -18,48
- 4868: -29,-34
- 4878: -31,-38
- 4879: -30,-38
- 4880: -29,-38
+ 3457: -8,32
+ 3472: -5,32
+ 3480: -8,29
+ 4092: -18,25
+ 4093: -17,25
+ 4094: -16,25
+ 4107: -19,25
+ 4292: -22,25
+ 4293: -21,25
+ 4294: -20,25
+ 4312: -18,15
+ 4324: -15,39
+ 4325: -16,39
+ 4327: -17,39
+ 4328: -18,39
+ 4352: -17,48
+ 4353: -18,48
+ 4826: -29,-34
+ 4836: -31,-38
+ 4837: -30,-38
+ 4838: -29,-38
- node:
cleanable: True
color: '#FFFFFFFF'
id: WoodTrimThinLineS
decals:
- 2457: 23,34
- 2458: 24,34
+ 2415: 23,34
+ 2416: 24,34
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
decals:
- 3488: -9,36
- 3489: -9,35
- 3490: -9,34
- 3491: -9,33
- 3510: -6,33
- 3511: -6,34
- 3512: -6,34
- 3513: -6,36
- 4186: -19,33
- 4327: -23,31
- 4328: -23,30
- 4329: -23,29
- 4330: -23,28
- 4331: -23,27
- 4332: -23,26
- 4351: -19,18
- 4352: -19,17
- 4353: -19,16
- 4376: -19,40
- 4397: -19,49
- 4866: -30,-33
- 4872: -32,-37
+ 3446: -9,36
+ 3447: -9,35
+ 3448: -9,34
+ 3449: -9,33
+ 3468: -6,33
+ 3469: -6,34
+ 3470: -6,34
+ 3471: -6,36
+ 4144: -19,33
+ 4285: -23,31
+ 4286: -23,30
+ 4287: -23,29
+ 4288: -23,28
+ 4289: -23,27
+ 4290: -23,26
+ 4309: -19,18
+ 4310: -19,17
+ 4311: -19,16
+ 4334: -19,40
+ 4355: -19,49
+ 4824: -30,-33
+ 4830: -32,-37
+ 5566: -47,0
+ 5567: -47,1
+ 5568: -47,-1
+ 5575: -36,-1
+ 5576: -36,0
+ 5577: -36,1
- node:
cleanable: True
color: '#FFFFFFFF'
id: WoodTrimThinLineW
decals:
- 2459: 22,36
- 2460: 22,35
+ 2417: 22,36
+ 2418: 22,35
- node:
color: '#FFFFFFFF'
id: amyjon
decals:
- 241: 43.48394,-11.968338
+ 240: 43.48394,-11.968338
- node:
color: '#4DAC00BC'
id: biohazard
decals:
- 4915: 26,-58
+ 4873: 26,-58
- node:
color: '#FFFFFFFF'
id: body
decals:
- 3788: -39.332672,42.061283
+ 3746: -39.332672,42.061283
- node:
cleanable: True
color: '#FFFFFFFF'
id: body
decals:
- 5164: 3.054275,-57.830116
+ 5109: 3.054275,-57.830116
- node:
color: '#FFFFFFFF'
id: bushsnowa1
decals:
- 4752: -11.296503,-33.98097
+ 4710: -11.296503,-33.98097
- node:
color: '#FFFFFFFF'
id: bushsnowa2
decals:
- 4754: -15.937129,-32.230972
+ 4712: -15.937129,-32.230972
- node:
cleanable: True
color: '#DE3A3A96'
id: danger
decals:
- 4337: -17.35239,43.61673
+ 4295: -17.35239,43.61673
- node:
color: '#FFFFFFFF'
id: engie
decals:
- 1014: 25.998928,-35.624195
+ 1013: 25.998928,-35.624195
+ - node:
+ color: '#FFFFFFFF'
+ id: f
+ decals:
+ 5578: -17,-20
- node:
angle: 0.3490658503988659 rad
color: '#8BBB00FF'
id: grasssnow02
decals:
- 3958: 49.405266,-36.535553
+ 3916: 49.405266,-36.535553
- node:
angle: 0.8726646259971648 rad
color: '#8BBB00FF'
id: grasssnow02
decals:
- 3961: 50.22594,-32.207222
+ 3919: 50.22594,-32.207222
- node:
angle: 1.2217304763960306 rad
color: '#8BBB00FF'
id: grasssnow02
decals:
- 3959: 50.867016,-36.68147
+ 3917: 50.867016,-36.68147
- node:
angle: 4.71238898038469 rad
color: '#8BBB00FF'
id: grasssnow02
decals:
- 3960: 49.9922,-35.754673
+ 3918: 49.9922,-35.754673
- node:
color: '#69D71F65'
id: grasssnow05
decals:
- 2131: 32,-26
- 2132: 32,-27
- 2133: 40,-28
- 2134: 41,-25
- 2135: 43,-27
- 2136: 33,-25
- 2137: 39,-28
- 2138: 36,-27
+ 2107: 32,-26
+ 2108: 32,-27
+ 2109: 40,-28
+ 2110: 41,-25
+ 2111: 43,-27
+ 2112: 33,-25
+ 2113: 39,-28
+ 2114: 36,-27
- node:
angle: 1.5707963267948966 rad
color: '#85C71F93'
id: grasssnow05
decals:
- 2197: 41,-28
- 2198: 42,-26
+ 2173: 41,-28
+ 2174: 42,-26
- node:
color: '#7F5C462E'
id: grasssnowb1
decals:
- 766: 21,-60
+ 765: 21,-60
- node:
color: '#FFFFFFFF'
id: guy
decals:
- 4305: -27.994724,45.909565
+ 4263: -27.994724,45.909565
- node:
color: '#760000B7'
id: line
decals:
- 4908: 34.82156,-66.43533
+ 4866: 34.82156,-66.43533
- node:
color: '#760000FF'
id: n
decals:
- 4906: 35.09548,-65.45207
+ 4864: 35.09548,-65.45207
- node:
color: '#760000FF'
id: o
decals:
- 4907: 35.486103,-65.530205
+ 4865: 35.486103,-65.530205
+ - node:
+ color: '#FF0000FF'
+ id: p
+ decals:
+ 5581: -47.60139,-22.82674
- node:
color: '#FFFFFFFF'
id: pawprint
decals:
- 5624: -87.073845,-20.354267
- 5625: -87.99572,-20.323017
+ 5564: -87.073845,-20.354267
+ 5565: -87.99572,-20.323017
+ - node:
+ color: '#FF0000FF'
+ id: r
+ decals:
+ 5579: -48.210766,-22.88924
- node:
color: '#B02E26FF'
id: rune1
decals:
- 3539: -34,-76
+ 3497: -34,-76
- node:
color: '#B02E26FF'
id: rune3
decals:
- 3544: -32,-76
+ 3502: -32,-76
- node:
color: '#B02E26FF'
id: rune5
decals:
- 3538: -34,-78
+ 3496: -34,-78
- node:
color: '#B02E26FF'
id: rune6
decals:
- 3545: -32,-78
+ 3503: -32,-78
+ - node:
+ color: '#FF0000FF'
+ id: shortline
+ decals:
+ 5580: -47.835766,-22.88924
- node:
color: '#2E0000FF'
id: skull
decals:
- 3484: -30.992306,49.94457
+ 3442: -30.992306,49.94457
- node:
color: '#7600008B'
id: slash
decals:
- 4909: 35.235664,-66.309746
+ 4867: 35.235664,-66.309746
- node:
color: '#85FF98FF'
id: snake
decals:
- 1015: -3.6144464,-62.888363
+ 1014: -3.6144464,-62.888363
- node:
color: '#760000BD'
id: splatter
decals:
- 4910: 34.313694,-65.55157
+ 4868: 34.313694,-65.55157
- node:
color: '#79150096'
id: splatter
@@ -9058,13 +9139,13 @@ entities:
color: '#951710B7'
id: splatter
decals:
- 4971: 43,-68
+ 4929: 43,-68
- node:
color: '#98030093'
id: splatter
decals:
- 3789: -39.0983,41.20191
- 3790: -39.535797,42.530033
+ 3747: -39.0983,41.20191
+ 3748: -39.535797,42.530033
- node:
color: '#A70600FF'
id: splatter
@@ -9075,36 +9156,36 @@ entities:
color: '#B02E26FF'
id: splatter
decals:
- 3389: -43.468628,-55.096706
+ 3347: -43.468628,-55.096706
- node:
color: '#BF0000FF'
id: splatter
decals:
- 426: 12,-54
+ 425: 12,-54
- node:
color: '#FFFFFFFF'
id: splatter
decals:
- 970: 47,-13
- 971: 49,-13
- 972: 48,-14
+ 969: 47,-13
+ 970: 49,-13
+ 971: 48,-14
- node:
cleanable: True
color: '#FFFFFFFF'
id: stickman
decals:
- 5189: -36.07524,-36.447598
+ 5133: -36.07524,-36.447598
- node:
color: '#FFFFFFFF'
id: u
decals:
- 5621: -88.05822,-19.916767
- 5622: -87.105095,-19.948017
+ 5561: -88.05822,-19.916767
+ 5562: -87.105095,-19.948017
- node:
color: '#FFFFFFFF'
id: w
decals:
- 5623: -87.636345,-19.99489
+ 5563: -87.636345,-19.99489
type: DecalGrid
- version: 2
data:
@@ -9250,8 +9331,7 @@ entities:
7,1:
0: 65535
7,2:
- 0: 30719
- 1: 34816
+ 0: 65535
7,3:
0: 65535
8,0:
@@ -9259,8 +9339,7 @@ entities:
8,1:
0: 65535
8,2:
- 0: 255
- 1: 65280
+ 0: 65535
8,3:
0: 65535
9,0:
@@ -9268,8 +9347,7 @@ entities:
9,1:
0: 65535
9,2:
- 0: 39423
- 1: 26112
+ 0: 65535
9,3:
0: 65535
10,0:
@@ -9277,10 +9355,10 @@ entities:
10,1:
0: 65535
10,2:
- 0: 32767
- 2: 32768
- 10,3:
0: 65535
+ 10,3:
+ 0: 32767
+ 1: 32768
11,0:
0: 65535
11,1:
@@ -9288,7 +9366,8 @@ entities:
11,2:
0: 65535
11,3:
- 0: 65535
+ 0: 24575
+ 1: 40960
0,-8:
0: 65535
0,-7:
@@ -9348,8 +9427,7 @@ entities:
-1,-6:
0: 65535
-1,-5:
- 0: 65279
- 3: 256
+ 0: 65535
4,-4:
0: 65535
4,-3:
@@ -9363,19 +9441,19 @@ entities:
5,-3:
0: 65535
5,-2:
- 0: 63359
+ 0: 65407
5,-1:
- 0: 65399
+ 0: 65407
6,-4:
0: 65535
6,-3:
0: 65535
6,-1:
- 0: 65382
+ 0: 65535
7,-4:
0: 65535
7,-1:
- 0: 65518
+ 0: 65519
8,-4:
0: 65535
8,-1:
@@ -9561,8 +9639,7 @@ entities:
7,-5:
0: 65535
-8,-7:
- 0: 65531
- 4: 4
+ 0: 65535
-8,-6:
0: 65535
-8,-5:
@@ -9634,27 +9711,21 @@ entities:
9,7:
0: 65535
10,4:
- 0: 63351
- 1: 2184
+ 0: 65399
+ 1: 136
10,5:
- 0: 63479
- 1: 2056
+ 0: 65535
10,6:
- 0: 63479
- 5: 8
- 6: 2048
+ 0: 65535
10,7:
0: 65535
11,4:
- 1: 273
- 0: 65262
+ 0: 65365
+ 1: 170
11,5:
- 1: 257
- 0: 65278
+ 0: 65535
11,6:
- 5: 1
- 6: 256
- 0: 65278
+ 0: 65535
11,7:
0: 65535
4,8:
@@ -9772,8 +9843,7 @@ entities:
13,1:
0: 65535
13,2:
- 0: 65471
- 3: 64
+ 0: 65535
14,0:
0: 65535
14,1:
@@ -9831,8 +9901,7 @@ entities:
17,-2:
0: 65535
17,-1:
- 0: 57343
- 3: 8192
+ 0: 65535
18,-2:
0: 65535
18,-1:
@@ -9842,11 +9911,9 @@ entities:
-4,-2:
0: 65535
-4,1:
- 0: 65023
- 3: 512
+ 0: 65535
-4,2:
- 0: 65533
- 7: 2
+ 0: 65535
-4,3:
0: 65535
3,-2:
@@ -9860,11 +9927,11 @@ entities:
1,-7:
0: 65535
6,-2:
- 0: 63087
+ 0: 65535
7,-3:
0: 65535
7,-2:
- 0: 65263
+ 0: 65519
8,-3:
0: 65535
8,-2:
@@ -9894,8 +9961,7 @@ entities:
1,7:
0: 65535
2,4:
- 0: 57343
- 8: 8192
+ 0: 65535
2,7:
0: 65535
-4,4:
@@ -9923,8 +9989,7 @@ entities:
-12,-4:
0: 65535
-12,-3:
- 3: 1
- 0: 65534
+ 0: 65535
-12,-2:
0: 65535
-12,-1:
@@ -10066,11 +10131,9 @@ entities:
6,-16:
0: 65535
6,-15:
- 0: 30719
- 3: 34816
+ 0: 65535
6,-14:
- 0: 13303
- 3: 8
+ 0: 13311
6,-13:
0: 65523
7,-15:
@@ -10084,8 +10147,7 @@ entities:
0,-15:
0: 65535
1,-16:
- 0: 65519
- 9: 16
+ 0: 65535
1,-15:
0: 65535
2,-16:
@@ -10121,8 +10183,7 @@ entities:
-8,-10:
0: 65535
-8,-9:
- 0: 61439
- 8: 4096
+ 0: 65535
-7,-12:
0: 65535
-7,-9:
@@ -10140,17 +10201,16 @@ entities:
12,2:
0: 65535
12,3:
- 0: 65535
+ 0: 24575
+ 1: 40960
12,-4:
- 0: 49137
- 3: 16384
+ 0: 65521
12,-3:
0: 65535
12,-2:
0: 65535
13,-3:
- 0: 57343
- 3: 8192
+ 0: 65535
19,-1:
0: 65535
19,0:
@@ -10202,8 +10262,7 @@ entities:
-10,-11:
0: 65535
-10,-10:
- 0: 61951
- 8: 3584
+ 0: 65535
-10,-9:
0: 65535
-9,-12:
@@ -10211,8 +10270,7 @@ entities:
-9,-11:
0: 65535
-9,-10:
- 0: 48383
- 8: 17152
+ 0: 65535
-9,-9:
0: 65535
-12,-16:
@@ -10264,11 +10322,9 @@ entities:
-9,-8:
0: 65535
-9,-7:
- 0: 65527
- 3: 8
+ 0: 65535
-9,-6:
- 0: 65023
- 10: 512
+ 0: 65535
-9,-5:
0: 65535
-14,-4:
@@ -10282,11 +10338,9 @@ entities:
-13,-4:
0: 65535
-13,-3:
- 0: 65527
- 3: 8
+ 0: 65535
-13,-2:
- 0: 65391
- 3: 144
+ 0: 65535
-13,-1:
0: 65535
-14,0:
@@ -10336,8 +10390,7 @@ entities:
2,8:
0: 65535
2,9:
- 0: 65279
- 11: 256
+ 0: 65535
3,8:
0: 65535
3,9:
@@ -10348,10 +10401,10 @@ entities:
0: 65535
-8,6:
0: 61439
- 12: 4096
+ 2: 4096
-8,7:
0: 65262
- 12: 273
+ 2: 273
-7,4:
0: 65535
-7,5:
@@ -10407,81 +10460,113 @@ entities:
11,-9:
0: 65535
12,4:
- 0: 65535
+ 0: 65365
+ 1: 170
12,5:
0: 64447
+ 1: 1088
12,6:
0: 48127
+ 1: 17408
12,7:
0: 49147
+ 1: 16388
13,4:
- 0: 65535
+ 0: 65501
+ 1: 34
13,6:
0: 17656
+ 1: 47879
13,7:
0: 22004
+ 1: 43531
14,4:
0: 65535
14,5:
0: 37151
+ 1: 28384
14,6:
0: 17663
+ 1: 2816
14,7:
0: 17652
15,4:
0: 65535
15,6:
0: 17662
+ 1: 35585
15,7:
0: 17652
+ 1: 34824
12,8:
0: 48123
+ 1: 1028
12,9:
0: 32767
12,11:
0: 65395
12,10:
0: 48119
+ 1: 8
13,8:
0: 22005
+ 1: 43530
13,9:
0: 22005
+ 1: 43530
13,10:
0: 29941
+ 1: 10
13,11:
0: 65365
14,8:
0: 17652
+ 1: 47872
14,9:
0: 17652
+ 1: 47883
14,10:
0: 22004
+ 1: 43531
14,11:
0: 65405
+ 1: 130
15,8:
0: 20222
+ 1: 45312
15,9:
0: 17652
+ 1: 47883
15,10:
0: 62196
+ 1: 3339
15,11:
0: 65297
+ 1: 238
16,8:
0: 17652
+ 1: 13059
16,9:
0: 17652
+ 1: 15107
16,10:
0: 55284
+ 1: 8195
16,11:
0: 65365
+ 1: 34
17,8:
0: 17652
+ 1: 34824
17,9:
0: 17652
+ 1: 35592
17,10:
0: 22004
+ 1: 34824
17,11:
0: 65476
+ 1: 8
18,8:
0: 65535
18,10:
@@ -10500,18 +10585,24 @@ entities:
0: 65535
16,5:
0: 63903
+ 1: 1632
16,6:
0: 17659
+ 1: 13060
16,7:
0: 17652
+ 1: 13059
17,4:
0: 65535
17,6:
0: 17655
+ 1: 8
17,7:
0: 17652
+ 1: 34816
17,5:
0: 29903
+ 1: 35632
18,5:
0: 65535
18,6:
@@ -10530,10 +10621,9 @@ entities:
0: 65535
-9,6:
0: 4095
- 12: 61440
+ 2: 61440
-9,7:
- 12: 2047
- 13: 2048
+ 2: 4095
0: 61440
-10,8:
0: 65535
@@ -10548,8 +10638,7 @@ entities:
-9,3:
0: 65535
4,10:
- 0: 63999
- 1: 512
+ 0: 64511
4,11:
0: 35225
5,10:
@@ -10606,8 +10695,7 @@ entities:
-13,3:
0: 65535
-10,-19:
- 0: 49138
- 3: 16384
+ 0: 65522
-10,-18:
0: 65535
-9,-19:
@@ -10663,15 +10751,13 @@ entities:
2,11:
0: 65535
3,10:
- 0: 63487
- 1: 2048
+ 0: 65535
3,11:
0: 65407
-8,10:
0: 65535
-8,11:
- 0: 65531
- 3: 4
+ 0: 65535
-7,10:
0: 65535
-7,11:
@@ -10687,8 +10773,7 @@ entities:
-15,-6:
0: 65535
-15,-5:
- 0: 61430
- 14: 4096
+ 0: 65526
-14,-6:
0: 65535
-13,-6:
@@ -10715,8 +10800,10 @@ entities:
0: 64767
13,5:
0: 31
+ 1: 65504
15,5:
0: 29231
+ 1: 36304
19,11:
0: 65535
18,4:
@@ -10764,11 +10851,9 @@ entities:
-11,11:
0: 36317
-10,9:
- 0: 65023
- 8: 512
+ 0: 65535
-10,10:
- 0: 65533
- 3: 2
+ 0: 65535
-10,11:
0: 61439
-9,9:
@@ -10778,23 +10863,19 @@ entities:
-9,10:
0: 65535
-8,12:
- 0: 49151
- 3: 16384
+ 0: 65535
-8,13:
- 0: 3967
- 3: 128
+ 0: 4095
-7,12:
0: 65535
-7,13:
- 0: 3967
- 3: 128
+ 0: 4095
-6,12:
0: 65535
-6,13:
0: 8191
-5,12:
- 0: 63487
- 8: 2048
+ 0: 65535
-5,13:
0: 4095
0,12:
@@ -10808,20 +10889,15 @@ entities:
1,13:
0: 65535
1,14:
- 0: 30719
- 1: 34816
+ 0: 65535
2,12:
- 0: 30591
- 1: 34944
+ 0: 65535
2,13:
- 0: 63351
- 1: 2184
+ 0: 65535
3,12:
- 0: 8743
- 1: 24024
+ 0: 32767
3,13:
- 0: 65058
- 1: 341
+ 0: 65399
-4,12:
0: 65535
-4,13:
@@ -10927,8 +11003,7 @@ entities:
8,-14:
0: 61164
9,-15:
- 0: 55295
- 8: 8192
+ 0: 63487
9,-13:
0: 63214
9,-16:
@@ -10982,8 +11057,7 @@ entities:
12,-15:
0: 65535
12,-14:
- 0: 30079
- 10: 512
+ 0: 30591
12,-17:
0: 65535
-12,12:
@@ -11022,21 +11096,27 @@ entities:
0: 3171
12,12:
0: 20479
+ 1: 32768
13,12:
0: 8191
+ 1: 24576
14,12:
- 0: 16383
- 1: 32768
+ 0: 49151
15,12:
0: 49151
+ 1: 16384
16,12:
0: 20479
+ 1: 45056
17,12:
0: 4095
+ 1: 61440
18,12:
0: 16383
+ 1: 49152
19,12:
0: 20479
+ 1: 45056
16,-8:
0: 65535
16,-7:
@@ -11074,7 +11154,8 @@ entities:
10,11:
0: 4369
13,3:
- 0: 65535
+ 0: 57343
+ 1: 8192
14,3:
0: 65535
15,3:
@@ -11188,16 +11269,18 @@ entities:
14,15:
0: 65535
15,13:
- 0: 49083
- 1: 64
+ 0: 49147
+ 1: 16388
15,14:
0: 49087
15,15:
0: 48063
16,13:
0: 4367
+ 1: 61168
16,14:
0: 4096
+ 1: 27648
16,15:
0: 1
10,16:
@@ -11336,14 +11419,13 @@ entities:
0: 65535
17,3:
0: 19580
+ 1: 40960
-5,14:
0: 15
2,14:
- 0: 244
- 1: 65291
+ 0: 65535
3,14:
- 0: 50
- 1: 1797
+ 0: 1847
-4,14:
0: 143
-3,14:
@@ -11402,10 +11484,13 @@ entities:
0: 61440
17,13:
0: 15
+ 1: 65520
18,13:
0: 15
+ 1: 65520
19,13:
0: 15
+ 1: 65520
-22,9:
0: 49152
-23,2:
@@ -11459,20 +11544,17 @@ entities:
9,18:
0: 242
10,17:
- 0: 65023
- 3: 512
+ 0: 65535
10,18:
0: 50744
11,17:
0: 65535
11,18:
- 0: 62207
- 1: 2048
+ 0: 64255
12,17:
0: 65535
12,18:
- 0: 61695
- 1: 768
+ 0: 62463
13,17:
0: 32767
13,18:
@@ -11666,8 +11748,7 @@ entities:
-23,12:
0: 4369
-20,-6:
- 0: 65531
- 10: 4
+ 0: 65535
-20,-5:
0: 65535
-19,-6:
@@ -11679,8 +11760,7 @@ entities:
-18,-5:
0: 65535
-17,-6:
- 0: 65375
- 3: 160
+ 0: 65535
-17,-5:
0: 65527
-26,-4:
@@ -11716,8 +11796,7 @@ entities:
-21,-5:
0: 65535
-25,-5:
- 0: 65519
- 10: 16
+ 0: 65535
-12,-9:
0: 65535
-12,-12:
@@ -11925,8 +12004,7 @@ entities:
18,-14:
0: 65278
18,-13:
- 0: 32223
- 1: 32768
+ 0: 64991
19,-15:
0: 62224
19,-14:
@@ -11938,13 +12016,11 @@ entities:
17,-11:
0: 255
18,-12:
- 0: 65527
- 1: 8
+ 0: 65535
18,-11:
0: 26623
19,-12:
- 0: 65534
- 1: 1
+ 0: 65535
19,-11:
0: 65279
20,-12:
@@ -11987,24 +12063,34 @@ entities:
0: 8960
20,12:
0: 8739
+ 1: 53248
20,13:
0: 3
+ 1: 65532
20,8:
0: 8739
+ 1: 36232
20,9:
0: 13106
+ 1: 35976
20,11:
0: 8739
+ 1: 3464
20,10:
0: 8738
+ 1: 36232
20,4:
0: 8994
+ 1: 4096
20,6:
0: 8994
+ 1: 221
20,7:
0: 12834
+ 1: 36096
20,5:
0: 8738
+ 1: 56788
10,-18:
0: 61440
11,-18:
@@ -12067,6 +12153,72 @@ entities:
0: 65535
-26,-5:
0: 65535
+ 17,14:
+ 1: 504
+ 24,8:
+ 1: 4369
+ 24,9:
+ 1: 4369
+ 24,10:
+ 1: 4369
+ 24,11:
+ 1: 4369
+ 21,5:
+ 1: 65520
+ 21,6:
+ 1: 255
+ 21,7:
+ 1: 36608
+ 22,5:
+ 1: 65520
+ 22,6:
+ 1: 255
+ 23,5:
+ 1: 65520
+ 23,6:
+ 1: 65535
+ 23,7:
+ 1: 65535
+ 21,8:
+ 1: 36744
+ 21,9:
+ 1: 36744
+ 21,10:
+ 1: 36744
+ 21,11:
+ 1: 3976
+ 22,9:
+ 1: 3840
+ 23,8:
+ 1: 65535
+ 23,9:
+ 1: 65535
+ 23,10:
+ 1: 65535
+ 23,11:
+ 1: 65535
+ 21,12:
+ 1: 61440
+ 21,13:
+ 1: 65535
+ 22,12:
+ 1: 61440
+ 22,13:
+ 1: 65535
+ 23,12:
+ 1: 65535
+ 23,13:
+ 1: 65535
+ 24,12:
+ 1: 4369
+ 24,13:
+ 1: 4369
+ 24,5:
+ 1: 4368
+ 24,6:
+ 1: 4369
+ 24,7:
+ 1: 4369
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -12098,156 +12250,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 42.205357
- - 158.77255
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.14996
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 23.710548
- - 89.19683
- - 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: 293.15
- moles:
- - 23.211243
- - 87.31849
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.6852
- - 81.57766
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 39.154434
- - 147.29524
- - 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.556696
- - 81.09423
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 235
moles:
@@ -12263,26 +12265,11 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 235
- moles:
- - 39.154434
- - 147.29524
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 293.15
moles:
- - 24.522587
- - 92.25164
+ - 21.6852
+ - 81.57766
- 0
- 0
- 0
@@ -12308,8 +12295,8 @@ entities:
localAnchorB: -0.5,-4
localAnchorA: 82,-1.5
referenceAngle: 4.7129426
- damping: 613.90045
- stiffness: 5510.3574
+ damping: 613.9165
+ stiffness: 5510.5015
docking228643: !type:WeldJoint
bodyB: 34500
bodyA: 2
@@ -12317,8 +12304,8 @@ entities:
localAnchorB: 1.5,-4
localAnchorA: 82,-3.5
referenceAngle: 4.7129426
- damping: 613.90045
- stiffness: 5510.3574
+ damping: 613.9165
+ stiffness: 5510.5015
docking229840: !type:WeldJoint
bodyB: 32952
bodyA: 2
@@ -12326,8 +12313,8 @@ entities:
localAnchorB: 0.49999997,-5
localAnchorA: -51,-40.5
referenceAngle: 1.5713501
- damping: 632.23035
- stiffness: 5674.8867
+ damping: 632.24725
+ stiffness: 5675.0386
docking228811: !type:WeldJoint
bodyB: 32764
bodyA: 2
@@ -12335,33 +12322,22 @@ entities:
localAnchorB: 0.49999997,-5
localAnchorA: -51,-48.5
referenceAngle: 1.5713501
- damping: 520.2183
- stiffness: 4669.4688
+ damping: 520.2297
+ stiffness: 4669.5713
type: Joint
- - uid: 32764
+ - type: NavMap
+ - uid: 32068
components:
- - name: ASSS MKS-761
+ - name: grid
type: MetaData
- - rot: 1.5707963267948966 rad
- pos: -55.470657,-48.43892
+ - rot: -0.000553772842977196 rad
+ pos: 0.68720245,0.5146985
parent: 1
type: Transform
- chunks:
- 0,0:
- ind: 0,0
- tiles: JAAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,0:
- ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARgAAAAAA
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAARgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAARgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 2,3:
+ ind: 2,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -12387,22 +12363,11 @@ entities:
- version: 2
data:
tiles:
- 0,0:
- 0: 30583
- -1,0:
- 0: 52428
- 0,1:
- 0: 1911
- -1,1:
- 0: 3276
- -1,-2:
- 0: 49152
- -1,-1:
- 0: 52428
- 0,-2:
- 0: 28672
- 0,-1:
- 0: 30583
+ 10,13:
+ 0: 64
+ 1: 128
+ 11,13:
+ 1: 240
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -12419,45 +12384,202 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
type: GridAtmosphere
- type: GasTileOverlay
- - type: RadiationGridResistance
- - joints:
- docking228811: !type:WeldJoint
- bodyB: 32764
- bodyA: 2
- id: docking228811
- localAnchorB: 0.49999997,-5
- localAnchorA: -51,-48.5
- referenceAngle: 1.5713501
- damping: 520.2183
- stiffness: 4669.4688
- type: Joint
- - uid: 32952
+ - uid: 32069
components:
- - name: ASSS Hole MKS-283
+ - name: grid
type: MetaData
- - rot: 1.5707963267948966 rad
- pos: -55.475296,-40.39086
+ - rot: -0.000553772842977196 rad
+ pos: 0.68720245,0.5146985
parent: 1
type: Transform
- chunks:
- 0,0:
- ind: 0,0
- tiles: YAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,0:
- ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAA
+ 2,3:
+ ind: 2,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes: []
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 10,13:
+ 0: 1024
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - uid: 32764
+ components:
+ - name: ASSS MKS-761
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -55.470657,-48.43892
+ parent: 1
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: JgAAAAAASwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAASwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASwAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAASwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAASwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAASwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAASwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes: []
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 30583
+ -1,0:
+ 0: 52428
+ 0,1:
+ 0: 1911
+ -1,1:
+ 0: 3276
+ -1,-2:
+ 0: 49152
+ -1,-1:
+ 0: 52428
+ 0,-2:
+ 0: 28672
+ 0,-1:
+ 0: 30583
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - joints:
+ docking228811: !type:WeldJoint
+ bodyB: 32764
+ bodyA: 2
+ id: docking228811
+ localAnchorB: 0.49999997,-5
+ localAnchorA: -51,-48.5
+ referenceAngle: 1.5713501
+ damping: 520.2297
+ stiffness: 4669.5713
+ type: Joint
+ - uid: 32952
+ components:
+ - name: ASSS Hole MKS-283
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -55.475296,-40.39086
+ parent: 1
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: aAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -12531,8 +12653,8 @@ entities:
localAnchorB: 0.49999997,-5
localAnchorA: -51,-40.5
referenceAngle: 1.5713501
- damping: 632.23035
- stiffness: 5674.8867
+ damping: 632.24725
+ stiffness: 5675.0386
type: Joint
- uid: 33049
components:
@@ -12544,39 +12666,39 @@ entities:
- chunks:
0,0:
ind: 0,0
- tiles: cQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAYAAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: VAAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAIgAAAAAAIgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAWQAAAAAAIAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAVAAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAVAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAYAAAAAAAIgAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAAWQAAAAAAIAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACWQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAAAYAAAAAAAIgAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAACYAAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAADWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAZAAAAAAAZAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAABwAAAAAABwAAAAAABwAAAAAAOgAAAAAAOgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAOgAAAAAAOgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAOgAAAAAAOgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: YAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAAPAAAAAAAPAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPAAAAAAAPAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAPAAAAAAAPAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,1:
ind: 1,1
@@ -13089,7 +13211,7 @@ entities:
- chunks:
3,-4:
ind: 3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -13147,19 +13269,19 @@ entities:
- chunks:
0,0:
ind: 0,0
- tiles: RwAAAAAARwAAAAAASgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAASgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAASgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAASgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: TAAAAAAATAAAAAAATwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASgAAAAAASgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATwAAAAAATwAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAWQAAAAAASgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAASgAAAAAASgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAYAAAAAAATwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATwAAAAAATwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAASgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAATwAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -13333,8 +13455,8 @@ entities:
localAnchorB: -0.5,-4
localAnchorA: 82,-1.5
referenceAngle: 4.7129426
- damping: 613.90045
- stiffness: 5510.3574
+ damping: 613.9165
+ stiffness: 5510.5015
docking228643: !type:WeldJoint
bodyB: 34500
bodyA: 2
@@ -13342,8 +13464,8 @@ entities:
localAnchorB: 1.5,-4
localAnchorA: 82,-3.5
referenceAngle: 4.7129426
- damping: 613.90045
- stiffness: 5510.3574
+ damping: 613.9165
+ stiffness: 5510.5015
type: Joint
- uid: 34641
components:
@@ -13355,7 +13477,7 @@ entities:
- chunks:
0,0:
ind: 0,0
- tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAACGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAABGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAACGAAAAAACGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAABGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAADGAAAAAABGAAAAAAAGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAADGAAAAAABGAAAAAABGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAACGAAAAAADGAAAAAACGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-1:
ind: -2,-1
@@ -13363,19 +13485,19 @@ entities:
version: 6
-1,0:
ind: -1,0
- tiles: BwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAABBwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAABwAAAAAGGAAAAAADGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAAGQAAAAAAGAAAAAADGAAAAAABGAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADBwAAAAAGSQAAAAAASQAAAAAASQAAAAAAGQAAAAABGAAAAAABGAAAAAABFAAAAAADFAAAAAAEFAAAAAABGAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAGBwAAAAAASQAAAAAASQAAAAAASQAAAAAABwAAAAAAGAAAAAACGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAGFAAAAAADBwAAAAAAFAAAAAAGFAAAAAABFAAAAAADFAAAAAAGFAAAAAAGFAAAAAADFAAAAAADFAAAAAAGFAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAGAAAAAADFAAAAAAAFAAAAAAGFAAAAAABFAAAAAAEFAAAAAAGFAAAAAAFFAAAAAADFAAAAAAGFAAAAAAAFAAAAAADFAAAAAAFBwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGAAAAAACGAAAAAABGAAAAAACBAAAAAAIBAAAAAAJBAAAAAAFBAAAAAADBAAAAAAFBAAAAAACBAAAAAAGBAAAAAAHBAAAAAADBAAAAAAAPgAAAAAAPgAAAAAAGgAAAAADGAAAAAADGAAAAAACMAAAAAABBAAAAAAIBAAAAAAIBAAAAAAABAAAAAAJBAAAAAAGBAAAAAAIBAAAAAAIBAAAAAAEBAAAAAAHBAAAAAAHBAAAAAAEPgAAAAAAGgAAAAABGAAAAAADGAAAAAACMAAAAAACBAAAAAAJBAAAAAAHBAAAAAAIBAAAAAADBAAAAAAJBAAAAAAFBAAAAAAHBAAAAAAEBAAAAAAEBAAAAAABBAAAAAAHPgAAAAAAGgAAAAACGAAAAAADGAAAAAACMAAAAAACBAAAAAADBAAAAAAIBAAAAAAABAAAAAAJBAAAAAABBAAAAAAFBAAAAAAJBAAAAAAIBAAAAAACBAAAAAAGPgAAAAAAPgAAAAAAGgAAAAABGAAAAAAAGAAAAAADGAAAAAADFAAAAAAGFAAAAAAGFAAAAAAFFAAAAAABFAAAAAAGFAAAAAAGFAAAAAABFAAAAAADFAAAAAABBwAAAAAABwAAAAAABwAAAAAAGgAAAAABGAAAAAACcQAAAAAAGAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAABwAAAAAAcQAAAAAABwAAAAACBwAAAAAAcQAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAA
+ tiles: BwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAABBwAAAAAABwAAAAAATgAAAAAATgAAAAAATgAAAAAABwAAAAAGGgAAAAADGwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAATgAAAAAATgAAAAAAGwAAAAAAGgAAAAADGgAAAAABGgAAAAADFgAAAAAAFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAABFgAAAAADBwAAAAAGTgAAAAAATgAAAAAATgAAAAAAGwAAAAABGgAAAAABGgAAAAABFgAAAAADFgAAAAAEFgAAAAABGgAAAAADFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAGBwAAAAAATgAAAAAATgAAAAAATgAAAAAABwAAAAAAGgAAAAACGwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAGFgAAAAADBwAAAAAAFgAAAAAGFgAAAAABFgAAAAADFgAAAAAGFgAAAAAGFgAAAAADFgAAAAADFgAAAAAGFgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAGgAAAAADFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAAFgAAAAADFgAAAAAFBwAAAAAABwAAAAAABwAAAAAAHAAAAAAAGgAAAAACGgAAAAABGgAAAAACBAAAAAAIBAAAAAAJBAAAAAAFBAAAAAADBAAAAAAFBAAAAAACBAAAAAAGBAAAAAAHBAAAAAADBAAAAAAAQAAAAAAAQAAAAAAAHAAAAAADGgAAAAADGgAAAAACMgAAAAABBAAAAAAIBAAAAAAIBAAAAAAABAAAAAAJBAAAAAAGBAAAAAAIBAAAAAAIBAAAAAAEBAAAAAAHBAAAAAAHBAAAAAAEQAAAAAAAHAAAAAABGgAAAAADGgAAAAACMgAAAAACBAAAAAAJBAAAAAAHBAAAAAAIBAAAAAADBAAAAAAJBAAAAAAFBAAAAAAHBAAAAAAEBAAAAAAEBAAAAAABBAAAAAAHQAAAAAAAHAAAAAACGgAAAAADGgAAAAACMgAAAAACBAAAAAADBAAAAAAIBAAAAAAABAAAAAAJBAAAAAABBAAAAAAFBAAAAAAJBAAAAAAIBAAAAAACBAAAAAAGQAAAAAAAQAAAAAAAHAAAAAABGgAAAAAAGgAAAAADGgAAAAADFgAAAAAGFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAGFgAAAAAGFgAAAAABFgAAAAADFgAAAAABBwAAAAAABwAAAAAABwAAAAAAHAAAAAABGgAAAAACeQAAAAAAGgAAAAAAFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAABFgAAAAADFgAAAAAEFgAAAAABFgAAAAACFgAAAAAABwAAAAAAeQAAAAAABwAAAAACBwAAAAAAeQAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: cQAAAAAAGAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAGgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAPgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAPgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAKwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAACKwAAAAAAMgAAAAABMgAAAAACBwAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAGFAAAAAABFAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAACKwAAAAACKwAAAAADMgAAAAADMwAAAAABPgAAAAAAPgAAAAAABAAAAAABBAAAAAAHBAAAAAAIBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAKwAAAAACRwAAAAADMgAAAAADMQAAAAAAPgAAAAAABAAAAAAFBAAAAAAHBAAAAAAHBAAAAAACBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAACKwAAAAAARwAAAAABMgAAAAABMQAAAAACPgAAAAAABAAAAAAHBAAAAAAHBAAAAAABBAAAAAAFBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAKwAAAAABKwAAAAACMgAAAAADMwAAAAAAPgAAAAAAPgAAAAAABAAAAAAGBAAAAAAHBAAAAAAFBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAADKwAAAAAAMgAAAAABMgAAAAABBwAAAAAABwAAAAAAFAAAAAABFAAAAAAFFAAAAAAGFAAAAAAFFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAABGAAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAQAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAQAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAALQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACLQAAAAAANAAAAAABNAAAAAACBwAAAAADFgAAAAAEFgAAAAACFgAAAAABFgAAAAAGFgAAAAABFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACLQAAAAACLQAAAAADNAAAAAADNQAAAAABQAAAAAAAQAAAAAAABAAAAAABBAAAAAAHBAAAAAAIBAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAALQAAAAACTAAAAAADNAAAAAADMwAAAAAAQAAAAAAABAAAAAAFBAAAAAAHBAAAAAAHBAAAAAACBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACLQAAAAAATAAAAAABNAAAAAABMwAAAAACQAAAAAAABAAAAAAHBAAAAAAHBAAAAAABBAAAAAAFBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAALQAAAAABLQAAAAACNAAAAAADNQAAAAAAQAAAAAAAQAAAAAAABAAAAAAGBAAAAAAHBAAAAAAFBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAADLQAAAAAANAAAAAABNAAAAAABBwAAAAAABwAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAAFFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAABGgAAAAAC
version: 6
-2,1:
ind: -2,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAABBwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAABBwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
@@ -13735,8 +13857,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
- - 0
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -13761,83 +13883,83 @@ entities:
- chunks:
0,0:
ind: 0,0
- tiles: cQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAABcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAGwAAAAABcQAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAGwAAAAABcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAACWQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADWQAAAAAAWQAAAAAAVAAAAAADWQAAAAAAWQAAAAAAVAAAAAACcQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAABWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAIAAAAAABIAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJQAAAAAEJQAAAAABJQAAAAAEJQAAAAAFcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAADWQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAZAAAAAADZAAAAAADOwAAAAAAOwAAAAAAcQAAAAAAJQAAAAAFJQAAAAAEZAAAAAABZAAAAAABcQAAAAAAWQAAAAAAVAAAAAACVAAAAAACWQAAAAAAWQAAAAAAZAAAAAADZAAAAAABZAAAAAABOwAAAAAAOwAAAAAAcQAAAAAAJQAAAAADJQAAAAABZAAAAAABZAAAAAACVAAAAAACVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAZAAAAAADZAAAAAACcQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAABcQAAAAAAVAAAAAACWQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACWQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAACVAAAAAABWQAAAAAAWQAAAAAAcQAAAAAAGwAAAAABGwAAAAACWQAAAAAAWQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAABeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAWQAAAAADYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAABYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAIgAAAAABIgAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJwAAAAAEJwAAAAABJwAAAAAEJwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAbAAAAAADbAAAAAADPQAAAAAAPQAAAAAAeQAAAAAAJwAAAAAFJwAAAAAEbAAAAAABbAAAAAABeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAYAAAAAAAbAAAAAADbAAAAAABbAAAAAABPQAAAAAAPQAAAAAAeQAAAAAAJwAAAAADJwAAAAABbAAAAAABbAAAAAACWQAAAAACWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAADbAAAAAACeQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAABeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABYAAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACYAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACWQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAABHQAAAAACYAAAAAAAYAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAGwAAAAAAIAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAGwAAAAAAIAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACGwAAAAAAZAAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFGwAAAAAAZAAAAAABZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADGwAAAAABZAAAAAADZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAACcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACHQAAAAAAbAAAAAAAbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFHQAAAAAAbAAAAAABbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAADHQAAAAABbAAAAAADbAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAACeQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAWQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAIAAAAAAAVAAAAAACIAAAAAAAcQAAAAAAJQAAAAAFJQAAAAAFJQAAAAABJQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAIAAAAAAAWQAAAAAAIAAAAAACcQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAFOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVAAAAAACWQAAAAAAVAAAAAADcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJQAAAAACJQAAAAAFJQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAJQAAAAAEJQAAAAABJQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAFJQAAAAAEJQAAAAADJQAAAAADJQAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAAAJQAAAAABJQAAAAABJQAAAAAFJQAAAAACJQAAAAAAJQAAAAAFJQAAAAAFJQAAAAAEJQAAAAAEJQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAACJQAAAAAEJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAACJQAAAAABJQAAAAABJQAAAAABJQAAAAAAJQAAAAAFJQAAAAAFJQAAAAACJQAAAAAAJQAAAAADJQAAAAADJQAAAAAFJQAAAAAEJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAACJQAAAAAFJQAAAAAEJQAAAAAEJQAAAAABJQAAAAACJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAFJQAAAAAEJQAAAAAFJQAAAAADJQAAAAAEJQAAAAAEJQAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAAAJQAAAAAEJQAAAAACJQAAAAAFJQAAAAAEJQAAAAADJQAAAAADJQAAAAAFJQAAAAAFJQAAAAAFJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAABJQAAAAAEJQAAAAABJQAAAAABJQAAAAAEJQAAAAADJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAACJQAAAAAEJQAAAAAFJQAAAAAFJQAAAAAAJQAAAAABJQAAAAAFJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAFAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAAFJQAAAAADJQAAAAAAJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAEAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAIgAAAAAAWQAAAAACIgAAAAAAeQAAAAAAJwAAAAAFJwAAAAAFJwAAAAABJwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAIgAAAAAAYAAAAAAAIgAAAAACeQAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAAFPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAACYAAAAAAAWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAJwAAAAACJwAAAAAFJwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAJwAAAAAEJwAAAAABJwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAADJwAAAAAAJwAAAAAFJwAAAAAEJwAAAAADJwAAAAADJwAAAAAAJwAAAAACJwAAAAADJwAAAAABJwAAAAAAJwAAAAABJwAAAAABJwAAAAAFJwAAAAACJwAAAAAAJwAAAAAFJwAAAAAFJwAAAAAEJwAAAAAEJwAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAAEJwAAAAACJwAAAAACJwAAAAABJwAAAAABJwAAAAACJwAAAAABJwAAAAABJwAAAAABJwAAAAAAJwAAAAAFJwAAAAAFJwAAAAACJwAAAAAAJwAAAAADJwAAAAADJwAAAAAFJwAAAAAEJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAACJwAAAAAFJwAAAAAEJwAAAAAEJwAAAAABJwAAAAACJwAAAAABJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAFJwAAAAAEJwAAAAAFJwAAAAADJwAAAAAEJwAAAAAEJwAAAAAAJwAAAAABJwAAAAABJwAAAAACJwAAAAAAJwAAAAAEJwAAAAACJwAAAAAFJwAAAAAEJwAAAAADJwAAAAADJwAAAAAFJwAAAAAFJwAAAAAFJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAABJwAAAAAEJwAAAAABJwAAAAABJwAAAAAEJwAAAAADJwAAAAACJwAAAAACJwAAAAACJwAAAAACJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAEJwAAAAAFJwAAAAAFJwAAAAAAJwAAAAABJwAAAAAFJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAFAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAADJwAAAAACJwAAAAAFJwAAAAADJwAAAAAAJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAEAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACJQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFJQAAAAAEcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAEcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAEcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAEcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADJQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACJwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFJwAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFJwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAADJwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAEJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAABJQAAAAADJQAAAAAEJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAADJQAAAAAFJQAAAAAEJQAAAAABJQAAAAAAAAAAAAAAJQAAAAADJQAAAAAEJQAAAAAFAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJQAAAAADJQAAAAAEJQAAAAACJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAADJQAAAAADJQAAAAAFAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAJQAAAAABJQAAAAABJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAACJQAAAAAEJQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAJQAAAAADJQAAAAABJQAAAAAEJQAAAAAEJQAAAAAFJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAJQAAAAAFVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAAFWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJQAAAAADJQAAAAABVAAAAAAAWQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAJQAAAAADVAAAAAAAWQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAEJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAABJwAAAAADJwAAAAAEJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAADJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAADJwAAAAAFJwAAAAAEJwAAAAABJwAAAAAAAAAAAAAAJwAAAAADJwAAAAAEJwAAAAAFAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJwAAAAADJwAAAAAEJwAAAAACJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAADJwAAAAADJwAAAAAFAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAJwAAAAABJwAAAAABJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAEJwAAAAAAJwAAAAABAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAJwAAAAADJwAAAAABJwAAAAAEJwAAAAAEJwAAAAAFJwAAAAAAJwAAAAABJwAAAAAAJwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAFWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAJwAAAAAFYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJwAAAAADJwAAAAABWQAAAAAAYAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAJwAAAAADWQAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: JQAAAAABJQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAAFJQAAAAADJQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAABJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAACJQAAAAAEJQAAAAAFJQAAAAAAJQAAAAADJQAAAAADJQAAAAAFJQAAAAAEJQAAAAAFJQAAAAAFJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAACJQAAAAAFJQAAAAACJQAAAAAAJQAAAAAEJQAAAAADJQAAAAAEJQAAAAABJQAAAAAAJQAAAAAFJQAAAAAAJQAAAAAFJQAAAAAEJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAABJQAAAAABJQAAAAAEJQAAAAAFJQAAAAADJQAAAAAFJQAAAAABJQAAAAAEJQAAAAACJQAAAAABJQAAAAAEJQAAAAAAJQAAAAAFJQAAAAAAJQAAAAACJQAAAAADJQAAAAAFJQAAAAADJQAAAAAFJQAAAAAAJQAAAAAEJQAAAAADJQAAAAADJQAAAAAEJQAAAAADJQAAAAADJQAAAAADJQAAAAAEJQAAAAABJQAAAAAAJQAAAAAFJQAAAAAAJQAAAAAEJQAAAAACJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAABJQAAAAADJQAAAAAFJQAAAAAFJQAAAAAEJQAAAAAEJQAAAAAAJQAAAAABJQAAAAAEJQAAAAAEJQAAAAAAJQAAAAACJQAAAAAEJQAAAAABJQAAAAAAJQAAAAAFJQAAAAADJQAAAAAFJQAAAAADJQAAAAABJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAFJQAAAAAEJQAAAAABJQAAAAACJQAAAAAEJQAAAAACJQAAAAAAJQAAAAAEJQAAAAADJQAAAAABJQAAAAAEJQAAAAADJQAAAAACJQAAAAADJQAAAAACJQAAAAAAJQAAAAAEJQAAAAACJQAAAAABJQAAAAAFJQAAAAABJQAAAAAAJQAAAAACJQAAAAADJQAAAAACJQAAAAACJQAAAAAFJQAAAAAEJQAAAAABJQAAAAAEJQAAAAADJQAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAAFJQAAAAAAJQAAAAABJQAAAAAFJQAAAAACJQAAAAAEJQAAAAAAJQAAAAACJQAAAAAEJQAAAAAEJQAAAAADJQAAAAAFJQAAAAAEJQAAAAACJQAAAAAAJQAAAAACJQAAAAACJQAAAAAFJQAAAAAEJQAAAAACJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAABJQAAAAABJQAAAAAFJQAAAAAAJQAAAAAFJQAAAAAFJQAAAAAEJQAAAAAAJQAAAAAFJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAWQAAAAAAJQAAAAAEJQAAAAAEJQAAAAADJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAAEJQAAAAADJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAWQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAFJQAAAAACJQAAAAAFJQAAAAAFJQAAAAAEJQAAAAADJQAAAAAEJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAVAAAAAADJQAAAAADJQAAAAAFJQAAAAAEJQAAAAAFJQAAAAADJQAAAAACJQAAAAADJQAAAAAEJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAJQAAAAADJQAAAAAFJQAAAAABJQAAAAACJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: JwAAAAABJwAAAAAAJwAAAAAAJwAAAAABJwAAAAABJwAAAAAFJwAAAAADJwAAAAAAJwAAAAADJwAAAAABJwAAAAACJwAAAAABJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAACJwAAAAAEJwAAAAAFJwAAAAAAJwAAAAADJwAAAAADJwAAAAAFJwAAAAAEJwAAAAAFJwAAAAAFJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAACJwAAAAAFJwAAAAACJwAAAAAAJwAAAAAEJwAAAAADJwAAAAAEJwAAAAABJwAAAAAAJwAAAAAFJwAAAAAAJwAAAAAFJwAAAAAEJwAAAAABJwAAAAAAJwAAAAABJwAAAAACJwAAAAABJwAAAAABJwAAAAAEJwAAAAAFJwAAAAADJwAAAAAFJwAAAAABJwAAAAAEJwAAAAACJwAAAAABJwAAAAAEJwAAAAAAJwAAAAAFJwAAAAAAJwAAAAACJwAAAAADJwAAAAAFJwAAAAADJwAAAAAFJwAAAAAAJwAAAAAEJwAAAAADJwAAAAADJwAAAAAEJwAAAAADJwAAAAADJwAAAAADJwAAAAAEJwAAAAABJwAAAAAAJwAAAAAFJwAAAAAAJwAAAAAEJwAAAAACJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAABJwAAAAADJwAAAAAFJwAAAAAFJwAAAAAEJwAAAAAEJwAAAAAAJwAAAAABJwAAAAAEJwAAAAAEJwAAAAAAJwAAAAACJwAAAAAEJwAAAAABJwAAAAAAJwAAAAAFJwAAAAADJwAAAAAFJwAAAAADJwAAAAABJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAFJwAAAAAEJwAAAAABJwAAAAACJwAAAAAEJwAAAAACJwAAAAAAJwAAAAAEJwAAAAADJwAAAAABJwAAAAAEJwAAAAADJwAAAAACJwAAAAADJwAAAAACJwAAAAAAJwAAAAAEJwAAAAACJwAAAAABJwAAAAAFJwAAAAABJwAAAAAAJwAAAAACJwAAAAADJwAAAAACJwAAAAACJwAAAAAFJwAAAAAEJwAAAAABJwAAAAAEJwAAAAADJwAAAAAAJwAAAAACJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAACJwAAAAADJwAAAAABJwAAAAAFJwAAAAAAJwAAAAABJwAAAAAFJwAAAAACJwAAAAAEJwAAAAAAJwAAAAACJwAAAAAEJwAAAAAEJwAAAAADJwAAAAAFJwAAAAAEJwAAAAACJwAAAAAAJwAAAAACJwAAAAACJwAAAAAFJwAAAAAEJwAAAAACJwAAAAADJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAABJwAAAAABJwAAAAAFJwAAAAAAJwAAAAAFJwAAAAAFJwAAAAAEJwAAAAAAJwAAAAAFJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAYAAAAAAAJwAAAAAEJwAAAAAEJwAAAAADJwAAAAACJwAAAAACJwAAAAABJwAAAAABJwAAAAAAJwAAAAAEJwAAAAADJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAYAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAFJwAAAAACJwAAAAAFJwAAAAAFJwAAAAAEJwAAAAADJwAAAAAEJwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAWQAAAAADJwAAAAADJwAAAAAFJwAAAAAEJwAAAAAFJwAAAAADJwAAAAACJwAAAAADJwAAAAAEJwAAAAAAJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAJwAAAAADJwAAAAAFJwAAAAABJwAAAAACJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAABJwAAAAACJwAAAAADJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAFJQAAAAACJQAAAAABJQAAAAAAJQAAAAAEJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAADJQAAAAACJQAAAAACJQAAAAADJQAAAAAFJQAAAAADJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAAFJQAAAAADJQAAAAABJQAAAAACJQAAAAACJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAADJQAAAAACJQAAAAACJQAAAAAAJQAAAAABJQAAAAAFJQAAAAAFJQAAAAAEJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAcQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAAFJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAcQAAAAAAJQAAAAABJQAAAAABJQAAAAADJQAAAAACJQAAAAADJQAAAAAAJQAAAAAEJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAEJQAAAAADJQAAAAAAJQAAAAAFJQAAAAAEJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAFJQAAAAACJQAAAAADJQAAAAADJQAAAAACJQAAAAAFJQAAAAAAJQAAAAAFJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAFJQAAAAAEJQAAAAADJQAAAAAEJQAAAAACJQAAAAAEJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAAFJQAAAAAFJQAAAAADJQAAAAAFJQAAAAAAJQAAAAABJQAAAAAFJQAAAAADJQAAAAABJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAFJwAAAAACJwAAAAABJwAAAAAAJwAAAAAEJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAADJwAAAAACJwAAAAACJwAAAAADJwAAAAAFJwAAAAADJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAFJwAAAAADJwAAAAABJwAAAAACJwAAAAACJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAADJwAAAAACJwAAAAACJwAAAAAAJwAAAAABJwAAAAAFJwAAAAAFJwAAAAAEJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAeQAAAAAAJwAAAAAAJwAAAAAAJwAAAAABJwAAAAABJwAAAAAFJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAeQAAAAAAJwAAAAABJwAAAAABJwAAAAADJwAAAAACJwAAAAADJwAAAAAAJwAAAAAEJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAEJwAAAAADJwAAAAAAJwAAAAAFJwAAAAAEJwAAAAADJwAAAAADJwAAAAACJwAAAAABJwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAFJwAAAAACJwAAAAADJwAAAAADJwAAAAACJwAAAAAFJwAAAAAAJwAAAAAFJwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAABJwAAAAAFJwAAAAAEJwAAAAADJwAAAAAEJwAAAAACJwAAAAAEJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADJwAAAAAFJwAAAAAFJwAAAAADJwAAAAAFJwAAAAAAJwAAAAABJwAAAAAFJwAAAAADJwAAAAABJwAAAAABJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: VAAAAAAAJQAAAAAFJQAAAAABJQAAAAADJQAAAAAEJQAAAAADJQAAAAAEJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFJQAAAAAAJQAAAAACJQAAAAAEJQAAAAADJQAAAAADJQAAAAACJQAAAAACJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFJQAAAAAEJQAAAAAAJQAAAAAEJQAAAAAEJQAAAAAFJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAEJQAAAAADJQAAAAAFJQAAAAADJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAEJQAAAAAEJQAAAAAEJQAAAAAFJQAAAAAEJQAAAAADJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAADJQAAAAADJQAAAAAEJQAAAAAFJQAAAAAEJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFJQAAAAAAJQAAAAAEJQAAAAAFJQAAAAADJQAAAAAAJQAAAAAEJQAAAAAFJQAAAAADJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAAJQAAAAAEJQAAAAAEJQAAAAAEJQAAAAABJQAAAAAFJQAAAAACJQAAAAAAJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAEJQAAAAAFJQAAAAADJQAAAAAFJQAAAAADJQAAAAABJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAFJQAAAAAFJQAAAAABJQAAAAABJQAAAAAEJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAFJQAAAAAFJQAAAAABJQAAAAAAJQAAAAAEJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAEJQAAAAAFJQAAAAABJQAAAAAEJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAEJQAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAEJQAAAAAFJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAJwAAAAAFJwAAAAABJwAAAAADJwAAAAAEJwAAAAADJwAAAAAEJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFJwAAAAAAJwAAAAACJwAAAAAEJwAAAAADJwAAAAADJwAAAAACJwAAAAACJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFJwAAAAAEJwAAAAAAJwAAAAAEJwAAAAAEJwAAAAAFJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAEJwAAAAADJwAAAAAFJwAAAAADJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAEJwAAAAAEJwAAAAAEJwAAAAAFJwAAAAAEJwAAAAADJwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAACJwAAAAAAJwAAAAADJwAAAAADJwAAAAAEJwAAAAAFJwAAAAAEJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFJwAAAAAAJwAAAAAEJwAAAAAFJwAAAAADJwAAAAAAJwAAAAAEJwAAAAAFJwAAAAADJwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAEJwAAAAAEJwAAAAAEJwAAAAABJwAAAAAFJwAAAAACJwAAAAAAJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAAEJwAAAAAFJwAAAAADJwAAAAAFJwAAAAADJwAAAAABJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAACJwAAAAACJwAAAAACJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAADJwAAAAAAJwAAAAAFJwAAAAAFJwAAAAABJwAAAAABJwAAAAAEJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAFJwAAAAAFJwAAAAABJwAAAAAAJwAAAAAEJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAAEJwAAAAAFJwAAAAABJwAAAAAEJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAACJwAAAAACJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAEJwAAAAAAJwAAAAACJwAAAAABJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAEJwAAAAAFJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: JQAAAAAAJQAAAAAEJQAAAAAFJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: JwAAAAAAJwAAAAAEJwAAAAAFJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -14809,19 +14931,19 @@ entities:
- chunks:
0,0:
ind: 0,0
- tiles: KQAAAAAAKQAAAAAAKQAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: KwAAAAAAKwAAAAAAKwAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAdgAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -14897,32 +15019,13 @@ entities:
- pos: -12.418976,7.267197
parent: 2
type: Transform
-- proto: ActionToggleInternals
- entities:
- - uid: 901
- components:
- - flags: InContainer
- type: MetaData
- - parent: 14031
- type: Transform
- - container: 14031
- type: InstantAction
- - uid: 902
- components:
- - flags: InContainer
- type: MetaData
- - parent: 14032
- type: Transform
- - container: 14032
- type: InstantAction
- - uid: 903
+ - uid: 11458
components:
- - flags: InContainer
- type: MetaData
- - parent: 14033
+ - pos: -64.34497,0.3334856
+ parent: 2
type: Transform
- - container: 14033
- type: InstantAction
+- proto: ActionToggleInternals
+ entities:
- uid: 1078
components:
- flags: InContainer
@@ -14931,22 +15034,6 @@ entities:
type: Transform
- container: 21396
type: InstantAction
- - uid: 1191
- components:
- - flags: InContainer
- type: MetaData
- - parent: 21827
- type: Transform
- - container: 21827
- type: InstantAction
- - uid: 1192
- components:
- - flags: InContainer
- type: MetaData
- - parent: 21882
- type: Transform
- - container: 21882
- type: InstantAction
- proto: ActionToggleJetpack
entities:
- uid: 919
@@ -14965,9 +15052,6 @@ entities:
parent: 2
type: Transform
- devices:
- - 14891
- - 14889
- - 14890
- 18853
- 19073
- 14698
@@ -15221,9 +15305,6 @@ entities:
parent: 2
type: Transform
- devices:
- - 14891
- - 14889
- - 14890
- 713
- 14883
- 14884
@@ -15233,7 +15314,6 @@ entities:
- 14881
- 14880
- 14879
- - 14578
- 14887
- 14888
- 18856
@@ -16892,11 +16972,21 @@ entities:
pos: 28.5,23.5
parent: 2
type: Transform
- - devices:
- - 19038
+ - ShutdownSubscribers:
+ - 14657
- 14835
+ - 21739
+ - 10552
+ - 889
+ - 10580
+ type: DeviceNetwork
+ - devices:
- 14657
+ - 14835
+ - 21739
+ - 10552
- 889
+ - 10580
type: DeviceList
- uid: 131
components:
@@ -17762,16 +17852,28 @@ entities:
- 19045
- 767
type: DeviceList
- - uid: 195
+ - uid: 19355
components:
- - rot: 3.141592653589793 rad
- pos: 34.5,14.5
+ - rot: -1.5707963267948966 rad
+ pos: 55.5,22.5
parent: 2
type: Transform
+ - ShutdownSubscribers:
+ - 21600
+ type: DeviceNetwork
- devices:
- - 19251
- - 890
- - 19250
+ - 21600
+ type: DeviceList
+ - uid: 19362
+ components:
+ - pos: 53.5,27.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 21599
+ type: DeviceNetwork
+ - devices:
+ - 21599
type: DeviceList
- uid: 22739
components:
@@ -18103,6 +18205,16 @@ entities:
- pos: 55.5,-44.5
parent: 2
type: Transform
+ - uid: 11760
+ components:
+ - pos: 4.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 22023
+ components:
+ - pos: 32.5,20.5
+ parent: 2
+ type: Transform
- uid: 28294
components:
- pos: 76.5,2.5
@@ -18429,6 +18541,9 @@ entities:
type: Transform
- uid: 30186
components:
+ - desc: ДАЙ ОРУЖИЕ!
+ name: арсенал
+ type: MetaData
- pos: -28.5,-18.5
parent: 2
type: Transform
@@ -18456,6 +18571,11 @@ entities:
- pos: 10.5,20.5
parent: 2
type: Transform
+ - uid: 29692
+ components:
+ - pos: 32.5,16.5
+ parent: 2
+ type: Transform
- proto: AirlockAtmosphericsLocked
entities:
- uid: 246
@@ -18470,6 +18590,11 @@ entities:
- pos: 13.5,-33.5
parent: 2
type: Transform
+ - uid: 32018
+ components:
+ - pos: 33.5,26.5
+ parent: 2
+ type: Transform
- uid: 33053
components:
- rot: 3.141592653589793 rad
@@ -18842,6 +18967,8 @@ entities:
entities:
- uid: 297
components:
+ - name: каюта детектива
+ type: MetaData
- rot: 3.141592653589793 rad
pos: -34.5,-1.5
parent: 2
@@ -18921,6 +19048,8 @@ entities:
type: Transform
- uid: 307
components:
+ - name: комната отдыха
+ type: MetaData
- rot: 1.5707963267948966 rad
pos: 25.5,34.5
parent: 2
@@ -19021,11 +19150,6 @@ entities:
- pos: -15.5,-11.5
parent: 2
type: Transform
- - uid: 326
- components:
- - pos: 43.5,36.5
- parent: 2
- type: Transform
- uid: 327
components:
- rot: 1.5707963267948966 rad
@@ -19049,6 +19173,11 @@ entities:
- pos: 35.5,-38.5
parent: 2
type: Transform
+ - uid: 5992
+ components:
+ - pos: 59.5,41.5
+ parent: 2
+ type: Transform
- uid: 28327
components:
- rot: -1.5707963267948966 rad
@@ -19231,6 +19360,13 @@ entities:
- pos: 3.5,-1.5
parent: 34500
type: Transform
+- proto: AirlockExternalAtmosphericsLocked
+ entities:
+ - uid: 20780
+ components:
+ - pos: 41.5,27.5
+ parent: 2
+ type: Transform
- proto: AirlockExternalCargoLocked
entities:
- uid: 360
@@ -19250,31 +19386,14 @@ entities:
- pos: -47.5,31.5
parent: 2
type: Transform
- - uid: 363
- components:
- - pos: 39.5,34.5
- parent: 2
- type: Transform
- - uid: 364
- components:
- - name: отсек сингулярности
- type: MetaData
- - pos: 41.5,31.5
- parent: 2
- type: Transform
- - uid: 365
- components:
- - pos: 39.5,31.5
- parent: 2
- type: Transform
- - uid: 366
+ - uid: 5993
components:
- - pos: 45.5,36.5
+ - pos: 64.5,43.5
parent: 2
type: Transform
- - uid: 367
+ - uid: 20771
components:
- - pos: 47.5,37.5
+ - pos: 37.5,32.5
parent: 2
type: Transform
- proto: AirlockExternalGlass
@@ -19338,48 +19457,11 @@ entities:
type: Transform
- proto: AirlockExternalGlassAtmosphericsLocked
entities:
- - uid: 373
- components:
- - rot: 1.5707963267948966 rad
- pos: 30.5,13.5
- parent: 2
- type: Transform
- - links:
- - 374
- type: DeviceLinkSink
- - linkedPorts:
- 374:
- - DoorStatus: DoorBolt
- type: DeviceLinkSource
- - uid: 374
+ - uid: 22085
components:
- - rot: 1.5707963267948966 rad
- pos: 29.5,14.5
- parent: 2
- type: Transform
- - links:
- - 375
- - 373
- type: DeviceLinkSink
- - linkedPorts:
- 373:
- - DoorStatus: DoorBolt
- 375:
- - DoorStatus: DoorBolt
- type: DeviceLinkSource
- - uid: 375
- components:
- - rot: 1.5707963267948966 rad
- pos: 29.5,12.5
+ - pos: 40.5,28.5
parent: 2
type: Transform
- - links:
- - 374
- type: DeviceLinkSink
- - linkedPorts:
- 374:
- - DoorStatus: DoorBolt
- type: DeviceLinkSource
- proto: AirlockExternalGlassCargoLocked
entities:
- uid: 376
@@ -19432,11 +19514,6 @@ entities:
type: DeviceLinkSource
- proto: AirlockExternalGlassEngineeringLocked
entities:
- - uid: 380
- components:
- - pos: 40.5,16.5
- parent: 2
- type: Transform
- uid: 381
components:
- name: солнечные панели
@@ -19494,6 +19571,16 @@ entities:
pos: -53.5,-64.5
parent: 2
type: Transform
+ - uid: 4355
+ components:
+ - pos: 57.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 19808
+ components:
+ - pos: 53.5,38.5
+ parent: 2
+ type: Transform
- proto: AirlockExternalGlassLocked
entities:
- uid: 389
@@ -20237,6 +20324,13 @@ entities:
- pos: 51.5,-58.5
parent: 2
type: Transform
+- proto: AirlockMaintAtmoLocked
+ entities:
+ - uid: 15431
+ components:
+ - pos: 38.5,10.5
+ parent: 2
+ type: Transform
- proto: AirlockMaintBarLocked
entities:
- uid: 483
@@ -21483,7 +21577,7 @@ entities:
type: Transform
- uid: 665
components:
- - name: комната отдыха СБ
+ - name: перма-бриг
type: MetaData
- pos: -26.5,-34.5
parent: 2
@@ -22865,12 +22959,9 @@ entities:
- pos: 35.5,22.5
parent: 2
type: Transform
- - uid: 890
- components:
- - rot: 3.141592653589793 rad
- pos: 33.5,10.5
- parent: 2
- type: Transform
+ - ShutdownSubscribers:
+ - 130
+ type: DeviceNetwork
- uid: 891
components:
- pos: -15.5,36.5
@@ -22914,6 +23005,22 @@ entities:
- ShutdownSubscribers:
- 41088
type: DeviceNetwork
+ - uid: 21599
+ components:
+ - pos: 53.5,30.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 19362
+ type: DeviceNetwork
+ - uid: 21600
+ components:
+ - pos: 58.5,22.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 19355
+ type: DeviceNetwork
- uid: 26491
components:
- pos: -5.5,52.5
@@ -23692,6 +23799,10 @@ entities:
- pos: 17.5,2.5
parent: 2
type: Transform
+ - hasAccess: True
+ lastExternalState: Good
+ lastChargeState: Full
+ type: Apc
- uid: 1029
components:
- rot: 3.141592653589793 rad
@@ -23946,12 +24057,6 @@ entities:
- pos: -0.5,-50.5
parent: 2
type: Transform
- - uid: 1203
- components:
- - rot: 3.141592653589793 rad
- pos: 47.5,12.5
- parent: 2
- type: Transform
- uid: 13377
components:
- pos: -10.5,48.5
@@ -23969,11 +24074,28 @@ entities:
pos: 9.5,47.5
parent: 2
type: Transform
+ - uid: 28020
+ components:
+ - pos: 61.5,47.5
+ parent: 2
+ type: Transform
- uid: 28203
components:
- pos: 2.5,55.5
parent: 2
type: Transform
+ - uid: 28717
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 40.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 28718
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 31.5,13.5
+ parent: 2
+ type: Transform
- uid: 32767
components:
- rot: -1.5707963267948966 rad
@@ -24085,12 +24207,6 @@ entities:
- pos: 29.5,26.5
parent: 2
type: Transform
- - uid: 1081
- components:
- - rot: 3.141592653589793 rad
- pos: 44.5,30.5
- parent: 2
- type: Transform
- uid: 1082
components:
- rot: -1.5707963267948966 rad
@@ -26028,61 +26144,6 @@ entities:
type: Transform
- proto: AsteroidRockMining
entities:
- - uid: 9048
- components:
- - pos: 61.5,54.5
- parent: 2
- type: Transform
- - uid: 14283
- components:
- - pos: 59.5,53.5
- parent: 2
- type: Transform
- - uid: 14324
- components:
- - pos: 60.5,53.5
- parent: 2
- type: Transform
- - uid: 14325
- components:
- - pos: 62.5,53.5
- parent: 2
- type: Transform
- - uid: 21394
- components:
- - pos: 59.5,52.5
- parent: 2
- type: Transform
- - uid: 21594
- components:
- - pos: 59.5,51.5
- parent: 2
- type: Transform
- - uid: 22817
- components:
- - pos: 61.5,52.5
- parent: 2
- type: Transform
- - uid: 32006
- components:
- - pos: 60.5,51.5
- parent: 2
- type: Transform
- - uid: 32018
- components:
- - pos: 62.5,54.5
- parent: 2
- type: Transform
- - uid: 32225
- components:
- - pos: 60.5,52.5
- parent: 2
- type: Transform
- - uid: 32362
- components:
- - pos: 60.5,54.5
- parent: 2
- type: Transform
- uid: 33183
components:
- pos: 7.5,-20.5
@@ -26790,11 +26851,6 @@ entities:
- pos: -30.5,28.5
parent: 2
type: Transform
- - uid: 1087
- components:
- - pos: 40.5,16.5
- parent: 2
- type: Transform
- uid: 1088
components:
- pos: 35.5,33.5
@@ -27050,11 +27106,36 @@ entities:
- pos: 35.5,-66.5
parent: 2
type: Transform
+ - uid: 19819
+ components:
+ - pos: 40.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 20025
+ components:
+ - pos: 37.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 21695
+ components:
+ - pos: 41.5,27.5
+ parent: 2
+ type: Transform
- uid: 25870
components:
- pos: -2.5,59.5
parent: 2
type: Transform
+ - uid: 27250
+ components:
+ - pos: 64.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 27251
+ components:
+ - pos: 53.5,38.5
+ parent: 2
+ type: Transform
- uid: 32601
components:
- pos: 3.5,59.5
@@ -27202,124 +27283,94 @@ entities:
type: Transform
- proto: AtmosFixBlockerMarker
entities:
- - uid: 1140
- components:
- - pos: 44.5,17.5
- parent: 2
- type: Transform
- - uid: 1141
- components:
- - pos: 43.5,17.5
- parent: 2
- type: Transform
- - uid: 1142
- components:
- - pos: 34.5,11.5
- parent: 2
- type: Transform
- - uid: 1143
- components:
- - pos: 31.5,11.5
- parent: 2
- type: Transform
- - uid: 1144
- components:
- - pos: 31.5,10.5
- parent: 2
- type: Transform
- - uid: 1145
- components:
- - pos: 32.5,11.5
- parent: 2
- type: Transform
- - uid: 1146
+ - uid: 380
components:
- - pos: 32.5,10.5
+ - pos: 45.5,17.5
parent: 2
type: Transform
- - uid: 1147
+ - uid: 1161
components:
- - pos: 33.5,11.5
+ - pos: 43.5,15.5
parent: 2
type: Transform
- - uid: 1148
+ - uid: 1162
components:
- - pos: 33.5,10.5
+ - pos: 43.5,16.5
parent: 2
type: Transform
- - uid: 1149
+ - uid: 4246
components:
- - pos: 34.5,10.5
+ - pos: 49.5,16.5
parent: 2
type: Transform
- - uid: 1150
+ - uid: 4351
components:
- - pos: 35.5,11.5
+ - pos: 53.5,16.5
parent: 2
type: Transform
- - uid: 1151
+ - uid: 4352
components:
- - pos: 35.5,10.5
+ - pos: 53.5,15.5
parent: 2
type: Transform
- - uid: 1152
+ - uid: 4357
components:
- - pos: 37.5,11.5
+ - pos: 49.5,15.5
parent: 2
type: Transform
- - uid: 1153
+ - uid: 4358
components:
- - pos: 37.5,10.5
+ - pos: 51.5,16.5
parent: 2
type: Transform
- - uid: 1154
+ - uid: 4487
components:
- - pos: 38.5,11.5
+ - pos: 51.5,17.5
parent: 2
type: Transform
- - uid: 1155
+ - uid: 5994
components:
- - pos: 38.5,10.5
+ - pos: 45.5,16.5
parent: 2
type: Transform
- - uid: 1156
+ - uid: 5997
components:
- - pos: 43.5,16.5
+ - pos: 45.5,15.5
parent: 2
type: Transform
- - uid: 1157
+ - uid: 5998
components:
- - pos: 44.5,16.5
+ - pos: 47.5,17.5
parent: 2
type: Transform
- - uid: 1158
+ - uid: 5999
components:
- - pos: 43.5,18.5
+ - pos: 49.5,17.5
parent: 2
type: Transform
- - uid: 1159
+ - uid: 6000
components:
- - pos: 44.5,18.5
+ - pos: 47.5,15.5
parent: 2
type: Transform
- - uid: 1160
+ - uid: 6001
components:
- - pos: 43.5,20.5
+ - pos: 47.5,16.5
parent: 2
type: Transform
- - uid: 1161
+ - uid: 6002
components:
- - pos: 44.5,20.5
+ - pos: 51.5,15.5
parent: 2
type: Transform
- - uid: 1162
+ - uid: 21210
components:
- - pos: 43.5,22.5
+ - pos: 53.5,17.5
parent: 2
type: Transform
- - uid: 1163
+ - uid: 21263
components:
- - pos: 44.5,22.5
+ - pos: 43.5,17.5
parent: 2
type: Transform
- proto: AtmosFixFreezerMarker
@@ -27424,37 +27475,6 @@ entities:
- pos: -31.5,30.5
parent: 2
type: Transform
-- proto: AtmosFixInstantPlasmaFireMarker
- entities:
- - uid: 25654
- components:
- - pos: 61.5,53.5
- parent: 2
- type: Transform
-- proto: AtmosFixNitrogenMarker
- entities:
- - uid: 1184
- components:
- - pos: 43.5,24.5
- parent: 2
- type: Transform
- - uid: 1185
- components:
- - pos: 44.5,24.5
- parent: 2
- type: Transform
-- proto: AtmosFixOxygenMarker
- entities:
- - uid: 1186
- components:
- - pos: 43.5,26.5
- parent: 2
- type: Transform
- - uid: 1187
- components:
- - pos: 44.5,26.5
- parent: 2
- type: Transform
- proto: Autolathe
entities:
- uid: 1253
@@ -27503,6 +27523,11 @@ entities:
- pos: 29.529043,-45.66302
parent: 2
type: Transform
+ - uid: 14079
+ components:
+ - pos: -95.36463,-18.444942
+ parent: 2
+ type: Transform
- proto: BananaPhoneInstrument
entities:
- uid: 1260
@@ -27597,6 +27622,11 @@ entities:
type: Transform
- proto: BannerSyndicate
entities:
+ - uid: 9869
+ components:
+ - pos: -89.5,-28.5
+ parent: 2
+ type: Transform
- uid: 35676
components:
- pos: 76.5,-47.5
@@ -27763,21 +27793,6 @@ entities:
pos: -41.5,14.5
parent: 2
type: Transform
- - uid: 1305
- components:
- - pos: 30.5,-28.5
- parent: 2
- type: Transform
- - uid: 1306
- components:
- - pos: 32.5,-23.5
- parent: 2
- type: Transform
- - uid: 1307
- components:
- - pos: 35.5,-23.5
- parent: 2
- type: Transform
- uid: 1308
components:
- pos: 36.5,-26.5
@@ -27851,11 +27866,6 @@ entities:
- pos: -36.5,39.5
parent: 2
type: Transform
- - uid: 1322
- components:
- - pos: -37.5,42.5
- parent: 2
- type: Transform
- uid: 1323
components:
- pos: 43.5,8.5
@@ -27975,10 +27985,24 @@ entities:
type: Transform
- proto: BarricadeBlock
entities:
- - uid: 20259
+ - uid: 359
components:
- - rot: 3.141592653589793 rad
- pos: -12.5,49.5
+ - pos: -37.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 1190
+ components:
+ - pos: 30.5,-28.5
+ parent: 2
+ type: Transform
+ - uid: 1191
+ components:
+ - pos: 35.5,-23.5
+ parent: 2
+ type: Transform
+ - uid: 1192
+ components:
+ - pos: 32.5,-23.5
parent: 2
type: Transform
- uid: 31932
@@ -28072,6 +28096,13 @@ entities:
- pos: 55.5,-56.5
parent: 2
type: Transform
+- proto: BaseGasCondenser
+ entities:
+ - uid: 31910
+ components:
+ - pos: 29.5,12.5
+ parent: 2
+ type: Transform
- proto: Basketball
entities:
- uid: 1366
@@ -28121,6 +28152,26 @@ entities:
- pos: 56.55115,-62.302055
parent: 2
type: Transform
+ - uid: 15333
+ components:
+ - pos: 80.32032,-44.452526
+ parent: 2
+ type: Transform
+ - uid: 15334
+ components:
+ - pos: 80.50782,-44.21815
+ parent: 2
+ type: Transform
+ - uid: 15335
+ components:
+ - pos: 80.64845,-44.46815
+ parent: 2
+ type: Transform
+ - uid: 15336
+ components:
+ - pos: 80.82033,-44.233776
+ parent: 2
+ type: Transform
- uid: 33326
components:
- pos: -3.357211,12.838868
@@ -28941,6 +28992,11 @@ entities:
- pos: 45.56276,-53.524742
parent: 2
type: Transform
+ - uid: 14206
+ components:
+ - pos: -11.796713,-10.47926
+ parent: 2
+ type: Transform
- proto: BikeHorn
entities:
- uid: 1495
@@ -29005,14 +29061,6 @@ entities:
- pos: 48.5,-16.5
parent: 2
type: Transform
- - uid: 1504
- components:
- - pos: 35.5,12.5
- parent: 2
- type: Transform
- - links:
- - 32748
- type: DeviceLinkSink
- uid: 1505
components:
- pos: 10.5,-4.5
@@ -29256,6 +29304,31 @@ entities:
- links:
- 25031
type: DeviceLinkSink
+ - uid: 17492
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 50.5,31.5
+ parent: 2
+ type: Transform
+ - links:
+ - 32235
+ type: DeviceLinkSink
+ - uid: 21271
+ components:
+ - pos: 58.5,21.5
+ parent: 2
+ type: Transform
+ - links:
+ - 32238
+ type: DeviceLinkSink
+ - uid: 21287
+ components:
+ - pos: 59.5,21.5
+ parent: 2
+ type: Transform
+ - links:
+ - 32238
+ type: DeviceLinkSink
- proto: BlastDoorOpen
entities:
- uid: 1534
@@ -29695,7 +29768,7 @@ entities:
type: Transform
- uid: 35674
components:
- - pos: 2.803105,25.576822
+ - pos: 2.6926801,25.559492
parent: 2
type: Transform
- proto: BookFishing
@@ -29975,6 +30048,38 @@ entities:
- pos: -55.5,5.5
parent: 2
type: Transform
+- proto: BorgCharger
+ entities:
+ - uid: 13035
+ components:
+ - pos: -23.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 32070
+ components:
+ - pos: 66.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 32071
+ components:
+ - pos: 12.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 32074
+ components:
+ - pos: 25.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 32081
+ components:
+ - pos: -45.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 32098
+ components:
+ - pos: 2.5,-42.5
+ parent: 2
+ type: Transform
- proto: BoxBeaker
entities:
- uid: 1632
@@ -29994,6 +30099,11 @@ entities:
type: Transform
- proto: BoxBeanbag
entities:
+ - uid: 1237
+ components:
+ - pos: -32.4716,-23.313463
+ parent: 2
+ type: Transform
- uid: 1636
components:
- pos: -32.487038,-23.328247
@@ -30167,12 +30277,6 @@ entities:
- pos: -25.550262,-19.39852
parent: 2
type: Transform
- - uid: 1666
- components:
- - rot: 1.5707963267948966 rad
- pos: -44.231762,1.5929471
- parent: 2
- type: Transform
- uid: 1667
components:
- desc: Дорогой дневник...
@@ -30292,14 +30396,13 @@ entities:
- pos: 58.72099,-34.37018
parent: 2
type: Transform
-- proto: BoxFolderGrey
- entities:
- - uid: 1689
+ - uid: 11832
components:
- - rot: 1.5707963267948966 rad
- pos: -44.106762,1.4679471
+ - pos: 2.7032602,26.575167
parent: 2
type: Transform
+- proto: BoxFolderGrey
+ entities:
- uid: 1690
components:
- pos: -15.44008,-45.43641
@@ -30307,6 +30410,11 @@ entities:
type: Transform
- proto: BoxFolderRed
entities:
+ - uid: 1223
+ components:
+ - pos: 2.3282604,25.575169
+ parent: 2
+ type: Transform
- uid: 1691
components:
- pos: -16.609648,-5.156132
@@ -30325,11 +30433,6 @@ entities:
- pos: -12.287829,-3.3002028
parent: 2
type: Transform
- - uid: 1694
- components:
- - pos: 2.4351313,25.574099
- parent: 2
- type: Transform
- uid: 1695
components:
- pos: 6.1957636,-60.495815
@@ -30387,6 +30490,11 @@ entities:
type: Transform
- proto: BoxFolderYellow
entities:
+ - uid: 1236
+ components:
+ - pos: 2.7345104,26.059544
+ parent: 2
+ type: Transform
- uid: 1704
components:
- rot: -1.5707963267948966 rad
@@ -30429,19 +30537,6 @@ entities:
- 1711
- 1712
type: ContainerContainer
- - uid: 1713
- components:
- - pos: 2.5718749,26.081911
- parent: 2
- type: Transform
- - containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1714
- - 1715
- type: ContainerContainer
- uid: 1716
components:
- rot: 3.141592653589793 rad
@@ -30501,9 +30596,14 @@ entities:
type: Transform
- proto: BoxLethalshot
entities:
- - uid: 25725
+ - uid: 14343
+ components:
+ - pos: -32.487278,-23.488739
+ parent: 2
+ type: Transform
+ - uid: 14361
components:
- - pos: -32.737217,-23.244616
+ - pos: -32.487278,-23.488739
parent: 2
type: Transform
- proto: BoxLightbulb
@@ -30532,19 +30632,18 @@ entities:
- pos: -50.385223,27.528906
parent: 2
type: Transform
-- proto: BoxLighttube
+- proto: BoxMagazinePistolPractice
entities:
- - uid: 41319
+ - uid: 1742
components:
- - rot: 3.141592653589793 rad
- pos: 59.1296,11.492853
+ - pos: -33.006905,-17.636837
parent: 2
type: Transform
-- proto: BoxMagazinePistolPractice
+- proto: BoxMagazineRiflePractice
entities:
- - uid: 1742
+ - uid: 14319
components:
- - pos: -33.006905,-17.636837
+ - pos: -31.991226,-17.631279
parent: 2
type: Transform
- proto: BoxMousetrap
@@ -30862,6 +30961,20 @@ entities:
- pos: -32.4889,-23.687267
parent: 2
type: Transform
+- proto: BoxShotgunIncendiary
+ entities:
+ - uid: 14342
+ components:
+ - pos: -31.549778,-27.519989
+ parent: 2
+ type: Transform
+- proto: BoxShotgunPractice
+ entities:
+ - uid: 14307
+ components:
+ - pos: -33.603046,-17.656878
+ parent: 2
+ type: Transform
- proto: BoxShotgunSlug
entities:
- uid: 35584
@@ -31080,26 +31193,11 @@ entities:
type: Transform
- proto: CableApcExtension
entities:
- - uid: 6
- components:
- - pos: 47.5,13.5
- parent: 2
- type: Transform
- uid: 64
components:
- pos: 7.5,53.5
parent: 2
type: Transform
- - uid: 200
- components:
- - pos: 47.5,12.5
- parent: 2
- type: Transform
- - uid: 1202
- components:
- - pos: 48.5,13.5
- parent: 2
- type: Transform
- uid: 1622
components:
- pos: -16.5,18.5
@@ -31140,11 +31238,6 @@ entities:
- pos: 17.5,2.5
parent: 2
type: Transform
- - uid: 1799
- components:
- - pos: 38.5,24.5
- parent: 2
- type: Transform
- uid: 1800
components:
- pos: -27.5,35.5
@@ -31250,11 +31343,6 @@ entities:
- pos: 1.5,-47.5
parent: 2
type: Transform
- - uid: 1821
- components:
- - pos: 30.5,16.5
- parent: 2
- type: Transform
- uid: 1822
components:
- pos: -58.5,-2.5
@@ -31320,11 +31408,6 @@ entities:
- pos: 64.5,-8.5
parent: 2
type: Transform
- - uid: 1835
- components:
- - pos: 46.5,16.5
- parent: 2
- type: Transform
- uid: 1836
components:
- pos: 56.5,-35.5
@@ -31395,11 +31478,6 @@ entities:
- pos: 74.5,-2.5
parent: 2
type: Transform
- - uid: 1850
- components:
- - pos: 29.5,16.5
- parent: 2
- type: Transform
- uid: 1851
components:
- pos: 71.5,-1.5
@@ -31415,16 +31493,6 @@ entities:
- pos: 46.5,-5.5
parent: 2
type: Transform
- - uid: 1854
- components:
- - pos: 42.5,14.5
- parent: 2
- type: Transform
- - uid: 1855
- components:
- - pos: 46.5,15.5
- parent: 2
- type: Transform
- uid: 1856
components:
- pos: 48.5,-10.5
@@ -31740,11 +31808,6 @@ entities:
- pos: 24.5,28.5
parent: 2
type: Transform
- - uid: 1919
- components:
- - pos: 44.5,14.5
- parent: 2
- type: Transform
- uid: 1920
components:
- pos: 45.5,-13.5
@@ -31770,11 +31833,6 @@ entities:
- pos: -57.5,-4.5
parent: 2
type: Transform
- - uid: 1925
- components:
- - pos: 46.5,14.5
- parent: 2
- type: Transform
- uid: 1926
components:
- pos: -4.5,-32.5
@@ -31790,11 +31848,6 @@ entities:
- pos: 45.5,-8.5
parent: 2
type: Transform
- - uid: 1929
- components:
- - pos: 38.5,26.5
- parent: 2
- type: Transform
- uid: 1930
components:
- pos: -7.5,9.5
@@ -32005,36 +32058,16 @@ entities:
- pos: 49.5,-10.5
parent: 2
type: Transform
- - uid: 1972
- components:
- - pos: 45.5,14.5
- parent: 2
- type: Transform
- uid: 1973
components:
- pos: 31.5,26.5
parent: 2
type: Transform
- - uid: 1974
- components:
- - pos: 33.5,28.5
- parent: 2
- type: Transform
- uid: 1975
components:
- pos: -7.5,-34.5
parent: 2
type: Transform
- - uid: 1976
- components:
- - pos: 32.5,16.5
- parent: 2
- type: Transform
- - uid: 1977
- components:
- - pos: 31.5,16.5
- parent: 2
- type: Transform
- uid: 1978
components:
- pos: 22.5,23.5
@@ -32085,11 +32118,6 @@ entities:
- pos: 19.5,22.5
parent: 2
type: Transform
- - uid: 1988
- components:
- - pos: 41.5,14.5
- parent: 2
- type: Transform
- uid: 1989
components:
- pos: 18.5,22.5
@@ -32590,11 +32618,6 @@ entities:
- pos: 50.5,-7.5
parent: 2
type: Transform
- - uid: 2089
- components:
- - pos: 37.5,26.5
- parent: 2
- type: Transform
- uid: 2090
components:
- pos: -3.5,1.5
@@ -32670,11 +32693,6 @@ entities:
- pos: -35.5,-24.5
parent: 2
type: Transform
- - uid: 2105
- components:
- - pos: 43.5,14.5
- parent: 2
- type: Transform
- uid: 2106
components:
- pos: 21.5,4.5
@@ -33085,11 +33103,6 @@ entities:
- pos: -28.5,-27.5
parent: 2
type: Transform
- - uid: 2188
- components:
- - pos: 38.5,25.5
- parent: 2
- type: Transform
- uid: 2189
components:
- pos: 5.5,9.5
@@ -33840,11 +33853,6 @@ entities:
- pos: 46.5,4.5
parent: 2
type: Transform
- - uid: 2340
- components:
- - pos: 29.5,14.5
- parent: 2
- type: Transform
- uid: 2341
components:
- pos: -28.5,-26.5
@@ -33950,26 +33958,6 @@ entities:
- pos: -21.5,52.5
parent: 2
type: Transform
- - uid: 2362
- components:
- - pos: 30.5,14.5
- parent: 2
- type: Transform
- - uid: 2363
- components:
- - pos: 31.5,14.5
- parent: 2
- type: Transform
- - uid: 2364
- components:
- - pos: 32.5,14.5
- parent: 2
- type: Transform
- - uid: 2365
- components:
- - pos: 29.5,14.5
- parent: 2
- type: Transform
- uid: 2366
components:
- pos: -18.5,52.5
@@ -38355,11 +38343,6 @@ entities:
- pos: -45.5,-13.5
parent: 2
type: Transform
- - uid: 3267
- components:
- - pos: -44.5,-14.5
- parent: 2
- type: Transform
- uid: 3269
components:
- pos: -44.5,-13.5
@@ -39255,26 +39238,6 @@ entities:
- pos: -13.5,-37.5
parent: 2
type: Transform
- - uid: 3448
- components:
- - pos: 44.5,36.5
- parent: 2
- type: Transform
- - uid: 3449
- components:
- - pos: 44.5,35.5
- parent: 2
- type: Transform
- - uid: 3450
- components:
- - pos: 44.5,34.5
- parent: 2
- type: Transform
- - uid: 3451
- components:
- - pos: 44.5,33.5
- parent: 2
- type: Transform
- uid: 3452
components:
- pos: 15.5,27.5
@@ -39420,11 +39383,6 @@ entities:
- pos: 31.5,22.5
parent: 2
type: Transform
- - uid: 3481
- components:
- - pos: 33.5,27.5
- parent: 2
- type: Transform
- uid: 3482
components:
- pos: 35.5,26.5
@@ -40595,11 +40553,6 @@ entities:
- pos: -4.5,-52.5
parent: 2
type: Transform
- - uid: 3716
- components:
- - pos: 45.5,36.5
- parent: 2
- type: Transform
- uid: 3717
components:
- pos: 14.5,-40.5
@@ -41025,11 +40978,6 @@ entities:
- pos: -8.5,-45.5
parent: 2
type: Transform
- - uid: 3803
- components:
- - pos: 34.5,12.5
- parent: 2
- type: Transform
- uid: 3804
components:
- pos: -40.5,-15.5
@@ -42650,11 +42598,6 @@ entities:
- pos: -14.5,33.5
parent: 2
type: Transform
- - uid: 4128
- components:
- - pos: 43.5,33.5
- parent: 2
- type: Transform
- uid: 4129
components:
- pos: 31.5,19.5
@@ -42690,11 +42633,6 @@ entities:
- pos: 31.5,21.5
parent: 2
type: Transform
- - uid: 4136
- components:
- - pos: 32.5,20.5
- parent: 2
- type: Transform
- uid: 4137
components:
- pos: -49.5,12.5
@@ -42800,11 +42738,6 @@ entities:
- pos: -51.5,15.5
parent: 2
type: Transform
- - uid: 4158
- components:
- - pos: 31.5,18.5
- parent: 2
- type: Transform
- uid: 4159
components:
- pos: 38.5,33.5
@@ -42815,16 +42748,6 @@ entities:
- pos: 39.5,33.5
parent: 2
type: Transform
- - uid: 4161
- components:
- - pos: 40.5,33.5
- parent: 2
- type: Transform
- - uid: 4162
- components:
- - pos: 42.5,33.5
- parent: 2
- type: Transform
- uid: 4163
components:
- pos: -23.5,-25.5
@@ -43045,21 +42968,6 @@ entities:
- pos: -13.5,-16.5
parent: 2
type: Transform
- - uid: 4207
- components:
- - pos: 42.5,32.5
- parent: 2
- type: Transform
- - uid: 4208
- components:
- - pos: 29.5,15.5
- parent: 2
- type: Transform
- - uid: 4209
- components:
- - pos: 37.5,33.5
- parent: 2
- type: Transform
- uid: 4210
components:
- pos: -42.5,-8.5
@@ -43225,36 +43133,11 @@ entities:
- pos: 32.5,0.5
parent: 2
type: Transform
- - uid: 4243
- components:
- - pos: 44.5,30.5
- parent: 2
- type: Transform
- uid: 4244
- components:
- - pos: 44.5,31.5
- parent: 2
- type: Transform
- - uid: 4245
- components:
- - pos: 44.5,32.5
- parent: 2
- type: Transform
- - uid: 4246
- components:
- - pos: 45.5,37.5
- parent: 2
- type: Transform
- - uid: 4247
components:
- pos: 32.5,28.5
parent: 2
type: Transform
- - uid: 4248
- components:
- - pos: 34.5,28.5
- parent: 2
- type: Transform
- uid: 4249
components:
- pos: 38.5,27.5
@@ -43707,102 +43590,17 @@ entities:
type: Transform
- uid: 4339
components:
- - pos: 32.5,12.5
- parent: 2
- type: Transform
- - uid: 4340
- components:
- - pos: 31.5,12.5
- parent: 2
- type: Transform
- - uid: 4341
- components:
- - pos: 30.5,12.5
- parent: 2
- type: Transform
- - uid: 4342
- components:
- - pos: 30.5,11.5
- parent: 2
- type: Transform
- - uid: 4343
- components:
- - pos: 30.5,10.5
- parent: 2
- type: Transform
- - uid: 4344
- components:
- - pos: 30.5,9.5
- parent: 2
- type: Transform
- - uid: 4345
- components:
- - pos: 31.5,9.5
- parent: 2
- type: Transform
- - uid: 4346
- components:
- - pos: 32.5,9.5
- parent: 2
- type: Transform
- - uid: 4347
- components:
- - pos: 33.5,9.5
- parent: 2
- type: Transform
- - uid: 4348
- components:
- - pos: 41.5,16.5
+ - pos: 36.5,38.5
parent: 2
type: Transform
- uid: 4349
components:
- - pos: 41.5,15.5
+ - pos: 34.5,28.5
parent: 2
type: Transform
- uid: 4350
components:
- - pos: 46.5,17.5
- parent: 2
- type: Transform
- - uid: 4351
- components:
- - pos: 46.5,18.5
- parent: 2
- type: Transform
- - uid: 4352
- components:
- - pos: 46.5,19.5
- parent: 2
- type: Transform
- - uid: 4353
- components:
- - pos: 46.5,20.5
- parent: 2
- type: Transform
- - uid: 4354
- components:
- - pos: 46.5,21.5
- parent: 2
- type: Transform
- - uid: 4355
- components:
- - pos: 46.5,22.5
- parent: 2
- type: Transform
- - uid: 4356
- components:
- - pos: 46.5,23.5
- parent: 2
- type: Transform
- - uid: 4357
- components:
- - pos: 46.5,24.5
- parent: 2
- type: Transform
- - uid: 4358
- components:
- - pos: 46.5,25.5
+ - pos: 33.5,28.5
parent: 2
type: Transform
- uid: 4359
@@ -44435,11 +44233,6 @@ entities:
- pos: 27.5,11.5
parent: 2
type: Transform
- - uid: 4487
- components:
- - pos: 31.5,17.5
- parent: 2
- type: Transform
- uid: 4488
components:
- pos: 39.5,40.5
@@ -45125,11 +44918,6 @@ entities:
- pos: -9.5,-49.5
parent: 2
type: Transform
- - uid: 4628
- components:
- - pos: 38.5,23.5
- parent: 2
- type: Transform
- uid: 4629
components:
- pos: -31.5,2.5
@@ -46465,11 +46253,6 @@ entities:
- pos: -25.5,-47.5
parent: 2
type: Transform
- - uid: 4896
- components:
- - pos: 38.5,22.5
- parent: 2
- type: Transform
- uid: 4897
components:
- pos: 50.5,-4.5
@@ -51280,11 +51063,6 @@ entities:
- pos: -67.5,-23.5
parent: 2
type: Transform
- - uid: 5861
- components:
- - pos: 33.5,12.5
- parent: 2
- type: Transform
- uid: 5862
components:
- pos: -22.5,37.5
@@ -51345,56 +51123,6 @@ entities:
- pos: -22.5,-48.5
parent: 2
type: Transform
- - uid: 5874
- components:
- - pos: 35.5,12.5
- parent: 2
- type: Transform
- - uid: 5875
- components:
- - pos: 36.5,12.5
- parent: 2
- type: Transform
- - uid: 5876
- components:
- - pos: 37.5,12.5
- parent: 2
- type: Transform
- - uid: 5877
- components:
- - pos: 38.5,12.5
- parent: 2
- type: Transform
- - uid: 5878
- components:
- - pos: 39.5,12.5
- parent: 2
- type: Transform
- - uid: 5879
- components:
- - pos: 36.5,11.5
- parent: 2
- type: Transform
- - uid: 5880
- components:
- - pos: 36.5,10.5
- parent: 2
- type: Transform
- - uid: 5881
- components:
- - pos: 36.5,9.5
- parent: 2
- type: Transform
- - uid: 5882
- components:
- - pos: 30.5,13.5
- parent: 2
- type: Transform
- - uid: 5883
- components:
- - pos: 37.5,19.5
- parent: 2
- type: Transform
- uid: 5884
components:
- pos: -27.5,39.5
@@ -51930,26 +51658,6 @@ entities:
- pos: -21.5,-50.5
parent: 2
type: Transform
- - uid: 5991
- components:
- - pos: 36.5,19.5
- parent: 2
- type: Transform
- - uid: 5992
- components:
- - pos: 39.5,22.5
- parent: 2
- type: Transform
- - uid: 5993
- components:
- - pos: 37.5,23.5
- parent: 2
- type: Transform
- - uid: 5994
- components:
- - pos: 36.5,23.5
- parent: 2
- type: Transform
- uid: 5995
components:
- pos: 34.5,25.5
@@ -51960,46 +51668,6 @@ entities:
- pos: 34.5,24.5
parent: 2
type: Transform
- - uid: 5997
- components:
- - pos: 33.5,20.5
- parent: 2
- type: Transform
- - uid: 5998
- components:
- - pos: 33.5,16.5
- parent: 2
- type: Transform
- - uid: 5999
- components:
- - pos: 38.5,21.5
- parent: 2
- type: Transform
- - uid: 6000
- components:
- - pos: 38.5,20.5
- parent: 2
- type: Transform
- - uid: 6001
- components:
- - pos: 38.5,19.5
- parent: 2
- type: Transform
- - uid: 6002
- components:
- - pos: 38.5,18.5
- parent: 2
- type: Transform
- - uid: 6003
- components:
- - pos: 38.5,17.5
- parent: 2
- type: Transform
- - uid: 6004
- components:
- - pos: 38.5,16.5
- parent: 2
- type: Transform
- uid: 6005
components:
- pos: -36.5,-12.5
@@ -52037,12 +51705,7 @@ entities:
type: Transform
- uid: 6012
components:
- - pos: 39.5,16.5
- parent: 2
- type: Transform
- - uid: 6013
- components:
- - pos: 40.5,16.5
+ - pos: 37.5,26.5
parent: 2
type: Transform
- uid: 6014
@@ -52310,6 +51973,16 @@ entities:
- pos: -51.5,-23.5
parent: 2
type: Transform
+ - uid: 6106
+ components:
+ - pos: 38.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 7182
+ components:
+ - pos: 36.5,32.5
+ parent: 2
+ type: Transform
- uid: 8258
components:
- pos: -10.5,48.5
@@ -52370,6 +52043,31 @@ entities:
- pos: -0.5,51.5
parent: 2
type: Transform
+ - uid: 18345
+ components:
+ - pos: 31.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 18805
+ components:
+ - pos: 31.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 20309
+ components:
+ - pos: 37.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 20345
+ components:
+ - pos: 38.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 20769
+ components:
+ - pos: 58.5,38.5
+ parent: 2
+ type: Transform
- uid: 21609
components:
- pos: 26.5,-16.5
@@ -52420,11 +52118,116 @@ entities:
- pos: 27.5,-15.5
parent: 2
type: Transform
+ - uid: 28177
+ components:
+ - pos: 61.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 28178
+ components:
+ - pos: 61.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 28179
+ components:
+ - pos: 61.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 28194
+ components:
+ - pos: 61.5,44.5
+ parent: 2
+ type: Transform
- uid: 28202
components:
- pos: -4.5,52.5
parent: 2
type: Transform
+ - uid: 28211
+ components:
+ - pos: 61.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 28212
+ components:
+ - pos: 61.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28213
+ components:
+ - pos: 62.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28214
+ components:
+ - pos: 63.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28215
+ components:
+ - pos: 63.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 28217
+ components:
+ - pos: 64.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 28223
+ components:
+ - pos: 65.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 28224
+ components:
+ - pos: 60.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28225
+ components:
+ - pos: 59.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28230
+ components:
+ - pos: 59.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28231
+ components:
+ - pos: 59.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 28237
+ components:
+ - pos: 59.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28238
+ components:
+ - pos: 59.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28239
+ components:
+ - pos: 59.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 28240
+ components:
+ - pos: 57.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28244
+ components:
+ - pos: 56.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28267
+ components:
+ - pos: 55.5,38.5
+ parent: 2
+ type: Transform
- uid: 28297
components:
- pos: -7.5,38.5
@@ -52435,16 +52238,646 @@ entities:
- pos: 39.5,59.5
parent: 2
type: Transform
+ - uid: 28636
+ components:
+ - pos: 60.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28649
+ components:
+ - pos: 61.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28650
+ components:
+ - pos: 62.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28651
+ components:
+ - pos: 62.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 28652
+ components:
+ - pos: 63.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 28653
+ components:
+ - pos: 64.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 28654
+ components:
+ - pos: 64.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28655
+ components:
+ - pos: 64.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28656
+ components:
+ - pos: 64.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 28657
+ components:
+ - pos: 64.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 28658
+ components:
+ - pos: 59.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 28659
+ components:
+ - pos: 36.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28660
+ components:
+ - pos: 36.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 28661
+ components:
+ - pos: 36.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28662
+ components:
+ - pos: 37.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28663
+ components:
+ - pos: 38.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28664
+ components:
+ - pos: 39.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28665
+ components:
+ - pos: 40.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28666
+ components:
+ - pos: 41.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28667
+ components:
+ - pos: 42.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28668
+ components:
+ - pos: 42.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 28669
+ components:
+ - pos: 42.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28670
+ components:
+ - pos: 42.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28671
+ components:
+ - pos: 43.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28672
+ components:
+ - pos: 44.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28673
+ components:
+ - pos: 45.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28674
+ components:
+ - pos: 46.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28675
+ components:
+ - pos: 47.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28676
+ components:
+ - pos: 48.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28677
+ components:
+ - pos: 49.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28678
+ components:
+ - pos: 50.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28679
+ components:
+ - pos: 51.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28680
+ components:
+ - pos: 52.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28683
+ components:
+ - pos: 53.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28706
+ components:
+ - pos: 31.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 28749
+ components:
+ - pos: 31.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 28750
+ components:
+ - pos: 31.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 28751
+ components:
+ - pos: 31.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28752
+ components:
+ - pos: 30.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28753
+ components:
+ - pos: 29.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28754
+ components:
+ - pos: 32.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28755
+ components:
+ - pos: 33.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28756
+ components:
+ - pos: 34.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28758
+ components:
+ - pos: 55.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 28759
+ components:
+ - pos: 45.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28760
+ components:
+ - pos: 43.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28761
+ components:
+ - pos: 42.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28762
+ components:
+ - pos: 36.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 28763
+ components:
+ - pos: 36.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 28764
+ components:
+ - pos: 36.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 28765
+ components:
+ - pos: 36.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 28766
+ components:
+ - pos: 36.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 28767
+ components:
+ - pos: 36.5,8.5
+ parent: 2
+ type: Transform
+ - uid: 28768
+ components:
+ - pos: 37.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 28769
+ components:
+ - pos: 38.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 28770
+ components:
+ - pos: 39.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 28771
+ components:
+ - pos: 40.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 28772
+ components:
+ - pos: 40.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 28773
+ components:
+ - pos: 40.5,8.5
+ parent: 2
+ type: Transform
+ - uid: 28776
+ components:
+ - pos: 44.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28777
+ components:
+ - pos: 41.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28778
+ components:
+ - pos: 40.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28780
+ components:
+ - pos: 35.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 28795
+ components:
+ - pos: 40.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 28796
+ components:
+ - pos: 40.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28797
+ components:
+ - pos: 40.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 28859
+ components:
+ - pos: 40.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 28877
+ components:
+ - pos: 55.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28888
+ components:
+ - pos: 39.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 28893
+ components:
+ - pos: 38.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 28895
+ components:
+ - pos: 37.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 28896
+ components:
+ - pos: 36.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 28897
+ components:
+ - pos: 53.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28936
+ components:
+ - pos: 52.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28937
+ components:
+ - pos: 50.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28938
+ components:
+ - pos: 48.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28939
+ components:
+ - pos: 46.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28940
+ components:
+ - pos: 55.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 28979
+ components:
+ - pos: 55.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 28984
+ components:
+ - pos: 55.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 28985
+ components:
+ - pos: 55.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 28986
+ components:
+ - pos: 55.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29030
+ components:
+ - pos: 35.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 29031
+ components:
+ - pos: 34.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 29032
+ components:
+ - pos: 34.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 29033
+ components:
+ - pos: 37.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 29034
+ components:
+ - pos: 38.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 29035
+ components:
+ - pos: 38.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 29036
+ components:
+ - pos: 38.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 29037
+ components:
+ - pos: 38.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 29038
+ components:
+ - pos: 38.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 29063
+ components:
+ - pos: 38.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 29083
+ components:
+ - pos: 37.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 29084
+ components:
+ - pos: 47.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 29085
+ components:
+ - pos: 49.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 29086
+ components:
+ - pos: 51.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 29087
+ components:
+ - pos: 54.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 29088
+ components:
+ - pos: 55.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 29089
+ components:
+ - pos: 34.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 29090
+ components:
+ - pos: 54.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29091
+ components:
+ - pos: 53.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29095
+ components:
+ - pos: 52.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29576
+ components:
+ - pos: 51.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29577
+ components:
+ - pos: 50.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29578
+ components:
+ - pos: 49.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29579
+ components:
+ - pos: 48.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29580
+ components:
+ - pos: 47.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29581
+ components:
+ - pos: 46.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29582
+ components:
+ - pos: 45.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29583
+ components:
+ - pos: 44.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29592
+ components:
+ - pos: 43.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29598
+ components:
+ - pos: 42.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 29599
+ components:
+ - pos: 35.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 29600
+ components:
+ - pos: 35.5,17.5
+ parent: 2
+ type: Transform
- uid: 29602
components:
- pos: 9.5,46.5
parent: 2
type: Transform
+ - uid: 29620
+ components:
+ - pos: 35.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 29628
+ components:
+ - pos: 35.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 29629
+ components:
+ - pos: 35.5,20.5
+ parent: 2
+ type: Transform
- uid: 31915
components:
- pos: -2.5,52.5
parent: 2
type: Transform
+ - uid: 32362
+ components:
+ - pos: 41.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 32369
+ components:
+ - pos: 41.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32419
+ components:
+ - pos: 41.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 32422
+ components:
+ - pos: 42.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 32425
+ components:
+ - pos: 42.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 32430
+ components:
+ - pos: 42.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 32469
+ components:
+ - pos: 56.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 32508
+ components:
+ - pos: 57.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 32509
+ components:
+ - pos: 58.5,20.5
+ parent: 2
+ type: Transform
- uid: 32769
components:
- pos: 1.5,2.5
@@ -53670,6 +54103,41 @@ entities:
- pos: -4.5,51.5
parent: 2
type: Transform
+ - uid: 35684
+ components:
+ - pos: 49.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 35685
+ components:
+ - pos: 49.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 35686
+ components:
+ - pos: 49.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 35687
+ components:
+ - pos: 50.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 35688
+ components:
+ - pos: 51.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 35689
+ components:
+ - pos: 52.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 35690
+ components:
+ - pos: 53.5,29.5
+ parent: 2
+ type: Transform
- uid: 37061
components:
- pos: 10.5,7.5
@@ -54540,16 +55008,6 @@ entities:
- pos: -10.5,43.5
parent: 2
type: Transform
- - uid: 41313
- components:
- - pos: 48.5,14.5
- parent: 2
- type: Transform
- - uid: 41314
- components:
- - pos: 49.5,14.5
- parent: 2
- type: Transform
- proto: CableApcStack
entities:
- uid: 37214
@@ -54703,6 +55161,18 @@ entities:
pos: -3.105504,10.909064
parent: 34641
type: Transform
+- proto: CableApcStack10
+ entities:
+ - uid: 15337
+ components:
+ - pos: 80.44533,-44.8744
+ parent: 2
+ type: Transform
+ - uid: 15338
+ components:
+ - pos: 80.64845,-44.952526
+ parent: 2
+ type: Transform
- proto: CableHV
entities:
- uid: 3023
@@ -54725,6 +55195,11 @@ entities:
- pos: -11.5,49.5
parent: 2
type: Transform
+ - uid: 5991
+ components:
+ - pos: 76.5,46.5
+ parent: 2
+ type: Transform
- uid: 6094
components:
- pos: 43.5,6.5
@@ -54765,11 +55240,6 @@ entities:
- pos: 42.5,6.5
parent: 2
type: Transform
- - uid: 6102
- components:
- - pos: 60.5,25.5
- parent: 2
- type: Transform
- uid: 6103
components:
- pos: 25.5,7.5
@@ -54785,11 +55255,6 @@ entities:
- pos: 12.5,10.5
parent: 2
type: Transform
- - uid: 6106
- components:
- - pos: 62.5,25.5
- parent: 2
- type: Transform
- uid: 6107
components:
- pos: 45.5,5.5
@@ -54920,11 +55385,6 @@ entities:
- pos: -3.5,-56.5
parent: 2
type: Transform
- - uid: 6133
- components:
- - pos: 58.5,25.5
- parent: 2
- type: Transform
- uid: 6134
components:
- pos: 26.5,7.5
@@ -54950,21 +55410,6 @@ entities:
- pos: 26.5,10.5
parent: 2
type: Transform
- - uid: 6139
- components:
- - pos: 70.5,31.5
- parent: 2
- type: Transform
- - uid: 6140
- components:
- - pos: 66.5,41.5
- parent: 2
- type: Transform
- - uid: 6141
- components:
- - pos: 63.5,25.5
- parent: 2
- type: Transform
- uid: 6142
components:
- pos: 10.5,10.5
@@ -54985,16 +55430,6 @@ entities:
- pos: -23.5,-23.5
parent: 2
type: Transform
- - uid: 6146
- components:
- - pos: 70.5,30.5
- parent: 2
- type: Transform
- - uid: 6147
- components:
- - pos: 64.5,25.5
- parent: 2
- type: Transform
- uid: 6148
components:
- pos: 11.5,10.5
@@ -55125,36 +55560,6 @@ entities:
- pos: -45.5,9.5
parent: 2
type: Transform
- - uid: 6174
- components:
- - pos: 59.5,41.5
- parent: 2
- type: Transform
- - uid: 6175
- components:
- - pos: 54.5,35.5
- parent: 2
- type: Transform
- - uid: 6176
- components:
- - pos: 54.5,33.5
- parent: 2
- type: Transform
- - uid: 6177
- components:
- - pos: 70.5,33.5
- parent: 2
- type: Transform
- - uid: 6178
- components:
- - pos: 58.5,41.5
- parent: 2
- type: Transform
- - uid: 6179
- components:
- - pos: 54.5,31.5
- parent: 2
- type: Transform
- uid: 6180
components:
- pos: 24.5,9.5
@@ -55175,21 +55580,11 @@ entities:
- pos: -32.5,50.5
parent: 2
type: Transform
- - uid: 6184
- components:
- - pos: 54.5,29.5
- parent: 2
- type: Transform
- uid: 6185
components:
- pos: 38.5,-8.5
parent: 2
type: Transform
- - uid: 6186
- components:
- - pos: 54.5,32.5
- parent: 2
- type: Transform
- uid: 6187
components:
- pos: -1.5,-7.5
@@ -55375,56 +55770,16 @@ entities:
- pos: 2.5,-3.5
parent: 2
type: Transform
- - uid: 6224
- components:
- - pos: 61.5,41.5
- parent: 2
- type: Transform
- - uid: 6225
- components:
- - pos: 54.5,30.5
- parent: 2
- type: Transform
- - uid: 6226
- components:
- - pos: 54.5,36.5
- parent: 2
- type: Transform
- - uid: 6227
- components:
- - pos: 60.5,41.5
- parent: 2
- type: Transform
- uid: 6228
components:
- pos: 21.5,31.5
parent: 2
type: Transform
- - uid: 6229
- components:
- - pos: 54.5,37.5
- parent: 2
- type: Transform
- uid: 6230
components:
- pos: 2.5,-4.5
parent: 2
type: Transform
- - uid: 6231
- components:
- - pos: 54.5,34.5
- parent: 2
- type: Transform
- - uid: 6232
- components:
- - pos: 70.5,34.5
- parent: 2
- type: Transform
- - uid: 6233
- components:
- - pos: 70.5,29.5
- parent: 2
- type: Transform
- uid: 6234
components:
- pos: -22.5,52.5
@@ -55450,16 +55805,6 @@ entities:
- pos: -4.5,-56.5
parent: 2
type: Transform
- - uid: 6239
- components:
- - pos: 65.5,25.5
- parent: 2
- type: Transform
- - uid: 6240
- components:
- - pos: 66.5,25.5
- parent: 2
- type: Transform
- uid: 6241
components:
- pos: -44.5,9.5
@@ -55515,11 +55860,6 @@ entities:
- pos: 33.5,67.5
parent: 2
type: Transform
- - uid: 6252
- components:
- - pos: 61.5,25.5
- parent: 2
- type: Transform
- uid: 6253
components:
- pos: 17.5,15.5
@@ -55535,21 +55875,11 @@ entities:
- pos: 6.5,7.5
parent: 2
type: Transform
- - uid: 6256
- components:
- - pos: 38.5,33.5
- parent: 2
- type: Transform
- uid: 6257
components:
- pos: 39.5,33.5
parent: 2
type: Transform
- - uid: 6258
- components:
- - pos: 37.5,33.5
- parent: 2
- type: Transform
- uid: 6259
components:
- pos: 19.5,18.5
@@ -56160,46 +56490,6 @@ entities:
- pos: 45.5,7.5
parent: 2
type: Transform
- - uid: 6381
- components:
- - pos: 63.5,41.5
- parent: 2
- type: Transform
- - uid: 6382
- components:
- - pos: 65.5,41.5
- parent: 2
- type: Transform
- - uid: 6383
- components:
- - pos: 70.5,36.5
- parent: 2
- type: Transform
- - uid: 6384
- components:
- - pos: 49.5,37.5
- parent: 2
- type: Transform
- - uid: 6385
- components:
- - pos: 64.5,41.5
- parent: 2
- type: Transform
- - uid: 6386
- components:
- - pos: 70.5,35.5
- parent: 2
- type: Transform
- - uid: 6387
- components:
- - pos: 70.5,37.5
- parent: 2
- type: Transform
- - uid: 6388
- components:
- - pos: 70.5,32.5
- parent: 2
- type: Transform
- uid: 6389
components:
- pos: -15.5,-11.5
@@ -59385,101 +59675,6 @@ entities:
- pos: -36.5,60.5
parent: 2
type: Transform
- - uid: 7037
- components:
- - pos: 49.5,36.5
- parent: 2
- type: Transform
- - uid: 7038
- components:
- - pos: 49.5,35.5
- parent: 2
- type: Transform
- - uid: 7039
- components:
- - pos: 47.5,35.5
- parent: 2
- type: Transform
- - uid: 7040
- components:
- - pos: 45.5,35.5
- parent: 2
- type: Transform
- - uid: 7041
- components:
- - pos: 42.5,35.5
- parent: 2
- type: Transform
- - uid: 7042
- components:
- - pos: 43.5,35.5
- parent: 2
- type: Transform
- - uid: 7043
- components:
- - pos: 44.5,35.5
- parent: 2
- type: Transform
- - uid: 7044
- components:
- - pos: 44.5,34.5
- parent: 2
- type: Transform
- - uid: 7045
- components:
- - pos: 44.5,33.5
- parent: 2
- type: Transform
- - uid: 7046
- components:
- - pos: 42.5,34.5
- parent: 2
- type: Transform
- - uid: 7047
- components:
- - pos: 42.5,33.5
- parent: 2
- type: Transform
- - uid: 7048
- components:
- - pos: 42.5,32.5
- parent: 2
- type: Transform
- - uid: 7049
- components:
- - pos: 42.5,31.5
- parent: 2
- type: Transform
- - uid: 7050
- components:
- - pos: 41.5,31.5
- parent: 2
- type: Transform
- - uid: 7051
- components:
- - pos: 40.5,31.5
- parent: 2
- type: Transform
- - uid: 7052
- components:
- - pos: 39.5,31.5
- parent: 2
- type: Transform
- - uid: 7053
- components:
- - pos: 38.5,31.5
- parent: 2
- type: Transform
- - uid: 7054
- components:
- - pos: 37.5,31.5
- parent: 2
- type: Transform
- - uid: 7055
- components:
- - pos: 36.5,31.5
- parent: 2
- type: Transform
- uid: 7056
components:
- pos: 26.5,39.5
@@ -59490,36 +59685,11 @@ entities:
- pos: 36.5,33.5
parent: 2
type: Transform
- - uid: 7058
- components:
- - pos: 36.5,32.5
- parent: 2
- type: Transform
- - uid: 7059
- components:
- - pos: 48.5,35.5
- parent: 2
- type: Transform
- - uid: 7060
- components:
- - pos: 46.5,35.5
- parent: 2
- type: Transform
- uid: 7061
components:
- pos: 19.5,16.5
parent: 2
type: Transform
- - uid: 7062
- components:
- - pos: 62.5,41.5
- parent: 2
- type: Transform
- - uid: 7063
- components:
- - pos: 59.5,25.5
- parent: 2
- type: Transform
- uid: 7064
components:
- pos: 19.5,26.5
@@ -59830,36 +60000,6 @@ entities:
- pos: 25.5,18.5
parent: 2
type: Transform
- - uid: 7126
- components:
- - pos: 42.5,36.5
- parent: 2
- type: Transform
- - uid: 7127
- components:
- - pos: 42.5,37.5
- parent: 2
- type: Transform
- - uid: 7128
- components:
- - pos: 43.5,36.5
- parent: 2
- type: Transform
- - uid: 7129
- components:
- - pos: 43.5,37.5
- parent: 2
- type: Transform
- - uid: 7130
- components:
- - pos: 42.5,38.5
- parent: 2
- type: Transform
- - uid: 7131
- components:
- - pos: 43.5,38.5
- parent: 2
- type: Transform
- uid: 7132
components:
- pos: 56.5,-59.5
@@ -60095,11 +60235,6 @@ entities:
- pos: 20.5,25.5
parent: 2
type: Transform
- - uid: 7182
- components:
- - pos: 45.5,33.5
- parent: 2
- type: Transform
- uid: 7183
components:
- pos: -18.5,-13.5
@@ -62245,6 +62380,196 @@ entities:
- pos: -8.5,49.5
parent: 2
type: Transform
+ - uid: 10490
+ components:
+ - pos: 34.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 10592
+ components:
+ - pos: 36.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 15448
+ components:
+ - pos: 78.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 15453
+ components:
+ - pos: 87.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 15455
+ components:
+ - pos: 71.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 15457
+ components:
+ - pos: 79.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 15458
+ components:
+ - pos: 71.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 15461
+ components:
+ - pos: 87.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 15785
+ components:
+ - pos: 87.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 15797
+ components:
+ - pos: 87.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 15800
+ components:
+ - pos: 77.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 15802
+ components:
+ - pos: 81.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 15813
+ components:
+ - pos: 79.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 15817
+ components:
+ - pos: 83.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 15842
+ components:
+ - pos: 71.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 15843
+ components:
+ - pos: 82.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 15844
+ components:
+ - pos: 71.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 15850
+ components:
+ - pos: 71.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 15851
+ components:
+ - pos: 71.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 15880
+ components:
+ - pos: 71.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 16100
+ components:
+ - pos: 75.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 16698
+ components:
+ - pos: 81.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 17462
+ components:
+ - pos: 82.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 17463
+ components:
+ - pos: 87.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 17465
+ components:
+ - pos: 75.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 17466
+ components:
+ - pos: 77.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 17467
+ components:
+ - pos: 80.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 17493
+ components:
+ - pos: 83.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 17498
+ components:
+ - pos: 78.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 17499
+ components:
+ - pos: 80.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 18319
+ components:
+ - pos: 76.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 18327
+ components:
+ - pos: 37.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 18450
+ components:
+ - pos: 87.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 18454
+ components:
+ - pos: 87.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 18770
+ components:
+ - pos: 87.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 18797
+ components:
+ - pos: 87.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 19038
+ components:
+ - pos: 71.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 19250
+ components:
+ - pos: 71.5,42.5
+ parent: 2
+ type: Transform
- uid: 19627
components:
- pos: -10.5,46.5
@@ -62255,6 +62580,16 @@ entities:
- pos: -11.5,46.5
parent: 2
type: Transform
+ - uid: 20306
+ components:
+ - pos: 38.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 20892
+ components:
+ - pos: 38.5,33.5
+ parent: 2
+ type: Transform
- uid: 24408
components:
- pos: -10.5,44.5
@@ -62270,6 +62605,356 @@ entities:
- pos: -10.5,43.5
parent: 2
type: Transform
+ - uid: 26231
+ components:
+ - pos: 58.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26232
+ components:
+ - pos: 58.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 26233
+ components:
+ - pos: 63.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26265
+ components:
+ - pos: 63.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 26384
+ components:
+ - pos: 58.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 26393
+ components:
+ - pos: 58.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 26394
+ components:
+ - pos: 59.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 26435
+ components:
+ - pos: 60.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 26436
+ components:
+ - pos: 61.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 26450
+ components:
+ - pos: 62.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 26507
+ components:
+ - pos: 63.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 26554
+ components:
+ - pos: 63.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 26567
+ components:
+ - pos: 64.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26568
+ components:
+ - pos: 65.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26569
+ components:
+ - pos: 59.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 26575
+ components:
+ - pos: 59.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26576
+ components:
+ - pos: 62.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 26577
+ components:
+ - pos: 62.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26578
+ components:
+ - pos: 59.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 26579
+ components:
+ - pos: 60.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 26580
+ components:
+ - pos: 61.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 26582
+ components:
+ - pos: 62.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 26583
+ components:
+ - pos: 59.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26584
+ components:
+ - pos: 59.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 26585
+ components:
+ - pos: 59.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 26610
+ components:
+ - pos: 36.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 26657
+ components:
+ - pos: 36.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 26680
+ components:
+ - pos: 36.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 26747
+ components:
+ - pos: 36.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 26751
+ components:
+ - pos: 36.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26752
+ components:
+ - pos: 36.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 26779
+ components:
+ - pos: 36.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 26780
+ components:
+ - pos: 36.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26781
+ components:
+ - pos: 37.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26782
+ components:
+ - pos: 38.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26807
+ components:
+ - pos: 39.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26808
+ components:
+ - pos: 40.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26809
+ components:
+ - pos: 41.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26810
+ components:
+ - pos: 42.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 26833
+ components:
+ - pos: 42.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 26836
+ components:
+ - pos: 42.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 26868
+ components:
+ - pos: 42.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26869
+ components:
+ - pos: 43.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26884
+ components:
+ - pos: 44.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26907
+ components:
+ - pos: 45.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26921
+ components:
+ - pos: 46.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26936
+ components:
+ - pos: 47.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26937
+ components:
+ - pos: 48.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 26938
+ components:
+ - pos: 49.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 27088
+ components:
+ - pos: 50.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 27091
+ components:
+ - pos: 51.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 27114
+ components:
+ - pos: 52.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 27139
+ components:
+ - pos: 53.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 27141
+ components:
+ - pos: 54.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 27204
+ components:
+ - pos: 58.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 27217
+ components:
+ - pos: 59.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 27218
+ components:
+ - pos: 59.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 27220
+ components:
+ - pos: 59.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 27390
+ components:
+ - pos: 32.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 27391
+ components:
+ - pos: 33.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 27392
+ components:
+ - pos: 34.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 27396
+ components:
+ - pos: 34.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 27399
+ components:
+ - pos: 34.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 27400
+ components:
+ - pos: 34.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 27406
+ components:
+ - pos: 34.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 27418
+ components:
+ - pos: 34.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 27419
+ components:
+ - pos: 34.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 27423
+ components:
+ - pos: 34.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 27427
+ components:
+ - pos: 34.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 27428
+ components:
+ - pos: 34.5,11.5
+ parent: 2
+ type: Transform
- uid: 28229
components:
- pos: -7.5,46.5
@@ -62665,41 +63350,6 @@ entities:
- pos: -12.5,49.5
parent: 2
type: Transform
- - uid: 41298
- components:
- - pos: 55.5,14.5
- parent: 2
- type: Transform
- - uid: 41299
- components:
- - pos: 56.5,14.5
- parent: 2
- type: Transform
- - uid: 41300
- components:
- - pos: 57.5,14.5
- parent: 2
- type: Transform
- - uid: 41301
- components:
- - pos: 58.5,14.5
- parent: 2
- type: Transform
- - uid: 41302
- components:
- - pos: 59.5,14.5
- parent: 2
- type: Transform
- - uid: 41303
- components:
- - pos: 57.5,13.5
- parent: 2
- type: Transform
- - uid: 41304
- components:
- - pos: 57.5,15.5
- parent: 2
- type: Transform
- uid: 41322
components:
- pos: 26.5,23.5
@@ -62752,116 +63402,153 @@ entities:
- pos: 52.622986,-56.878014
parent: 2
type: Transform
+ - uid: 28684
+ components:
+ - pos: 55.2195,38.779255
+ parent: 2
+ type: Transform
+ - uid: 28685
+ components:
+ - pos: 58.532,38.841755
+ parent: 2
+ type: Transform
+- proto: CableHVStack10
+ entities:
+ - uid: 27425
+ components:
+ - pos: 34.8585,13.283091
+ parent: 2
+ type: Transform
- proto: CableMV
entities:
+ - uid: 375
+ components:
+ - pos: 79.5,46.5
+ parent: 2
+ type: Transform
- uid: 1024
components:
- pos: 8.5,47.5
parent: 2
type: Transform
- - uid: 2379
+ - uid: 1150
components:
- - pos: 3.5,52.5
+ - pos: 71.5,36.5
parent: 2
type: Transform
- - uid: 2380
+ - uid: 1151
components:
- - pos: 5.5,52.5
+ - pos: 82.5,30.5
parent: 2
type: Transform
- - uid: 2895
+ - uid: 1187
components:
- - pos: -9.5,49.5
+ - pos: 81.5,30.5
parent: 2
type: Transform
- - uid: 3013
+ - uid: 1202
components:
- - pos: -10.5,46.5
+ - pos: 80.5,30.5
parent: 2
type: Transform
- - uid: 4607
+ - uid: 1715
components:
- - pos: 7.5,52.5
+ - pos: 76.5,30.5
parent: 2
type: Transform
- - uid: 4608
+ - uid: 1721
components:
- - pos: 8.5,52.5
+ - pos: 75.5,30.5
parent: 2
type: Transform
- - uid: 6647
+ - uid: 1799
components:
- - pos: -11.5,40.5
+ - pos: 79.5,30.5
parent: 2
type: Transform
- - uid: 7621
+ - uid: 1821
components:
- - pos: 66.5,41.5
+ - pos: 78.5,30.5
parent: 2
type: Transform
- - uid: 7622
+ - uid: 1850
components:
- - pos: 8.5,-31.5
+ - pos: 87.5,34.5
parent: 2
type: Transform
- - uid: 7623
+ - uid: 1854
components:
- - pos: 62.5,41.5
+ - pos: 83.5,30.5
parent: 2
type: Transform
- - uid: 7624
+ - uid: 1855
components:
- - pos: 63.5,41.5
+ - pos: 87.5,36.5
parent: 2
type: Transform
- - uid: 7625
+ - uid: 1919
components:
- - pos: 5.5,-30.5
+ - pos: 87.5,35.5
parent: 2
type: Transform
- - uid: 7626
+ - uid: 2379
components:
- - pos: 70.5,30.5
+ - pos: 3.5,52.5
parent: 2
type: Transform
- - uid: 7627
+ - uid: 2380
components:
- - pos: 26.5,20.5
+ - pos: 5.5,52.5
parent: 2
type: Transform
- - uid: 7628
+ - uid: 2895
components:
- - pos: 24.5,20.5
+ - pos: -9.5,49.5
parent: 2
type: Transform
- - uid: 7629
+ - uid: 3013
components:
- - pos: 70.5,37.5
+ - pos: -10.5,46.5
parent: 2
type: Transform
- - uid: 7630
+ - uid: 4607
components:
- - pos: 70.5,33.5
+ - pos: 7.5,52.5
parent: 2
type: Transform
- - uid: 7631
+ - uid: 4608
components:
- - pos: 66.5,25.5
+ - pos: 8.5,52.5
parent: 2
type: Transform
- - uid: 7632
+ - uid: 6647
components:
- - pos: -1.5,-7.5
+ - pos: -11.5,40.5
parent: 2
type: Transform
- - uid: 7633
+ - uid: 7622
components:
- - pos: 61.5,25.5
+ - pos: 8.5,-31.5
parent: 2
type: Transform
- - uid: 7634
+ - uid: 7625
components:
- - pos: 43.5,34.5
+ - pos: 5.5,-30.5
+ parent: 2
+ type: Transform
+ - uid: 7627
+ components:
+ - pos: 26.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 7628
+ components:
+ - pos: 24.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 7632
+ components:
+ - pos: -1.5,-7.5
parent: 2
type: Transform
- uid: 7635
@@ -62909,11 +63596,6 @@ entities:
- pos: 8.5,-32.5
parent: 2
type: Transform
- - uid: 7644
- components:
- - pos: 70.5,29.5
- parent: 2
- type: Transform
- uid: 7645
components:
- pos: 43.5,0.5
@@ -62944,11 +63626,6 @@ entities:
- pos: 22.5,19.5
parent: 2
type: Transform
- - uid: 7651
- components:
- - pos: 65.5,41.5
- parent: 2
- type: Transform
- uid: 7652
components:
- pos: 20.5,16.5
@@ -63009,21 +63686,11 @@ entities:
- pos: 44.5,-4.5
parent: 2
type: Transform
- - uid: 7664
- components:
- - pos: 43.5,35.5
- parent: 2
- type: Transform
- uid: 7665
components:
- pos: -4.5,-48.5
parent: 2
type: Transform
- - uid: 7666
- components:
- - pos: 64.5,41.5
- parent: 2
- type: Transform
- uid: 7667
components:
- pos: -4.5,-46.5
@@ -63044,11 +63711,6 @@ entities:
- pos: 25.5,15.5
parent: 2
type: Transform
- - uid: 7671
- components:
- - pos: 58.5,41.5
- parent: 2
- type: Transform
- uid: 7672
components:
- pos: 2.5,-30.5
@@ -63084,11 +63746,6 @@ entities:
- pos: -32.5,18.5
parent: 2
type: Transform
- - uid: 7679
- components:
- - pos: 54.5,33.5
- parent: 2
- type: Transform
- uid: 7680
components:
- pos: -31.5,18.5
@@ -63149,16 +63806,6 @@ entities:
- pos: 24.5,13.5
parent: 2
type: Transform
- - uid: 7692
- components:
- - pos: 60.5,41.5
- parent: 2
- type: Transform
- - uid: 7693
- components:
- - pos: 54.5,31.5
- parent: 2
- type: Transform
- uid: 7694
components:
- pos: 58.5,8.5
@@ -63289,11 +63936,6 @@ entities:
- pos: 30.5,28.5
parent: 2
type: Transform
- - uid: 7720
- components:
- - pos: 30.5,27.5
- parent: 2
- type: Transform
- uid: 7721
components:
- pos: 30.5,26.5
@@ -63509,26 +64151,11 @@ entities:
- pos: -41.5,14.5
parent: 2
type: Transform
- - uid: 7764
- components:
- - pos: 54.5,32.5
- parent: 2
- type: Transform
- - uid: 7765
- components:
- - pos: 54.5,29.5
- parent: 2
- type: Transform
- uid: 7766
components:
- pos: -44.5,9.5
parent: 2
type: Transform
- - uid: 7767
- components:
- - pos: 59.5,41.5
- parent: 2
- type: Transform
- uid: 7768
components:
- pos: 47.5,-10.5
@@ -63554,11 +64181,6 @@ entities:
- pos: -3.5,-20.5
parent: 2
type: Transform
- - uid: 7773
- components:
- - pos: 54.5,36.5
- parent: 2
- type: Transform
- uid: 7774
components:
- pos: 7.5,-8.5
@@ -63569,26 +64191,6 @@ entities:
- pos: -0.5,-12.5
parent: 2
type: Transform
- - uid: 7776
- components:
- - pos: 54.5,37.5
- parent: 2
- type: Transform
- - uid: 7777
- components:
- - pos: 54.5,34.5
- parent: 2
- type: Transform
- - uid: 7778
- components:
- - pos: 54.5,35.5
- parent: 2
- type: Transform
- - uid: 7779
- components:
- - pos: 61.5,41.5
- parent: 2
- type: Transform
- uid: 7780
components:
- pos: 45.5,-4.5
@@ -63649,26 +64251,11 @@ entities:
- pos: 54.5,-26.5
parent: 2
type: Transform
- - uid: 7792
- components:
- - pos: 54.5,30.5
- parent: 2
- type: Transform
- uid: 7793
components:
- pos: -16.5,-11.5
parent: 2
type: Transform
- - uid: 7794
- components:
- - pos: 49.5,37.5
- parent: 2
- type: Transform
- - uid: 7795
- components:
- - pos: 70.5,36.5
- parent: 2
- type: Transform
- uid: 7796
components:
- pos: -15.5,-9.5
@@ -63734,36 +64321,6 @@ entities:
- pos: 7.5,-33.5
parent: 2
type: Transform
- - uid: 7809
- components:
- - pos: 70.5,32.5
- parent: 2
- type: Transform
- - uid: 7810
- components:
- - pos: 70.5,31.5
- parent: 2
- type: Transform
- - uid: 7811
- components:
- - pos: 70.5,35.5
- parent: 2
- type: Transform
- - uid: 7812
- components:
- - pos: 70.5,34.5
- parent: 2
- type: Transform
- - uid: 7813
- components:
- - pos: 60.5,25.5
- parent: 2
- type: Transform
- - uid: 7814
- components:
- - pos: 65.5,25.5
- parent: 2
- type: Transform
- uid: 7815
components:
- pos: 21.5,-28.5
@@ -63909,21 +64466,11 @@ entities:
- pos: -67.5,-23.5
parent: 2
type: Transform
- - uid: 7844
- components:
- - pos: 64.5,25.5
- parent: 2
- type: Transform
- uid: 7845
components:
- pos: -14.5,36.5
parent: 2
type: Transform
- - uid: 7846
- components:
- - pos: 63.5,25.5
- parent: 2
- type: Transform
- uid: 7847
components:
- pos: -4.5,-51.5
@@ -63999,14 +64546,9 @@ entities:
- pos: -27.5,-19.5
parent: 2
type: Transform
- - uid: 7862
- components:
- - pos: 62.5,25.5
- parent: 2
- type: Transform
- uid: 7863
components:
- - pos: 59.5,25.5
+ - pos: 31.5,26.5
parent: 2
type: Transform
- uid: 7864
@@ -64019,11 +64561,6 @@ entities:
- pos: 44.5,-13.5
parent: 2
type: Transform
- - uid: 7866
- components:
- - pos: 58.5,25.5
- parent: 2
- type: Transform
- uid: 7867
components:
- pos: 46.5,7.5
@@ -67109,26 +67646,6 @@ entities:
- pos: 15.5,-16.5
parent: 2
type: Transform
- - uid: 8500
- components:
- - pos: 49.5,35.5
- parent: 2
- type: Transform
- - uid: 8501
- components:
- - pos: 46.5,35.5
- parent: 2
- type: Transform
- - uid: 8502
- components:
- - pos: 43.5,32.5
- parent: 2
- type: Transform
- - uid: 8503
- components:
- - pos: 43.5,31.5
- parent: 2
- type: Transform
- uid: 8504
components:
- pos: -31.5,-53.5
@@ -67154,46 +67671,6 @@ entities:
- pos: -22.5,-49.5
parent: 2
type: Transform
- - uid: 8509
- components:
- - pos: 42.5,35.5
- parent: 2
- type: Transform
- - uid: 8510
- components:
- - pos: 43.5,35.5
- parent: 2
- type: Transform
- - uid: 8511
- components:
- - pos: 44.5,35.5
- parent: 2
- type: Transform
- - uid: 8512
- components:
- - pos: 45.5,35.5
- parent: 2
- type: Transform
- - uid: 8513
- components:
- - pos: 47.5,35.5
- parent: 2
- type: Transform
- - uid: 8514
- components:
- - pos: 43.5,33.5
- parent: 2
- type: Transform
- - uid: 8515
- components:
- - pos: 44.5,31.5
- parent: 2
- type: Transform
- - uid: 8516
- components:
- - pos: 49.5,36.5
- parent: 2
- type: Transform
- uid: 8517
components:
- pos: -22.5,-47.5
@@ -67414,11 +67891,6 @@ entities:
- pos: 3.5,-49.5
parent: 2
type: Transform
- - uid: 8561
- components:
- - pos: 48.5,35.5
- parent: 2
- type: Transform
- uid: 8562
components:
- pos: 2.5,-49.5
@@ -67789,11 +68261,6 @@ entities:
- pos: -22.5,-45.5
parent: 2
type: Transform
- - uid: 8636
- components:
- - pos: 44.5,30.5
- parent: 2
- type: Transform
- uid: 8637
components:
- pos: -18.5,-20.5
@@ -73669,6 +74136,66 @@ entities:
- pos: -17.5,18.5
parent: 2
type: Transform
+ - uid: 19251
+ components:
+ - pos: 71.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 19261
+ components:
+ - pos: 71.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 19595
+ components:
+ - pos: 75.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 19597
+ components:
+ - pos: 71.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 19598
+ components:
+ - pos: 77.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 19599
+ components:
+ - pos: 71.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 19600
+ components:
+ - pos: 71.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 19613
+ components:
+ - pos: 71.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 19614
+ components:
+ - pos: 71.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 19615
+ components:
+ - pos: 71.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 19616
+ components:
+ - pos: 78.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 19617
+ components:
+ - pos: 76.5,46.5
+ parent: 2
+ type: Transform
- uid: 19730
components:
- pos: -10.5,45.5
@@ -73679,11 +74206,71 @@ entities:
- pos: -10.5,47.5
parent: 2
type: Transform
+ - uid: 21293
+ components:
+ - pos: 77.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 21473
+ components:
+ - pos: 82.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 21495
+ components:
+ - pos: 81.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 21500
+ components:
+ - pos: 87.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 21514
+ components:
+ - pos: 80.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 21567
+ components:
+ - pos: 83.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 21568
+ components:
+ - pos: 87.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 21573
+ components:
+ - pos: 87.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 21575
+ components:
+ - pos: 87.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 21576
+ components:
+ - pos: 87.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 21588
+ components:
+ - pos: 87.5,37.5
+ parent: 2
+ type: Transform
- uid: 22437
components:
- pos: -12.5,49.5
parent: 2
type: Transform
+ - uid: 23141
+ components:
+ - pos: 39.5,22.5
+ parent: 2
+ type: Transform
- uid: 23345
components:
- pos: -10.5,43.5
@@ -73704,6 +74291,81 @@ entities:
- pos: 74.5,-46.5
parent: 2
type: Transform
+ - uid: 28021
+ components:
+ - pos: 58.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 28036
+ components:
+ - pos: 59.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 28043
+ components:
+ - pos: 59.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 28068
+ components:
+ - pos: 59.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 28073
+ components:
+ - pos: 59.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 28075
+ components:
+ - pos: 59.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 28076
+ components:
+ - pos: 59.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28159
+ components:
+ - pos: 59.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28161
+ components:
+ - pos: 60.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28162
+ components:
+ - pos: 61.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 28163
+ components:
+ - pos: 61.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 28169
+ components:
+ - pos: 61.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 28171
+ components:
+ - pos: 61.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 28172
+ components:
+ - pos: 61.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 28173
+ components:
+ - pos: 61.5,47.5
+ parent: 2
+ type: Transform
- uid: 28234
components:
- pos: -10.5,49.5
@@ -73729,6 +74391,141 @@ entities:
- pos: -11.5,43.5
parent: 2
type: Transform
+ - uid: 28701
+ components:
+ - pos: 40.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 28709
+ components:
+ - pos: 40.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28714
+ components:
+ - pos: 31.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 28715
+ components:
+ - pos: 31.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 28716
+ components:
+ - pos: 31.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 28719
+ components:
+ - pos: 31.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 28720
+ components:
+ - pos: 31.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 28721
+ components:
+ - pos: 31.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28722
+ components:
+ - pos: 32.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28723
+ components:
+ - pos: 33.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28724
+ components:
+ - pos: 34.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28725
+ components:
+ - pos: 34.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 28726
+ components:
+ - pos: 34.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28727
+ components:
+ - pos: 34.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 28728
+ components:
+ - pos: 34.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 28729
+ components:
+ - pos: 34.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 28730
+ components:
+ - pos: 34.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28731
+ components:
+ - pos: 33.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28732
+ components:
+ - pos: 32.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28733
+ components:
+ - pos: 31.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28735
+ components:
+ - pos: 31.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 28736
+ components:
+ - pos: 31.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 28737
+ components:
+ - pos: 31.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 28738
+ components:
+ - pos: 38.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28739
+ components:
+ - pos: 37.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28740
+ components:
+ - pos: 36.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 28741
+ components:
+ - pos: 35.5,22.5
+ parent: 2
+ type: Transform
- uid: 28812
components:
- pos: 9.5,47.5
@@ -74674,26 +75471,6 @@ entities:
- pos: -13.5,49.5
parent: 2
type: Transform
- - uid: 41306
- components:
- - pos: 47.5,9.5
- parent: 2
- type: Transform
- - uid: 41307
- components:
- - pos: 47.5,10.5
- parent: 2
- type: Transform
- - uid: 41308
- components:
- - pos: 47.5,11.5
- parent: 2
- type: Transform
- - uid: 41309
- components:
- - pos: 47.5,12.5
- parent: 2
- type: Transform
- proto: CableMVStack1
entities:
- uid: 9820
@@ -74861,18 +75638,6 @@ entities:
pos: 23.5,15.5
parent: 2
type: Transform
- - uid: 9845
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,37.5
- parent: 2
- type: Transform
- - uid: 9846
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,38.5
- parent: 2
- type: Transform
- uid: 9847
components:
- rot: 3.141592653589793 rad
@@ -74901,6 +75666,30 @@ entities:
- pos: -50.5,-64.5
parent: 2
type: Transform
+ - uid: 26196
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 63.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26197
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 63.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 26198
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 58.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 26230
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 58.5,44.5
+ parent: 2
+ type: Transform
- uid: 33508
components:
- rot: 1.5707963267948966 rad
@@ -74912,6 +75701,38 @@ entities:
- pos: 9.5,2.5
parent: 36861
type: Transform
+- proto: Candle
+ entities:
+ - uid: 15306
+ components:
+ - pos: -31.670147,18.129068
+ parent: 2
+ type: Transform
+ - uid: 15308
+ components:
+ - pos: -31.373272,17.97282
+ parent: 2
+ type: Transform
+ - uid: 15309
+ components:
+ - pos: -31.654522,17.832195
+ parent: 2
+ type: Transform
+ - uid: 15310
+ components:
+ - pos: -31.435772,17.613443
+ parent: 2
+ type: Transform
+ - uid: 15311
+ components:
+ - pos: -31.670147,17.504068
+ parent: 2
+ type: Transform
+ - uid: 15312
+ components:
+ - pos: -31.420147,17.300945
+ parent: 2
+ type: Transform
- proto: CannabisSeeds
entities:
- uid: 9854
@@ -75713,6 +76534,181 @@ entities:
- pos: -6.5,-3.5
parent: 2
type: Transform
+ - uid: 11765
+ components:
+ - pos: -44.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 11773
+ components:
+ - pos: -44.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 11775
+ components:
+ - pos: -44.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 11792
+ components:
+ - pos: -44.5,2.5
+ parent: 2
+ type: Transform
+ - uid: 11793
+ components:
+ - pos: -43.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 11794
+ components:
+ - pos: -43.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 11796
+ components:
+ - pos: -44.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 11860
+ components:
+ - pos: -43.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 11889
+ components:
+ - pos: -43.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 11913
+ components:
+ - pos: -43.5,2.5
+ parent: 2
+ type: Transform
+ - uid: 11929
+ components:
+ - pos: -42.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 11930
+ components:
+ - pos: -42.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 11944
+ components:
+ - pos: -42.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 11949
+ components:
+ - pos: -42.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 11964
+ components:
+ - pos: -42.5,2.5
+ parent: 2
+ type: Transform
+ - uid: 11973
+ components:
+ - pos: -41.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 11980
+ components:
+ - pos: -41.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 11990
+ components:
+ - pos: -41.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 11991
+ components:
+ - pos: -41.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 11999
+ components:
+ - pos: -41.5,2.5
+ parent: 2
+ type: Transform
+ - uid: 12001
+ components:
+ - pos: -40.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 12007
+ components:
+ - pos: -40.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 12008
+ components:
+ - pos: -40.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12009
+ components:
+ - pos: -40.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 12010
+ components:
+ - pos: -40.5,2.5
+ parent: 2
+ type: Transform
+ - uid: 12013
+ components:
+ - pos: -39.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 12015
+ components:
+ - pos: -39.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 12019
+ components:
+ - pos: -39.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12170
+ components:
+ - pos: -39.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 12171
+ components:
+ - pos: -39.5,2.5
+ parent: 2
+ type: Transform
+ - uid: 12174
+ components:
+ - pos: -38.5,-1.5
+ parent: 2
+ type: Transform
+ - uid: 12215
+ components:
+ - pos: -38.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 12216
+ components:
+ - pos: -38.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12217
+ components:
+ - pos: -38.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 12218
+ components:
+ - pos: -38.5,2.5
+ parent: 2
+ type: Transform
- uid: 33515
components:
- pos: -8.5,19.5
@@ -76173,6 +77169,46 @@ entities:
type: Transform
- proto: Catwalk
entities:
+ - uid: 200
+ components:
+ - pos: 66.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 365
+ components:
+ - pos: 66.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 366
+ components:
+ - pos: 66.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 1140
+ components:
+ - pos: 92.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 1141
+ components:
+ - pos: 92.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 1142
+ components:
+ - pos: 92.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 1143
+ components:
+ - pos: 92.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 1147
+ components:
+ - pos: 92.5,37.5
+ parent: 2
+ type: Transform
- uid: 3026
components:
- pos: -10.5,39.5
@@ -76189,12 +77225,67 @@ entities:
- pos: -11.5,42.5
parent: 2
type: Transform
+ - uid: 6184
+ components:
+ - pos: 66.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 6227
+ components:
+ - pos: 66.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 6239
+ components:
+ - pos: 92.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 6256
+ components:
+ - pos: 92.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 6381
+ components:
+ - pos: 92.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 6385
+ components:
+ - pos: 36.5,32.5
+ parent: 2
+ type: Transform
- uid: 6642
components:
- rot: -1.5707963267948966 rad
pos: -10.5,49.5
parent: 2
type: Transform
+ - uid: 7040
+ components:
+ - pos: 66.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 7844
+ components:
+ - pos: 92.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 7846
+ components:
+ - pos: 36.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 7862
+ components:
+ - pos: 92.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 7866
+ components:
+ - pos: 92.5,46.5
+ parent: 2
+ type: Transform
- uid: 8247
components:
- rot: -1.5707963267948966 rad
@@ -76206,6 +77297,11 @@ entities:
- pos: -10.5,43.5
parent: 2
type: Transform
+ - uid: 8509
+ components:
+ - pos: 92.5,43.5
+ parent: 2
+ type: Transform
- uid: 10079
components:
- pos: -57.5,-23.5
@@ -76213,8 +77309,7 @@ entities:
type: Transform
- uid: 10080
components:
- - rot: 3.141592653589793 rad
- pos: 49.5,31.5
+ - pos: 66.5,43.5
parent: 2
type: Transform
- uid: 10081
@@ -76460,12 +77555,6 @@ entities:
pos: -14.5,-11.5
parent: 2
type: Transform
- - uid: 10127
- components:
- - rot: 3.141592653589793 rad
- pos: 51.5,20.5
- parent: 2
- type: Transform
- uid: 10128
components:
- pos: 26.5,10.5
@@ -76534,12 +77623,6 @@ entities:
- pos: -9.5,-12.5
parent: 2
type: Transform
- - uid: 10141
- components:
- - rot: 3.141592653589793 rad
- pos: 65.5,20.5
- parent: 2
- type: Transform
- uid: 10142
components:
- rot: 1.5707963267948966 rad
@@ -76991,12 +78074,6 @@ entities:
pos: 47.5,4.5
parent: 2
type: Transform
- - uid: 10227
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,32.5
- parent: 2
- type: Transform
- uid: 10228
components:
- pos: 11.5,13.5
@@ -77301,12 +78378,6 @@ entities:
- pos: 34.5,-40.5
parent: 2
type: Transform
- - uid: 10289
- components:
- - rot: 3.141592653589793 rad
- pos: 62.5,20.5
- parent: 2
- type: Transform
- uid: 10290
components:
- pos: -25.5,-55.5
@@ -77337,12 +78408,6 @@ entities:
- pos: 28.5,-8.5
parent: 2
type: Transform
- - uid: 10296
- components:
- - rot: 3.141592653589793 rad
- pos: 59.5,20.5
- parent: 2
- type: Transform
- uid: 10297
components:
- rot: 1.5707963267948966 rad
@@ -78330,94 +79395,9 @@ entities:
pos: -36.5,65.5
parent: 2
type: Transform
- - uid: 10476
- components:
- - pos: 75.5,23.5
- parent: 2
- type: Transform
- - uid: 10477
- components:
- - pos: 75.5,45.5
- parent: 2
- type: Transform
- - uid: 10478
- components:
- - pos: 74.5,46.5
- parent: 2
- type: Transform
- uid: 10479
components:
- - pos: 75.5,27.5
- parent: 2
- type: Transform
- - uid: 10480
- components:
- - pos: 75.5,29.5
- parent: 2
- type: Transform
- - uid: 10481
- components:
- - pos: 75.5,35.5
- parent: 2
- type: Transform
- - uid: 10482
- components:
- - pos: 75.5,37.5
- parent: 2
- type: Transform
- - uid: 10483
- components:
- - pos: 75.5,36.5
- parent: 2
- type: Transform
- - uid: 10484
- components:
- - pos: 75.5,20.5
- parent: 2
- type: Transform
- - uid: 10485
- components:
- - pos: 73.5,46.5
- parent: 2
- type: Transform
- - uid: 10486
- components:
- - pos: 75.5,46.5
- parent: 2
- type: Transform
- - uid: 10487
- components:
- - pos: 75.5,44.5
- parent: 2
- type: Transform
- - uid: 10488
- components:
- - pos: 75.5,34.5
- parent: 2
- type: Transform
- - uid: 10489
- components:
- - pos: 75.5,43.5
- parent: 2
- type: Transform
- - uid: 10490
- components:
- - pos: 73.5,20.5
- parent: 2
- type: Transform
- - uid: 10491
- components:
- - pos: 75.5,24.5
- parent: 2
- type: Transform
- - uid: 10492
- components:
- - pos: 75.5,39.5
- parent: 2
- type: Transform
- - uid: 10493
- components:
- - pos: 36.5,33.5
+ - pos: 66.5,32.5
parent: 2
type: Transform
- uid: 10494
@@ -78492,8 +79472,7 @@ entities:
type: Transform
- uid: 10507
components:
- - rot: 3.141592653589793 rad
- pos: 52.5,20.5
+ - pos: 92.5,29.5
parent: 2
type: Transform
- uid: 10508
@@ -78629,29 +79608,24 @@ entities:
pos: -41.5,13.5
parent: 2
type: Transform
- - uid: 10532
- components:
- - pos: 75.5,42.5
- parent: 2
- type: Transform
- uid: 10533
components:
- - pos: 75.5,41.5
+ - pos: 92.5,28.5
parent: 2
type: Transform
- uid: 10534
components:
- - pos: 75.5,38.5
+ - pos: 92.5,30.5
parent: 2
type: Transform
- uid: 10535
components:
- - pos: 75.5,42.5
+ - pos: 68.5,51.5
parent: 2
type: Transform
- uid: 10536
components:
- - pos: 75.5,40.5
+ - pos: 67.5,51.5
parent: 2
type: Transform
- uid: 10537
@@ -78721,32 +79695,7 @@ entities:
type: Transform
- uid: 10549
components:
- - rot: 3.141592653589793 rad
- pos: 36.5,32.5
- parent: 2
- type: Transform
- - uid: 10550
- components:
- - rot: 3.141592653589793 rad
- pos: 36.5,31.5
- parent: 2
- type: Transform
- - uid: 10551
- components:
- - rot: 3.141592653589793 rad
- pos: 37.5,31.5
- parent: 2
- type: Transform
- - uid: 10552
- components:
- - rot: 3.141592653589793 rad
- pos: 38.5,31.5
- parent: 2
- type: Transform
- - uid: 10553
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,23.5
+ - pos: 92.5,35.5
parent: 2
type: Transform
- uid: 10554
@@ -78831,208 +79780,24 @@ entities:
- pos: -18.5,-12.5
parent: 2
type: Transform
- - uid: 10570
- components:
- - rot: 3.141592653589793 rad
- pos: 64.5,20.5
- parent: 2
- type: Transform
- - uid: 10571
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,37.5
- parent: 2
- type: Transform
- - uid: 10572
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,27.5
- parent: 2
- type: Transform
- - uid: 10573
- components:
- - rot: 3.141592653589793 rad
- pos: 68.5,20.5
- parent: 2
- type: Transform
- - uid: 10574
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,36.5
- parent: 2
- type: Transform
- - uid: 10575
- components:
- - rot: 3.141592653589793 rad
- pos: 56.5,20.5
- parent: 2
- type: Transform
- - uid: 10576
- components:
- - rot: 3.141592653589793 rad
- pos: 61.5,20.5
- parent: 2
- type: Transform
- - uid: 10577
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,20.5
- parent: 2
- type: Transform
- - uid: 10578
- components:
- - rot: 3.141592653589793 rad
- pos: 53.5,20.5
- parent: 2
- type: Transform
- - uid: 10579
- components:
- - rot: 3.141592653589793 rad
- pos: 57.5,20.5
- parent: 2
- type: Transform
- - uid: 10580
- components:
- - rot: 3.141592653589793 rad
- pos: 54.5,20.5
- parent: 2
- type: Transform
- - uid: 10581
- components:
- - rot: 3.141592653589793 rad
- pos: 58.5,20.5
- parent: 2
- type: Transform
- - uid: 10582
- components:
- - rot: 3.141592653589793 rad
- pos: 66.5,20.5
- parent: 2
- type: Transform
- - uid: 10583
- components:
- - rot: 3.141592653589793 rad
- pos: 63.5,20.5
- parent: 2
- type: Transform
- - uid: 10584
- components:
- - rot: 3.141592653589793 rad
- pos: 48.5,37.5
- parent: 2
- type: Transform
- - uid: 10585
- components:
- - rot: 3.141592653589793 rad
- pos: 60.5,20.5
- parent: 2
- type: Transform
- - uid: 10586
- components:
- - rot: 3.141592653589793 rad
- pos: 55.5,20.5
- parent: 2
- type: Transform
- - uid: 10587
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,35.5
- parent: 2
- type: Transform
- - uid: 10588
- components:
- - rot: 3.141592653589793 rad
- pos: 69.5,20.5
- parent: 2
- type: Transform
- - uid: 10589
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,34.5
- parent: 2
- type: Transform
- - uid: 10590
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,33.5
- parent: 2
- type: Transform
- - uid: 10591
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,25.5
- parent: 2
- type: Transform
- - uid: 10592
- components:
- - rot: 3.141592653589793 rad
- pos: 70.5,20.5
- parent: 2
- type: Transform
- - uid: 10593
- components:
- - rot: 3.141592653589793 rad
- pos: 71.5,20.5
- parent: 2
- type: Transform
- uid: 10594
components:
- - rot: 3.141592653589793 rad
- pos: 67.5,20.5
- parent: 2
- type: Transform
- - uid: 10595
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,26.5
- parent: 2
- type: Transform
- - uid: 10596
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,24.5
- parent: 2
- type: Transform
- - uid: 10597
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,30.5
- parent: 2
- type: Transform
- - uid: 10598
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,29.5
+ - pos: 83.5,51.5
parent: 2
type: Transform
- uid: 10599
components:
- - rot: 3.141592653589793 rad
- pos: 49.5,28.5
+ - pos: 66.5,48.5
parent: 2
type: Transform
- uid: 10600
components:
- - rot: 3.141592653589793 rad
- pos: 49.5,22.5
- parent: 2
- type: Transform
- - uid: 10601
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,21.5
- parent: 2
- type: Transform
- - uid: 10602
- components:
- - rot: 3.141592653589793 rad
- pos: 50.5,20.5
+ - pos: 66.5,51.5
parent: 2
type: Transform
- uid: 10603
components:
- - rot: 3.141592653589793 rad
- pos: 72.5,20.5
+ - pos: 66.5,47.5
parent: 2
type: Transform
- uid: 10604
@@ -79045,217 +79810,29 @@ entities:
- pos: -16.5,-11.5
parent: 2
type: Transform
- - uid: 10606
- components:
- - pos: 75.5,25.5
- parent: 2
- type: Transform
- uid: 10607
components:
- - pos: 75.5,22.5
- parent: 2
- type: Transform
- - uid: 10608
- components:
- - pos: 75.5,21.5
+ - pos: 66.5,46.5
parent: 2
type: Transform
- uid: 10609
components:
- - rot: 3.141592653589793 rad
- pos: 72.5,46.5
- parent: 2
- type: Transform
- - uid: 10610
- components:
- - rot: 3.141592653589793 rad
- pos: 71.5,46.5
+ - pos: 66.5,49.5
parent: 2
type: Transform
- uid: 10611
components:
- - rot: 3.141592653589793 rad
- pos: 70.5,46.5
- parent: 2
- type: Transform
- - uid: 10612
- components:
- - rot: 3.141592653589793 rad
- pos: 69.5,46.5
- parent: 2
- type: Transform
- - uid: 10613
- components:
- - rot: 3.141592653589793 rad
- pos: 68.5,46.5
- parent: 2
- type: Transform
- - uid: 10614
- components:
- - rot: 3.141592653589793 rad
- pos: 67.5,46.5
+ - pos: 66.5,50.5
parent: 2
type: Transform
- uid: 10615
components:
- - rot: 3.141592653589793 rad
- pos: 66.5,46.5
+ - pos: 92.5,31.5
parent: 2
type: Transform
- uid: 10616
components:
- - rot: 3.141592653589793 rad
- pos: 65.5,46.5
- parent: 2
- type: Transform
- - uid: 10617
- components:
- - rot: 3.141592653589793 rad
- pos: 64.5,46.5
- parent: 2
- type: Transform
- - uid: 10618
- components:
- - rot: 3.141592653589793 rad
- pos: 63.5,46.5
- parent: 2
- type: Transform
- - uid: 10619
- components:
- - rot: 3.141592653589793 rad
- pos: 62.5,46.5
- parent: 2
- type: Transform
- - uid: 10620
- components:
- - rot: 3.141592653589793 rad
- pos: 61.5,46.5
- parent: 2
- type: Transform
- - uid: 10621
- components:
- - rot: 3.141592653589793 rad
- pos: 60.5,46.5
- parent: 2
- type: Transform
- - uid: 10622
- components:
- - rot: 3.141592653589793 rad
- pos: 59.5,46.5
- parent: 2
- type: Transform
- - uid: 10623
- components:
- - rot: 3.141592653589793 rad
- pos: 58.5,46.5
- parent: 2
- type: Transform
- - uid: 10624
- components:
- - rot: 3.141592653589793 rad
- pos: 57.5,46.5
- parent: 2
- type: Transform
- - uid: 10625
- components:
- - rot: 3.141592653589793 rad
- pos: 56.5,46.5
- parent: 2
- type: Transform
- - uid: 10626
- components:
- - rot: 3.141592653589793 rad
- pos: 55.5,46.5
- parent: 2
- type: Transform
- - uid: 10627
- components:
- - rot: 3.141592653589793 rad
- pos: 54.5,46.5
- parent: 2
- type: Transform
- - uid: 10628
- components:
- - rot: 3.141592653589793 rad
- pos: 53.5,46.5
- parent: 2
- type: Transform
- - uid: 10629
- components:
- - rot: 3.141592653589793 rad
- pos: 52.5,46.5
- parent: 2
- type: Transform
- - uid: 10630
- components:
- - rot: 3.141592653589793 rad
- pos: 51.5,46.5
- parent: 2
- type: Transform
- - uid: 10631
- components:
- - rot: 3.141592653589793 rad
- pos: 50.5,46.5
- parent: 2
- type: Transform
- - uid: 10632
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,46.5
- parent: 2
- type: Transform
- - uid: 10633
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,45.5
- parent: 2
- type: Transform
- - uid: 10634
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,44.5
- parent: 2
- type: Transform
- - uid: 10635
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,43.5
- parent: 2
- type: Transform
- - uid: 10636
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,42.5
- parent: 2
- type: Transform
- - uid: 10637
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,41.5
- parent: 2
- type: Transform
- - uid: 10638
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,40.5
- parent: 2
- type: Transform
- - uid: 10639
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,39.5
- parent: 2
- type: Transform
- - uid: 10640
- components:
- - rot: 3.141592653589793 rad
- pos: 49.5,38.5
- parent: 2
- type: Transform
- - uid: 10641
- components:
- - rot: 3.141592653589793 rad
- pos: 38.5,41.5
+ - pos: 92.5,33.5
parent: 2
type: Transform
- uid: 10642
@@ -79342,11 +79919,6 @@ entities:
pos: 39.5,42.5
parent: 2
type: Transform
- - uid: 10656
- components:
- - pos: 36.5,41.5
- parent: 2
- type: Transform
- uid: 10657
components:
- rot: -1.5707963267948966 rad
@@ -79379,11 +79951,6 @@ entities:
- pos: 36.5,40.5
parent: 2
type: Transform
- - uid: 10663
- components:
- - pos: 37.5,41.5
- parent: 2
- type: Transform
- uid: 10664
components:
- pos: 39.5,44.5
@@ -79399,52 +79966,12 @@ entities:
- pos: -56.5,-16.5
parent: 2
type: Transform
- - uid: 10667
- components:
- - pos: 39.5,41.5
- parent: 2
- type: Transform
- - uid: 10668
- components:
- - pos: 75.5,26.5
- parent: 2
- type: Transform
- - uid: 10669
- components:
- - pos: 75.5,32.5
- parent: 2
- type: Transform
- - uid: 10670
- components:
- - pos: 75.5,28.5
- parent: 2
- type: Transform
- - uid: 10671
- components:
- - pos: 75.5,31.5
- parent: 2
- type: Transform
- - uid: 10672
- components:
- - pos: 75.5,30.5
- parent: 2
- type: Transform
- - uid: 10673
- components:
- - pos: 74.5,20.5
- parent: 2
- type: Transform
- uid: 10674
components:
- rot: 3.141592653589793 rad
pos: 26.5,55.5
parent: 2
type: Transform
- - uid: 10675
- components:
- - pos: 75.5,33.5
- parent: 2
- type: Transform
- uid: 10676
components:
- pos: 43.5,10.5
@@ -80910,11 +81437,6 @@ entities:
pos: -65.5,-64.5
parent: 2
type: Transform
- - uid: 10943
- components:
- - pos: 75.5,41.5
- parent: 2
- type: Transform
- uid: 10944
components:
- pos: 34.5,-41.5
@@ -81472,11 +81994,606 @@ entities:
- pos: 27.5,44.5
parent: 2
type: Transform
+ - uid: 14325
+ components:
+ - pos: 38.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 15402
+ components:
+ - pos: 39.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 15692
+ components:
+ - pos: 42.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 15693
+ components:
+ - pos: 42.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 15796
+ components:
+ - pos: 42.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 18819
+ components:
+ - pos: 42.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 19797
+ components:
+ - pos: 66.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 19798
+ components:
+ - pos: 91.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19799
+ components:
+ - pos: 90.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19800
+ components:
+ - pos: 89.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19801
+ components:
+ - pos: 88.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19852
+ components:
+ - pos: 82.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19890
+ components:
+ - pos: 66.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 19891
+ components:
+ - pos: 66.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 19911
+ components:
+ - pos: 81.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19980
+ components:
+ - pos: 41.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 20026
+ components:
+ - pos: 36.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 20779
+ components:
+ - pos: 66.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 21208
+ components:
+ - pos: 88.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 21376
+ components:
+ - pos: 42.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 21384
+ components:
+ - pos: 40.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 21386
+ components:
+ - pos: 42.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 21390
+ components:
+ - pos: 42.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 21395
+ components:
+ - pos: 87.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21398
+ components:
+ - pos: 84.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21402
+ components:
+ - pos: 66.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 21460
+ components:
+ - pos: 85.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21589
+ components:
+ - pos: 86.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21604
+ components:
+ - pos: 92.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 21610
+ components:
+ - pos: 92.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 21615
+ components:
+ - pos: 92.5,49.5
+ parent: 2
+ type: Transform
+ - uid: 21617
+ components:
+ - pos: 92.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21680
+ components:
+ - pos: 66.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 21733
+ components:
+ - pos: 76.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 21734
+ components:
+ - pos: 78.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 21738
+ components:
+ - pos: 89.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 21740
+ components:
+ - pos: 66.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 21805
+ components:
+ - pos: 72.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21821
+ components:
+ - pos: 80.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21822
+ components:
+ - pos: 76.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21880
+ components:
+ - pos: 79.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21881
+ components:
+ - pos: 78.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 21987
+ components:
+ - pos: 42.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 21996
+ components:
+ - pos: 44.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22020
+ components:
+ - pos: 71.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 22021
+ components:
+ - pos: 43.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22025
+ components:
+ - pos: 74.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 22026
+ components:
+ - pos: 90.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 22027
+ components:
+ - pos: 45.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22402
+ components:
+ - pos: 52.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22454
+ components:
+ - pos: 51.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22496
+ components:
+ - pos: 41.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 22497
+ components:
+ - pos: 47.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22567
+ components:
+ - pos: 48.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22577
+ components:
+ - pos: 49.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 22674
+ components:
+ - pos: 42.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 23270
+ components:
+ - pos: 68.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 23271
+ components:
+ - pos: 46.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 23273
+ components:
+ - pos: 50.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 23462
+ components:
+ - pos: 92.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 23463
+ components:
+ - pos: 92.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 23464
+ components:
+ - pos: 92.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 23466
+ components:
+ - pos: 91.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 23467
+ components:
+ - pos: 67.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 23567
+ components:
+ - pos: 80.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 23568
+ components:
+ - pos: 72.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 23628
+ components:
+ - pos: 73.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 23689
+ components:
+ - pos: 42.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 23883
+ components:
+ - pos: 75.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24032
+ components:
+ - pos: 69.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24033
+ components:
+ - pos: 82.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24034
+ components:
+ - pos: 84.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24738
+ components:
+ - pos: 92.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 24739
+ components:
+ - pos: 66.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 24741
+ components:
+ - pos: 66.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 24755
+ components:
+ - pos: 71.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 24763
+ components:
+ - pos: 73.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 24767
+ components:
+ - pos: 77.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 24819
+ components:
+ - pos: 75.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 24820
+ components:
+ - pos: 74.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 24821
+ components:
+ - pos: 69.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 24822
+ components:
+ - pos: 70.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 24840
+ components:
+ - pos: 66.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 24851
+ components:
+ - pos: 83.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24852
+ components:
+ - pos: 70.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24872
+ components:
+ - pos: 66.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 24954
+ components:
+ - pos: 66.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 25230
+ components:
+ - pos: 86.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 25231
+ components:
+ - pos: 81.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 25232
+ components:
+ - pos: 79.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 25233
+ components:
+ - pos: 85.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 25234
+ components:
+ - pos: 87.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 25243
+ components:
+ - pos: 42.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 25248
+ components:
+ - pos: 41.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 25261
+ components:
+ - pos: 42.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 25269
+ components:
+ - pos: 42.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 25318
+ components:
+ - pos: 77.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 25949
+ components:
+ - pos: 92.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 25953
+ components:
+ - pos: 66.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 27331
+ components:
+ - pos: 37.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 27370
+ components:
+ - pos: 36.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 28702
+ components:
+ - pos: 30.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 28743
+ components:
+ - pos: 30.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 28744
+ components:
+ - pos: 31.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 28745
+ components:
+ - pos: 31.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 28746
+ components:
+ - pos: 31.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 28747
+ components:
+ - pos: 34.5,27.5
+ parent: 2
+ type: Transform
- uid: 29932
components:
- pos: 27.5,51.5
parent: 2
type: Transform
+ - uid: 32225
+ components:
+ - pos: 43.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32510
+ components:
+ - pos: 42.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32554
+ components:
+ - pos: 44.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32721
+ components:
+ - pos: 45.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32748
+ components:
+ - pos: 46.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32831
+ components:
+ - pos: 47.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32832
+ components:
+ - pos: 48.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32934
+ components:
+ - pos: 49.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 32935
+ components:
+ - pos: 50.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 33023
+ components:
+ - pos: 51.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 33025
+ components:
+ - pos: 52.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 33046
+ components:
+ - pos: 53.5,28.5
+ parent: 2
+ type: Transform
- uid: 33519
components:
- pos: -2.5,-29.5
@@ -81602,6 +82719,31 @@ entities:
- pos: 4.5,-10.5
parent: 33049
type: Transform
+ - uid: 34493
+ components:
+ - pos: 54.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 34494
+ components:
+ - pos: 55.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 34495
+ components:
+ - pos: 56.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 34496
+ components:
+ - pos: 56.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 34497
+ components:
+ - pos: 56.5,26.5
+ parent: 2
+ type: Transform
- uid: 34553
components:
- pos: -3.5,0.5
@@ -81632,6 +82774,166 @@ entities:
- pos: 4.5,-1.5
parent: 34500
type: Transform
+ - uid: 34564
+ components:
+ - pos: 56.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 34565
+ components:
+ - pos: 56.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 34584
+ components:
+ - pos: 56.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 34586
+ components:
+ - pos: 56.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 34587
+ components:
+ - pos: 56.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 34597
+ components:
+ - pos: 56.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 34598
+ components:
+ - pos: 56.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 34599
+ components:
+ - pos: 55.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 34600
+ components:
+ - pos: 54.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35545
+ components:
+ - pos: 53.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35547
+ components:
+ - pos: 52.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35569
+ components:
+ - pos: 51.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35571
+ components:
+ - pos: 50.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35572
+ components:
+ - pos: 49.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35573
+ components:
+ - pos: 48.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35575
+ components:
+ - pos: 47.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35576
+ components:
+ - pos: 46.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35577
+ components:
+ - pos: 45.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35578
+ components:
+ - pos: 44.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35582
+ components:
+ - pos: 43.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35583
+ components:
+ - pos: 42.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35599
+ components:
+ - pos: 41.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 35600
+ components:
+ - pos: 41.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 35601
+ components:
+ - pos: 57.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 35602
+ components:
+ - pos: 58.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 35644
+ components:
+ - pos: 59.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 35678
+ components:
+ - pos: 60.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 35679
+ components:
+ - pos: 49.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 35680
+ components:
+ - pos: 49.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 35681
+ components:
+ - pos: 49.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 35682
+ components:
+ - pos: 49.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 35683
+ components:
+ - pos: 49.5,33.5
+ parent: 2
+ type: Transform
- uid: 37302
components:
- pos: 8.5,2.5
@@ -81655,6 +82957,13 @@ entities:
pos: 26.627186,-30.156305
parent: 2
type: Transform
+- proto: CellRechargerCircuitboard
+ entities:
+ - uid: 11417
+ components:
+ - pos: 17.442852,4.6225996
+ parent: 2
+ type: Transform
- proto: Chair
entities:
- uid: 980
@@ -82804,12 +84113,86 @@ entities:
pos: 43.5,-67.5
parent: 2
type: Transform
+ - uid: 11519
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -44.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 11743
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -44.5,-15.5
+ parent: 2
+ type: Transform
- uid: 14047
components:
- rot: 1.5707963267948966 rad
pos: -0.5,54.5
parent: 2
type: Transform
+ - uid: 14069
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -46.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 14164
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 14620
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -46.5,-15.5
+ parent: 2
+ type: Transform
+ - uid: 15351
+ components:
+ - pos: 69.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 15352
+ components:
+ - pos: 70.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 15362
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 69.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 15364
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 70.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 15366
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 68.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 15373
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 71.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 15374
+ components:
+ - pos: 68.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 15382
+ components:
+ - pos: 71.5,-43.5
+ parent: 2
+ type: Transform
- uid: 20261
components:
- rot: 1.5707963267948966 rad
@@ -83950,99 +85333,6 @@ entities:
pos: 47.5,-14.5
parent: 2
type: Transform
- - uid: 11410
- components:
- - rot: 3.141592653589793 rad
- pos: -14.5,-33.5
- parent: 2
- type: Transform
- - uid: 11411
- components:
- - pos: -14.5,-31.5
- parent: 2
- type: Transform
- - uid: 11412
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,-33.5
- parent: 2
- type: Transform
- - uid: 11413
- components:
- - rot: 1.5707963267948966 rad
- pos: -45.5,0.5
- parent: 2
- type: Transform
- - uid: 11414
- components:
- - rot: 1.5707963267948966 rad
- pos: -40.5,1.5
- parent: 2
- type: Transform
- - uid: 11415
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,-33.5
- parent: 2
- type: Transform
- - uid: 11416
- components:
- - pos: -13.5,-31.5
- parent: 2
- type: Transform
- - uid: 11417
- components:
- - rot: -1.5707963267948966 rad
- pos: -11.5,-32.5
- parent: 2
- type: Transform
- - uid: 11418
- components:
- - rot: 1.5707963267948966 rad
- pos: -15.5,-32.5
- parent: 2
- type: Transform
- - uid: 11419
- components:
- - pos: -12.5,-31.5
- parent: 2
- type: Transform
- - uid: 11421
- components:
- - rot: 1.5707963267948966 rad
- pos: -40.5,0.5
- parent: 2
- type: Transform
- - uid: 11423
- components:
- - rot: 1.5707963267948966 rad
- pos: -45.5,1.5
- parent: 2
- type: Transform
- - uid: 11425
- components:
- - rot: -1.5707963267948966 rad
- pos: -42.5,1.5
- parent: 2
- type: Transform
- - uid: 11426
- components:
- - rot: -1.5707963267948966 rad
- pos: -42.5,0.5
- parent: 2
- type: Transform
- - uid: 11428
- components:
- - rot: -1.5707963267948966 rad
- pos: -37.5,0.5
- parent: 2
- type: Transform
- - uid: 11429
- components:
- - rot: -1.5707963267948966 rad
- pos: -37.5,1.5
- parent: 2
- type: Transform
- uid: 11430
components:
- rot: 3.141592653589793 rad
@@ -84147,12 +85437,6 @@ entities:
- pos: -33.5,16.5
parent: 2
type: Transform
- - uid: 11450
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,26.5
- parent: 2
- type: Transform
- uid: 11451
components:
- rot: 1.5707963267948966 rad
@@ -84194,12 +85478,6 @@ entities:
pos: -19.5,27.5
parent: 2
type: Transform
- - uid: 11458
- components:
- - rot: 3.141592653589793 rad
- pos: -14.5,26.5
- parent: 2
- type: Transform
- uid: 11459
components:
- rot: 1.5707963267948966 rad
@@ -84252,11 +85530,6 @@ entities:
pos: -5.5,36.5
parent: 2
type: Transform
- - uid: 11468
- components:
- - pos: -14.5,28.5
- parent: 2
- type: Transform
- uid: 11469
components:
- rot: -1.5707963267948966 rad
@@ -84287,11 +85560,6 @@ entities:
pos: -7.5,29.5
parent: 2
type: Transform
- - uid: 11474
- components:
- - pos: -13.5,28.5
- parent: 2
- type: Transform
- uid: 11475
components:
- rot: -1.5707963267948966 rad
@@ -84447,12 +85715,85 @@ entities:
- pos: 47.5,-66.5
parent: 2
type: Transform
+ - uid: 12224
+ components:
+ - pos: -37.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 12225
+ components:
+ - pos: -38.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 12227
+ components:
+ - pos: -44.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 12231
+ components:
+ - pos: -45.5,1.5
+ parent: 2
+ type: Transform
+ - uid: 12232
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -43.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12233
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -36.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12234
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -37.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 12235
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -38.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 12236
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -44.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 12240
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -45.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 12253
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -46.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12254
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -39.5,0.5
+ parent: 2
+ type: Transform
- uid: 28219
components:
- rot: 3.141592653589793 rad
pos: -8.5,52.5
parent: 2
type: Transform
+ - uid: 30118
+ components:
+ - pos: 29.5,16.5
+ parent: 2
+ type: Transform
- uid: 32887
components:
- rot: 3.141592653589793 rad
@@ -84533,6 +85874,11 @@ entities:
- pos: -73.45303,21.616426
parent: 2
type: Transform
+ - uid: 20259
+ components:
+ - pos: 39.516777,31.599976
+ parent: 2
+ type: Transform
- proto: chem_master
entities:
- uid: 11508
@@ -84567,6 +85913,18 @@ entities:
- pos: 8.5,-39.5
parent: 2
type: Transform
+- proto: ChemicalPayload
+ entities:
+ - uid: 15348
+ components:
+ - pos: 80.766815,-45.586338
+ parent: 2
+ type: Transform
+ - uid: 15349
+ components:
+ - pos: 80.766815,-45.586338
+ parent: 2
+ type: Transform
- proto: ChemistryEmptyBottle01
entities:
- uid: 15064
@@ -84611,12 +85969,6 @@ entities:
type: Transform
- proto: ChessBoard
entities:
- - uid: 11520
- components:
- - rot: 1.5707963267948966 rad
- pos: -38.62244,1.1955941
- parent: 2
- type: Transform
- uid: 11521
components:
- pos: -80.519226,23.553926
@@ -84792,8 +86144,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 1.8856695
- - 7.0937095
+ - 1.8968438
+ - 7.1357465
- 0
- 0
- 0
@@ -84810,10 +86162,10 @@ entities:
showEnts: False
occludes: True
ents:
- - 11552
- - 11549
- - 11551
- 11550
+ - 11551
+ - 11549
+ - 11552
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -85030,6 +86382,16 @@ entities:
- pos: -40.5,-25.5
parent: 2
type: Transform
+ - uid: 15318
+ components:
+ - pos: 78.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 15319
+ components:
+ - pos: 80.5,-41.5
+ parent: 2
+ type: Transform
- proto: ClosetChefFilled
entities:
- uid: 11090
@@ -85507,6 +86869,11 @@ entities:
- pos: 40.5,-47.5
parent: 2
type: Transform
+ - uid: 19809
+ components:
+ - pos: 54.5,39.5
+ parent: 2
+ type: Transform
- uid: 37316
components:
- pos: 13.5,15.5
@@ -85943,6 +87310,11 @@ entities:
- pos: 30.5,-62.5
parent: 2
type: Transform
+ - uid: 18796
+ components:
+ - pos: 56.5,39.5
+ parent: 2
+ type: Transform
- uid: 37317
components:
- pos: 8.5,15.5
@@ -86050,6 +87422,16 @@ entities:
- pos: 53.5,-26.5
parent: 2
type: Transform
+ - uid: 15321
+ components:
+ - pos: 80.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 15327
+ components:
+ - pos: 78.5,-41.5
+ parent: 2
+ type: Transform
- proto: ClosetL3SecurityFilled
entities:
- uid: 11649
@@ -86150,6 +87532,19 @@ entities:
- 0
- 0
type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1239
+ - 1241
+ - 1305
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
- uid: 8248
components:
- pos: -39.5,-41.5
@@ -86259,8 +87654,8 @@ entities:
immutable: False
temperature: 293.14926
moles:
- - 20.73429
- - 78.00041
+ - 3.4047332
+ - 12.808282
- 0
- 0
- 0
@@ -86652,6 +88047,16 @@ entities:
- pos: 53.5,-27.5
parent: 2
type: Transform
+ - uid: 15763
+ components:
+ - pos: 54.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 21624
+ components:
+ - pos: 56.5,37.5
+ parent: 2
+ type: Transform
- uid: 35593
components:
- pos: 39.5,-42.5
@@ -86788,6 +88193,11 @@ entities:
- pos: -48.5,32.5
parent: 2
type: Transform
+ - uid: 27227
+ components:
+ - pos: 61.5,40.5
+ parent: 2
+ type: Transform
- proto: ClosetWall
entities:
- uid: 11727
@@ -86813,42 +88223,6 @@ entities:
- 0
- 0
type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 11744
- - 11746
- - 11745
- - 11733
- - 11751
- - 11752
- - 11753
- - 11754
- - 11755
- - 11756
- - 11742
- - 11757
- - 11743
- - 11737
- - 11736
- - 11735
- - 11734
- - 11732
- - 11731
- - 11730
- - 11729
- - 11741
- - 11740
- - 11739
- - 11738
- - 11750
- - 11728
- - 11749
- - 11748
- - 11747
- type: ContainerContainer
- proto: ClosetWallEmergencyFilledRandom
entities:
- uid: 11758
@@ -87126,6 +88500,13 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+- proto: ClothingBackpackDuffelSyndicatePyjamaBundle
+ entities:
+ - uid: 1568
+ components:
+ - pos: -98.52211,-21.44994
+ parent: 2
+ type: Transform
- proto: ClothingBackpackDuffelVirology
entities:
- uid: 11767
@@ -87225,6 +88606,11 @@ entities:
- type: InsideEntityStorage
- proto: ClothingBeltUtilityFilled
entities:
+ - uid: 11748
+ components:
+ - pos: 70.49584,7.4276795
+ parent: 2
+ type: Transform
- uid: 11769
components:
- pos: 16.477047,-15.220655
@@ -87250,6 +88636,11 @@ entities:
- pos: 11.506261,-6.729804
parent: 2
type: Transform
+ - uid: 11805
+ components:
+ - pos: 70.49584,7.7714295
+ parent: 2
+ type: Transform
- uid: 41225
components:
- pos: 15.476066,34.36879
@@ -87357,6 +88748,21 @@ entities:
type: Transform
- proto: ClothingEyesGlassesMeson
entities:
+ - uid: 14165
+ components:
+ - pos: 11.215215,27.775042
+ parent: 2
+ type: Transform
+ - uid: 14166
+ components:
+ - pos: 11.168339,27.400043
+ parent: 2
+ type: Transform
+ - uid: 14167
+ components:
+ - pos: 11.496464,27.587542
+ parent: 2
+ type: Transform
- uid: 21934
components:
- flags: InContainer
@@ -87558,6 +88964,11 @@ entities:
type: Transform
- proto: ClothingHandsGlovesColorYellow
entities:
+ - uid: 906
+ components:
+ - pos: 40.475437,-36.440826
+ parent: 2
+ type: Transform
- uid: 11829
components:
- pos: 17.421223,-31.504238
@@ -87761,6 +89172,11 @@ entities:
type: Transform
- proto: ClothingHeadHatCatEars
entities:
+ - uid: 1306
+ components:
+ - pos: -15.525692,11.424662
+ parent: 2
+ type: Transform
- uid: 11863
components:
- flags: InContainer
@@ -87924,6 +89340,51 @@ entities:
type: Transform
- proto: ClothingHeadHatHardhatYellow
entities:
+ - uid: 14033
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14103
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14105
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14106
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14107
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
- uid: 33574
components:
- rot: 1.5707963267948966 rad
@@ -88027,6 +89488,53 @@ entities:
- pos: -5.5667963,-61.47314
parent: 2
type: Transform
+- proto: ClothingHeadHatSantahat
+ entities:
+ - uid: 6069
+ components:
+ - pos: -27.309048,-10.865174
+ parent: 2
+ type: Transform
+ - uid: 11415
+ components:
+ - pos: 16.610695,16.34822
+ parent: 2
+ type: Transform
+ - uid: 11750
+ components:
+ - pos: -12.796273,-4.3352833
+ parent: 2
+ type: Transform
+ - uid: 11766
+ components:
+ - pos: 4.119414,-17.45536
+ parent: 2
+ type: Transform
+ - uid: 11770
+ components:
+ - pos: 15.5237055,-45.51032
+ parent: 2
+ type: Transform
+ - uid: 11774
+ components:
+ - pos: 5.1948338,-4.5513744
+ parent: 2
+ type: Transform
+ - uid: 11778
+ components:
+ - pos: 25.39201,-23.37675
+ parent: 2
+ type: Transform
+ - uid: 11887
+ components:
+ - pos: 57.469196,6.47461
+ parent: 2
+ type: Transform
+ - uid: 11888
+ components:
+ - pos: 46.413616,1.4745882
+ parent: 2
+ type: Transform
- proto: ClothingHeadHatSecsoftFlipped
entities:
- uid: 11877
@@ -88155,6 +89663,13 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+- proto: ClothingHeadHatXmasCrown
+ entities:
+ - uid: 11757
+ components:
+ - pos: -56.544838,3.4602919
+ parent: 2
+ type: Transform
- proto: ClothingHeadHatYellowsoft
entities:
- uid: 41011
@@ -88266,6 +89781,21 @@ entities:
- pos: -36.301346,-25.271973
parent: 2
type: Transform
+ - uid: 14330
+ components:
+ - pos: -36.696323,-25.290514
+ parent: 2
+ type: Transform
+ - uid: 14336
+ components:
+ - pos: -35.727573,-27.212389
+ parent: 2
+ type: Transform
+ - uid: 14337
+ components:
+ - pos: -35.46195,-27.212389
+ parent: 2
+ type: Transform
- uid: 37324
components:
- pos: 8.331543,-4.271103
@@ -88329,6 +89859,86 @@ entities:
- pos: -52.48539,-9.849234
parent: 2
type: Transform
+- proto: ClothingHeadPyjamaSyndicateRed
+ entities:
+ - uid: 1228
+ components:
+ - desc: С новым годом!
+ name: Рождественная шапочка
+ type: MetaData
+ - pos: -41.506218,-1.2236826
+ parent: 2
+ type: Transform
+ - uid: 1234
+ components:
+ - name: Рождественная шапочка
+ type: MetaData
+ - pos: -42.756218,-0.94243264
+ parent: 2
+ type: Transform
+ - uid: 1238
+ components:
+ - pos: -43.412468,-0.47368252
+ parent: 2
+ type: Transform
+ - uid: 9880
+ components:
+ - name: Рождественная шапочка
+ type: MetaData
+ - pos: -40.59997,2.229442
+ parent: 2
+ type: Transform
+ - uid: 9884
+ components:
+ - name: Рождественная шапочка
+ type: MetaData
+ - pos: -39.599968,1.3388169
+ parent: 2
+ type: Transform
+ - uid: 9977
+ components:
+ - name: Рождественная шапочка
+ type: MetaData
+ - pos: -39.365597,0.37006688
+ parent: 2
+ type: Transform
+ - uid: 11085
+ components:
+ - desc: С новым годом!
+ name: Рождественная шапочка
+ type: MetaData
+ - pos: -40.28747,-1.004933
+ parent: 2
+ type: Transform
+ - uid: 11411
+ components:
+ - name: Рождественная шапочка
+ type: MetaData
+ - pos: -43.521847,0.37006742
+ parent: 2
+ type: Transform
+ - uid: 11412
+ components:
+ - name: Рождественная шапочка
+ type: MetaData
+ - pos: -42.412468,2.0731921
+ parent: 2
+ type: Transform
+ - uid: 11413
+ components:
+ - name: Рождественная шапочка
+ type: MetaData
+ - pos: -43.365593,1.1513174
+ parent: 2
+ type: Transform
+ - uid: 11754
+ components:
+ - desc: С новым годом!
+ name: Новогодний колпак
+ type: MetaData
+ - pos: -100.43432,-18.46557
+ parent: 2
+ type: Transform
- proto: ClothingHeadRastaHat
entities:
- uid: 11917
@@ -88484,6 +90094,15 @@ entities:
type: Transform
- proto: ClothingMaskMuzzle
entities:
+ - uid: 1239
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1589
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
- uid: 11935
components:
- pos: -17.671164,-49.383003
@@ -88571,11 +90190,6 @@ entities:
- pos: -13.6835575,-0.6812849
parent: 34641
type: Transform
- - uid: 41238
- components:
- - pos: -43.884377,0.67611855
- parent: 2
- type: Transform
- proto: ClothingNeckCloakMiner
entities:
- uid: 33556
@@ -88627,6 +90241,13 @@ entities:
- pos: -48.299446,-2.401756
parent: 2
type: Transform
+- proto: ClothingNeckGoldmedal
+ entities:
+ - uid: 14303
+ components:
+ - pos: -14.505693,9.557271
+ parent: 2
+ type: Transform
- proto: ClothingNeckHorrific
entities:
- uid: 11950
@@ -88812,11 +90433,16 @@ entities:
- pos: -26.162022,-23.331688
parent: 2
type: Transform
-- proto: ClothingOuterArmorHeavy
+- proto: ClothingOuterArmorHeavyRed
entities:
- - uid: 11974
+ - uid: 1307
components:
- - pos: -35.365284,-27.473103
+ - pos: -35.393726,-27.567745
+ parent: 2
+ type: Transform
+ - uid: 9858
+ components:
+ - pos: -35.65935,-27.55212
parent: 2
type: Transform
- proto: ClothingOuterArmorReflective
@@ -88826,6 +90452,11 @@ entities:
- pos: -37.46554,-23.37394
parent: 2
type: Transform
+ - uid: 15237
+ components:
+ - pos: -37.33978,-23.607283
+ parent: 2
+ type: Transform
- proto: ClothingOuterArmorRiot
entities:
- uid: 11977
@@ -88872,6 +90503,11 @@ entities:
component: Armor
title: null
type: GroupExamine
+ - uid: 14329
+ components:
+ - pos: -36.665077,-25.728016
+ parent: 2
+ type: Transform
- uid: 37328
components:
- pos: 8.300293,-4.646103
@@ -88911,6 +90547,13 @@ entities:
- pos: 10.347534,8.50322
parent: 36861
type: Transform
+- proto: ClothingOuterCoatCaptain
+ entities:
+ - uid: 11886
+ components:
+ - pos: 5.2780924,-5.4218755
+ parent: 2
+ type: Transform
- proto: ClothingOuterCoatPirate
entities:
- uid: 40971
@@ -89611,6 +91254,17 @@ entities:
- pos: 33.51788,-6.380672
parent: 2
type: Transform
+- proto: ClothingUniformJumpskirtJanimaidmini
+ entities:
+ - uid: 1241
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 1589
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
- proto: ClothingUniformJumpskirtPerformer
entities:
- uid: 12033
@@ -89719,6 +91373,53 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitEngineering
+ entities:
+ - uid: 14018
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14031
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14032
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14102
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 14104
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 13034
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
- proto: ClothingUniformJumpsuitHawaiBlack
entities:
- uid: 12035
@@ -89860,6 +91561,11 @@ entities:
type: Transform
- proto: CombatKnife
entities:
+ - uid: 15287
+ components:
+ - pos: -39.77617,42.31228
+ parent: 2
+ type: Transform
- uid: 33565
components:
- flags: InContainer
@@ -90058,6 +91764,24 @@ entities:
- pos: -20.5,-46.5
parent: 2
type: Transform
+ - uid: 20776
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 38.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 20778
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 40.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 30137
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 31.5,14.5
+ parent: 2
+ type: Transform
- uid: 32223
components:
- pos: -33.5,-33.5
@@ -90863,15 +92587,19 @@ entities:
type: Transform
- proto: ContainmentFieldGenerator
entities:
- - uid: 12172
+ - uid: 4248
components:
- - pos: 30.5,31.5
+ - pos: 31.5,31.5
parent: 2
type: Transform
- - uid: 12173
+ - uid: 9048
components:
- - rot: -1.5707963267948966 rad
- pos: 58.5,37.5
+ - pos: 75.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 12172
+ components:
+ - pos: 30.5,31.5
parent: 2
type: Transform
- proto: ConveyorBelt
@@ -91279,13 +93007,106 @@ entities:
- pos: 57.5,-58.5
parent: 2
type: Transform
+ - uid: 25991
+ components:
+ - pos: 58.5,-2.5
+ parent: 2
+ type: Transform
+ - uid: 25997
+ components:
+ - pos: 66.5,-4.5
+ parent: 2
+ type: Transform
+ - uid: 25998
+ components:
+ - pos: 65.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 26017
+ components:
+ - pos: 62.5,-4.5
+ parent: 2
+ type: Transform
- proto: CrateEngineering
entities:
+ - uid: 13034
+ components:
+ - pos: 8.5,27.5
+ parent: 2
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 14107
+ - 14106
+ - 14105
+ - 14104
+ - 14103
+ - 14102
+ - 14033
+ - 14032
+ - 14031
+ - 14018
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
- uid: 41151
components:
- pos: 12.5,23.5
parent: 2
type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1713
+ - 1694
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
- proto: CrateEngineeringAMEControl
entities:
- uid: 12228
@@ -91397,6 +93218,25 @@ entities:
- 0
- 0
type: EntityStorage
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 15254
+ components:
+ - pos: -45.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 27226
+ components:
+ - pos: 58.5,40.5
+ parent: 2
+ type: Transform
+- proto: CrateEngineeringSecure
+ entities:
+ - uid: 13033
+ components:
+ - pos: 7.5,27.5
+ parent: 2
+ type: Transform
- proto: CrateFilledSpawner
entities:
- uid: 12238
@@ -91404,6 +93244,26 @@ entities:
- pos: 33.5,-41.5
parent: 2
type: Transform
+ - uid: 25963
+ components:
+ - pos: 59.5,-4.5
+ parent: 2
+ type: Transform
+ - uid: 25965
+ components:
+ - pos: 62.5,-0.5
+ parent: 2
+ type: Transform
+ - uid: 25989
+ components:
+ - pos: 70.5,-4.5
+ parent: 2
+ type: Transform
+ - uid: 25990
+ components:
+ - pos: 66.5,-2.5
+ parent: 2
+ type: Transform
- uid: 33598
components:
- pos: 6.5,14.5
@@ -91867,16 +93727,16 @@ entities:
showEnts: False
occludes: True
ents:
- - 35646
- - 35649
- - 35648
- - 35651
- - 35650
- - 35652
- - 1730
- - 35645
- - 35598
- 35647
+ - 35598
+ - 35645
+ - 1730
+ - 35652
+ - 35650
+ - 35651
+ - 35648
+ - 35649
+ - 35646
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -91892,8 +93752,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -92129,6 +93989,20 @@ entities:
- 0
- 0
type: EntityStorage
+- proto: CrateSyndicateSurplusBundle
+ entities:
+ - uid: 427
+ components:
+ - pos: -100.5,-21.5
+ parent: 2
+ type: Transform
+- proto: CrateTrashCart
+ entities:
+ - uid: 14891
+ components:
+ - pos: -16.5,-70.5
+ parent: 2
+ type: Transform
- proto: CrateTrashCartFilled
entities:
- uid: 11427
@@ -92160,11 +94034,6 @@ entities:
type: Transform
- proto: CrayonBox
entities:
- - uid: 12275
- components:
- - pos: -43.595634,1.3230695
- parent: 2
- type: Transform
- uid: 12276
components:
- pos: -31.496952,19.121698
@@ -92471,6 +94340,18 @@ entities:
- pos: -43.5,-30.5
parent: 2
type: Transform
+ - uid: 15240
+ components:
+ - pos: -38.5,44.5
+ parent: 2
+ type: Transform
+- proto: DawInstrumentMachineCircuitboard
+ entities:
+ - uid: 9852
+ components:
+ - pos: 16.856503,4.622585
+ parent: 2
+ type: Transform
- proto: DebugAPC
entities:
- uid: 35071
@@ -102665,9 +104546,9 @@ entities:
type: Transform
- proto: DonkpocketBoxSpawner
entities:
- - uid: 14018
+ - uid: 11746
components:
- - pos: 17.5,27.5
+ - pos: 68.5,7.5
parent: 2
type: Transform
- uid: 14019
@@ -102701,6 +104582,11 @@ entities:
- pos: 8.5,49.5
parent: 2
type: Transform
+ - uid: 30119
+ components:
+ - pos: 28.5,16.5
+ parent: 2
+ type: Transform
- uid: 33666
components:
- pos: -0.5,-13.5
@@ -102719,6 +104605,13 @@ entities:
- pos: 15.490203,5.5367494
parent: 2
type: Transform
+- proto: DoubleEmergencyNitrogenTankFilled
+ entities:
+ - uid: 14161
+ components:
+ - pos: 4.539605,17.49369
+ parent: 2
+ type: Transform
- proto: DoubleEmergencyOxygenTank
entities:
- uid: 14029
@@ -102728,50 +104621,16 @@ entities:
type: Transform
- proto: DoubleEmergencyOxygenTankFilled
entities:
- - uid: 14030
- components:
- - pos: -36.381535,-72.50018
- parent: 2
- type: Transform
- - uid: 14031
- components:
- - pos: 4.223965,17.52464
- parent: 2
- type: Transform
- - toggleActionEntity: 901
- type: GasTank
- - type: ActionsContainer
- - containers:
- actions: !type:Container
- ents:
- - 901
- type: ContainerContainer
- - uid: 14032
+ - uid: 903
components:
- - pos: 3.8020904,17.587137
+ - pos: 4.039605,17.540565
parent: 2
type: Transform
- - toggleActionEntity: 902
- type: GasTank
- - type: ActionsContainer
- - containers:
- actions: !type:Container
- ents:
- - 902
- type: ContainerContainer
- - uid: 14033
+ - uid: 14030
components:
- - pos: 4.7783985,17.587198
+ - pos: -36.381535,-72.50018
parent: 2
type: Transform
- - toggleActionEntity: 903
- type: GasTank
- - type: ActionsContainer
- - containers:
- actions: !type:Container
- ents:
- - 903
- type: ContainerContainer
- proto: Dresser
entities:
- uid: 14034
@@ -102836,6 +104695,27 @@ entities:
type: Transform
- proto: DrinkBeerBottleFull
entities:
+ - uid: 367
+ components:
+ - pos: 55.64522,37.71487
+ parent: 2
+ type: Transform
+ - uid: 11567
+ components:
+ - desc: Алкогольный напиток, приготовленный на ингредиентах счастья.
+ name: Just_Art
+ type: MetaData
+ - pos: -45.4636,-15.420471
+ parent: 2
+ type: Transform
+ - uid: 11608
+ components:
+ - desc: Алкогольный напиток, приготовленный на ингредиентах и основе страданий.
+ name: ll_misha_ll
+ type: MetaData
+ - pos: -45.4636,-16.232971
+ parent: 2
+ type: Transform
- uid: 14044
components:
- pos: -51.679432,27.635262
@@ -102853,7 +104733,7 @@ entities:
type: Transform
- uid: 14051
components:
- - pos: 26.472784,-11.381029
+ - pos: 26.761278,-11.420265
parent: 2
type: Transform
- uid: 14052
@@ -102907,6 +104787,21 @@ entities:
- pos: -32.254234,-46.11701
parent: 2
type: Transform
+ - uid: 15247
+ components:
+ - pos: -51.39646,27.79457
+ parent: 2
+ type: Transform
+ - uid: 15248
+ components:
+ - pos: -51.099583,27.607069
+ parent: 2
+ type: Transform
+ - uid: 19611
+ components:
+ - pos: 55.33272,37.839867
+ parent: 2
+ type: Transform
- proto: DrinkBlueCuracaoBottleFull
entities:
- uid: 14062
@@ -102975,6 +104870,33 @@ entities:
- pos: 6.746622,20.779253
parent: 36861
type: Transform
+- proto: DrinkChampagneBottleFull
+ entities:
+ - uid: 12256
+ components:
+ - pos: -44.44591,0.56769115
+ parent: 2
+ type: Transform
+ - uid: 12259
+ components:
+ - pos: -45.63341,0.63019127
+ parent: 2
+ type: Transform
+ - uid: 12260
+ components:
+ - pos: -37.347458,0.5364403
+ parent: 2
+ type: Transform
+ - uid: 12261
+ components:
+ - pos: -38.581833,0.6458157
+ parent: 2
+ type: Transform
+ - uid: 12262
+ components:
+ - pos: 5.691601,-4.7871966
+ parent: 2
+ type: Transform
- proto: DrinkCoffee
entities:
- uid: 14070
@@ -103078,21 +105000,6 @@ entities:
- pos: 27.633467,-39.18853
parent: 2
type: Transform
- - uid: 14085
- components:
- - pos: 38.153137,29.487295
- parent: 2
- type: Transform
- - uid: 14086
- components:
- - pos: 37.889153,29.487295
- parent: 2
- type: Transform
- - uid: 14087
- components:
- - pos: 38.034344,29.566452
- parent: 2
- type: Transform
- uid: 14088
components:
- pos: -27.69302,28.046894
@@ -103230,6 +105137,13 @@ entities:
- pos: 13.381386,40.74678
parent: 2
type: Transform
+- proto: DrinkMug
+ entities:
+ - uid: 30116
+ components:
+ - pos: 29.649178,17.652874
+ parent: 2
+ type: Transform
- proto: DrinkMugBlue
entities:
- uid: 14115
@@ -103326,11 +105240,6 @@ entities:
type: Transform
- proto: DrinkMugRainbow
entities:
- - uid: 14133
- components:
- - pos: -12.142689,-32.10777
- parent: 2
- type: Transform
- uid: 14134
components:
- pos: 5.775449,-34.50338
@@ -103353,6 +105262,11 @@ entities:
- pos: 56.778374,-30.486225
parent: 2
type: Transform
+ - uid: 30115
+ components:
+ - pos: 29.336678,17.449749
+ parent: 2
+ type: Transform
- proto: DrinkNeurotoxinGlass
entities:
- uid: 14139
@@ -103809,11 +105723,6 @@ entities:
type: Transform
- proto: DrinkWaterJug
entities:
- - uid: 14198
- components:
- - pos: -12.72819,-32.11878
- parent: 2
- type: Transform
- uid: 37345
components:
- pos: 1.4830256,19.13902
@@ -104733,6 +106642,12 @@ entities:
pos: -53.5,10.5
parent: 2
type: Transform
+ - uid: 15438
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 34.5,8.5
+ parent: 2
+ type: Transform
- uid: 19259
components:
- rot: 3.141592653589793 rad
@@ -104807,6 +106722,28 @@ entities:
pos: 3.5,46.5
parent: 2
type: Transform
+ - uid: 32038
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 34.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 32039
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 29.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 32042
+ components:
+ - pos: 53.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 32044
+ components:
+ - pos: 43.5,26.5
+ parent: 2
+ type: Transform
- uid: 35072
components:
- pos: -6.5,4.5
@@ -104852,6 +106789,13 @@ entities:
pos: 26.5,17.5
parent: 2
type: Transform
+- proto: EmergencyMedipen
+ entities:
+ - uid: 19279
+ components:
+ - pos: -48.687065,-23.555592
+ parent: 2
+ type: Transform
- proto: EmergencyOxygenTank
entities:
- uid: 14331
@@ -104881,15 +106825,27 @@ entities:
type: Transform
- proto: Emitter
entities:
- - uid: 14335
+ - uid: 19343
components:
- - pos: 58.5,41.5
+ - pos: 32.5,31.5
parent: 2
type: Transform
- - uid: 14338
+ - uid: 19837
components:
- rot: -1.5707963267948966 rad
- pos: 70.5,29.5
+ pos: 87.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 24856
+ components:
+ - pos: 75.5,46.5
+ parent: 2
+ type: Transform
+- proto: EmitterCircuitboard
+ entities:
+ - uid: 28695
+ components:
+ - pos: 62.71962,46.56233
parent: 2
type: Transform
- proto: EmptyFlashlightLantern
@@ -105478,13 +107434,6 @@ entities:
- pos: -6.5,8.5
parent: 34641
type: Transform
-- proto: FigureSpawner
- entities:
- - uid: 14441
- components:
- - pos: -38.5,0.5
- parent: 2
- type: Transform
- proto: filingCabinetRandom
entities:
- uid: 14442
@@ -105931,14 +107880,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 14891
- - 14889
- - 14890
- 14879
- 14880
- 14881
- 14818
- - 14578
- 14887
- 14888
- 14886
@@ -106553,10 +108498,12 @@ entities:
- pos: -30.5,2.5
parent: 2
type: Transform
+ - ShutdownSubscribers:
+ - 1259
+ - 1251
+ - 1252
+ type: DeviceNetwork
- devices:
- - 14891
- - 14889
- - 14890
- 14878
- 14698
- 14699
@@ -106568,6 +108515,9 @@ entities:
- 15048
- 15047
- 15046
+ - 1259
+ - 1251
+ - 1252
type: DeviceList
- uid: 14521
components:
@@ -107008,6 +108958,33 @@ entities:
type: Transform
- proto: FirelockEdge
entities:
+ - uid: 1251
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -35.5,0.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 14520
+ type: DeviceNetwork
+ - uid: 1252
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -35.5,-0.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 14520
+ type: DeviceNetwork
+ - uid: 1259
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -35.5,1.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 14520
+ type: DeviceNetwork
- uid: 14566
components:
- rot: 1.5707963267948966 rad
@@ -107074,11 +109051,6 @@ entities:
pos: 19.5,-26.5
parent: 2
type: Transform
- - uid: 14578
- components:
- - pos: -39.5,4.5
- parent: 2
- type: Transform
- uid: 14579
components:
- rot: 3.141592653589793 rad
@@ -107607,6 +109579,14 @@ entities:
- 38
- 41088
type: DeviceNetwork
+ - uid: 10552
+ components:
+ - pos: 38.5,10.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 130
+ type: DeviceNetwork
- uid: 14656
components:
- pos: 1.5,-30.5
@@ -107618,6 +109598,9 @@ entities:
pos: 38.5,27.5
parent: 2
type: Transform
+ - ShutdownSubscribers:
+ - 130
+ type: DeviceNetwork
- uid: 14658
components:
- pos: 45.5,-12.5
@@ -108540,6 +110523,9 @@ entities:
pos: 29.5,28.5
parent: 2
type: Transform
+ - ShutdownSubscribers:
+ - 130
+ type: DeviceNetwork
- uid: 14836
components:
- pos: -2.5,32.5
@@ -108836,24 +110822,6 @@ entities:
pos: -45.5,4.5
parent: 2
type: Transform
- - uid: 14889
- components:
- - rot: -1.5707963267948966 rad
- pos: -35.5,0.5
- parent: 2
- type: Transform
- - uid: 14890
- components:
- - rot: -1.5707963267948966 rad
- pos: -35.5,1.5
- parent: 2
- type: Transform
- - uid: 14891
- components:
- - rot: -1.5707963267948966 rad
- pos: -35.5,-0.5
- parent: 2
- type: Transform
- uid: 14892
components:
- pos: 58.5,3.5
@@ -110225,6 +112193,14 @@ entities:
- pos: -22.5,-48.5
parent: 2
type: Transform
+ - uid: 21739
+ components:
+ - pos: 32.5,16.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 130
+ type: DeviceNetwork
- uid: 29931
components:
- rot: -1.5707963267948966 rad
@@ -110409,6 +112385,16 @@ entities:
type: DeviceNetwork
- proto: Fireplace
entities:
+ - uid: 1250
+ components:
+ - pos: -39.5,3.5
+ parent: 2
+ type: Transform
+ - uid: 14655
+ components:
+ - pos: -47.5,-15.5
+ parent: 2
+ type: Transform
- uid: 15158
components:
- pos: -40.5,43.5
@@ -111002,304 +112988,238 @@ entities:
- pos: -4.3743935,8.516019
parent: 33049
type: Transform
-- proto: FloraTree01
+- proto: FloraTree02
entities:
- - uid: 15231
- components:
- - pos: -3.8266687,19.304344
- parent: 2
- type: Transform
- - uid: 15232
+ - uid: 15234
components:
- - pos: -80.68146,-10.39504
+ - pos: -31.819296,-44.5882
parent: 2
type: Transform
-- proto: FloraTree02
+- proto: FloraTreeChristmas01
entities:
- - uid: 15233
+ - uid: 1230
components:
- - pos: 5.9113216,-16.117746
+ - pos: -9.613573,-33.153694
parent: 2
type: Transform
- - uid: 15234
+ - uid: 1233
components:
- - pos: -31.819296,-44.5882
+ - pos: -12.755482,-33.09125
parent: 2
type: Transform
- - uid: 15235
+ - uid: 1240
components:
- - pos: -28.91717,-62.003372
+ - pos: -81.5847,-10.19336
parent: 2
type: Transform
-- proto: FloraTree03
- entities:
- - uid: 15236
+ - uid: 1242
components:
- - pos: -5.9368005,-33.217026
+ - pos: -48.04352,21.86263
parent: 2
type: Transform
- - uid: 15237
+ - uid: 1243
components:
- - pos: 2.7590487,-24.537695
+ - pos: -47.996597,13.643537
parent: 2
type: Transform
- - uid: 15238
+ - uid: 1261
components:
- - pos: -7.0141687,19.16372
+ - pos: -3.8874521,17.52873
parent: 2
type: Transform
- - uid: 15239
+ - uid: 1347
components:
- - pos: -92.56896,18.340252
+ - pos: -81.42845,-6.115233
parent: 2
type: Transform
- - uid: 15240
+ - uid: 1349
components:
- - pos: -85.330894,-9.872104
+ - pos: -61.569916,-6.099156
parent: 2
type: Transform
-- proto: FloraTree04
- entities:
- - uid: 15241
+ - uid: 1350
components:
- - pos: -18.328514,-33.61189
+ - pos: -28.377625,-62.019894
parent: 2
type: Transform
- - uid: 15242
+ - uid: 1351
components:
- - pos: -76.34916,17.972076
+ - pos: -16.437426,-33.07564
parent: 2
type: Transform
-- proto: FloraTree05
- entities:
- - uid: 15243
+ - uid: 1352
components:
- - pos: -9.82724,-31.85135
+ - pos: 3.0985394,-25.619946
parent: 2
type: Transform
- - uid: 15244
+ - uid: 1353
components:
- - pos: -5.3735437,17.47622
+ - pos: -7.0280757,18.68498
parent: 2
type: Transform
- - uid: 15245
+ - uid: 1354
components:
- - pos: -28.5,-59.5
+ - pos: -90.08965,17.819487
parent: 2
type: Transform
- - uid: 15246
+ - uid: 1355
components:
- - pos: -90.10021,17.605877
+ - pos: -88.76037,-10.052765
parent: 2
type: Transform
- - uid: 15247
+ - uid: 1357
components:
- - pos: -61.94574,19.131817
+ - pos: -78.25658,-6.0683618
parent: 2
type: Transform
-- proto: FloraTree06
- entities:
- - uid: 15248
+ - uid: 1358
components:
- - pos: -89.00277,-10.215854
+ - pos: -5.9831796,-33.12241
parent: 2
type: Transform
-- proto: FloraTreeLarge01
- entities:
- - uid: 15249
+ - uid: 1360
components:
- - pos: -20.094193,-33.263897
+ - pos: -28.471493,-59.87694
parent: 2
type: Transform
-- proto: FloraTreeLarge02
- entities:
- - uid: 15250
+ - uid: 1361
components:
- - pos: -6.7954187,25.054596
+ - pos: -92.917786,17.835114
parent: 2
type: Transform
- - uid: 15251
+ - uid: 1365
components:
- - pos: -28.48263,-46.64294
+ - pos: -62.328236,17.976316
parent: 2
type: Transform
- - uid: 15252
+ - uid: 1564
components:
- - pos: -72.51027,18.175201
+ - pos: -3.465586,26.247461
parent: 2
type: Transform
-- proto: FloraTreeLarge03
- entities:
- - uid: 15253
+ - uid: 1565
components:
- - pos: -41.497322,-61.2312
+ - pos: -72.08846,18.08536
parent: 2
type: Transform
- - uid: 15254
+ - uid: 1566
components:
- - pos: -17.062885,-32.861885
+ - pos: -41.57175,-60.129242
parent: 2
type: Transform
- - uid: 15255
+ - uid: 1637
components:
- - pos: -8.08551,-33.498283
+ - pos: -55.039,17.99187
parent: 2
type: Transform
- - uid: 15256
+ - uid: 1641
components:
- - pos: -54.743645,18.991192
+ - pos: -6.7624607,25.544338
parent: 2
type: Transform
-- proto: FloraTreeLarge04
- entities:
- - uid: 15257
+ - uid: 1655
components:
- - pos: -3.4516687,25.648346
+ - pos: -58.460876,17.976246
parent: 2
type: Transform
- - uid: 15258
+ - uid: 1666
components:
- - pos: -58.733784,17.553692
+ - pos: -85.27599,-5.9746413
parent: 2
type: Transform
- - uid: 15259
+ - uid: 1688
components:
- - pos: -80.65308,-5.936196
+ - pos: -60.829697,-11.056646
parent: 2
type: Transform
- - uid: 15260
+ - uid: 1689
components:
- - pos: -61.201077,-11.305589
+ - pos: 5.9735394,-24.182446
parent: 2
type: Transform
-- proto: FloraTreeLarge05
- entities:
- - uid: 15261
+ - uid: 1735
components:
- - pos: 5.7827997,-25.420097
+ - pos: -88.7135,-6.162141
parent: 2
type: Transform
- - uid: 15262
+ - uid: 1737
components:
- - pos: 3.297969,-17.68136
+ - pos: -80.72908,18.100985
parent: 2
type: Transform
- - uid: 15263
+ - uid: 1739
components:
- - pos: -78.10994,-9.633407
+ - pos: -85.26037,-10.052765
parent: 2
type: Transform
-- proto: FloraTreeLarge06
- entities:
- - uid: 15264
+ - uid: 9863
components:
- - pos: -80.003716,18.214048
+ - pos: 2.5777624,-17.249481
parent: 2
type: Transform
- - uid: 15265
+ - uid: 9864
components:
- - pos: -88.2035,-5.8061156
+ - pos: -19.421799,-33.044388
parent: 2
type: Transform
-- proto: FoamCutlass
- entities:
- - uid: 15266
+ - uid: 9866
components:
- - pos: 2.5272818,-7.5528283
+ - pos: 6.171511,-18.280733
parent: 2
type: Transform
-- proto: FoodApple
- entities:
- - uid: 11728
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11729
+ - uid: 9877
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: -78.36595,-10.16211
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11730
+ - uid: 11410
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: -14.246484,26.889524
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11731
+ - uid: 11474
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: -76.52596,18.085358
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11732
+ - uid: 14101
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: -41.728,-62.066742
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11733
+- proto: FloraTreeChristmas02
+ entities:
+ - uid: 9860
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: -41.53099,-0.021365881
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11734
+ - uid: 9872
components:
- - flags: InContainer
+ - desc: Опа опаа, ещё один подарочек!
type: MetaData
- - parent: 11727
+ - pos: -99.414154,-20.90307
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11735
+- proto: FloraTreeLarge02
+ entities:
+ - uid: 15251
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: -28.48263,-46.64294
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11736
+- proto: FoamCutlass
+ entities:
+ - uid: 15242
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: -77.524284,-24.506811
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11737
+ - uid: 15266
components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
+ - pos: 2.5272818,-7.5528283
+ parent: 2
type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- proto: FoodBakedBunHoney
entities:
- uid: 15267
@@ -111342,6 +113262,13 @@ entities:
- pos: 14.472295,-27.374166
parent: 2
type: Transform
+- proto: FoodBoxDonut
+ entities:
+ - uid: 11520
+ components:
+ - pos: -43.39311,-16.385078
+ parent: 2
+ type: Transform
- proto: FoodBoxPizzaFilled
entities:
- uid: 15272
@@ -111465,6 +113392,14 @@ entities:
- type: InsideEntityStorage
- proto: FoodBreadVolcanic
entities:
+ - uid: 11538
+ components:
+ - desc: Он сгорел от работы...
+ name: Syxapik
+ type: MetaData
+ - pos: -46.470535,-15.609675
+ parent: 2
+ type: Transform
- uid: 15288
components:
- desc: Самый прекрасный хлебушек во вселенной!
@@ -111801,6 +113736,60 @@ entities:
- pos: 12.572342,-14.404992
parent: 2
type: Transform
+- proto: FoodCakeChristmas
+ entities:
+ - uid: 9818
+ components:
+ - pos: -14.529022,-32.491467
+ parent: 2
+ type: Transform
+ - uid: 12237
+ components:
+ - pos: -37.980083,0.567692
+ parent: 2
+ type: Transform
+ - uid: 12255
+ components:
+ - pos: -45.041,0.536442
+ parent: 2
+ type: Transform
+- proto: FoodCakeChristmasSlice
+ entities:
+ - uid: 9873
+ components:
+ - pos: -98.66416,-18.49682
+ parent: 2
+ type: Transform
+ - uid: 11514
+ components:
+ - pos: -100.289154,-18.824947
+ parent: 2
+ type: Transform
+ - uid: 11730
+ components:
+ - pos: -98.46103,-21.324947
+ parent: 2
+ type: Transform
+ - uid: 11751
+ components:
+ - pos: -99.771225,-21.573345
+ parent: 2
+ type: Transform
+ - uid: 11752
+ components:
+ - pos: -100.77354,-20.043697
+ parent: 2
+ type: Transform
+ - uid: 11753
+ components:
+ - pos: -98.28916,-19.903072
+ parent: 2
+ type: Transform
+ - uid: 11804
+ components:
+ - pos: -62.48817,5.507147
+ parent: 2
+ type: Transform
- proto: FoodCartCold
entities:
- uid: 26994
@@ -111895,6 +113884,97 @@ entities:
- pos: 6.7113476,-60.37866
parent: 2
type: Transform
+- proto: FoodDough
+ entities:
+ - uid: 908
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 905
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 1204
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 905
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 1205
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 905
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: FoodFrozenPopsicleBerry
+ entities:
+ - uid: 7613
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 14100
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: FoodFrozenPopsicleOrange
+ entities:
+ - uid: 7614
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 14100
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: FoodFrozenSandwich
+ entities:
+ - uid: 6084
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 14100
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 7616
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 14100
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: FoodFrozenSandwichStrawberry
+ entities:
+ - uid: 6072
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 14100
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 9857
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 14100
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
- proto: FoodKebabSkewer
entities:
- uid: 15304
@@ -111924,65 +114004,29 @@ entities:
- type: InsideEntityStorage
- proto: FoodMeat
entities:
- - uid: 11738
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11739
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11740
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11741
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11742
+ - uid: 1193
components:
- flags: InContainer
type: MetaData
- - parent: 11727
+ - parent: 905
type: Transform
- canCollide: False
type: Physics
- type: InsideEntityStorage
- - uid: 11743
+ - uid: 1194
components:
- flags: InContainer
type: MetaData
- - parent: 11727
+ - parent: 905
type: Transform
- canCollide: False
type: Physics
- type: InsideEntityStorage
- - uid: 11744
+ - uid: 1322
components:
- flags: InContainer
type: MetaData
- - parent: 11727
+ - parent: 905
type: Transform
- canCollide: False
type: Physics
@@ -111999,18 +114043,18 @@ entities:
- pos: -29.33963,26.459352
parent: 2
type: Transform
-- proto: FoodMeatHawaiianKebab
+- proto: FoodMeatFiestaKebab
entities:
- - uid: 15316
+ - uid: 11414
components:
- - pos: -74.54604,-8.371902
+ - pos: -39.42994,3.6669617
parent: 2
type: Transform
-- proto: FoodMeatKebab
+- proto: FoodMeatHawaiianKebab
entities:
- - uid: 15317
+ - uid: 15316
components:
- - pos: -13.478348,-32.591072
+ - pos: -74.54604,-8.371902
parent: 2
type: Transform
- proto: FoodMeatLizardtailKebab
@@ -112020,11 +114064,6 @@ entities:
- pos: 43.467716,-63.97395
parent: 2
type: Transform
- - uid: 15319
- components:
- - pos: -12.712723,-32.575447
- parent: 2
- type: Transform
- proto: FoodMeatPlant
entities:
- uid: 15320
@@ -112032,6 +114071,15 @@ entities:
- pos: 1.605618,-61.944946
parent: 2
type: Transform
+- proto: FoodMeatSalami
+ entities:
+ - uid: 15243
+ components:
+ - desc: Большая трубка салями. Бедный Александр...
+ type: MetaData
+ - pos: -49.53918,-16.532122
+ parent: 2
+ type: Transform
- proto: FoodMeatXeno
entities:
- uid: 15322
@@ -112062,6 +114110,17 @@ entities:
- pos: 58.973972,-45.492603
parent: 2
type: Transform
+- proto: FoodOnion
+ entities:
+ - uid: 11731
+ components:
+ - desc: Не о чем плакать, ведь это просто лук.. лук..
+ name: Mister_onion
+ type: MetaData
+ - rot: -1.9302601739212832E-09 rad
+ pos: -44.498093,-16.577944
+ parent: 2
+ type: Transform
- proto: FoodOrange
entities:
- uid: 15328
@@ -112149,36 +114208,6 @@ entities:
type: Transform
- proto: FoodPlateSmallPlastic
entities:
- - uid: 15347
- components:
- - pos: -13.471934,-32.534443
- parent: 2
- type: Transform
- - uid: 15348
- components:
- - pos: -14.643809,-32.331314
- parent: 2
- type: Transform
- - uid: 15349
- components:
- - pos: -12.612559,-32.534443
- parent: 2
- type: Transform
- - uid: 15350
- components:
- - pos: -13.503184,-32.096943
- parent: 2
- type: Transform
- - uid: 15351
- components:
- - pos: -14.518809,-32.096943
- parent: 2
- type: Transform
- - uid: 15352
- components:
- - pos: -12.331309,-32.300068
- parent: 2
- type: Transform
- uid: 15353
components:
- pos: 47.29267,-62.520916
@@ -112231,6 +114260,14 @@ entities:
type: Transform
- proto: FoodPotato
entities:
+ - uid: 11729
+ components:
+ - desc: Гений, родившийся не в то время, не в том месте..
+ name: LagInPotato
+ type: MetaData
+ - pos: -44.38877,-15.5251665
+ parent: 2
+ type: Transform
- uid: 33723
components:
- flags: InContainer
@@ -112543,13 +114580,6 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
-- proto: FoodSoupPotato
- entities:
- - uid: 15373
- components:
- - pos: -12.596887,-32.051426
- parent: 2
- type: Transform
- proto: FoodSoupSlime
entities:
- uid: 15375
@@ -112611,6 +114641,14 @@ entities:
type: Transform
- proto: FoodTomato
entities:
+ - uid: 11728
+ components:
+ - desc: Она потомок рода помидоров...
+ name: whysodora
+ type: MetaData
+ - pos: -46.548664,-16.53155
+ parent: 2
+ type: Transform
- uid: 33727
components:
- flags: InContainer
@@ -112708,9 +114746,17 @@ entities:
type: Transform
- proto: GasAnalyzer
entities:
- - uid: 15402
+ - uid: 9870
+ components:
+ - desc: Как же он устал от попыток настроить атмос..
+ name: HappyRoach
+ type: MetaData
+ - pos: -45.472584,-15.869786
+ parent: 2
+ type: Transform
+ - uid: 14162
components:
- - pos: 37.296844,29.659227
+ - pos: 2.3208556,19.49369
parent: 2
type: Transform
- uid: 15403
@@ -112728,6 +114774,12 @@ entities:
- pos: 64.62615,-26.237484
parent: 2
type: Transform
+ - uid: 32027
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 35.49911,28.603666
+ parent: 2
+ type: Transform
- uid: 33734
components:
- rot: -1.5707963267948966 rad
@@ -112817,8 +114869,78 @@ entities:
pos: -4.5,-11.5
parent: 33049
type: Transform
+- proto: GasFilter
+ entities:
+ - uid: 2362
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 42.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 2365
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 52.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 5874
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 44.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 5875
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 46.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 6186
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 47.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 21272
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 48.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 22098
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 50.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 23247
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 48.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
- proto: GasFilterFlipped
entities:
+ - uid: 7795
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 51.5,25.5
+ parent: 2
+ type: Transform
- uid: 15420
components:
- pos: -1.5,-48.5
@@ -112834,18 +114956,24 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 21650
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 50.5,25.5
+ parent: 2
+ type: Transform
- proto: GasMinerCarbonDioxide
entities:
- - uid: 15422
+ - uid: 22161
components:
- - pos: 44.5,22.5
+ - pos: 47.5,16.5
parent: 2
type: Transform
- proto: GasMinerNitrogenStationLarge
entities:
- - uid: 15423
+ - uid: 24830
components:
- - pos: 44.5,24.5
+ - pos: 45.5,16.5
parent: 2
type: Transform
- proto: GasMinerOxygen
@@ -112857,48 +114985,42 @@ entities:
type: Transform
- proto: GasMinerOxygenStationLarge
entities:
- - uid: 15424
+ - uid: 24835
components:
- - pos: 44.5,26.5
+ - pos: 43.5,16.5
parent: 2
type: Transform
- proto: GasMinerPlasma
entities:
- - uid: 15425
+ - uid: 22373
components:
- - pos: 44.5,16.5
+ - pos: 49.5,16.5
parent: 2
type: Transform
- proto: GasMinerWaterVapor
entities:
- - uid: 15426
+ - uid: 22178
components:
- - pos: 44.5,18.5
+ - pos: 51.5,16.5
parent: 2
type: Transform
- proto: GasMixer
entities:
- - uid: 15427
+ - uid: 19965
components:
- - name: смеситель плазмы
- type: MetaData
- rot: -1.5707963267948966 rad
- pos: 37.5,16.5
+ pos: 42.5,23.5
parent: 2
type: Transform
- - color: '#947507FF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- - uid: 15428
+ - uid: 20301
components:
- - rot: 1.5707963267948966 rad
- pos: 38.5,25.5
+ - rot: -1.5707963267948966 rad
+ pos: 44.5,23.5
parent: 2
type: Transform
- - inletTwoConcentration: 0.79
- inletOneConcentration: 0.21
- targetPressure: 4500
- type: GasMixer
- - color: '#17E8E2FF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- uid: 33737
components:
@@ -112908,49 +115030,42 @@ entities:
type: Transform
- proto: GasMixerFlipped
entities:
- - uid: 15429
+ - uid: 7130
components:
- - name: смеситель оксида азота
- type: MetaData
- - rot: 3.141592653589793 rad
- pos: 37.5,20.5
+ - pos: 45.5,26.5
parent: 2
type: Transform
- - color: '#947507FF'
+ - color: '#17E8E2FF'
type: AtmosPipeColor
- - uid: 15430
+ - uid: 15432
components:
- - name: смеситель водяного пара
- type: MetaData
- - rot: 3.141592653589793 rad
- pos: 37.5,18.5
+ - rot: 1.5707963267948966 rad
+ pos: -73.5,6.5
parent: 2
type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 15431
+ - uid: 20807
components:
- - name: смеситель углекислого газа
- type: MetaData
- - rot: 3.141592653589793 rad
- pos: 37.5,22.5
+ - rot: 1.5707963267948966 rad
+ pos: 49.5,23.5
parent: 2
type: Transform
- - color: '#947507FF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- - uid: 15432
+ - uid: 20808
components:
- rot: 1.5707963267948966 rad
- pos: -73.5,6.5
+ pos: 51.5,23.5
parent: 2
type: Transform
- - uid: 15433
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20811
components:
- - rot: 3.141592653589793 rad
- pos: 37.5,24.5
+ - rot: 1.5707963267948966 rad
+ pos: 47.5,23.5
parent: 2
type: Transform
- - color: '#17E8E2FF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- uid: 37393
components:
@@ -112961,6 +115076,48 @@ entities:
type: AtmosPipeColor
- proto: GasOutletInjector
entities:
+ - uid: 6232
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 53.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 6382
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 45.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 7630
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 49.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 7776
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 51.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 7777
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 43.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 7812
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 58.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 8511
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 47.5,15.5
+ parent: 2
+ type: Transform
- uid: 15434
components:
- rot: 3.141592653589793 rad
@@ -112973,10 +115130,16 @@ entities:
pos: 66.5,-31.5
parent: 2
type: Transform
- - uid: 41295
+ - uid: 18329
components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,11.5
+ - pos: 45.5,30.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 21463
+ components:
+ - pos: 51.5,30.5
parent: 2
type: Transform
- proto: GasPassiveGate
@@ -112998,80 +115161,85 @@ entities:
type: AtmosPipeColor
- proto: GasPassiveVent
entities:
- - uid: 15438
+ - uid: 2188
components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,16.5
+ - rot: 3.141592653589793 rad
+ pos: 43.5,17.5
parent: 2
type: Transform
- - uid: 15439
+ - uid: 3451
components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,26.5
+ - rot: 3.141592653589793 rad
+ pos: 51.5,17.5
parent: 2
type: Transform
- - uid: 15440
+ - uid: 10624
components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,24.5
+ - rot: 3.141592653589793 rad
+ pos: 45.5,17.5
parent: 2
type: Transform
- - uid: 15441
+ - uid: 15446
components:
- rot: -1.5707963267948966 rad
- pos: 43.5,22.5
+ pos: 66.5,-29.5
parent: 2
type: Transform
- - uid: 15442
+ - uid: 15792
components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,20.5
+ - pos: 44.5,30.5
parent: 2
type: Transform
- - uid: 15443
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20760
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 21731
components:
- rot: -1.5707963267948966 rad
- pos: 43.5,18.5
+ pos: 58.5,23.5
parent: 2
type: Transform
- - uid: 15444
+ - uid: 22388
+ components:
+ - pos: 52.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 23267
components:
- rot: 3.141592653589793 rad
- pos: 37.5,11.5
+ pos: 49.5,17.5
parent: 2
type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15445
+ - uid: 25310
components:
- rot: 3.141592653589793 rad
- pos: 38.5,11.5
+ pos: 47.5,17.5
parent: 2
type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15446
+ - uid: 27324
components:
- - rot: -1.5707963267948966 rad
- pos: 66.5,-29.5
+ - pos: 61.5,48.5
parent: 2
type: Transform
- - uid: 15447
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 28682
components:
- rot: 3.141592653589793 rad
- pos: 33.5,11.5
+ pos: 41.5,18.5
parent: 2
type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 15448
+ - uid: 28697
components:
- rot: 3.141592653589793 rad
- pos: 34.5,13.5
+ pos: 54.5,19.5
parent: 2
type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- uid: 32948
components:
- rot: 3.141592653589793 rad
@@ -113098,14 +115266,74 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 41296
+- proto: GasPipeBend
+ entities:
+ - uid: 374
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 38.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 4344
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 38.5,32.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 6387
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 50.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 7042
components:
- rot: 3.141592653589793 rad
- pos: 54.5,13.5
+ pos: 36.5,32.5
parent: 2
type: Transform
-- proto: GasPipeBend
- entities:
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 7044
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 46.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 7047
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 50.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 7633
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 56.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 7811
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 48.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 7813
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 52.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10591
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 43.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
- uid: 15449
components:
- rot: 1.5707963267948966 rad
@@ -113130,14 +115358,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15453
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,13.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15454
components:
- pos: -3.5,33.5
@@ -113145,13 +115365,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15455
- components:
- - pos: 37.5,15.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15456
components:
- rot: 1.5707963267948966 rad
@@ -113160,21 +115373,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15457
- components:
- - rot: 1.5707963267948966 rad
- pos: 37.5,26.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15458
- components:
- - pos: 32.5,21.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- uid: 15459
components:
- rot: -1.5707963267948966 rad
@@ -113191,14 +115389,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15461
- components:
- - rot: 1.5707963267948966 rad
- pos: 38.5,17.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15462
components:
- rot: -1.5707963267948966 rad
@@ -113207,13 +115397,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15463
- components:
- - pos: 36.5,17.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- uid: 15464
components:
- rot: 3.141592653589793 rad
@@ -113222,14 +115405,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15465
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,34.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 15466
components:
- rot: 3.141592653589793 rad
@@ -113324,14 +115499,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15478
- components:
- - rot: 3.141592653589793 rad
- pos: 32.5,17.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- uid: 15479
components:
- rot: 3.141592653589793 rad
@@ -114050,22 +116217,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15572
- components:
- - rot: 3.141592653589793 rad
- pos: 36.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 15573
- components:
- - rot: 1.5707963267948966 rad
- pos: 42.5,34.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 15574
components:
- pos: -14.5,-39.5
@@ -114143,14 +116294,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15584
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,41.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 15585
components:
- rot: 1.5707963267948966 rad
@@ -114966,29 +117109,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15691
- components:
- - rot: 3.141592653589793 rad
- pos: 29.5,15.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15692
- components:
- - rot: -1.5707963267948966 rad
- pos: 35.5,11.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 15693
- components:
- - pos: 39.5,25.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15694
components:
- rot: 3.141592653589793 rad
@@ -115037,6 +117157,59 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
+ - uid: 18336
+ components:
+ - pos: 31.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 18801
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 31.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 18817
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 32.5,21.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20299
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 42.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 20310
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 38.5,33.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20763
+ components:
+ - pos: 53.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20775
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 44.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 21256
+ components:
+ - pos: 53.5,25.5
+ parent: 2
+ type: Transform
- uid: 21534
components:
- pos: -7.5,40.5
@@ -115044,6 +117217,119 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
+ - uid: 21569
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 23055
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 37.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24336
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 44.5,27.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 25227
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 44.5,24.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 25228
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 42.5,24.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 25547
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 56.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 25571
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 42.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 25715
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 42.5,27.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27254
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 60.5,42.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27266
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 59.5,42.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27280
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 59.5,37.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27321
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 42.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27322
+ components:
+ - pos: 42.5,41.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27389
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 58.5,39.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27457
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 58.5,45.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
- uid: 28287
components:
- rot: 1.5707963267948966 rad
@@ -115052,6 +117338,35 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 28710
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 35.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 30957
+ components:
+ - pos: 41.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 30958
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 41.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 32006
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 32011
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 31.5,10.5
+ parent: 2
+ type: Transform
- uid: 32949
components:
- pos: 2.5,4.5
@@ -115236,6 +117551,29 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
+- proto: GasPipeBroken
+ entities:
+ - uid: 28699
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 40.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 28700
+ components:
+ - pos: 39.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 28705
+ components:
+ - pos: 35.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 28748
+ components:
+ - pos: 35.5,13.5
+ parent: 2
+ type: Transform
- proto: GasPipeFourway
entities:
- uid: 15700
@@ -115567,13 +117905,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15747
- components:
- - pos: 36.5,33.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 15748
components:
- pos: 26.5,33.5
@@ -115686,6 +118017,11 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 31551
+ components:
+ - pos: 30.5,20.5
+ parent: 2
+ type: Transform
- uid: 33745
components:
- pos: 4.5,-16.5
@@ -115738,13 +118074,6 @@ entities:
type: AtmosPipeColor
- proto: GasPipeHalf
entities:
- - uid: 15763
- components:
- - pos: 35.5,18.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- uid: 35083
components:
- rot: -1.5707963267948966 rad
@@ -115759,6 +118088,22 @@ entities:
type: Transform
- proto: GasPipeStraight
entities:
+ - uid: 363
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 48.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 364
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 50.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
- uid: 547
components:
- pos: -5.5,36.5
@@ -115766,6 +118111,22 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 1504
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 49.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 1988
+ components:
+ - pos: 33.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 2105
+ components:
+ - pos: 35.5,9.5
+ parent: 2
+ type: Transform
- uid: 3015
components:
- pos: -5.5,37.5
@@ -115773,6 +118134,107 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 4340
+ components:
+ - pos: 43.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 4341
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 45.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 4896
+ components:
+ - pos: 47.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 5877
+ components:
+ - pos: 42.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 6178
+ components:
+ - pos: 33.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 6179
+ components:
+ - pos: 35.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 6225
+ components:
+ - pos: 46.5,21.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 6226
+ components:
+ - pos: 52.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 6229
+ components:
+ - pos: 46.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 6231
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 49.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 6233
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 32.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 6240
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 6252
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 36.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 6258
+ components:
+ - pos: 51.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 6383
+ components:
+ - pos: 43.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 6384
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 33.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 6388
+ components:
+ - pos: 44.5,19.5
+ parent: 2
+ type: Transform
- uid: 6646
components:
- pos: -5.5,38.5
@@ -115780,6 +118242,180 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 7037
+ components:
+ - pos: 46.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 7038
+ components:
+ - pos: 50.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 7039
+ components:
+ - pos: 52.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 7041
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 39.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 7045
+ components:
+ - pos: 50.5,21.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 7048
+ components:
+ - pos: 44.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 7049
+ components:
+ - pos: 50.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 7050
+ components:
+ - pos: 44.5,21.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 7127
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 44.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 7129
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 46.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 7131
+ components:
+ - pos: 45.5,27.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 7621
+ components:
+ - pos: 51.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 7623
+ components:
+ - pos: 49.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 7624
+ components:
+ - pos: 47.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 7773
+ components:
+ - pos: 52.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 7778
+ components:
+ - pos: 46.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 7779
+ components:
+ - pos: 50.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 7792
+ components:
+ - pos: 42.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 7794
+ components:
+ - pos: 52.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 7810
+ components:
+ - pos: 46.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 7814
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 35.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 8500
+ components:
+ - pos: 45.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 8512
+ components:
+ - pos: 43.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 8514
+ components:
+ - pos: 50.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 8515
+ components:
+ - pos: 44.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 8516
+ components:
+ - pos: 46.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 8561
+ components:
+ - pos: 44.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 8636
+ components:
+ - pos: 44.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 9845
+ components:
+ - pos: 50.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 9846
+ components:
+ - pos: 52.5,21.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
- uid: 9979
components:
- pos: -7.5,39.5
@@ -115836,6 +118472,90 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 10478
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 43.5,27.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 10582
+ components:
+ - pos: 44.5,28.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 10589
+ components:
+ - pos: 45.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 10595
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 43.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 10598
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 41.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 10610
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 42.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 10623
+ components:
+ - pos: 45.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 10675
+ components:
+ - pos: 45.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 10943
+ components:
+ - pos: 43.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 14335
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 59.5,39.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 15439
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 34.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 15440
+ components:
+ - pos: 52.5,18.5
+ parent: 2
+ type: Transform
- uid: 15764
components:
- pos: 14.5,-48.5
@@ -115936,12 +118656,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15777
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,24.5
- parent: 2
- type: Transform
- uid: 15778
components:
- rot: 1.5707963267948966 rad
@@ -115966,12 +118680,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15781
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,22.5
- parent: 2
- type: Transform
- uid: 15782
components:
- rot: 3.141592653589793 rad
@@ -115990,32 +118698,7 @@ entities:
type: AtmosPipeColor
- uid: 15784
components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,26.5
- parent: 2
- type: Transform
- - uid: 15785
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,18.5
- parent: 2
- type: Transform
- - uid: 15786
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,20.5
- parent: 2
- type: Transform
- - uid: 15787
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,22.5
- parent: 2
- type: Transform
- - uid: 15788
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,20.5
+ - pos: 43.5,20.5
parent: 2
type: Transform
- uid: 15789
@@ -116026,81 +118709,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15790
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,20.5
- parent: 2
- type: Transform
- - uid: 15791
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,26.5
- parent: 2
- type: Transform
- - uid: 15792
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,24.5
- parent: 2
- type: Transform
- - uid: 15793
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,18.5
- parent: 2
- type: Transform
- - uid: 15794
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,16.5
- parent: 2
- type: Transform
- - uid: 15795
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,20.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 15796
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,16.5
- parent: 2
- type: Transform
- - uid: 15797
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,22.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 15798
- components:
- - rot: 3.141592653589793 rad
- pos: 37.5,14.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15799
- components:
- - rot: 3.141592653589793 rad
- pos: 32.5,20.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 15800
- components:
- - pos: 39.5,16.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15801
components:
- rot: -1.5707963267948966 rad
@@ -116109,12 +118717,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15802
- components:
- - rot: 3.141592653589793 rad
- pos: 31.5,14.5
- parent: 2
- type: Transform
- uid: 15803
components:
- rot: -1.5707963267948966 rad
@@ -116189,13 +118791,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15813
- components:
- - pos: 39.5,22.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15814
components:
- rot: 1.5707963267948966 rad
@@ -116204,13 +118799,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15815
- components:
- - pos: 39.5,20.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15816
components:
- rot: 1.5707963267948966 rad
@@ -116219,22 +118807,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15817
- components:
- - rot: 3.141592653589793 rad
- pos: 37.5,12.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15818
- components:
- - rot: 3.141592653589793 rad
- pos: 37.5,13.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15819
components:
- rot: 1.5707963267948966 rad
@@ -116243,39 +118815,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15820
- components:
- - pos: 39.5,21.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15821
- components:
- - pos: 37.5,17.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 15822
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,18.5
- parent: 2
- type: Transform
- - uid: 15823
- components:
- - pos: 35.5,17.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 15824
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,22.5
- parent: 2
- type: Transform
- uid: 15825
components:
- rot: 1.5707963267948966 rad
@@ -116352,14 +118891,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15835
- components:
- - rot: 1.5707963267948966 rad
- pos: 38.5,26.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15836
components:
- pos: 26.5,-19.5
@@ -116404,29 +118935,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15842
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,16.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 15843
- components:
- - rot: 3.141592653589793 rad
- pos: 39.5,19.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15844
- components:
- - pos: 37.5,19.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- uid: 15845
components:
- rot: -1.5707963267948966 rad
@@ -116437,41 +118945,7 @@ entities:
type: AtmosPipeColor
- uid: 15846
components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,26.5
- parent: 2
- type: Transform
- - uid: 15847
- components:
- - pos: 38.5,14.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15848
- components:
- - pos: 38.5,16.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15849
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,16.5
- parent: 2
- type: Transform
- - uid: 15850
- components:
- - pos: 38.5,12.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 15851
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,24.5
+ - pos: 49.5,18.5
parent: 2
type: Transform
- uid: 15852
@@ -116566,14 +119040,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15864
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,18.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- uid: 15865
components:
- rot: -1.5707963267948966 rad
@@ -116613,14 +119079,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 15870
- components:
- - rot: 3.141592653589793 rad
- pos: 39.5,18.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 15871
components:
- rot: 1.5707963267948966 rad
@@ -116691,13 +119149,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 15880
- components:
- - pos: 37.5,21.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- uid: 15881
components:
- rot: -1.5707963267948966 rad
@@ -118372,13 +120823,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 16100
- components:
- - pos: 36.5,32.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 16101
components:
- rot: -1.5707963267948966 rad
@@ -122896,14 +125340,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 16698
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,34.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 16699
components:
- rot: -1.5707963267948966 rad
@@ -128776,14 +131212,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 17459
- components:
- - rot: 3.141592653589793 rad
- pos: 45.5,37.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 17460
components:
- rot: -1.5707963267948966 rad
@@ -128800,54 +131228,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 17462
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17463
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17464
- components:
- - rot: -1.5707963267948966 rad
- pos: 37.5,33.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17465
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17466
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17467
- components:
- - rot: -1.5707963267948966 rad
- pos: 37.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 17468
components:
- rot: 3.141592653589793 rad
@@ -129025,36 +131405,9 @@ entities:
type: AtmosPipeColor
- uid: 17491
components:
- - rot: 3.141592653589793 rad
- pos: 45.5,35.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17492
- components:
- - rot: 3.141592653589793 rad
- pos: 42.5,33.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17493
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,34.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17494
- components:
- - rot: 3.141592653589793 rad
- pos: 42.5,32.5
+ - pos: 49.5,19.5
parent: 2
type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 17495
components:
- rot: -1.5707963267948966 rad
@@ -129079,22 +131432,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 17498
- components:
- - rot: 3.141592653589793 rad
- pos: 45.5,36.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 17499
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,33.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 17500
components:
- rot: -1.5707963267948966 rad
@@ -135472,29 +137809,12 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18318
- components:
- - rot: 3.141592653589793 rad
- pos: 32.5,19.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 18319
- components:
- - rot: 3.141592653589793 rad
- pos: 32.5,18.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- uid: 18320
components:
- - rot: -1.5707963267948966 rad
- pos: 33.5,17.5
+ - pos: 44.5,29.5
parent: 2
type: Transform
- - color: '#FF0000FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- uid: 18321
components:
@@ -135504,195 +137824,42 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18322
- components:
- - rot: 1.5707963267948966 rad
- pos: 35.5,15.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18323
- components:
- - rot: 1.5707963267948966 rad
- pos: 34.5,15.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 18324
components:
- - rot: 1.5707963267948966 rad
- pos: 33.5,15.5
+ - pos: 45.5,28.5
parent: 2
type: Transform
- color: '#17E8E2FF'
type: AtmosPipeColor
- uid: 18325
components:
- - rot: 1.5707963267948966 rad
- pos: 32.5,15.5
+ - pos: 45.5,29.5
parent: 2
type: Transform
- color: '#17E8E2FF'
type: AtmosPipeColor
- uid: 18326
- components:
- - rot: 1.5707963267948966 rad
- pos: 31.5,15.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18327
- components:
- - rot: 1.5707963267948966 rad
- pos: 30.5,15.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18328
- components:
- - rot: 3.141592653589793 rad
- pos: 29.5,17.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18329
- components:
- - rot: 3.141592653589793 rad
- pos: 29.5,18.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18330
- components:
- - rot: 3.141592653589793 rad
- pos: 29.5,19.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18331
- components:
- - pos: 37.5,23.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 18332
- components:
- - pos: 39.5,24.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18333
components:
- rot: -1.5707963267948966 rad
- pos: 35.5,16.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 18334
- components:
- - rot: -1.5707963267948966 rad
- pos: 34.5,16.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 18335
- components:
- - rot: 3.141592653589793 rad
- pos: 33.5,14.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18336
- components:
- - rot: 3.141592653589793 rad
- pos: 33.5,13.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18337
- components:
- - rot: 3.141592653589793 rad
- pos: 33.5,12.5
+ pos: 41.5,26.5
parent: 2
type: Transform
- - color: '#FEF101FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18338
+ - uid: 18328
components:
- rot: 1.5707963267948966 rad
- pos: 33.5,11.5
+ pos: 37.5,32.5
parent: 2
type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18339
- components:
- - pos: 35.5,12.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18340
- components:
- - pos: 35.5,13.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18341
- components:
- - pos: 35.5,14.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18342
- components:
- - pos: 35.5,16.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18343
- components:
- - pos: 39.5,14.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- uid: 18344
components:
- - pos: 39.5,23.5
+ - pos: 32.5,24.5
parent: 2
type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18345
- components:
- - pos: 34.5,16.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 18346
- components:
- - pos: 34.5,14.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- uid: 18347
components:
@@ -136434,10 +138601,867 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 21777
+ - uid: 18768
+ components:
+ - pos: 45.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 18802
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 37.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 18813
+ components:
+ - pos: 51.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 18821
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 30.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 18824
+ components:
+ - pos: 32.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 18927
+ components:
+ - pos: 52.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 18967
+ components:
+ - pos: 51.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 19346
+ components:
+ - pos: 52.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 19450
+ components:
+ - pos: 51.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 19570
+ components:
+ - pos: 56.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 19812
+ components:
+ - pos: 37.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 19813
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 38.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 19836
+ components:
+ - pos: 51.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 19867
+ components:
+ - pos: 51.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 20021
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 20027
+ components:
+ - pos: 42.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20300
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 46.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20302
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 43.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20303
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 45.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20304
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 45.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 20305
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 43.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 20346
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,24.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 20723
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 20757
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20758
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 53.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20759
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 53.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 20761
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 52.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20762
+ components:
+ - pos: 53.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20765
+ components:
+ - pos: 48.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 20766
+ components:
+ - pos: 48.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 20767
+ components:
+ - pos: 48.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 20768
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 35.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20770
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 39.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20772
+ components:
+ - pos: 42.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 20773
+ components:
+ - pos: 42.5,21.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 20774
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 41.5,23.5
+ parent: 2
+ type: Transform
+ - color: '#FEF101FF'
+ type: AtmosPipeColor
+ - uid: 20812
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 38.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20813
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 39.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20873
+ components:
+ - pos: 48.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20874
+ components:
+ - pos: 48.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 20891
+ components:
+ - pos: 48.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20924
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 38.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20927
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 37.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20938
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 40.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20939
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 36.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20940
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 33.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20942
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 32.5,25.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 20943
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 34.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 21261
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 44.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#17E8E2FF'
+ type: AtmosPipeColor
+ - uid: 21275
+ components:
+ - pos: 52.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 21294
+ components:
+ - pos: 52.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 21385
+ components:
+ - pos: 38.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 21391
+ components:
+ - pos: 37.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 21394
+ components:
+ - pos: 38.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 21644
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 40.5,26.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 21728
+ components:
+ - pos: 47.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 21736
+ components:
+ - pos: 32.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 22028
+ components:
+ - pos: 47.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22086
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 47.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 22163
+ components:
+ - pos: 42.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 23140
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 45.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 23153
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 43.5,22.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 23268
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 55.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 23588
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 56.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 23611
+ components:
+ - pos: 49.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 23690
+ components:
+ - pos: 37.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 23771
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 57.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 24078
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 43.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24086
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 44.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24088
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 41.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24102
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 42.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24125
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 46.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24127
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 55.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24163
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 40.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24301
+ components:
+ - pos: 56.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24842
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 45.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24848
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 54.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24865
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 49.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24866
+ components:
+ - pos: 56.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 24870
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 48.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 24957
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 53.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 25222
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 54.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 25235
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 57.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 25238
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 25544
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 47.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 25548
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 52.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 25726
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 50.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 27267
+ components:
+ - pos: 60.5,43.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27269
+ components:
+ - pos: 59.5,41.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27271
+ components:
+ - pos: 59.5,40.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27272
+ components:
+ - pos: 59.5,39.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27281
components:
- rot: 1.5707963267948966 rad
- pos: 55.5,11.5
+ pos: 58.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27282
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 57.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27283
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 56.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27284
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 55.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27285
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 54.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27286
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 53.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27287
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 52.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27288
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 51.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27289
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 50.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27290
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 49.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27291
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 48.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27292
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 47.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27293
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 46.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27294
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 45.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27295
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 44.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27302
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27304
+ components:
+ - pos: 42.5,39.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27320
+ components:
+ - pos: 42.5,40.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27384
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 40.5,41.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27385
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 41.5,41.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27429
+ components:
+ - pos: 58.5,40.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27444
+ components:
+ - pos: 58.5,41.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27445
+ components:
+ - pos: 58.5,42.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27451
+ components:
+ - pos: 58.5,43.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27456
+ components:
+ - pos: 58.5,44.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27562
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 59.5,45.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27612
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 60.5,45.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27627
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 61.5,46.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 27708
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 61.5,47.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
+ - uid: 28308
+ components:
+ - pos: 41.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 28621
+ components:
+ - pos: 41.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28696
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 54.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 28703
+ components:
+ - pos: 35.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 28704
+ components:
+ - pos: 35.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 28794
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 39.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 30959
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 40.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 31444
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 40.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 31445
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 39.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 31446
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 38.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 31908
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 31.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 32005
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 29.5,11.5
parent: 2
type: Transform
- uid: 32938
@@ -138394,12 +141418,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 41294
- components:
- - rot: 3.141592653589793 rad
- pos: 54.5,14.5
- parent: 2
- type: Transform
- proto: GasPipeTJunction
entities:
- uid: 15130
@@ -138410,6 +141428,33 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
+ - uid: 15691
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 51.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 15794
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 39.5,41.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 15798
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 36.5,33.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 18335
+ components:
+ - pos: 41.5,22.5
+ parent: 2
+ type: Transform
- uid: 18443
components:
- pos: 5.5,-42.5
@@ -138457,22 +141502,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18449
- components:
- - rot: -1.5707963267948966 rad
- pos: 31.5,17.5
- parent: 2
- type: Transform
- - color: '#FF9900FF'
- type: AtmosPipeColor
- - uid: 18450
- components:
- - rot: 1.5707963267948966 rad
- pos: 38.5,13.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 18451
components:
- rot: 1.5707963267948966 rad
@@ -138496,14 +141525,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18454
- components:
- - rot: 3.141592653589793 rad
- pos: 38.5,24.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 18455
components:
- pos: -0.5,-43.5
@@ -138527,14 +141548,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18458
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,17.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 18459
components:
- rot: -1.5707963267948966 rad
@@ -138559,14 +141572,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18462
- components:
- - rot: 3.141592653589793 rad
- pos: 36.5,16.5
- parent: 2
- type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- uid: 18463
components:
- rot: 1.5707963267948966 rad
@@ -140264,14 +143269,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18683
- components:
- - rot: 3.141592653589793 rad
- pos: 42.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 18684
components:
- pos: 33.5,33.5
@@ -140861,169 +143858,184 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18761
+ - uid: 18776
components:
- - rot: -1.5707963267948966 rad
- pos: 31.5,24.5
+ - rot: 1.5707963267948966 rad
+ pos: -22.5,44.5
parent: 2
type: Transform
- - color: '#FF0000FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18762
+ - uid: 18777
components:
- - rot: -1.5707963267948966 rad
- pos: 31.5,23.5
+ - rot: 3.141592653589793 rad
+ pos: -16.5,28.5
parent: 2
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18763
+ - uid: 18778
components:
- - pos: 29.5,22.5
+ - rot: 3.141592653589793 rad
+ pos: 68.5,-45.5
parent: 2
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18764
+ - uid: 18779
components:
- - rot: -1.5707963267948966 rad
- pos: 31.5,22.5
+ - pos: 71.5,-43.5
parent: 2
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18765
+ - uid: 18780
components:
- - rot: 1.5707963267948966 rad
- pos: 29.5,16.5
+ - rot: -1.5707963267948966 rad
+ pos: 60.5,-38.5
parent: 2
type: Transform
- - color: '#17E8E2FF'
+ - color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18766
+ - uid: 18781
components:
- rot: 1.5707963267948966 rad
- pos: 29.5,21.5
+ pos: 58.5,-39.5
parent: 2
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18767
+ - uid: 18782
components:
- rot: 1.5707963267948966 rad
- pos: 37.5,25.5
+ pos: -22.5,-45.5
parent: 2
type: Transform
- - color: '#17E8E2FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18768
+ - uid: 18804
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 31.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19345
+ components:
+ - pos: 32.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 19353
components:
- rot: 3.141592653589793 rad
- pos: 31.5,16.5
+ pos: 31.5,21.5
parent: 2
type: Transform
- - color: '#FF9900FF'
- type: AtmosPipeColor
- - uid: 18770
+ - uid: 19376
components:
- - pos: 33.5,16.5
+ - rot: 3.141592653589793 rad
+ pos: 30.5,19.5
parent: 2
type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 18771
+ - uid: 20024
components:
- - pos: 34.5,11.5
+ - rot: -1.5707963267948966 rad
+ pos: 31.5,24.5
parent: 2
type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18772
+ - uid: 20764
components:
- - rot: 1.5707963267948966 rad
- pos: 31.5,21.5
+ - rot: -1.5707963267948966 rad
+ pos: 54.5,22.5
parent: 2
type: Transform
- - color: '#FF0000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 18773
+ - uid: 20810
components:
- rot: -1.5707963267948966 rad
- pos: 31.5,19.5
+ pos: 43.5,24.5
parent: 2
type: Transform
- - color: '#FF9900FF'
+ - color: '#17E8E2FF'
type: AtmosPipeColor
- - uid: 18774
+ - uid: 20941
components:
- rot: -1.5707963267948966 rad
- pos: 31.5,18.5
+ pos: 45.5,24.5
parent: 2
type: Transform
- - color: '#FF9900FF'
+ - color: '#17E8E2FF'
type: AtmosPipeColor
- - uid: 18775
+ - uid: 21626
components:
- - pos: 34.5,17.5
+ - rot: 3.141592653589793 rad
+ pos: 52.5,25.5
parent: 2
type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 18776
+ - uid: 21742
+ components:
+ - pos: 30.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 22976
components:
- rot: 1.5707963267948966 rad
- pos: -22.5,44.5
+ pos: 38.5,20.5
parent: 2
type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 18777
+ - uid: 23693
components:
- rot: 3.141592653589793 rad
- pos: -16.5,28.5
+ pos: 40.5,23.5
parent: 2
type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 18778
+ - uid: 25212
components:
- - rot: 3.141592653589793 rad
- pos: 68.5,-45.5
+ - pos: 40.5,25.5
parent: 2
type: Transform
- - color: '#0000FFFF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- - uid: 18779
+ - uid: 27279
components:
- - pos: 71.5,-43.5
+ - rot: -1.5707963267948966 rad
+ pos: 59.5,38.5
parent: 2
type: Transform
- - color: '#FF0000FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18780
+ - uid: 27523
components:
- rot: -1.5707963267948966 rad
- pos: 60.5,-38.5
+ pos: 61.5,45.5
parent: 2
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18781
+ - uid: 28681
components:
- - rot: 1.5707963267948966 rad
- pos: 58.5,-39.5
+ - rot: 3.141592653589793 rad
+ pos: 37.5,19.5
parent: 2
type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 18782
+ - uid: 28698
components:
- rot: 1.5707963267948966 rad
- pos: -22.5,-45.5
+ pos: 37.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 28707
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 38.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 32012
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 30.5,10.5
parent: 2
type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 32927
components:
- rot: -1.5707963267948966 rad
@@ -141385,6 +144397,36 @@ entities:
type: AtmosPipeColor
- proto: GasPort
entities:
+ - uid: 1154
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 39.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 10597
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 32.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 10614
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 32.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 15465
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 48.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 15815
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 47.5,24.5
+ parent: 2
+ type: Transform
- uid: 18783
components:
- rot: -1.5707963267948966 rad
@@ -141472,30 +144514,29 @@ entities:
pos: 29.5,25.5
parent: 2
type: Transform
- - uid: 18796
+ - uid: 20809
components:
- - rot: 1.5707963267948966 rad
- pos: 30.5,17.5
+ - pos: 54.5,26.5
parent: 2
type: Transform
- - color: '#FF9900FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- - uid: 18797
+ - uid: 22975
components:
- - rot: 1.5707963267948966 rad
- pos: 30.5,18.5
+ - rot: -1.5707963267948966 rad
+ pos: 39.5,20.5
parent: 2
type: Transform
- - color: '#FF9900FF'
- type: AtmosPipeColor
- - uid: 18798
+ - uid: 31885
components:
- - rot: 1.5707963267948966 rad
- pos: 30.5,19.5
+ - pos: 30.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 31943
+ components:
+ - pos: 31.5,12.5
parent: 2
type: Transform
- - color: '#FF9900FF'
- type: AtmosPipeColor
- uid: 34571
components:
- rot: -1.5707963267948966 rad
@@ -141518,75 +144559,58 @@ entities:
type: AtmosPipeColor
- proto: GasPressurePump
entities:
- - uid: 18799
+ - uid: 6004
components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,24.5
+ - rot: 3.141592653589793 rad
+ pos: 45.5,21.5
parent: 2
type: Transform
- color: '#17E8E2FF'
type: AtmosPipeColor
- - uid: 18800
+ - uid: 6141
components:
- - pos: 39.5,15.5
+ - rot: 3.141592653589793 rad
+ pos: 43.5,21.5
parent: 2
type: Transform
- - targetPressure: 4500
- type: GasPressurePump
- color: '#17E8E2FF'
type: AtmosPipeColor
- - uid: 18801
+ - uid: 6146
components:
- - name: насос плазмы
- type: MetaData
- - rot: -1.5707963267948966 rad
- pos: 39.5,16.5
+ - rot: 3.141592653589793 rad
+ pos: 47.5,21.5
parent: 2
type: Transform
- - color: '#947507FF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- - uid: 18802
+ - uid: 6174
components:
- - name: насос водяного пара
- type: MetaData
- - rot: -1.5707963267948966 rad
- pos: 39.5,18.5
+ - rot: 3.141592653589793 rad
+ pos: 49.5,21.5
parent: 2
type: Transform
- - color: '#947507FF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- - uid: 18803
+ - uid: 6175
components:
- - name: насос углекислого газа
- type: MetaData
- - rot: -1.5707963267948966 rad
- pos: 39.5,22.5
+ - rot: 3.141592653589793 rad
+ pos: 51.5,21.5
parent: 2
type: Transform
- - color: '#947507FF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- - uid: 18804
+ - uid: 10493
components:
- - name: насос оксида азота
- type: MetaData
- - rot: -1.5707963267948966 rad
- pos: 39.5,20.5
+ - rot: 3.141592653589793 rad
+ pos: 40.5,24.5
parent: 2
type: Transform
- - color: '#947507FF'
- type: AtmosPipeColor
- - uid: 18805
+ - uid: 18803
components:
- - name: насос из камеры воздуха
- type: MetaData
- rot: -1.5707963267948966 rad
- pos: 36.5,15.5
+ pos: 29.5,22.5
parent: 2
type: Transform
- - targetPressure: 4500
- type: GasPressurePump
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- uid: 18806
components:
- rot: -1.5707963267948966 rad
@@ -141600,16 +144624,6 @@ entities:
type: Transform
- color: '#17E8E2FF'
type: AtmosPipeColor
- - uid: 18808
- components:
- - rot: 3.141592653589793 rad
- pos: 29.5,20.5
- parent: 2
- type: Transform
- - targetPressure: 300
- type: GasPressurePump
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 18809
components:
- rot: -1.5707963267948966 rad
@@ -141639,14 +144653,6 @@ entities:
type: Transform
- color: '#A505FAFF'
type: AtmosPipeColor
- - uid: 18813
- components:
- - rot: -1.5707963267948966 rad
- pos: 35.5,17.5
- parent: 2
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- uid: 18814
components:
- name: насос отходов
@@ -141673,92 +144679,73 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 18817
+ - uid: 20756
components:
- - name: насос из дистры в отходы
- type: MetaData
- - rot: 1.5707963267948966 rad
- pos: 30.5,22.5
+ - rot: 3.141592653589793 rad
+ pos: 53.5,21.5
parent: 2
type: Transform
- - color: '#0000FFFF'
+ - color: '#FEF101FF'
type: AtmosPipeColor
- - uid: 18818
+ - uid: 20962
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 63.5,-31.5
+ parent: 2
+ type: Transform
+ - uid: 20965
components:
- rot: -1.5707963267948966 rad
- pos: 39.5,26.5
+ pos: 63.5,-29.5
parent: 2
type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- - uid: 18819
+ - uid: 21257
components:
- - name: насос в камеру смешивания
- type: MetaData
- - pos: 33.5,15.5
+ - rot: -1.5707963267948966 rad
+ pos: 31.5,20.5
parent: 2
type: Transform
- - color: '#FEF101FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18820
+ - uid: 22679
components:
- - name: насос из камеры смешивания
- type: MetaData
- - rot: 3.141592653589793 rad
- pos: 35.5,15.5
+ - rot: 1.5707963267948966 rad
+ pos: 39.5,25.5
parent: 2
type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 18821
+ - uid: 23643
components:
- - name: насос из канистры в отходы
- type: MetaData
- - rot: 3.141592653589793 rad
- pos: 31.5,20.5
+ - rot: -1.5707963267948966 rad
+ pos: 39.5,23.5
parent: 2
type: Transform
- - color: '#FF9900FF'
- type: AtmosPipeColor
- - uid: 18822
+ - uid: 23812
components:
- - name: насос смесителей в канистры
- type: MetaData
- rot: -1.5707963267948966 rad
- pos: 32.5,16.5
+ pos: 38.5,21.5
parent: 2
type: Transform
- - color: '#FF9900FF'
- type: AtmosPipeColor
- - uid: 18823
+ - uid: 25317
components:
- - name: насос воздуха в канистры
- type: MetaData
- rot: 1.5707963267948966 rad
- pos: 30.5,16.5
+ pos: 31.5,19.5
parent: 2
type: Transform
- - color: '#FF9900FF'
+ - color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 20962
+ - uid: 31911
components:
- - rot: 1.5707963267948966 rad
- pos: 63.5,-31.5
+ - rot: 3.141592653589793 rad
+ pos: 31.5,11.5
parent: 2
type: Transform
- - uid: 20965
+ - uid: 31966
components:
- - rot: -1.5707963267948966 rad
- pos: 63.5,-29.5
+ - pos: 30.5,11.5
parent: 2
type: Transform
- proto: GasThermoMachineFreezer
entities:
- - uid: 18824
- components:
- - pos: 34.5,29.5
- parent: 2
- type: Transform
- uid: 18825
components:
- pos: 35.5,29.5
@@ -141776,24 +144763,40 @@ entities:
- pos: 1.5,-47.5
parent: 2
type: Transform
+ - uid: 30108
+ components:
+ - pos: 29.5,8.5
+ parent: 2
+ type: Transform
+ - uid: 31909
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 29.5,19.5
+ parent: 2
+ type: Transform
- proto: GasThermoMachineHeater
entities:
- - uid: 18828
+ - uid: 10630
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 29.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 32067
components:
- - pos: 33.5,29.5
+ - pos: 30.5,8.5
parent: 2
type: Transform
- proto: GasValve
entities:
- - uid: 18829
+ - uid: 10590
components:
- - rot: 3.141592653589793 rad
- pos: 34.5,15.5
+ - pos: 54.5,23.5
parent: 2
type: Transform
- open: False
type: GasValve
- - color: '#FF0000FF'
+ - color: '#FF1212FF'
type: AtmosPipeColor
- uid: 18830
components:
@@ -141815,6 +144818,31 @@ entities:
type: GasValve
- color: '#0000FFFF'
type: AtmosPipeColor
+ - uid: 20022
+ components:
+ - pos: 41.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 20023
+ components:
+ - pos: 54.5,21.5
+ parent: 2
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 26057
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 36.5,19.5
+ parent: 2
+ type: Transform
+ - open: False
+ type: GasValve
+ - uid: 28742
+ components:
+ - pos: 37.5,20.5
+ parent: 2
+ type: Transform
- proto: GasVentPump
entities:
- uid: 7164
@@ -141825,6 +144853,15 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
+ - uid: 10580
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 29.5,21.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 130
+ type: DeviceNetwork
- uid: 14328
components:
- rot: 1.5707963267948966 rad
@@ -142564,14 +145601,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18927
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,31.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 18928
components:
- rot: -1.5707963267948966 rad
@@ -142885,13 +145914,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 18967
- components:
- - pos: 45.5,38.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 18968
components:
- rot: -1.5707963267948966 rad
@@ -143434,14 +146456,6 @@ entities:
type: Transform
- color: '#0000FFFF'
type: AtmosPipeColor
- - uid: 19038
- components:
- - rot: -1.5707963267948966 rad
- pos: 30.5,21.5
- parent: 2
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- uid: 19039
components:
- pos: -17.5,36.5
@@ -143521,6 +146535,21 @@ entities:
type: DeviceNetwork
- color: '#0000FFFF'
type: AtmosPipeColor
+ - uid: 27252
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 60.5,37.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
+ - uid: 27253
+ components:
+ - pos: 60.5,44.5
+ parent: 2
+ type: Transform
+ - color: '#0000FFFF'
+ type: AtmosPipeColor
- uid: 33841
components:
- pos: 4.5,-13.5
@@ -143842,6 +146871,14 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 14338
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 61.5,44.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
- uid: 19048
components:
- rot: 3.141592653589793 rad
@@ -145399,22 +148436,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
- - uid: 19250
- components:
- - rot: 1.5707963267948966 rad
- pos: 32.5,11.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- - uid: 19251
- components:
- - rot: 3.141592653589793 rad
- pos: 34.5,10.5
- parent: 2
- type: Transform
- - color: '#FEF101FF'
- type: AtmosPipeColor
- uid: 19252
components:
- rot: -1.5707963267948966 rad
@@ -145470,6 +148491,14 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
+ - uid: 27323
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 60.5,39.5
+ parent: 2
+ type: Transform
+ - color: '#FF0000FF'
+ type: AtmosPipeColor
- uid: 32928
components:
- rot: 1.5707963267948966 rad
@@ -145679,15 +148708,6 @@ entities:
type: Transform
- color: '#FF0000FF'
type: AtmosPipeColor
-- proto: GasVolumePump
- entities:
- - uid: 19261
- components:
- - pos: 38.5,15.5
- parent: 2
- type: Transform
- - color: '#17E8E2FF'
- type: AtmosPipeColor
- proto: Gauze
entities:
- uid: 19262
@@ -145704,6 +148724,11 @@ entities:
type: Transform
- proto: GeneratorBasic15kW
entities:
+ - uid: 15260
+ components:
+ - pos: -49.5,34.5
+ parent: 2
+ type: Transform
- uid: 18897
components:
- pos: 32.5,61.5
@@ -146013,6 +149038,17 @@ entities:
- type: InsideEntityStorage
- proto: Gohei
entities:
+ - uid: 1305
+ components:
+ - flags: InContainer
+ desc: Деревянный и ужасающий жезл. Кто знает, что им вытворяли..
+ name: плётка
+ type: MetaData
+ - parent: 1589
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
- uid: 19285
components:
- desc: Мощное орудие сотрудников Службы Безопасности среди врагов НаноТрайзен!
@@ -146028,6 +149064,13 @@ entities:
- pos: 40.49481,-14.138322
parent: 2
type: Transform
+- proto: GrapeSeeds
+ entities:
+ - uid: 15290
+ components:
+ - pos: -24.713032,42.165424
+ parent: 2
+ type: Transform
- proto: GrassBattlemap
entities:
- uid: 41033
@@ -146078,16 +149121,281 @@ entities:
- pos: 9.5,50.5
parent: 2
type: Transform
+ - uid: 1081
+ components:
+ - pos: 65.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 1149
+ components:
+ - pos: 65.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 1155
+ components:
+ - pos: 59.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 1156
+ components:
+ - pos: 58.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 1157
+ components:
+ - pos: 57.5,24.5
+ parent: 2
+ type: Transform
- uid: 1733
components:
- pos: 74.5,-48.5
parent: 2
type: Transform
+ - uid: 1929
+ components:
+ - pos: 51.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 1977
+ components:
+ - pos: 49.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 2364
+ components:
+ - pos: 45.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 3481
+ components:
+ - pos: 46.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 3803
+ components:
+ - pos: 50.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 4207
+ components:
+ - pos: 84.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4208
+ components:
+ - pos: 85.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4209
+ components:
+ - pos: 81.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4243
+ components:
+ - pos: 82.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4245
+ components:
+ - pos: 86.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4247
+ components:
+ - pos: 76.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4342
+ components:
+ - pos: 65.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 4345
+ components:
+ - pos: 78.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4346
+ components:
+ - pos: 77.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4347
+ components:
+ - pos: 80.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 4348
+ components:
+ - pos: 88.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 5878
+ components:
+ - pos: 63.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 5883
+ components:
+ - pos: 51.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 6102
+ components:
+ - pos: 52.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 6177
+ components:
+ - pos: 53.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 6386
+ components:
+ - pos: 70.5,13.5
+ parent: 2
+ type: Transform
- uid: 6640
components:
- pos: -9.5,51.5
parent: 2
type: Transform
+ - uid: 7046
+ components:
+ - pos: 89.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 7051
+ components:
+ - pos: 85.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 7052
+ components:
+ - pos: 81.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 7053
+ components:
+ - pos: 88.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 7054
+ components:
+ - pos: 93.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 7055
+ components:
+ - pos: 65.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 7058
+ components:
+ - pos: 93.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 7059
+ components:
+ - pos: 93.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 7060
+ components:
+ - pos: 93.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 7062
+ components:
+ - pos: 92.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 7063
+ components:
+ - pos: 65.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 7126
+ components:
+ - pos: 65.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 7128
+ components:
+ - pos: 65.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 7626
+ components:
+ - pos: 89.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 7629
+ components:
+ - pos: 93.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 7634
+ components:
+ - pos: 63.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 7644
+ components:
+ - pos: 93.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 7651
+ components:
+ - pos: 93.5,49.5
+ parent: 2
+ type: Transform
+ - uid: 7664
+ components:
+ - pos: 63.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 7666
+ components:
+ - pos: 90.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 7671
+ components:
+ - pos: 74.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 7679
+ components:
+ - pos: 52.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 7692
+ components:
+ - pos: 43.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 7693
+ components:
+ - pos: 43.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 7720
+ components:
+ - pos: 46.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 7764
+ components:
+ - pos: 45.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 7767
+ components:
+ - pos: 44.5,32.5
+ parent: 2
+ type: Transform
- uid: 8250
components:
- pos: -12.5,53.5
@@ -146103,6 +149411,101 @@ entities:
- pos: -12.5,52.5
parent: 2
type: Transform
+ - uid: 8502
+ components:
+ - pos: 67.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 8503
+ components:
+ - pos: 65.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 8510
+ components:
+ - pos: 62.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 8513
+ components:
+ - pos: 82.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10289
+ components:
+ - pos: 80.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10296
+ components:
+ - pos: 68.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10476
+ components:
+ - pos: 72.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10477
+ components:
+ - pos: 78.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10480
+ components:
+ - pos: 73.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10481
+ components:
+ - pos: 65.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 10483
+ components:
+ - pos: 69.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10484
+ components:
+ - pos: 77.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10485
+ components:
+ - pos: 84.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10487
+ components:
+ - pos: 76.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10492
+ components:
+ - pos: 66.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 10613
+ components:
+ - pos: 65.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 10618
+ components:
+ - pos: 59.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 10619
+ components:
+ - pos: 63.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 10629
+ components:
+ - pos: 59.5,12.5
+ parent: 2
+ type: Transform
- uid: 11579
components:
- rot: -1.5707963267948966 rad
@@ -146115,16 +149518,151 @@ entities:
pos: -10.5,50.5
parent: 2
type: Transform
+ - uid: 11736
+ components:
+ - pos: 58.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 11737
+ components:
+ - pos: 95.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 12173
+ components:
+ - pos: 95.5,41.5
+ parent: 2
+ type: Transform
- uid: 12319
components:
- pos: 9.5,54.5
parent: 2
type: Transform
+ - uid: 14085
+ components:
+ - pos: 95.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 14086
+ components:
+ - pos: 95.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 14087
+ components:
+ - pos: 95.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 14180
+ components:
+ - pos: 95.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 14197
+ components:
+ - pos: 70.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 14283
+ components:
+ - pos: 92.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 14324
+ components:
+ - pos: 72.5,24.5
+ parent: 2
+ type: Transform
- uid: 14842
components:
- pos: 1.5,44.5
parent: 2
type: Transform
+ - uid: 15430
+ components:
+ - pos: 61.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 15463
+ components:
+ - pos: 46.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 15777
+ components:
+ - pos: 48.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 15790
+ components:
+ - pos: 66.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 15793
+ components:
+ - pos: 93.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 18322
+ components:
+ - pos: 65.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 18323
+ components:
+ - pos: 93.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 18330
+ components:
+ - pos: 93.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 18331
+ components:
+ - pos: 93.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 18332
+ components:
+ - pos: 93.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 18333
+ components:
+ - pos: 93.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 18334
+ components:
+ - pos: 93.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 18683
+ components:
+ - pos: 57.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 18761
+ components:
+ - pos: 40.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 18765
+ components:
+ - pos: 40.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 18774
+ components:
+ - pos: 45.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 18800
+ components:
+ - pos: 93.5,32.5
+ parent: 2
+ type: Transform
- uid: 19288
components:
- pos: 26.5,-22.5
@@ -146352,12 +149890,6 @@ entities:
pos: -37.5,-73.5
parent: 2
type: Transform
- - uid: 19332
- components:
- - rot: -1.5707963267948966 rad
- pos: 35.5,14.5
- parent: 2
- type: Transform
- uid: 19333
components:
- rot: -1.5707963267948966 rad
@@ -146409,39 +149941,9 @@ entities:
- pos: 18.5,16.5
parent: 2
type: Transform
- - uid: 19343
- components:
- - pos: 39.5,14.5
- parent: 2
- type: Transform
- - uid: 19344
- components:
- - pos: 40.5,14.5
- parent: 2
- type: Transform
- - uid: 19345
- components:
- - pos: 31.5,14.5
- parent: 2
- type: Transform
- - uid: 19346
- components:
- - pos: 32.5,14.5
- parent: 2
- type: Transform
- uid: 19347
components:
- - pos: 38.5,14.5
- parent: 2
- type: Transform
- - uid: 19348
- components:
- - pos: 36.5,14.5
- parent: 2
- type: Transform
- - uid: 19349
- components:
- - pos: 33.5,14.5
+ - pos: 56.5,11.5
parent: 2
type: Transform
- uid: 19350
@@ -146461,24 +149963,6 @@ entities:
pos: 55.5,74.5
parent: 2
type: Transform
- - uid: 19353
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,19.5
- parent: 2
- type: Transform
- - uid: 19354
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,21.5
- parent: 2
- type: Transform
- - uid: 19355
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,25.5
- parent: 2
- type: Transform
- uid: 19356
components:
- pos: -23.5,-17.5
@@ -146509,12 +149993,6 @@ entities:
- pos: 18.5,18.5
parent: 2
type: Transform
- - uid: 19362
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,17.5
- parent: 2
- type: Transform
- uid: 19363
components:
- pos: 51.5,-1.5
@@ -146530,12 +150008,6 @@ entities:
- pos: -1.5,8.5
parent: 2
type: Transform
- - uid: 19366
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,22.5
- parent: 2
- type: Transform
- uid: 19367
components:
- pos: -6.5,7.5
@@ -146543,7 +150015,7 @@ entities:
type: Transform
- uid: 19368
components:
- - pos: 32.5,12.5
+ - pos: 93.5,39.5
parent: 2
type: Transform
- uid: 19369
@@ -146558,8 +150030,7 @@ entities:
type: Transform
- uid: 19371
components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,18.5
+ - pos: 93.5,27.5
parent: 2
type: Transform
- uid: 19372
@@ -146584,23 +150055,11 @@ entities:
pos: -44.5,-73.5
parent: 2
type: Transform
- - uid: 19376
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,24.5
- parent: 2
- type: Transform
- uid: 19377
components:
- pos: -11.5,-39.5
parent: 2
type: Transform
- - uid: 19378
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,23.5
- parent: 2
- type: Transform
- uid: 19379
components:
- pos: 11.5,2.5
@@ -146682,12 +150141,6 @@ entities:
- pos: 10.5,4.5
parent: 2
type: Transform
- - uid: 19395
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,26.5
- parent: 2
- type: Transform
- uid: 19396
components:
- pos: 10.5,5.5
@@ -146957,12 +150410,6 @@ entities:
- pos: 2.5,-45.5
parent: 2
type: Transform
- - uid: 19450
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,20.5
- parent: 2
- type: Transform
- uid: 19451
components:
- pos: -7.5,-6.5
@@ -146970,7 +150417,7 @@ entities:
type: Transform
- uid: 19452
components:
- - pos: 30.5,11.5
+ - pos: 55.5,25.5
parent: 2
type: Transform
- uid: 19453
@@ -147373,7 +150820,7 @@ entities:
type: Transform
- uid: 19536
components:
- - pos: 76.5,32.5
+ - pos: 42.5,20.5
parent: 2
type: Transform
- uid: 19537
@@ -147504,16 +150951,6 @@ entities:
- pos: 2.5,31.5
parent: 2
type: Transform
- - uid: 19563
- components:
- - pos: -38.5,4.5
- parent: 2
- type: Transform
- - uid: 19564
- components:
- - pos: -40.5,4.5
- parent: 2
- type: Transform
- uid: 19565
components:
- rot: 1.5707963267948966 rad
@@ -147530,29 +150967,9 @@ entities:
- pos: 68.5,-9.5
parent: 2
type: Transform
- - uid: 19568
- components:
- - pos: 48.5,35.5
- parent: 2
- type: Transform
- - uid: 19569
- components:
- - pos: 48.5,34.5
- parent: 2
- type: Transform
- - uid: 19570
- components:
- - pos: 48.5,33.5
- parent: 2
- type: Transform
- uid: 19571
components:
- - pos: 48.5,32.5
- parent: 2
- type: Transform
- - uid: 19572
- components:
- - pos: 48.5,31.5
+ - pos: 55.5,24.5
parent: 2
type: Transform
- uid: 19573
@@ -147620,40 +151037,11 @@ entities:
- pos: -11.5,6.5
parent: 2
type: Transform
- - uid: 19595
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,26.5
- parent: 2
- type: Transform
- uid: 19596
components:
- pos: -6.5,-36.5
parent: 2
type: Transform
- - uid: 19597
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,20.5
- parent: 2
- type: Transform
- - uid: 19598
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,22.5
- parent: 2
- type: Transform
- - uid: 19599
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,24.5
- parent: 2
- type: Transform
- - uid: 19600
- components:
- - pos: 76.5,35.5
- parent: 2
- type: Transform
- uid: 19601
components:
- rot: 3.141592653589793 rad
@@ -147706,41 +151094,11 @@ entities:
- pos: 24.5,-1.5
parent: 2
type: Transform
- - uid: 19611
- components:
- - rot: -1.5707963267948966 rad
- pos: 37.5,14.5
- parent: 2
- type: Transform
- uid: 19612
components:
- pos: 69.5,-11.5
parent: 2
type: Transform
- - uid: 19614
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,12.5
- parent: 2
- type: Transform
- - uid: 19615
- components:
- - rot: -1.5707963267948966 rad
- pos: 37.5,12.5
- parent: 2
- type: Transform
- - uid: 19616
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,18.5
- parent: 2
- type: Transform
- - uid: 19617
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,16.5
- parent: 2
- type: Transform
- uid: 19618
components:
- rot: -1.5707963267948966 rad
@@ -148254,11 +151612,6 @@ entities:
- pos: 40.5,-58.5
parent: 2
type: Transform
- - uid: 19727
- components:
- - pos: 31.5,12.5
- parent: 2
- type: Transform
- uid: 19728
components:
- rot: 3.141592653589793 rad
@@ -148267,7 +151620,7 @@ entities:
type: Transform
- uid: 19729
components:
- - pos: 30.5,10.5
+ - pos: 70.5,52.5
parent: 2
type: Transform
- uid: 19735
@@ -148581,484 +151934,139 @@ entities:
- pos: -38.5,48.5
parent: 2
type: Transform
- - uid: 19797
- components:
- - pos: 76.5,30.5
- parent: 2
- type: Transform
- - uid: 19798
- components:
- - pos: 76.5,34.5
- parent: 2
- type: Transform
- - uid: 19799
- components:
- - pos: 76.5,28.5
- parent: 2
- type: Transform
- - uid: 19800
- components:
- - pos: 76.5,27.5
- parent: 2
- type: Transform
- - uid: 19801
- components:
- - pos: 76.5,31.5
- parent: 2
- type: Transform
- - uid: 19802
- components:
- - pos: 76.5,26.5
- parent: 2
- type: Transform
- - uid: 19803
- components:
- - pos: 78.5,39.5
- parent: 2
- type: Transform
- - uid: 19804
- components:
- - pos: 76.5,42.5
- parent: 2
- type: Transform
- - uid: 19805
- components:
- - pos: 78.5,34.5
- parent: 2
- type: Transform
- - uid: 19806
- components:
- - pos: 78.5,24.5
- parent: 2
- type: Transform
- - uid: 19807
- components:
- - pos: 76.5,43.5
- parent: 2
- type: Transform
- - uid: 19808
- components:
- - pos: 78.5,38.5
- parent: 2
- type: Transform
- - uid: 19809
- components:
- - pos: 76.5,36.5
- parent: 2
- type: Transform
- - uid: 19810
- components:
- - pos: 76.5,40.5
- parent: 2
- type: Transform
- - uid: 19811
- components:
- - pos: 73.5,49.5
- parent: 2
- type: Transform
- - uid: 19812
- components:
- - pos: 78.5,27.5
- parent: 2
- type: Transform
- - uid: 19813
- components:
- - pos: 78.5,31.5
- parent: 2
- type: Transform
- - uid: 19814
- components:
- - pos: 49.5,19.5
- parent: 2
- type: Transform
- - uid: 19815
- components:
- - pos: 50.5,19.5
- parent: 2
- type: Transform
- - uid: 19816
- components:
- - pos: 53.5,19.5
- parent: 2
- type: Transform
- - uid: 19820
- components:
- - pos: 61.5,19.5
- parent: 2
- type: Transform
- - uid: 19825
- components:
- - pos: 60.5,19.5
- parent: 2
- type: Transform
- - uid: 19826
- components:
- - pos: 78.5,35.5
- parent: 2
- type: Transform
- - uid: 19827
- components:
- - pos: 69.5,49.5
- parent: 2
- type: Transform
- - uid: 19828
- components:
- - pos: 48.5,47.5
- parent: 2
- type: Transform
- - uid: 19829
- components:
- - pos: 48.5,49.5
- parent: 2
- type: Transform
- - uid: 19830
- components:
- - pos: 53.5,47.5
- parent: 2
- type: Transform
- - uid: 19831
- components:
- - pos: 78.5,26.5
- parent: 2
- type: Transform
- - uid: 19832
- components:
- - pos: 68.5,19.5
- parent: 2
- type: Transform
- - uid: 19833
- components:
- - pos: 46.5,46.5
- parent: 2
- type: Transform
- - uid: 19834
- components:
- - pos: 46.5,45.5
- parent: 2
- type: Transform
- - uid: 19835
- components:
- - pos: 48.5,41.5
- parent: 2
- type: Transform
- - uid: 19836
- components:
- - pos: 49.5,47.5
- parent: 2
- type: Transform
- - uid: 19837
- components:
- - pos: 52.5,47.5
- parent: 2
- type: Transform
- - uid: 19838
- components:
- - pos: 61.5,47.5
- parent: 2
- type: Transform
- uid: 19840
components:
- - pos: 66.5,19.5
+ - pos: 95.5,32.5
parent: 2
type: Transform
- uid: 19841
components:
- - pos: 65.5,19.5
+ - pos: 84.5,22.5
parent: 2
type: Transform
- - uid: 19842
- components:
- - pos: 78.5,19.5
- parent: 2
- type: Transform
- - uid: 19844
+ - uid: 19845
components:
- - pos: 76.5,23.5
+ - pos: 95.5,28.5
parent: 2
type: Transform
- uid: 19846
components:
- - pos: 78.5,20.5
+ - pos: 89.5,22.5
parent: 2
type: Transform
- - uid: 19848
+ - uid: 19847
components:
- - pos: 72.5,19.5
+ - pos: 63.5,27.5
parent: 2
type: Transform
- - uid: 19849
+ - uid: 19848
components:
- - pos: 73.5,19.5
+ - pos: 95.5,31.5
parent: 2
type: Transform
- uid: 19850
components:
- - pos: 76.5,20.5
- parent: 2
- type: Transform
- - uid: 19852
- components:
- - pos: 68.5,47.5
- parent: 2
- type: Transform
- - uid: 19853
- components:
- - pos: 66.5,49.5
- parent: 2
- type: Transform
- - uid: 19854
- components:
- - pos: 69.5,19.5
- parent: 2
- type: Transform
- - uid: 19857
- components:
- - pos: 70.5,19.5
- parent: 2
- type: Transform
- - uid: 19858
- components:
- - pos: 52.5,19.5
- parent: 2
- type: Transform
- - uid: 19859
- components:
- - pos: 76.5,38.5
- parent: 2
- type: Transform
- - uid: 19860
- components:
- - pos: 54.5,19.5
- parent: 2
- type: Transform
- - uid: 19866
- components:
- - pos: 76.5,19.5
- parent: 2
- type: Transform
- - uid: 19867
- components:
- - pos: 62.5,19.5
- parent: 2
- type: Transform
- - uid: 19868
- components:
- - pos: 70.5,47.5
- parent: 2
- type: Transform
- - uid: 19869
- components:
- - pos: 73.5,47.5
- parent: 2
- type: Transform
- - uid: 19870
- components:
- - pos: 72.5,47.5
- parent: 2
- type: Transform
- - uid: 19871
- components:
- - pos: 78.5,49.5
- parent: 2
- type: Transform
- - uid: 19872
- components:
- - pos: 78.5,44.5
- parent: 2
- type: Transform
- - uid: 19873
- components:
- - pos: 78.5,42.5
- parent: 2
- type: Transform
- - uid: 19874
- components:
- - pos: 57.5,47.5
- parent: 2
- type: Transform
- - uid: 19875
- components:
- - pos: 64.5,47.5
- parent: 2
- type: Transform
- - uid: 19876
- components:
- - pos: 58.5,47.5
- parent: 2
- type: Transform
- - uid: 19877
- components:
- - pos: 62.5,47.5
- parent: 2
- type: Transform
- - uid: 19878
- components:
- - pos: 78.5,46.5
- parent: 2
- type: Transform
- - uid: 19879
- components:
- - pos: 78.5,47.5
- parent: 2
- type: Transform
- - uid: 19880
- components:
- - pos: 76.5,39.5
- parent: 2
- type: Transform
- - uid: 19881
- components:
- - pos: 60.5,47.5
- parent: 2
- type: Transform
- - uid: 19882
- components:
- - pos: 56.5,47.5
+ - pos: 65.5,54.5
parent: 2
type: Transform
- uid: 19883
components:
- - pos: 48.5,46.5
+ - pos: 85.5,22.5
parent: 2
type: Transform
- uid: 19884
components:
- - pos: 48.5,45.5
+ - pos: 88.5,22.5
parent: 2
type: Transform
- uid: 19885
components:
- - pos: 50.5,47.5
+ - pos: 95.5,29.5
parent: 2
type: Transform
- uid: 19886
components:
- - pos: 46.5,47.5
+ - pos: 86.5,22.5
parent: 2
type: Transform
- uid: 19887
components:
- - pos: 46.5,43.5
+ - pos: 95.5,25.5
parent: 2
type: Transform
- uid: 19888
components:
- - pos: 46.5,42.5
+ - pos: 95.5,24.5
parent: 2
type: Transform
- uid: 19889
components:
- - pos: 46.5,41.5
- parent: 2
- type: Transform
- - uid: 19890
- components:
- - pos: 48.5,38.5
- parent: 2
- type: Transform
- - uid: 19891
- components:
- - pos: 48.5,39.5
+ - pos: 93.5,22.5
parent: 2
type: Transform
- uid: 19892
components:
- - pos: 48.5,42.5
+ - pos: 92.5,22.5
parent: 2
type: Transform
- uid: 19893
components:
- - pos: 48.5,43.5
- parent: 2
- type: Transform
- - uid: 19894
- components:
- - pos: 54.5,47.5
+ - pos: 90.5,22.5
parent: 2
type: Transform
- uid: 19895
components:
- - pos: 46.5,49.5
+ - pos: 82.5,22.5
parent: 2
type: Transform
- uid: 19896
components:
- - pos: 49.5,49.5
+ - pos: 80.5,22.5
parent: 2
type: Transform
- uid: 19897
components:
- - pos: 50.5,49.5
- parent: 2
- type: Transform
- - uid: 19898
- components:
- - pos: 60.5,49.5
+ - pos: 81.5,22.5
parent: 2
type: Transform
- uid: 19899
components:
- - pos: 52.5,49.5
+ - pos: 63.5,48.5
parent: 2
type: Transform
- uid: 19900
components:
- - pos: 53.5,49.5
+ - pos: 63.5,49.5
parent: 2
type: Transform
- uid: 19901
components:
- - pos: 54.5,49.5
- parent: 2
- type: Transform
- - uid: 19902
- components:
- - pos: 56.5,49.5
+ - pos: 63.5,51.5
parent: 2
type: Transform
- uid: 19903
components:
- - pos: 57.5,49.5
+ - pos: 63.5,52.5
parent: 2
type: Transform
- uid: 19904
components:
- - pos: 58.5,49.5
- parent: 2
- type: Transform
- - uid: 19905
- components:
- - pos: 61.5,49.5
+ - pos: 66.5,54.5
parent: 2
type: Transform
- - uid: 19906
- components:
- - pos: 78.5,43.5
- parent: 2
- type: Transform
- - uid: 19907
- components:
- - pos: 62.5,49.5
- parent: 2
- type: Transform
- - uid: 19908
- components:
- - pos: 64.5,49.5
- parent: 2
- type: Transform
- - uid: 19909
+ - uid: 19912
components:
- - pos: 76.5,46.5
+ - pos: 95.5,44.5
parent: 2
type: Transform
- - uid: 19910
+ - uid: 19913
components:
- - pos: 76.5,46.5
+ - pos: 95.5,45.5
parent: 2
type: Transform
- uid: 19914
components:
- - pos: 64.5,19.5
+ - pos: 95.5,27.5
parent: 2
type: Transform
- uid: 19915
@@ -149254,21 +152262,6 @@ entities:
- pos: -92.5,35.5
parent: 2
type: Transform
- - uid: 19954
- components:
- - pos: 43.5,42.5
- parent: 2
- type: Transform
- - uid: 19955
- components:
- - pos: 44.5,42.5
- parent: 2
- type: Transform
- - uid: 19956
- components:
- - pos: 45.5,43.5
- parent: 2
- type: Transform
- uid: 19957
components:
- pos: -79.5,11.5
@@ -149351,56 +152344,6 @@ entities:
- pos: -29.5,14.5
parent: 2
type: Transform
- - uid: 19974
- components:
- - pos: 78.5,22.5
- parent: 2
- type: Transform
- - uid: 19975
- components:
- - pos: 76.5,49.5
- parent: 2
- type: Transform
- - uid: 19976
- components:
- - pos: 76.5,47.5
- parent: 2
- type: Transform
- - uid: 19977
- components:
- - pos: 79.5,52.5
- parent: 2
- type: Transform
- - uid: 19978
- components:
- - pos: 81.5,52.5
- parent: 2
- type: Transform
- - uid: 19979
- components:
- - pos: 81.5,49.5
- parent: 2
- type: Transform
- - uid: 19980
- components:
- - pos: 80.5,52.5
- parent: 2
- type: Transform
- - uid: 19981
- components:
- - pos: 81.5,50.5
- parent: 2
- type: Transform
- - uid: 19982
- components:
- - pos: 75.5,47.5
- parent: 2
- type: Transform
- - uid: 19983
- components:
- - pos: 75.5,49.5
- parent: 2
- type: Transform
- uid: 19984
components:
- rot: 3.141592653589793 rad
@@ -149455,11 +152398,6 @@ entities:
- pos: -7.5,-48.5
parent: 2
type: Transform
- - uid: 19994
- components:
- - pos: 33.5,12.5
- parent: 2
- type: Transform
- uid: 19995
components:
- rot: -1.5707963267948966 rad
@@ -149581,41 +152519,6 @@ entities:
pos: -45.5,-73.5
parent: 2
type: Transform
- - uid: 20019
- components:
- - pos: 65.5,49.5
- parent: 2
- type: Transform
- - uid: 20020
- components:
- - pos: 66.5,47.5
- parent: 2
- type: Transform
- - uid: 20023
- components:
- - pos: 76.5,44.5
- parent: 2
- type: Transform
- - uid: 20024
- components:
- - pos: 78.5,40.5
- parent: 2
- type: Transform
- - uid: 20025
- components:
- - pos: 78.5,30.5
- parent: 2
- type: Transform
- - uid: 20026
- components:
- - pos: 78.5,17.5
- parent: 2
- type: Transform
- - uid: 20027
- components:
- - pos: 78.5,36.5
- parent: 2
- type: Transform
- uid: 20028
components:
- pos: 54.5,-49.5
@@ -150846,24 +153749,12 @@ entities:
pos: -6.5,57.5
parent: 2
type: Transform
- - uid: 20260
- components:
- - rot: 3.141592653589793 rad
- pos: 70.5,14.5
- parent: 2
- type: Transform
- uid: 20262
components:
- rot: 3.141592653589793 rad
pos: 13.5,57.5
parent: 2
type: Transform
- - uid: 20264
- components:
- - rot: 3.141592653589793 rad
- pos: 70.5,13.5
- parent: 2
- type: Transform
- uid: 20265
components:
- rot: 3.141592653589793 rad
@@ -151043,111 +153934,11 @@ entities:
- pos: 55.5,-9.5
parent: 2
type: Transform
- - uid: 20299
- components:
- - pos: 72.5,14.5
- parent: 2
- type: Transform
- - uid: 20300
- components:
- - pos: 73.5,14.5
- parent: 2
- type: Transform
- - uid: 20301
- components:
- - pos: 74.5,14.5
- parent: 2
- type: Transform
- - uid: 20302
- components:
- - pos: 76.5,14.5
- parent: 2
- type: Transform
- - uid: 20303
- components:
- - pos: 78.5,15.5
- parent: 2
- type: Transform
- - uid: 20304
- components:
- - pos: 78.5,14.5
- parent: 2
- type: Transform
- - uid: 20305
- components:
- - pos: 78.5,32.5
- parent: 2
- type: Transform
- - uid: 20306
- components:
- - pos: 78.5,50.5
- parent: 2
- type: Transform
- - uid: 20307
- components:
- - pos: 78.5,51.5
- parent: 2
- type: Transform
- uid: 20308
components:
- pos: -40.5,50.5
parent: 2
type: Transform
- - uid: 20309
- components:
- - pos: 77.5,52.5
- parent: 2
- type: Transform
- - uid: 20310
- components:
- - pos: 76.5,52.5
- parent: 2
- type: Transform
- - uid: 20311
- components:
- - pos: 75.5,52.5
- parent: 2
- type: Transform
- - uid: 20312
- components:
- - pos: 74.5,52.5
- parent: 2
- type: Transform
- - uid: 20313
- components:
- - pos: 71.5,52.5
- parent: 2
- type: Transform
- - uid: 20314
- components:
- - pos: 70.5,52.5
- parent: 2
- type: Transform
- - uid: 20315
- components:
- - pos: 69.5,52.5
- parent: 2
- type: Transform
- - uid: 20316
- components:
- - pos: 68.5,52.5
- parent: 2
- type: Transform
- - uid: 20317
- components:
- - pos: 67.5,52.5
- parent: 2
- type: Transform
- - uid: 20318
- components:
- - pos: 66.5,52.5
- parent: 2
- type: Transform
- - uid: 20319
- components:
- - pos: 65.5,52.5
- parent: 2
- type: Transform
- uid: 20320
components:
- rot: -1.5707963267948966 rad
@@ -151264,68 +154055,12 @@ entities:
- pos: -101.5,-3.5
parent: 2
type: Transform
- - uid: 20343
- components:
- - pos: 78.5,28.5
- parent: 2
- type: Transform
- - uid: 20344
- components:
- - pos: 75.5,19.5
- parent: 2
- type: Transform
- - uid: 20345
- components:
- - pos: 76.5,22.5
- parent: 2
- type: Transform
- - uid: 20346
- components:
- - pos: 72.5,49.5
- parent: 2
- type: Transform
- - uid: 20347
- components:
- - pos: 69.5,47.5
- parent: 2
- type: Transform
- - uid: 20348
- components:
- - pos: 78.5,23.5
- parent: 2
- type: Transform
- - uid: 20349
- components:
- - pos: 65.5,47.5
- parent: 2
- type: Transform
- - uid: 20350
- components:
- - pos: 70.5,49.5
- parent: 2
- type: Transform
- - uid: 20351
- components:
- - pos: 68.5,49.5
- parent: 2
- type: Transform
- - uid: 20352
- components:
- - pos: 76.5,24.5
- parent: 2
- type: Transform
- uid: 20353
components:
- rot: -1.5707963267948966 rad
pos: -23.5,44.5
parent: 2
type: Transform
- - uid: 20354
- components:
- - rot: 1.5707963267948966 rad
- pos: 63.5,52.5
- parent: 2
- type: Transform
- uid: 20356
components:
- pos: -48.5,-21.5
@@ -151715,12 +154450,6 @@ entities:
pos: 74.5,11.5
parent: 2
type: Transform
- - uid: 20431
- components:
- - rot: 1.5707963267948966 rad
- pos: 71.5,12.5
- parent: 2
- type: Transform
- uid: 20432
components:
- rot: 1.5707963267948966 rad
@@ -153495,266 +156224,306 @@ entities:
- pos: -26.5,-44.5
parent: 2
type: Transform
- - uid: 20756
+ - uid: 20781
components:
- - pos: 81.5,45.5
+ - pos: -68.5,-55.5
parent: 2
type: Transform
- - uid: 20757
+ - uid: 20782
components:
- - pos: 81.5,44.5
+ - pos: -70.5,-55.5
parent: 2
type: Transform
- - uid: 20758
+ - uid: 20783
components:
- - pos: 81.5,43.5
+ - pos: -71.5,-57.5
parent: 2
type: Transform
- - uid: 20759
+ - uid: 20784
components:
- - pos: 81.5,42.5
+ - pos: -71.5,-58.5
parent: 2
type: Transform
- - uid: 20760
+ - uid: 20785
components:
- - pos: 81.5,41.5
+ - pos: -71.5,-61.5
parent: 2
type: Transform
- - uid: 20761
+ - uid: 20786
components:
- - pos: 81.5,40.5
+ - pos: -71.5,-62.5
parent: 2
type: Transform
- - uid: 20762
+ - uid: 20787
components:
- - pos: 81.5,39.5
+ - pos: -71.5,-63.5
parent: 2
type: Transform
- - uid: 20763
+ - uid: 20788
components:
- - pos: 81.5,35.5
+ - pos: -71.5,-64.5
parent: 2
type: Transform
- - uid: 20764
+ - uid: 20789
components:
- - pos: 81.5,34.5
+ - pos: -71.5,-74.5
parent: 2
type: Transform
- - uid: 20765
+ - uid: 20790
components:
- - pos: 81.5,33.5
+ - pos: -71.5,-67.5
parent: 2
type: Transform
- - uid: 20766
+ - uid: 20791
components:
- - pos: 81.5,32.5
+ - pos: -71.5,-70.5
parent: 2
type: Transform
- - uid: 20767
+ - uid: 20792
components:
- - pos: 81.5,30.5
+ - pos: -70.5,-74.5
parent: 2
type: Transform
- - uid: 20768
+ - uid: 20793
components:
- - pos: 81.5,29.5
+ - pos: -70.5,-75.5
parent: 2
type: Transform
- - uid: 20769
+ - uid: 20794
components:
- - pos: 81.5,28.5
+ - pos: -67.5,-75.5
parent: 2
type: Transform
- - uid: 20770
+ - uid: 20795
components:
- - pos: 81.5,24.5
+ - pos: -65.5,-75.5
parent: 2
type: Transform
- - uid: 20771
+ - uid: 20796
components:
- - pos: 81.5,23.5
+ - pos: -63.5,-75.5
parent: 2
type: Transform
- - uid: 20772
+ - uid: 20797
components:
- - pos: 81.5,22.5
+ - pos: -62.5,-75.5
parent: 2
type: Transform
- - uid: 20773
+ - uid: 20798
components:
- - pos: 81.5,21.5
+ - pos: -61.5,-75.5
parent: 2
type: Transform
- - uid: 20774
+ - uid: 20799
components:
- - pos: 81.5,20.5
+ - pos: -57.5,-75.5
parent: 2
type: Transform
- - uid: 20775
+ - uid: 20800
components:
- - pos: 81.5,19.5
+ - pos: -56.5,-75.5
parent: 2
type: Transform
- - uid: 20776
+ - uid: 20801
components:
- - pos: 81.5,17.5
+ - pos: -55.5,-75.5
parent: 2
type: Transform
- - uid: 20777
+ - uid: 20802
components:
- - pos: 81.5,16.5
+ - pos: -54.5,-75.5
parent: 2
type: Transform
- - uid: 20778
+ - uid: 20803
components:
- - pos: 81.5,15.5
+ - pos: -52.5,-74.5
parent: 2
type: Transform
- - uid: 20779
+ - uid: 20804
components:
- - pos: 80.5,14.5
+ - pos: -49.5,-75.5
parent: 2
type: Transform
- - uid: 20780
+ - uid: 20805
components:
- - pos: 81.5,14.5
+ - rot: -1.5707963267948966 rad
+ pos: -35.5,51.5
parent: 2
type: Transform
- - uid: 20781
+ - uid: 20806
components:
- - pos: -68.5,-55.5
+ - rot: -1.5707963267948966 rad
+ pos: -35.5,50.5
parent: 2
type: Transform
- - uid: 20782
+ - uid: 20868
components:
- - pos: -70.5,-55.5
+ - pos: 9.5,59.5
parent: 2
type: Transform
- - uid: 20783
+ - uid: 21209
components:
- - pos: -71.5,-57.5
+ - pos: 44.5,27.5
parent: 2
type: Transform
- - uid: 20784
+ - uid: 21211
components:
- - pos: -71.5,-58.5
+ - pos: 42.5,27.5
parent: 2
type: Transform
- - uid: 20785
+ - uid: 21213
components:
- - pos: -71.5,-61.5
+ - pos: 45.5,29.5
parent: 2
type: Transform
- - uid: 20786
+ - uid: 21216
components:
- - pos: -71.5,-62.5
+ - pos: 68.5,24.5
parent: 2
type: Transform
- - uid: 20787
+ - uid: 21217
components:
- - pos: -71.5,-63.5
+ - pos: 69.5,24.5
parent: 2
type: Transform
- - uid: 20788
+ - uid: 21219
components:
- - pos: -71.5,-64.5
+ - pos: 73.5,24.5
parent: 2
type: Transform
- - uid: 20789
+ - uid: 21220
components:
- - pos: -71.5,-74.5
+ - pos: 48.5,20.5
parent: 2
type: Transform
- - uid: 20790
+ - uid: 21255
components:
- - pos: -71.5,-67.5
+ - pos: 47.5,20.5
parent: 2
type: Transform
- - uid: 20791
+ - uid: 21260
components:
- - pos: -71.5,-70.5
+ - pos: 74.5,24.5
parent: 2
type: Transform
- - uid: 20792
+ - uid: 21369
components:
- - pos: -70.5,-74.5
+ - pos: 57.5,23.5
parent: 2
type: Transform
- - uid: 20793
+ - uid: 21468
components:
- - pos: -70.5,-75.5
+ - pos: 55.5,23.5
parent: 2
type: Transform
- - uid: 20794
+ - uid: 21571
components:
- - pos: -67.5,-75.5
+ - pos: 43.5,20.5
parent: 2
type: Transform
- - uid: 20795
+ - uid: 21603
components:
- - pos: -65.5,-75.5
+ - pos: 90.5,52.5
parent: 2
type: Transform
- - uid: 20796
+ - uid: 21618
components:
- - pos: -63.5,-75.5
+ - pos: 86.5,52.5
parent: 2
type: Transform
- - uid: 20797
+ - uid: 21696
components:
- - pos: -62.5,-75.5
+ - pos: 95.5,33.5
parent: 2
type: Transform
- - uid: 20798
+ - uid: 21700
components:
- - pos: -61.5,-75.5
+ - pos: 95.5,35.5
parent: 2
type: Transform
- - uid: 20799
+ - uid: 21701
components:
- - pos: -57.5,-75.5
+ - pos: 93.5,28.5
parent: 2
type: Transform
- - uid: 20800
+ - uid: 21702
components:
- - pos: -56.5,-75.5
+ - pos: 93.5,29.5
parent: 2
type: Transform
- - uid: 20801
+ - uid: 21724
components:
- - pos: -55.5,-75.5
+ - pos: 65.5,48.5
parent: 2
type: Transform
- - uid: 20802
+ - uid: 21727
components:
- - pos: -54.5,-75.5
+ - pos: 65.5,49.5
parent: 2
type: Transform
- - uid: 20803
+ - uid: 21730
components:
- - pos: -52.5,-74.5
+ - pos: 93.5,31.5
parent: 2
type: Transform
- - uid: 20804
+ - uid: 21771
components:
- - pos: -49.5,-75.5
+ - pos: 52.5,29.5
parent: 2
type: Transform
- - uid: 20805
+ - uid: 21775
components:
- - rot: -1.5707963267948966 rad
- pos: -35.5,51.5
+ - pos: 44.5,29.5
parent: 2
type: Transform
- - uid: 20806
+ - uid: 21777
components:
- - rot: -1.5707963267948966 rad
- pos: -35.5,50.5
+ - pos: 51.5,29.5
parent: 2
type: Transform
- - uid: 20868
+ - uid: 21827
components:
- - pos: 9.5,59.5
+ - pos: 65.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 21909
+ components:
+ - pos: 65.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 22133
+ components:
+ - pos: 51.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22165
+ components:
+ - pos: 53.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22166
+ components:
+ - pos: 45.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22179
+ components:
+ - pos: 43.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22192
+ components:
+ - pos: 47.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22214
+ components:
+ - pos: 49.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22386
+ components:
+ - pos: 44.5,20.5
parent: 2
type: Transform
- uid: 24018
@@ -153763,6 +156532,106 @@ entities:
pos: 1.5,48.5
parent: 2
type: Transform
+ - uid: 24039
+ components:
+ - pos: 77.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24043
+ components:
+ - pos: 78.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24044
+ components:
+ - pos: 66.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24047
+ components:
+ - pos: 76.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24051
+ components:
+ - pos: 72.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24053
+ components:
+ - pos: 69.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24055
+ components:
+ - pos: 63.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 24062
+ components:
+ - pos: 70.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24063
+ components:
+ - pos: 63.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 24064
+ components:
+ - pos: 63.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 24065
+ components:
+ - pos: 63.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 24066
+ components:
+ - pos: 68.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24067
+ components:
+ - pos: 73.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24068
+ components:
+ - pos: 72.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24075
+ components:
+ - pos: 74.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24124
+ components:
+ - pos: 90.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24126
+ components:
+ - pos: 86.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24129
+ components:
+ - pos: 88.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24130
+ components:
+ - pos: 89.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24204
+ components:
+ - pos: 82.5,54.5
+ parent: 2
+ type: Transform
- uid: 24309
components:
- rot: 3.141592653589793 rad
@@ -153789,6 +156658,121 @@ entities:
- pos: 1.5,57.5
parent: 2
type: Transform
+ - uid: 24726
+ components:
+ - pos: 81.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24744
+ components:
+ - pos: 65.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 24839
+ components:
+ - pos: 74.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24841
+ components:
+ - pos: 76.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24844
+ components:
+ - pos: 65.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 24847
+ components:
+ - pos: 73.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24849
+ components:
+ - pos: 68.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24850
+ components:
+ - pos: 65.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 24859
+ components:
+ - pos: 92.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24860
+ components:
+ - pos: 95.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 24863
+ components:
+ - pos: 95.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 25013
+ components:
+ - pos: 93.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25190
+ components:
+ - pos: 95.5,49.5
+ parent: 2
+ type: Transform
+ - uid: 25214
+ components:
+ - pos: 95.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 25216
+ components:
+ - pos: 78.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25220
+ components:
+ - pos: 84.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25223
+ components:
+ - pos: 70.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25224
+ components:
+ - pos: 69.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25225
+ components:
+ - pos: 77.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25541
+ components:
+ - pos: 95.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 25543
+ components:
+ - pos: 85.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25742
+ components:
+ - pos: 80.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25951
+ components:
+ - pos: 53.5,29.5
+ parent: 2
+ type: Transform
- uid: 26424
components:
- pos: 7.5,55.5
@@ -153818,6 +156802,31 @@ entities:
pos: -3.5,58.5
parent: 2
type: Transform
+ - uid: 29833
+ components:
+ - pos: 65.5,59.5
+ parent: 2
+ type: Transform
+ - uid: 29837
+ components:
+ - pos: 67.5,58.5
+ parent: 2
+ type: Transform
+ - uid: 29844
+ components:
+ - pos: 68.5,58.5
+ parent: 2
+ type: Transform
+ - uid: 29871
+ components:
+ - pos: 69.5,57.5
+ parent: 2
+ type: Transform
+ - uid: 29933
+ components:
+ - pos: 71.5,56.5
+ parent: 2
+ type: Transform
- uid: 29940
components:
- pos: -5.5,-44.5
@@ -154311,6 +157320,69 @@ entities:
type: Transform
- proto: GrilleBroken
entities:
+ - uid: 15791
+ components:
+ - pos: 66.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 15847
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 66.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 18337
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 60.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 18338
+ components:
+ - pos: 63.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 18775
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 57.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 18818
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 56.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 18820
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 68.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 18822
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 59.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 18828
+ components:
+ - pos: 59.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 18829
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 66.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 19349
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 69.5,13.5
+ parent: 2
+ type: Transform
- uid: 20815
components:
- rot: -1.5707963267948966 rad
@@ -154614,11 +157686,6 @@ entities:
pos: 45.5,-38.5
parent: 2
type: Transform
- - uid: 20870
- components:
- - pos: 81.5,51.5
- parent: 2
- type: Transform
- uid: 20871
components:
- rot: -1.5707963267948966 rad
@@ -154631,18 +157698,6 @@ entities:
pos: 39.5,42.5
parent: 2
type: Transform
- - uid: 20873
- components:
- - rot: 1.5707963267948966 rad
- pos: 42.5,42.5
- parent: 2
- type: Transform
- - uid: 20874
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,42.5
- parent: 2
- type: Transform
- uid: 20875
components:
- rot: 3.141592653589793 rad
@@ -154718,17 +157773,6 @@ entities:
pos: -38.5,51.5
parent: 2
type: Transform
- - uid: 20891
- components:
- - rot: 3.141592653589793 rad
- pos: 70.5,12.5
- parent: 2
- type: Transform
- - uid: 20892
- components:
- - pos: 70.5,15.5
- parent: 2
- type: Transform
- uid: 20893
components:
- rot: 3.141592653589793 rad
@@ -154898,12 +157942,6 @@ entities:
pos: 69.5,10.5
parent: 2
type: Transform
- - uid: 20924
- components:
- - rot: 1.5707963267948966 rad
- pos: 69.5,13.5
- parent: 2
- type: Transform
- uid: 20925
components:
- rot: 1.5707963267948966 rad
@@ -154916,11 +157954,6 @@ entities:
pos: 55.5,-49.5
parent: 2
type: Transform
- - uid: 20927
- components:
- - pos: 81.5,18.5
- parent: 2
- type: Transform
- uid: 20928
components:
- pos: -24.5,-75.5
@@ -154979,52 +158012,6 @@ entities:
pos: 7.5,-64.5
parent: 2
type: Transform
- - uid: 20938
- components:
- - pos: 78.5,52.5
- parent: 2
- type: Transform
- - uid: 20939
- components:
- - rot: 1.5707963267948966 rad
- pos: 71.5,14.5
- parent: 2
- type: Transform
- - uid: 20940
- components:
- - rot: -1.5707963267948966 rad
- pos: 75.5,14.5
- parent: 2
- type: Transform
- - uid: 20941
- components:
- - rot: 1.5707963267948966 rad
- pos: 75.5,14.5
- parent: 2
- type: Transform
- - uid: 20942
- components:
- - pos: 78.5,16.5
- parent: 2
- type: Transform
- - uid: 20943
- components:
- - rot: -1.5707963267948966 rad
- pos: 78.5,52.5
- parent: 2
- type: Transform
- - uid: 20944
- components:
- - rot: -1.5707963267948966 rad
- pos: 72.5,52.5
- parent: 2
- type: Transform
- - uid: 20945
- components:
- - rot: 1.5707963267948966 rad
- pos: 73.5,52.5
- parent: 2
- type: Transform
- uid: 20946
components:
- pos: -40.5,51.5
@@ -155114,23 +158101,6 @@ entities:
- pos: -25.5,-80.5
parent: 2
type: Transform
- - uid: 20963
- components:
- - rot: 1.5707963267948966 rad
- pos: 64.5,52.5
- parent: 2
- type: Transform
- - uid: 20964
- components:
- - rot: -1.5707963267948966 rad
- pos: 64.5,52.5
- parent: 2
- type: Transform
- - uid: 20966
- components:
- - pos: 63.5,53.5
- parent: 2
- type: Transform
- uid: 20967
components:
- pos: 63.5,62.5
@@ -156466,90 +159436,10 @@ entities:
- pos: 84.5,-31.5
parent: 2
type: Transform
- - uid: 21206
- components:
- - pos: 81.5,31.5
- parent: 2
- type: Transform
- - uid: 21207
- components:
- - rot: 3.141592653589793 rad
- pos: 81.5,18.5
- parent: 2
- type: Transform
- - uid: 21208
- components:
- - rot: -1.5707963267948966 rad
- pos: 79.5,14.5
- parent: 2
- type: Transform
- - uid: 21209
- components:
- - rot: 1.5707963267948966 rad
- pos: 79.5,14.5
- parent: 2
- type: Transform
- - uid: 21210
- components:
- - rot: 1.5707963267948966 rad
- pos: 77.5,14.5
- parent: 2
- type: Transform
- - uid: 21211
- components:
- - rot: -1.5707963267948966 rad
- pos: 77.5,14.5
- parent: 2
- type: Transform
- - uid: 21212
- components:
- - rot: 3.141592653589793 rad
- pos: 81.5,27.5
- parent: 2
- type: Transform
- - uid: 21213
- components:
- - pos: 81.5,25.5
- parent: 2
- type: Transform
- - uid: 21214
- components:
- - pos: 81.5,36.5
- parent: 2
- type: Transform
- - uid: 21215
- components:
- - rot: 3.141592653589793 rad
- pos: 81.5,38.5
- parent: 2
- type: Transform
- - uid: 21216
- components:
- - rot: 3.141592653589793 rad
- pos: 81.5,48.5
- parent: 2
- type: Transform
- - uid: 21217
- components:
- - pos: 81.5,46.5
- parent: 2
- type: Transform
- uid: 21218
components:
- - rot: 1.5707963267948966 rad
- pos: 78.5,52.5
- parent: 2
- type: Transform
- - uid: 21219
- components:
- - rot: 3.141592653589793 rad
- pos: 81.5,31.5
- parent: 2
- type: Transform
- - uid: 21220
- components:
- - rot: 3.141592653589793 rad
- pos: 81.5,51.5
+ - rot: -1.5707963267948966 rad
+ pos: 64.5,59.5
parent: 2
type: Transform
- uid: 21221
@@ -156768,6 +159658,18 @@ entities:
pos: 63.5,56.5
parent: 2
type: Transform
+ - uid: 21735
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 58.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 21737
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 57.5,13.5
+ parent: 2
+ type: Transform
- uid: 22924
components:
- rot: -1.5707963267948966 rad
@@ -156780,6 +159682,35 @@ entities:
pos: 15.5,46.5
parent: 2
type: Transform
+ - uid: 30015
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 68.5,57.5
+ parent: 2
+ type: Transform
+ - uid: 30016
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 68.5,57.5
+ parent: 2
+ type: Transform
+ - uid: 30017
+ components:
+ - pos: 71.5,57.5
+ parent: 2
+ type: Transform
+ - uid: 30019
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 66.5,59.5
+ parent: 2
+ type: Transform
+ - uid: 30021
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 64.5,59.5
+ parent: 2
+ type: Transform
- uid: 33887
components:
- rot: 1.5707963267948966 rad
@@ -156884,6 +159815,31 @@ entities:
type: Transform
- bodyType: Dynamic
type: Physics
+- proto: GrilleDiagonal
+ entities:
+ - uid: 7765
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 46.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 18773
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 43.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 21258
+ components:
+ - pos: 43.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 25948
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 46.5,32.5
+ parent: 2
+ type: Transform
- proto: GunpetInstrument
entities:
- uid: 12249
@@ -156902,34 +159858,13 @@ entities:
- pos: -29.5,-27.5
parent: 2
type: Transform
- - locked: False
- type: Lock
- - 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
- - MidImpassable
- - LowImpassable
- layer:
- - BulletImpassable
- - Opaque
- density: 75
- hard: True
- restitution: 0
- friction: 0.4
- type: Fixtures
- air:
volume: 200
immutable: False
temperature: 293.1496
moles:
+ - 1.8968438
+ - 7.1357465
- 0
- 0
- 0
@@ -156940,13 +159875,18 @@ entities:
- 0
- 0
- 0
- - 0
- - 0
- open: True
- removedMasks: 20
type: EntityStorage
- - isPlaceable: True
- type: PlaceableSurface
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 21267
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
- proto: Gyroscope
entities:
- uid: 21268
@@ -157044,7 +159984,7 @@ entities:
type: Transform
- uid: 21279
components:
- - pos: 9.552018,-36.42396
+ - pos: 10.50373,-38.679825
parent: 2
type: Transform
- assignedLabel: Ушки DsRase
@@ -157080,28 +160020,9 @@ entities:
type: Transform
- proto: HeatExchanger
entities:
- - uid: 19513
- components:
- - rot: -1.5707963267948966 rad
- pos: 64.5,12.5
- parent: 2
- type: Transform
- - uid: 19817
- components:
- - rot: -1.5707963267948966 rad
- pos: 64.5,15.5
- parent: 2
- type: Transform
- - uid: 19861
- components:
- - rot: -1.5707963267948966 rad
- pos: 62.5,12.5
- parent: 2
- type: Transform
- - uid: 19862
+ - uid: 30956
components:
- - rot: -1.5707963267948966 rad
- pos: 62.5,15.5
+ - pos: 41.5,16.5
parent: 2
type: Transform
- proto: Hemostat
@@ -157131,6 +160052,11 @@ entities:
type: Transform
- proto: HighSecCommandLocked
entities:
+ - uid: 326
+ components:
+ - pos: 39.5,34.5
+ parent: 2
+ type: Transform
- uid: 21285
components:
- name: хранилище
@@ -157146,11 +160072,6 @@ entities:
- pos: -15.5,4.5
parent: 2
type: Transform
- - uid: 21287
- components:
- - pos: 37.5,33.5
- parent: 2
- type: Transform
- uid: 21288
components:
- pos: 53.5,65.5
@@ -157183,6 +160104,16 @@ entities:
type: Transform
- proto: HolofanProjector
entities:
+ - uid: 20360
+ components:
+ - pos: 39.563404,18.78445
+ parent: 2
+ type: Transform
+ - uid: 20472
+ components:
+ - pos: 39.610275,18.440702
+ parent: 2
+ type: Transform
- uid: 21291
components:
- pos: 14.389427,-34.208607
@@ -157667,8 +160598,67 @@ entities:
pos: 24.5,-53.5
parent: 2
type: Transform
+- proto: IceCrust
+ entities:
+ - uid: 1226
+ components:
+ - pos: -2.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 1229
+ components:
+ - pos: -0.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 1248
+ components:
+ - pos: 0.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 1741
+ components:
+ - pos: -6.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 1743
+ components:
+ - pos: -7.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 1772
+ components:
+ - pos: 1.5,56.5
+ parent: 2
+ type: Transform
+ - uid: 3057
+ components:
+ - pos: -8.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 9875
+ components:
+ - pos: -2.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 9878
+ components:
+ - pos: -2.5,48.5
+ parent: 2
+ type: Transform
+- proto: IDComputerCircuitboard
+ entities:
+ - uid: 9819
+ components:
+ - pos: 13.450254,5.4663353
+ parent: 2
+ type: Transform
- proto: InflatableDoor
entities:
+ - uid: 3449
+ components:
+ - pos: 40.5,7.5
+ parent: 2
+ type: Transform
- uid: 21359
components:
- pos: 24.5,-55.5
@@ -157727,6 +160717,11 @@ entities:
type: Transform
- proto: InflatableWall
entities:
+ - uid: 4343
+ components:
+ - pos: 39.5,7.5
+ parent: 2
+ type: Transform
- uid: 21365
components:
- pos: 20.5,-63.5
@@ -157766,18 +160761,23 @@ entities:
type: Transform
- proto: IngotGold
entities:
- - uid: 21368
+ - uid: 14198
components:
- - desc: Древнее золото с планеты земля.
- name: золото майя
- type: MetaData
- - pos: -16.498358,9.660335
+ - pos: -16.52132,8.760396
parent: 2
type: Transform
- - count: 5
- type: Stack
- proto: IngotGold1
entities:
+ - uid: 15278
+ components:
+ - pos: -41.71184,33.686825
+ parent: 2
+ type: Transform
+ - uid: 15286
+ components:
+ - pos: -41.399345,33.4837
+ parent: 2
+ type: Transform
- uid: 32865
components:
- pos: -13.450317,5.6020203
@@ -157805,13 +160805,11 @@ entities:
type: Transform
- proto: IngotSilver
entities:
- - uid: 21373
+ - uid: 14204
components:
- - pos: -14.465827,9.660335
+ - pos: -16.505695,9.557272
parent: 2
type: Transform
- - count: 5
- type: Stack
- proto: IngotSilver1
entities:
- uid: 32863
@@ -157953,9 +160951,9 @@ entities:
type: Transform
- proto: JetpackBlue
entities:
- - uid: 21390
+ - uid: 20431
components:
- - pos: 30.435377,27.21381
+ - pos: 39.57903,19.362576
parent: 2
type: Transform
- proto: JetpackSecurityFilled
@@ -158109,11 +161107,6 @@ entities:
pos: 24.573814,-47.35694
parent: 2
type: Transform
- - uid: 21402
- components:
- - pos: 26.138018,-4.515302
- parent: 2
- type: Transform
- uid: 21403
components:
- desc: Универсальный поварской нож изготовленный Asters Merchant Guild. Гарантированно будет оставаться острым долгие годы. Странно, что на нём есть следы крови...
@@ -158245,6 +161238,12 @@ entities:
type: Transform
- proto: KnifePlastic
entities:
+ - uid: 15253
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -28.48597,-31.835268
+ parent: 2
+ type: Transform
- uid: 21424
components:
- rot: -1.5707963267948966 rad
@@ -158554,13 +161553,25 @@ entities:
type: Transform
- proto: LiquidCarbonDioxideCanister
entities:
- - uid: 427
+ - uid: 11756
components:
- pos: 3.5,15.5
parent: 2
type: Transform
+- proto: LiquidNitrogenCanister
+ entities:
+ - uid: 11799
+ components:
+ - pos: 2.5,16.5
+ parent: 2
+ type: Transform
- proto: LiquidOxygenCanister
entities:
+ - uid: 11759
+ components:
+ - pos: 3.5,16.5
+ parent: 2
+ type: Transform
- uid: 32427
components:
- pos: 44.5,-55.5
@@ -158766,6 +161777,20 @@ entities:
- pos: -24.5,50.5
parent: 2
type: Transform
+- proto: LockerBrigmedicFilled
+ entities:
+ - uid: 14156
+ components:
+ - pos: -11.5,-17.5
+ parent: 2
+ type: Transform
+- proto: LockerCaptain
+ entities:
+ - uid: 15241
+ components:
+ - pos: -77.5,-23.5
+ parent: 2
+ type: Transform
- proto: LockerCaptainFilled
entities:
- uid: 11724
@@ -158773,6 +161798,24 @@ entities:
- pos: 5.5,-6.5
parent: 2
type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
- proto: LockerChemistryFilled
entities:
- uid: 11726
@@ -159309,7 +162352,13 @@ entities:
showEnts: False
occludes: True
ents:
+ - 9857
+ - 7616
+ - 7614
+ - 7613
- 15151
+ - 6084
+ - 6072
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -159400,6 +162449,40 @@ entities:
- pos: -31.5,-32.5
parent: 2
type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.734816
+ - 6.5262127
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 908
+ - 1193
+ - 1194
+ - 1204
+ - 1205
+ - 1322
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
- proto: LockerHeadOfPersonnelFilled
entities:
- uid: 21564
@@ -159703,6 +162786,24 @@ entities:
- pos: -24.5,-15.5
parent: 2
type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
- uid: 21550
components:
- pos: -25.5,-17.5
@@ -159841,6 +162942,11 @@ entities:
- pos: 45.5,8.5
parent: 2
type: Transform
+ - uid: 27232
+ components:
+ - pos: 60.5,40.5
+ parent: 2
+ type: Transform
- proto: Machete
entities:
- uid: 33905
@@ -159888,6 +162994,20 @@ entities:
- links:
- 12080
type: DeviceLinkSink
+- proto: MachineCentrifuge
+ entities:
+ - uid: 15401
+ components:
+ - pos: 10.5,-39.5
+ parent: 2
+ type: Transform
+- proto: MachineElectrolysisUnit
+ entities:
+ - uid: 15389
+ components:
+ - pos: 10.5,-38.5
+ parent: 2
+ type: Transform
- proto: MachineFrame
entities:
- uid: 1196
@@ -159914,6 +163034,21 @@ entities:
pos: 24.5,18.5
parent: 2
type: Transform
+ - uid: 15747
+ components:
+ - pos: 62.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 19395
+ components:
+ - pos: 59.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 19807
+ components:
+ - pos: 61.5,38.5
+ parent: 2
+ type: Transform
- uid: 21579
components:
- pos: 54.5,-56.5
@@ -159970,9 +163105,13 @@ entities:
entities:
- uid: 21267
components:
- - pos: -29.5,-27.5
- parent: 2
+ - flags: InContainer
+ type: MetaData
+ - parent: 21266
type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
- proto: MagazineLightRifle
entities:
- uid: 41228
@@ -160002,6 +163141,18 @@ entities:
- pos: -24.493473,-13.580878
parent: 2
type: Transform
+- proto: MagazineLightRifleRubber
+ entities:
+ - uid: 14305
+ components:
+ - pos: -24.470623,-13.551662
+ parent: 2
+ type: Transform
+ - uid: 14306
+ components:
+ - pos: -24.470623,-13.551662
+ parent: 2
+ type: Transform
- proto: MagazinePistol
entities:
- uid: 21592
@@ -160026,6 +163177,26 @@ entities:
type: Transform
- proto: MagazinePistolRubber
entities:
+ - uid: 14439
+ components:
+ - pos: -33.199028,-23.279797
+ parent: 2
+ type: Transform
+ - uid: 14440
+ components:
+ - pos: -33.199028,-23.279797
+ parent: 2
+ type: Transform
+ - uid: 14441
+ components:
+ - pos: -33.511524,-23.654797
+ parent: 2
+ type: Transform
+ - uid: 14578
+ components:
+ - pos: -33.511524,-23.654797
+ parent: 2
+ type: Transform
- uid: 21601
components:
- pos: -33.718338,-23.204046
@@ -160048,32 +163219,36 @@ entities:
type: Transform
- proto: MagazinePistolSubMachineGun
entities:
- - uid: 30121
+ - uid: 9879
components:
- - pos: -30.431858,-29.454458
+ - pos: -31.513645,-27.481964
parent: 2
type: Transform
- - uid: 35602
+ - uid: 14155
components:
- - pos: -30.431858,-29.454458
+ - pos: -31.513645,-27.481964
parent: 2
type: Transform
- proto: MagazinePistolSubMachineGunRubber
entities:
- - uid: 207
+ - uid: 11732
components:
- - rot: -1.5707963267948966 rad
- pos: -33.488243,-29.605083
+ - pos: -31.482399,-27.49759
parent: 2
type: Transform
- - uid: 15037
+ - uid: 14160
components:
- - pos: -30.447483,-29.438831
+ - pos: -31.482399,-27.49759
parent: 2
type: Transform
- - uid: 21624
+ - uid: 14339
components:
- - pos: -30.447483,-29.438831
+ - pos: -31.482399,-27.49759
+ parent: 2
+ type: Transform
+ - uid: 14340
+ components:
+ - pos: -31.482399,-27.49759
parent: 2
type: Transform
- proto: MagazineRifle
@@ -160090,6 +163265,16 @@ entities:
type: Transform
- proto: MagazineRifleRubber
entities:
+ - uid: 14362
+ components:
+ - pos: -33.62547,-27.660402
+ parent: 2
+ type: Transform
+ - uid: 14364
+ components:
+ - pos: -33.391094,-27.644777
+ parent: 2
+ type: Transform
- uid: 21623
components:
- pos: -33.64603,-27.612986
@@ -160200,11 +163385,6 @@ entities:
- pos: 52.5,-8.5
parent: 2
type: Transform
- - uid: 21644
- components:
- - pos: 49.5,-9.5
- parent: 2
- type: Transform
- uid: 21646
components:
- pos: -80.5,-23.5
@@ -160507,11 +163687,6 @@ entities:
pos: -20.415203,-53.561817
parent: 2
type: Transform
- - uid: 24767
- components:
- - pos: 61.5,53.5
- parent: 2
- type: Transform
- proto: MaterialReclaimer
entities:
- uid: 21699
@@ -160519,6 +163694,33 @@ entities:
- pos: 67.5,2.5
parent: 2
type: Transform
+- proto: MaterialWoodPlank
+ entities:
+ - uid: 1713
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 41151
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: MaterialWoodPlank10
+ entities:
+ - uid: 1694
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 41151
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+ - uid: 19564
+ components:
+ - pos: -16.401508,53.559776
+ parent: 2
+ type: Transform
- proto: MatterBinStockPart
entities:
- uid: 21706
@@ -160669,8 +163871,25 @@ entities:
- pos: -37.461075,-56.353645
parent: 2
type: Transform
+- proto: MedkitAdvanced
+ entities:
+ - uid: 11861
+ components:
+ - pos: -94.452385,6.4800057
+ parent: 2
+ type: Transform
- proto: MedkitAdvancedFilled
entities:
+ - uid: 14048
+ components:
+ - pos: -17.034027,-17.554474
+ parent: 2
+ type: Transform
+ - uid: 14049
+ components:
+ - pos: -17.221527,-17.413849
+ parent: 2
+ type: Transform
- uid: 25659
components:
- pos: -25.435658,-13.637871
@@ -160705,8 +163924,30 @@ entities:
- pos: 9.39966,10.362551
parent: 36861
type: Transform
+- proto: MedkitCombatFilled
+ entities:
+ - uid: 14050
+ components:
+ - pos: -17.580906,-17.523226
+ parent: 2
+ type: Transform
- proto: MedkitFilled
entities:
+ - uid: 14026
+ components:
+ - pos: -49.338806,-23.342367
+ parent: 2
+ type: Transform
+ - uid: 14027
+ components:
+ - pos: -16.62778,-17.585724
+ parent: 2
+ type: Transform
+ - uid: 14028
+ components:
+ - pos: -16.69028,-17.429474
+ parent: 2
+ type: Transform
- uid: 21741
components:
- pos: 58.63752,-27.396196
@@ -160859,6 +164100,18 @@ entities:
pos: 1.5,10.5
parent: 36861
type: Transform
+- proto: ModularGrenade
+ entities:
+ - uid: 15340
+ components:
+ - pos: 80.2422,-45.28065
+ parent: 2
+ type: Transform
+ - uid: 15342
+ components:
+ - pos: 80.50783,-45.28065
+ parent: 2
+ type: Transform
- proto: ModularReceiver
entities:
- uid: 13368
@@ -161312,6 +164565,11 @@ entities:
- type: StepTriggerActive
- proto: Multitool
entities:
+ - uid: 14163
+ components:
+ - pos: 2.7427304,19.478065
+ parent: 2
+ type: Transform
- uid: 21798
components:
- pos: 58.29964,-33.31183
@@ -161324,6 +164582,17 @@ entities:
parent: 2
type: Transform
- soundSwitchMode: !type:SoundPathSpecifier
+ params:
+ variation: null
+ playOffsetSeconds: 0
+ loop: False
+ referenceDistance: 1
+ rolloffFactor: 1
+ maxDistance: 20
+ busName: Master
+ pitch: 1
+ volume: 0
+ attenuation: LinearDistanceClamped
path: /Audio/Machines/beep.ogg
devices:
'UID: 60665': 15125
@@ -161350,6 +164619,11 @@ entities:
type: Transform
- proto: NettleSeeds
entities:
+ - uid: 15293
+ components:
+ - pos: -24.275528,41.49355
+ parent: 2
+ type: Transform
- uid: 21801
components:
- pos: 46.557777,-54.052723
@@ -161357,6 +164631,16 @@ entities:
type: Transform
- proto: NitrogenCanister
entities:
+ - uid: 11762
+ components:
+ - pos: 8.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 11795
+ components:
+ - pos: 9.5,15.5
+ parent: 2
+ type: Transform
- uid: 21802
components:
- pos: 12.5,-2.5
@@ -161444,6 +164728,16 @@ entities:
type: Transform
- proto: NitrogenTankFilled
entities:
+ - uid: 901
+ components:
+ - pos: 3.1021054,17.509315
+ parent: 2
+ type: Transform
+ - uid: 1189
+ components:
+ - pos: 3.4614801,17.509315
+ parent: 2
+ type: Transform
- uid: 21823
components:
- pos: 37.292416,58.63231
@@ -161459,19 +164753,6 @@ entities:
- pos: -25.588066,-13.393174
parent: 2
type: Transform
- - uid: 21827
- components:
- - pos: 2.7652771,17.705078
- parent: 2
- type: Transform
- - toggleActionEntity: 1191
- type: GasTank
- - type: ActionsContainer
- - containers:
- actions: !type:Container
- ents:
- - 1191
- type: ContainerContainer
- uid: 21828
components:
- pos: -36.476006,-18.583492
@@ -161479,14 +164760,14 @@ entities:
type: Transform
- proto: NitrousOxideCanister
entities:
- - uid: 21829
+ - uid: 21830
components:
- - pos: 4.5,15.5
+ - pos: 43.5,-27.5
parent: 2
type: Transform
- - uid: 21830
+ - uid: 31982
components:
- - pos: 43.5,-27.5
+ - pos: 4.5,15.5
parent: 2
type: Transform
- proto: NitrousOxideTank
@@ -161508,6 +164789,20 @@ entities:
- pos: -9.587318,-49.40538
parent: 2
type: Transform
+ - uid: 30113
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 28.4282,17.054379
+ parent: 2
+ type: Transform
+- proto: NoticeBoard
+ entities:
+ - uid: 35691
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -30.5,29.5
+ parent: 2
+ type: Transform
- proto: NuclearBomb
entities:
- uid: 21834
@@ -161688,6 +164983,16 @@ entities:
- pos: 10.5,16.5
parent: 2
type: Transform
+ - uid: 1221
+ components:
+ - pos: 9.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 11761
+ components:
+ - pos: 8.5,16.5
+ parent: 2
+ type: Transform
- uid: 21851
components:
- pos: -38.5,-72.5
@@ -161837,19 +165142,6 @@ entities:
- pos: -92.52775,-26.457247
parent: 2
type: Transform
- - uid: 21882
- components:
- - pos: 3.3874755,17.665314
- parent: 2
- type: Transform
- - toggleActionEntity: 1192
- type: GasTank
- - type: ActionsContainer
- - containers:
- actions: !type:Container
- ents:
- - 1192
- type: ContainerContainer
- proto: PaintingHelloWorld
entities:
- uid: 21883
@@ -161977,22 +165269,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
- - uid: 1714
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1713
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 1715
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1713
- type: Transform
- - canCollide: False
- type: Physics
- uid: 2246
components:
- pos: -30.83097,-23.557117
@@ -162002,88 +165278,112 @@ entities:
stampedBy:
- stampedColor: '#006600FF'
stampedName: stamp-component-stamped-name-centcom
- content: >-
- Опись оружейки
+ content: >
+ [color=#C41E3A]███░███░░░░██░░░░[/color]
+
+ [color=#C41E3A]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head]
+
+ [color=#C41E3A]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head]
+
+ [color=#C41E3A]░░░░██░░██░██░██░[/color] [bold] ЦК - СБ[/bold]
+
+ [color=#C41E3A]░░░░██░░░████░███[/color]
+
+ =============================================
+ [bold]ОПИСЬ СОДЕРЖИМОГО АРСЕНАЛА[/bold]
+ =============================================
+
+ --------------------------------------[bold]Амуниция[/bold]-------------------------------------
+
+ [bullet] Магазин .35 авто пистолетный (ЛЕТ) - 4 штуки;
- Магазин .35 авто пистолетный - 6 штук
+ [bullet] Магазин .35 авто пистолетный (РЕЗ) - 8 штук;
- Магазин .35 авто пистолетный НД - 6 штук
+ [bullet] Магазин .35 авто ПП (ЛЕТ) - 2 штуки;
- Коробка патронов ружейных на 12 патронов литальных - 3 штуки
+ [bullet] Магазин .35 авто ПП (РЕЗ) - 4 штуки;
- Коробка патронов ружейных на 12 патронов НД - 2 штуки
+ [bullet] Магазин .20 винтовочные (ЛЕТ) - 2 штуки;
- Коробка патронов ружейных на 12 патронов транквилизаторы - 1 штука
+ [bullet] Магазин .20 винтовочные (РЕЗ) - 4 штуки;
- Магазин для WT550 - 2 штуки
+ [bullet] Ящик патронов .20 винтовочные (ЛЕТ)- 1 штука;
- Магазин резиновых патронов .20 - 4 штуки
+ [bullet] Коробка ружейных патронов (ЛЕТ) - 2 штуки;
- Магазин патронов .20 - 4 штуки
+ [bullet] Коробка ружейных патронов (ТРАВМ) - 2 штуки;
- Ящик патронов .20 - 1 штука
+ [bullet] Коробка ружейных патронов (ТРАНКВ) - 2 штуки;
- Снаряд для РПГ
+ [bullet] Коробка ружейных патронов (ЗАЖИГ) - 1 штука.
- Дубинка-шокер - 3 штуки
+ ----------------------------------------[bold]Оружие[/bold]----------------------------------------
- Дубина литального действия - 3 штуки
+ [bullet] Дубинка-шокер - 3 штуки;
- Станнер - 3 штуки
+ [bullet] Дубинка летального действия - 3 штуки;
- Дробовик Каммерер - 3 штуки
+ [bullet] Станнер - 3 штуки;
- Пистолет МК 58 с обоймой внутри - 4 штуки
+ [bullet] Дробовик "Каммерер" - 2 штуки;
- Автоматическая винтовка Лектор + магазин боевых патронов - 2 штуки
+ [bullet] Двуствольное ружьё - 2 штуки;
- Автоматический дробовик Силовик - 1 штука
+ [bullet] Пистолет "МК 58" с обоймой внутри - 4 штуки;
- Пистолет-пулимёт WT550 с обоймой - 1 штука
+ [bullet] Штурмовая винтовка "Лектер" - 2 штуки;
- Ручной противотанковый гранатомёт 7 модель (РПГ-7) - 1 штука
+ [bullet] Автоматический дробовик "Силовик" - 2 штуки;
- Лазерный бластер - 3 штуки
+ [bullet] Лазерный бластер - 3 штуки;
- Лазерная винтовка - 1 штука
+ [bullet] Лазерная винтовка - 1 штука;
- Лазерная пушка - 1 штука
+ [bullet] Лазерная пушка - 1 штука;
- Предупредительный конус - 10 штук
+ -------------------[bold]Обмундирование и снаряжение[/bold]-------------------
- Скафандр СБ - 4 штуки
+ [bullet] Предупредительный конус - 10 штук;
- Противогаз СБ - 4 штуки
+ [bullet] Скафандр СБ - 4 штуки;
- Тяжёлый бронекостюм - 2 штуки
+ [bullet] Противогаз СБ - 4 штуки;
- Противоударныя броня - 4 штуки
+ [bullet] Тяжёлый бронекостюм - 2 штуки;
- Противоударный шлем - 4 штуки
+ [bullet] Противоударныя броня - 4 штуки;
- Противоударный щит - 4 штуки
+ [bullet] Противоударный шлем - 6 штук;
- Противопульный щит - 2 штуки
+ [bullet] Противоударный щит - 3 штуки;
- Противолазерный щит - 2 штуки
+ [bullet] Противопульный щит - 2 штуки;
- Отражающий бронежилет - 2 штуки
+ [bullet] Противолазерный щит - 2 штуки;
- Бронижелет типа III - 3 штуки
+ [bullet] Отражающий бронежилет - 2 штуки;
- Бронижелет типа I - 3 штуки
+ [bullet] Бронижелет типа III - 3 штуки;
- Шлем - 6 штук
+ [bullet] Бронижелет типа I - 3 штуки;
- Барьер стационарный - 8 штук
+ [bullet] Шлем - 6 штук;
- Стационарная вспышка - 4 штуки
+ [bullet] Барьер стационарный - 8 штук;
- Костюм L3 полный - 8 штук
+ [bullet] Стационарная вспышка - 4 штуки;
- Костюм L4 полный - 2 штуки
+ [bullet] Костюм L3 полный - 4 штуки;
- Набор инструментов - 3 штуки
+ [bullet] Костюм L4 полный - 2 штуки;
+
+ [bullet] Набор инструментов - 3 штуки;
+
+ ---------------------------------------------------------------------------------------------
+
+ ====================================================
+ Подпись:[italic] Syx[/italic]
+ [italic]Место для печатей[/italic]
type: Paper
- uid: 11631
components:
@@ -162239,24 +165539,6 @@ entities:
- pos: 58.392864,-34.010803
parent: 2
type: Transform
- - uid: 21910
- components:
- - rot: 1.5707963267948966 rad
- pos: -44.434887,0.4054471
- parent: 2
- type: Transform
- - uid: 21911
- components:
- - rot: 1.5707963267948966 rad
- pos: -44.325512,0.5460721
- parent: 2
- type: Transform
- - uid: 21912
- components:
- - rot: 1.5707963267948966 rad
- pos: -44.497387,0.3116971
- parent: 2
- type: Transform
- uid: 21913
components:
- pos: 21.68871,38.54117
@@ -162786,24 +166068,6 @@ entities:
- pos: 58.58042,-32.75426
parent: 2
type: Transform
- - uid: 21996
- components:
- - pos: 44.459393,20.558382
- parent: 2
- type: Transform
- - content: >-
- у нашего газового гиганта кончился оксид азота
-
-
-
-
-
-
-
-
-
- :(
- type: Paper
- uid: 21997
components:
- rot: -1.5707963267948966 rad
@@ -162884,11 +166148,6 @@ entities:
pos: -15.484171,19.483936
parent: 2
type: Transform
- - uid: 23414
- components:
- - pos: -44.747757,0.6814324
- parent: 2
- type: Transform
- uid: 23646
components:
- desc: Кто доверил клоуну пульт от ядерки?
@@ -163144,9 +166403,56 @@ entities:
type: Transform
- proto: ParticleAcceleratorControlBoxUnfinished
entities:
- - uid: 26507
+ - uid: 22401
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 61.5,37.5
+ parent: 2
+ type: Transform
+- proto: ParticleAcceleratorEmitterForeUnfinished
+ entities:
+ - uid: 21677
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 63.5,38.5
+ parent: 2
+ type: Transform
+- proto: ParticleAcceleratorEmitterPortUnfinished
+ entities:
+ - uid: 15849
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 63.5,39.5
+ parent: 2
+ type: Transform
+- proto: ParticleAcceleratorEmitterStarboardUnfinished
+ entities:
+ - uid: 21620
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 63.5,37.5
+ parent: 2
+ type: Transform
+- proto: PartRodMetal
+ entities:
+ - uid: 11809
+ components:
+ - pos: 21.510712,18.837275
+ parent: 2
+ type: Transform
+ - uid: 11825
+ components:
+ - pos: 21.541962,19.13415
+ parent: 2
+ type: Transform
+ - uid: 11840
+ components:
+ - pos: 21.526337,18.6029
+ parent: 2
+ type: Transform
+ - uid: 15259
components:
- - pos: 44.5,35.5
+ - pos: -43.404095,27.901379
parent: 2
type: Transform
- proto: PartRodMetal1
@@ -163384,11 +166690,6 @@ entities:
- pos: 48.186096,-51.48784
parent: 2
type: Transform
- - uid: 26580
- components:
- - pos: -39.107136,1.6033072
- parent: 2
- type: Transform
- uid: 35548
components:
- rot: -1.5707963267948966 rad
@@ -163770,7 +167071,7 @@ entities:
type: Transform
- uid: 22101
components:
- - desc: 'На ней неразборчиво написано инструкция по работе с атмосией. Зато псевдоним автора виден хорошо: "HappyRoach".'
+ - desc: 'На ней неразборчиво написано инструкция по работе с атмосией. Зато псевдоним первого автора виден хорошо: "HappyRoach".'
type: MetaData
- rot: 3.141592653589793 rad
pos: 31.5,30.5
@@ -163778,17 +167079,6 @@ entities:
type: Transform
- proto: PlasmaReinforcedWindowDirectional
entities:
- - uid: 19613
- components:
- - pos: 52.5,14.5
- parent: 2
- type: Transform
- - uid: 19845
- components:
- - rot: 1.5707963267948966 rad
- pos: 51.5,13.5
- parent: 2
- type: Transform
- uid: 22102
components:
- rot: 1.5707963267948966 rad
@@ -163886,11 +167176,6 @@ entities:
pos: 49.5,-27.5
parent: 2
type: Transform
- - uid: 28725
- components:
- - pos: 53.5,14.5
- parent: 2
- type: Transform
- uid: 33936
components:
- rot: 1.5707963267948966 rad
@@ -163955,21 +167240,12 @@ entities:
pos: 8.5,1.5
parent: 36861
type: Transform
- - uid: 41290
- components:
- - pos: 54.5,14.5
- parent: 2
- type: Transform
- - uid: 41291
- components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,11.5
- parent: 2
- type: Transform
- - uid: 41293
+- proto: PlasmaTank
+ entities:
+ - uid: 28708
components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,13.5
+ - rot: -1.5707963267948966 rad
+ pos: 40.319443,9.105575
parent: 2
type: Transform
- proto: PlasticFlapsAirtightClear
@@ -164018,18 +167294,19 @@ entities:
type: Transform
- proto: PlushieAtmosian
entities:
+ - uid: 30114
+ components:
+ - desc: Мягкая игрушка, увы не смыслящая в трубах. Поэтому не устранит разгерметизацию за вас.
+ name: плюшевый атмосианин сухарик
+ type: MetaData
+ - pos: 28.568825,17.195004
+ parent: 2
+ type: Transform
- uid: 37702
components:
- pos: 15.713745,8.550247
parent: 36861
type: Transform
-- proto: PlushieBee
- entities:
- - uid: 22127
- components:
- - pos: -43.385445,0.6561047
- parent: 2
- type: Transform
- proto: PlushieCarp
entities:
- uid: 20469
@@ -164074,11 +167351,6 @@ entities:
- pos: -81.370415,-5.2366066
parent: 2
type: Transform
- - uid: 22133
- components:
- - pos: -39.48612,0.4716285
- parent: 2
- type: Transform
- uid: 35580
components:
- desc: выглядит потрёпанным, на этикетке видет текст "вафли это вкусно"
@@ -164113,6 +167385,13 @@ entities:
type: Transform
- proto: PlushieLizard
entities:
+ - uid: 13036
+ components:
+ - desc: Инструкторы покинули нас... "F"
+ type: MetaData
+ - pos: -46.679516,-22.279867
+ parent: 2
+ type: Transform
- uid: 22136
components:
- desc: Лучший друг мима, сопровождает его во всех пантомимах.
@@ -164157,14 +167436,6 @@ entities:
- pos: 28.386154,-44.341263
parent: 2
type: Transform
- - uid: 35569
- components:
- - desc: 'Выглядит туповатой. '
- name: Плюшевая Клос-Тян
- type: MetaData
- - pos: 11.666732,56.69621
- parent: 2
- type: Transform
- uid: 41062
components:
- desc: Самый милый унатх во вселенной
@@ -164175,6 +167446,11 @@ entities:
type: Transform
- proto: PlushieMoth
entities:
+ - uid: 25961
+ components:
+ - pos: 67.53901,10.431941
+ parent: 2
+ type: Transform
- uid: 35534
components:
- desc: стрекочет
@@ -164207,6 +167483,11 @@ entities:
- pos: -28.469963,-36.42133
parent: 2
type: Transform
+ - uid: 25960
+ components:
+ - pos: 69.54496,10.5296135
+ parent: 2
+ type: Transform
- uid: 33945
components:
- pos: -7.425087,20.441677
@@ -164231,6 +167512,21 @@ entities:
type: Transform
- proto: PlushieRGBee
entities:
+ - uid: 11890
+ components:
+ - pos: -11.563769,-15.679434
+ parent: 2
+ type: Transform
+ - uid: 11891
+ components:
+ - pos: 4.288107,-24.656738
+ parent: 2
+ type: Transform
+ - uid: 11892
+ components:
+ - pos: -11.202451,-32.590694
+ parent: 2
+ type: Transform
- uid: 22145
components:
- pos: 3.3682044,-15.767785
@@ -164253,11 +167549,6 @@ entities:
- pos: 36.488754,-16.352331
parent: 2
type: Transform
- - uid: 41239
- components:
- - pos: -38.65,0.41049355
- parent: 2
- type: Transform
- proto: PlushieSharkPink
entities:
- uid: 22149
@@ -164322,12 +167613,9 @@ entities:
- pos: 48.5,74.5
parent: 2
type: Transform
- - uid: 21610
+ - uid: 11742
components:
- - desc: Этот гавнюк украл из оружейки много оружия! Уволен!.. Стоп, а тогда что он тут делает?
- name: ll_misha_ll
- type: MetaData
- - pos: -37.437817,-29.463718
+ - pos: 11.711038,56.650677
parent: 2
type: Transform
- uid: 22157
@@ -164372,13 +167660,6 @@ entities:
- pos: 15.69812,-0.538147
parent: 36861
type: Transform
-- proto: PlushieVox
- entities:
- - uid: 22161
- components:
- - pos: 46.495934,18.36562
- parent: 2
- type: Transform
- proto: PlushieXeno
entities:
- uid: 37709
@@ -164431,6 +167712,18 @@ entities:
- pos: 10.5,47.5
parent: 2
type: Transform
+- proto: PortableGeneratorJrPacmanMachineCircuitboard
+ entities:
+ - uid: 11833
+ components:
+ - pos: 15.579656,7.792478
+ parent: 2
+ type: Transform
+ - uid: 28694
+ components:
+ - pos: 63.55202,46.60627
+ parent: 2
+ type: Transform
- proto: PortableGeneratorPacman
entities:
- uid: 28045
@@ -164480,6 +167773,13 @@ entities:
- pos: 29.5,25.5
parent: 2
type: Transform
+- proto: PortableScrubberMachineCircuitBoard
+ entities:
+ - uid: 11416
+ components:
+ - pos: 16.798414,8.581016
+ parent: 2
+ type: Transform
- proto: PosterBroken
entities:
- uid: 22181
@@ -165077,6 +168377,11 @@ entities:
- pos: 5.5,-4.5
parent: 2
type: Transform
+ - uid: 30122
+ components:
+ - pos: 28.5,15.5
+ parent: 2
+ type: Transform
- proto: PottedPlant14
entities:
- uid: 22265
@@ -165154,6 +168459,17 @@ entities:
type: Transform
- proto: PottedPlant21
entities:
+ - uid: 15244
+ components:
+ - pos: -33.5,-37.5
+ parent: 2
+ type: Transform
+ - containers:
+ stash: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 15245
+ type: ContainerContainer
- uid: 22274
components:
- pos: -15.5,-28.5
@@ -165263,6 +168579,13 @@ entities:
- pos: 21.5,-19.5
parent: 2
type: Transform
+- proto: PottedPlantAlt1
+ entities:
+ - uid: 30955
+ components:
+ - pos: 30.5,14.5
+ parent: 2
+ type: Transform
- proto: PottedPlantAlt2
entities:
- uid: 22016
@@ -165308,6 +168631,13 @@ entities:
occludes: True
ent: 22292
type: ContainerContainer
+- proto: PottedPlantAlt7
+ entities:
+ - uid: 14168
+ components:
+ - pos: 10.5,27.5
+ parent: 2
+ type: Transform
- proto: PottedPlantBioluminscent
entities:
- uid: 12285
@@ -165757,11 +169087,6 @@ entities:
- pos: -12.5,-6.5
parent: 2
type: Transform
- - uid: 22373
- components:
- - pos: -46.5,2.5
- parent: 2
- type: Transform
- uid: 22374
components:
- pos: -48.5,27.5
@@ -166358,12 +169683,6 @@ entities:
pos: -7.5,-33.5
parent: 2
type: Transform
- - uid: 22454
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,-33.5
- parent: 2
- type: Transform
- uid: 22455
components:
- rot: 1.5707963267948966 rad
@@ -167231,14 +170550,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22577
- components:
- - rot: 3.141592653589793 rad
- pos: 46.5,31.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 22578
components:
- rot: 3.141592653589793 rad
@@ -167949,13 +171260,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22671
- components:
- - pos: 46.5,35.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 22672
components:
- rot: -1.5707963267948966 rad
@@ -167971,14 +171275,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22674
- components:
- - rot: 3.141592653589793 rad
- pos: 39.5,33.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 22675
components:
- rot: 1.5707963267948966 rad
@@ -168010,13 +171306,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22679
- components:
- - pos: 43.5,38.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 22680
components:
- pos: -17.5,50.5
@@ -170149,24 +173438,6 @@ entities:
pos: -23.5,-42.5
parent: 2
type: Transform
- - uid: 22974
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,17.5
- parent: 2
- type: Transform
- - uid: 22975
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,21.5
- parent: 2
- type: Transform
- - uid: 22976
- components:
- - rot: 3.141592653589793 rad
- pos: 34.5,15.5
- parent: 2
- type: Transform
- uid: 22977
components:
- rot: 1.5707963267948966 rad
@@ -170218,6 +173489,28 @@ entities:
pos: 3.5,57.5
parent: 2
type: Transform
+ - uid: 27426
+ components:
+ - pos: 62.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 27716
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 60.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 27768
+ components:
+ - pos: 60.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 27840
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 61.5,42.5
+ parent: 2
+ type: Transform
- uid: 28187
components:
- rot: 3.141592653589793 rad
@@ -170230,10 +173523,22 @@ entities:
parent: 2
type: Transform
- type: Timer
- - uid: 28859
+ - uid: 29688
components:
- rot: 1.5707963267948966 rad
- pos: 28.5,17.5
+ pos: 28.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 29697
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 40.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 30018
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 39.5,31.5
parent: 2
type: Transform
- uid: 32833
@@ -171064,22 +174369,6 @@ entities:
- links:
- 32874
type: DeviceLinkSink
- - uid: 41316
- components:
- - pos: 59.5,16.5
- parent: 2
- type: Transform
- - uid: 41317
- components:
- - pos: 55.5,16.5
- parent: 2
- type: Transform
- - uid: 41318
- components:
- - rot: 3.141592653589793 rad
- pos: 57.5,11.5
- parent: 2
- type: Transform
- proto: PoweredlightEmpty
entities:
- uid: 22978
@@ -171183,14 +174472,18 @@ entities:
type: Transform
- proto: PoweredlightLED
entities:
- - uid: 22990
+ - uid: 19513
components:
- - rot: -1.5707963267948966 rad
- pos: 35.5,27.5
+ - rot: 1.5707963267948966 rad
+ pos: 29.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 21829
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 34.5,8.5
parent: 2
type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 22991
components:
- rot: 1.5707963267948966 rad
@@ -171235,6 +174528,40 @@ entities:
- powerLoad: 0
type: ApcPowerReceiver
- type: RgbLightController
+ - uid: 28779
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 39.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 29689
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 34.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 29691
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 34.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 29743
+ components:
+ - pos: 53.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 29827
+ components:
+ - pos: 43.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 29828
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 32.5,28.5
+ parent: 2
+ type: Transform
- proto: PoweredLightPostSmall
entities:
- uid: 22996
@@ -171251,6 +174578,11 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
+ - uid: 29834
+ components:
+ - pos: 44.5,31.5
+ parent: 2
+ type: Transform
- uid: 35152
components:
- pos: -21.5,11.5
@@ -171287,8 +174619,21 @@ entities:
- pos: -4.5,11.5
parent: 34641
type: Transform
+- proto: PoweredlightSodium
+ entities:
+ - uid: 30109
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 41.5,19.5
+ parent: 2
+ type: Transform
- proto: PoweredSmallLight
entities:
+ - uid: 18764
+ components:
+ - pos: 55.5,39.5
+ parent: 2
+ type: Transform
- uid: 19623
components:
- rot: -1.5707963267948966 rad
@@ -172025,14 +175370,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 23100
- components:
- - rot: 1.5707963267948966 rad
- pos: -96.5,-18.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 23101
components:
- pos: -29.5,15.5
@@ -172101,14 +175438,6 @@ entities:
pos: 5.5,-57.5
parent: 2
type: Transform
- - uid: 23111
- components:
- - rot: 1.5707963267948966 rad
- pos: 45.5,38.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 23112
components:
- pos: -48.5,5.5
@@ -172320,22 +175649,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 23140
- components:
- - rot: 1.5707963267948966 rad
- pos: 36.5,31.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 23141
- components:
- - rot: 3.141592653589793 rad
- pos: 40.5,31.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 23142
components:
- rot: 1.5707963267948966 rad
@@ -172413,14 +175726,6 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 23153
- components:
- - rot: 3.141592653589793 rad
- pos: 32.5,10.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 23154
components:
- rot: 1.5707963267948966 rad
@@ -173110,12 +176415,6 @@ entities:
pos: 67.5,-10.5
parent: 2
type: Transform
- - uid: 23247
- components:
- - rot: 1.5707963267948966 rad
- pos: 29.5,13.5
- parent: 2
- type: Transform
- uid: 23248
components:
- pos: -18.5,46.5
@@ -173224,56 +176523,6 @@ entities:
pos: 78.5,-43.5
parent: 2
type: Transform
- - uid: 23266
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,16.5
- parent: 2
- type: Transform
- - uid: 23267
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,18.5
- parent: 2
- type: Transform
- - uid: 23268
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,20.5
- parent: 2
- type: Transform
- - type: Timer
- - uid: 23269
- components:
- - pos: 34.5,11.5
- parent: 2
- type: Transform
- - uid: 23270
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,22.5
- parent: 2
- type: Transform
- - type: Timer
- - uid: 23271
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,24.5
- parent: 2
- type: Transform
- - type: Timer
- - uid: 23272
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,26.5
- parent: 2
- type: Transform
- - uid: 23273
- components:
- - rot: 1.5707963267948966 rad
- pos: 37.5,10.5
- parent: 2
- type: Transform
- uid: 23274
components:
- rot: 3.141592653589793 rad
@@ -173385,16 +176634,34 @@ entities:
pos: 28.5,45.5
parent: 2
type: Transform
+ - uid: 23779
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 53.5,30.5
+ parent: 2
+ type: Transform
- uid: 24316
components:
- pos: -3.5,54.5
parent: 2
type: Transform
+ - uid: 25226
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 36.5,31.5
+ parent: 2
+ type: Transform
- uid: 29067
components:
- pos: 11.5,43.5
parent: 2
type: Transform
+ - uid: 29698
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 58.5,22.5
+ parent: 2
+ type: Transform
- uid: 32760
components:
- rot: 3.141592653589793 rad
@@ -173586,6 +176853,11 @@ entities:
type: ApcPowerReceiver
- proto: Protolathe
entities:
+ - uid: 11738
+ components:
+ - pos: 14.5,25.5
+ parent: 2
+ type: Transform
- uid: 23310
components:
- pos: 28.5,-15.5
@@ -173661,6 +176933,11 @@ entities:
type: Transform
- proto: Rack
entities:
+ - uid: 19398
+ components:
+ - pos: -16.5,53.5
+ parent: 2
+ type: Transform
- uid: 23321
components:
- pos: -24.5,-13.5
@@ -174497,8 +177774,25 @@ entities:
- pos: 50.5,7.5
parent: 2
type: Transform
+- proto: RadarConsoleCircuitboard
+ entities:
+ - uid: 28692
+ components:
+ - pos: 58.432507,46.581947
+ parent: 2
+ type: Transform
- proto: RadiationCollector
entities:
+ - uid: 18341
+ components:
+ - pos: 31.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 18766
+ components:
+ - pos: 31.5,35.5
+ parent: 2
+ type: Transform
- uid: 23460
components:
- pos: 30.5,35.5
@@ -174526,16 +177820,6 @@ entities:
- pos: 24.336607,6.213524
parent: 2
type: Transform
- - uid: 23466
- components:
- - pos: -44.695198,1.2881695
- parent: 2
- type: Transform
- - uid: 23467
- components:
- - pos: -44.507698,1.1162945
- parent: 2
- type: Transform
- uid: 23468
components:
- pos: 24.614384,6.130191
@@ -175599,14 +178883,24 @@ entities:
type: Transform
- proto: RandomDrinkBottle
entities:
- - uid: 23612
+ - uid: 11747
components:
- - pos: 76.5,0.5
+ - pos: 69.5,7.5
parent: 2
type: Transform
- - uid: 23613
+ - uid: 14153
components:
- - pos: 16.5,17.5
+ - pos: 16.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 15246
+ components:
+ - pos: -98.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 23612
+ components:
+ - pos: 76.5,0.5
parent: 2
type: Transform
- uid: 23614
@@ -175676,14 +178970,6 @@ entities:
- pos: -57.5,4.5
parent: 2
type: Transform
-- proto: RandomFoodBakedSingle
- entities:
- - uid: 23628
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,26.5
- parent: 2
- type: Transform
- proto: RandomFoodBakedWhole
entities:
- uid: 23630
@@ -175720,6 +179006,11 @@ entities:
type: Transform
- proto: RandomFoodSingle
entities:
+ - uid: 11745
+ components:
+ - pos: 21.5,36.5
+ parent: 2
+ type: Transform
- uid: 23636
components:
- pos: 74.5,0.5
@@ -176261,16 +179552,6 @@ entities:
type: Transform
- proto: RandomSnacks
entities:
- - uid: 23723
- components:
- - pos: -43.5,0.5
- parent: 2
- type: Transform
- - uid: 23725
- components:
- - pos: 68.5,7.5
- parent: 2
- type: Transform
- uid: 23726
components:
- pos: 23.5,-47.5
@@ -176556,11 +179837,6 @@ entities:
- pos: -13.5,-10.5
parent: 2
type: Transform
- - uid: 23779
- components:
- - pos: -43.5,-2.5
- parent: 2
- type: Transform
- uid: 23780
components:
- pos: -52.5,-0.5
@@ -176725,11 +180001,6 @@ entities:
- pos: 17.5,18.5
parent: 2
type: Transform
- - uid: 23812
- components:
- - pos: -45.5,2.5
- parent: 2
- type: Transform
- uid: 23813
components:
- pos: -40.5,-5.5
@@ -178089,14 +181360,9 @@ entities:
type: Transform
- proto: ReinforcedPlasmaWindow
entities:
- - uid: 24043
- components:
- - pos: 42.5,22.5
- parent: 2
- type: Transform
- - uid: 24044
+ - uid: 21874
components:
- - pos: 42.5,24.5
+ - pos: 53.5,18.5
parent: 2
type: Transform
- uid: 24045
@@ -178109,11 +181375,6 @@ entities:
- pos: -19.5,6.5
parent: 2
type: Transform
- - uid: 24047
- components:
- - pos: 42.5,20.5
- parent: 2
- type: Transform
- uid: 24048
components:
- pos: -17.5,8.5
@@ -178129,31 +181390,16 @@ entities:
- pos: -19.5,7.5
parent: 2
type: Transform
- - uid: 24051
- components:
- - pos: 42.5,18.5
- parent: 2
- type: Transform
- uid: 24052
components:
- pos: 56.5,64.5
parent: 2
type: Transform
- - uid: 24053
- components:
- - pos: 42.5,26.5
- parent: 2
- type: Transform
- uid: 24054
components:
- pos: -17.5,7.5
parent: 2
type: Transform
- - uid: 24055
- components:
- - pos: 42.5,16.5
- parent: 2
- type: Transform
- uid: 24056
components:
- pos: -13.5,8.5
@@ -178184,78 +181430,173 @@ entities:
- pos: -11.5,8.5
parent: 2
type: Transform
- - uid: 24062
+ - uid: 24069
components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,12.5
+ - rot: 3.141592653589793 rad
+ pos: 39.5,40.5
parent: 2
type: Transform
- - uid: 24063
+ - uid: 24070
components:
- - rot: -1.5707963267948966 rad
- pos: 37.5,12.5
+ - rot: 3.141592653589793 rad
+ pos: 40.5,40.5
parent: 2
type: Transform
- - uid: 24064
+ - uid: 24071
components:
- - pos: 31.5,12.5
+ - pos: 35.5,64.5
parent: 2
type: Transform
- - uid: 24065
+ - uid: 24072
components:
- - pos: 32.5,12.5
+ - pos: 53.5,64.5
parent: 2
type: Transform
- - uid: 24066
+ - uid: 24073
components:
- - pos: 33.5,12.5
+ - rot: 3.141592653589793 rad
+ pos: 38.5,40.5
parent: 2
type: Transform
- - uid: 24067
+ - uid: 24825
components:
- - pos: 30.5,11.5
+ - pos: 43.5,18.5
parent: 2
type: Transform
- - uid: 24068
+ - uid: 24826
components:
- - pos: 30.5,10.5
+ - pos: 45.5,18.5
parent: 2
type: Transform
- - uid: 24069
+ - uid: 24827
components:
- - rot: 3.141592653589793 rad
- pos: 39.5,40.5
+ - pos: 47.5,18.5
parent: 2
type: Transform
- - uid: 24070
+ - uid: 24831
components:
- - rot: 3.141592653589793 rad
- pos: 40.5,40.5
+ - pos: 49.5,18.5
parent: 2
type: Transform
- - uid: 24071
+ - uid: 24832
components:
- - pos: 35.5,64.5
+ - pos: 51.5,18.5
parent: 2
type: Transform
- - uid: 24072
+- proto: ReinforcedUraniumWindow
+ entities:
+ - uid: 15821
components:
- - pos: 53.5,64.5
+ - pos: 53.5,29.5
parent: 2
type: Transform
- - uid: 24073
+ - uid: 18318
components:
- - rot: 3.141592653589793 rad
- pos: 38.5,40.5
+ - pos: 52.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 18798
+ components:
+ - pos: 51.5,29.5
parent: 2
type: Transform
- proto: ReinforcedWindow
entities:
+ - uid: 195
+ components:
+ - pos: 55.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 890
+ components:
+ - pos: 44.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 1153
+ components:
+ - pos: 57.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 1158
+ components:
+ - pos: 57.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 1159
+ components:
+ - pos: 58.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 1160
+ components:
+ - pos: 59.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 1972
+ components:
+ - pos: 52.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 1976
+ components:
+ - pos: 51.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 2089
+ components:
+ - pos: 46.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 2340
+ components:
+ - pos: 44.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 2363
+ components:
+ - pos: 45.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 5861
+ components:
+ - pos: 42.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 5876
+ components:
+ - pos: 48.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 5881
+ components:
+ - pos: 43.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 6224
+ components:
+ - pos: 52.5,20.5
+ parent: 2
+ type: Transform
- uid: 6638
components:
- pos: -5.5,-44.5
parent: 2
type: Transform
+ - uid: 7631
+ components:
+ - pos: 51.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 10141
+ components:
+ - pos: 50.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 10227
+ components:
+ - pos: 53.5,20.5
+ parent: 2
+ type: Transform
- uid: 12324
components:
- pos: 9.5,54.5
@@ -178312,6 +181653,11 @@ entities:
- pos: -0.5,55.5
parent: 2
type: Transform
+ - uid: 19572
+ components:
+ - pos: 55.5,24.5
+ parent: 2
+ type: Transform
- uid: 19575
components:
- pos: -5.5,58.5
@@ -178332,32 +181678,122 @@ entities:
- pos: 1.5,55.5
parent: 2
type: Transform
+ - uid: 19844
+ components:
+ - pos: 65.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 19851
+ components:
+ - pos: 65.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 19856
+ components:
+ - pos: 65.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 19862
+ components:
+ - pos: 65.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 20347
+ components:
+ - pos: 40.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 20350
+ components:
+ - pos: 40.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 20944
+ components:
+ - pos: 43.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 20945
+ components:
+ - pos: 44.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 20963
+ components:
+ - pos: 43.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 20964
+ components:
+ - pos: 45.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 21215
+ components:
+ - pos: 47.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 21467
+ components:
+ - pos: 55.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 21594
+ components:
+ - pos: 46.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 21656
+ components:
+ - pos: 42.5,27.5
+ parent: 2
+ type: Transform
- uid: 21657
components:
- rot: -1.5707963267948966 rad
pos: -11.5,50.5
parent: 2
type: Transform
+ - uid: 21826
+ components:
+ - pos: 65.5,40.5
+ parent: 2
+ type: Transform
- uid: 22744
components:
- rot: 3.141592653589793 rad
pos: 4.5,56.5
parent: 2
type: Transform
+ - uid: 22990
+ components:
+ - pos: 45.5,27.5
+ parent: 2
+ type: Transform
- uid: 23029
components:
- rot: -1.5707963267948966 rad
pos: -10.5,50.5
parent: 2
type: Transform
- - uid: 24074
+ - uid: 23266
components:
- - pos: -13.5,-27.5
+ - pos: 49.5,20.5
parent: 2
type: Transform
- - uid: 24075
+ - uid: 23414
+ components:
+ - pos: 48.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 23725
+ components:
+ - pos: 44.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 24074
components:
- - pos: 48.5,32.5
+ - pos: -13.5,-27.5
parent: 2
type: Transform
- uid: 24076
@@ -178370,11 +181806,6 @@ entities:
- pos: 22.5,-4.5
parent: 2
type: Transform
- - uid: 24078
- components:
- - pos: 48.5,31.5
- parent: 2
- type: Transform
- uid: 24079
components:
- pos: -7.5,0.5
@@ -178410,21 +181841,11 @@ entities:
- pos: 38.5,-26.5
parent: 2
type: Transform
- - uid: 24086
- components:
- - pos: 48.5,35.5
- parent: 2
- type: Transform
- uid: 24087
components:
- pos: 3.5,10.5
parent: 2
type: Transform
- - uid: 24088
- components:
- - pos: 48.5,34.5
- parent: 2
- type: Transform
- uid: 24089
components:
- pos: 18.5,-12.5
@@ -178490,11 +181911,6 @@ entities:
- pos: 5.5,10.5
parent: 2
type: Transform
- - uid: 24102
- components:
- - pos: 31.5,14.5
- parent: 2
- type: Transform
- uid: 24103
components:
- pos: 2.5,31.5
@@ -178603,43 +182019,11 @@ entities:
- pos: 1.5,8.5
parent: 2
type: Transform
- - uid: 24124
- components:
- - pos: 32.5,14.5
- parent: 2
- type: Transform
- - uid: 24125
- components:
- - pos: 33.5,14.5
- parent: 2
- type: Transform
- - uid: 24126
- components:
- - pos: 36.5,14.5
- parent: 2
- type: Transform
- - uid: 24127
- components:
- - pos: 38.5,14.5
- parent: 2
- type: Transform
- uid: 24128
components:
- pos: -76.5,20.5
parent: 2
type: Transform
- - uid: 24129
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,17.5
- parent: 2
- type: Transform
- - uid: 24130
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,25.5
- parent: 2
- type: Transform
- uid: 24131
components:
- pos: -74.5,20.5
@@ -178651,12 +182035,6 @@ entities:
pos: -48.5,-73.5
parent: 2
type: Transform
- - uid: 24133
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,20.5
- parent: 2
- type: Transform
- uid: 24134
components:
- pos: 11.5,-25.5
@@ -178673,12 +182051,6 @@ entities:
pos: 22.5,41.5
parent: 2
type: Transform
- - uid: 24137
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,26.5
- parent: 2
- type: Transform
- uid: 24138
components:
- pos: 10.5,5.5
@@ -178739,12 +182111,6 @@ entities:
- pos: 4.5,8.5
parent: 2
type: Transform
- - uid: 24150
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,19.5
- parent: 2
- type: Transform
- uid: 24151
components:
- pos: 11.5,-47.5
@@ -178805,12 +182171,6 @@ entities:
- pos: -6.5,-38.5
parent: 2
type: Transform
- - uid: 24163
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,23.5
- parent: 2
- type: Transform
- uid: 24164
components:
- pos: -0.5,8.5
@@ -178832,16 +182192,6 @@ entities:
pos: 22.5,-25.5
parent: 2
type: Transform
- - uid: 24168
- components:
- - pos: 39.5,14.5
- parent: 2
- type: Transform
- - uid: 24169
- components:
- - pos: 40.5,14.5
- parent: 2
- type: Transform
- uid: 24170
components:
- pos: 0.5,8.5
@@ -178939,18 +182289,6 @@ entities:
- pos: -3.5,10.5
parent: 2
type: Transform
- - uid: 24189
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,18.5
- parent: 2
- type: Transform
- - uid: 24190
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,21.5
- parent: 2
- type: Transform
- uid: 24191
components:
- pos: -7.5,-6.5
@@ -179001,12 +182339,6 @@ entities:
- pos: 38.5,-27.5
parent: 2
type: Transform
- - uid: 24201
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,24.5
- parent: 2
- type: Transform
- uid: 24202
components:
- pos: -7.5,-3.5
@@ -179017,12 +182349,6 @@ entities:
- pos: -7.5,-4.5
parent: 2
type: Transform
- - uid: 24204
- components:
- - rot: -1.5707963267948966 rad
- pos: 40.5,22.5
- parent: 2
- type: Transform
- uid: 24205
components:
- pos: 61.5,-8.5
@@ -179509,11 +182835,6 @@ entities:
- pos: 49.5,-1.5
parent: 2
type: Transform
- - uid: 24301
- components:
- - pos: 48.5,33.5
- parent: 2
- type: Transform
- uid: 24302
components:
- pos: -5.5,56.5
@@ -179621,18 +182942,6 @@ entities:
pos: -45.5,-73.5
parent: 2
type: Transform
- - uid: 24335
- components:
- - rot: -1.5707963267948966 rad
- pos: 37.5,14.5
- parent: 2
- type: Transform
- - uid: 24336
- components:
- - rot: -1.5707963267948966 rad
- pos: 35.5,14.5
- parent: 2
- type: Transform
- uid: 24337
components:
- pos: 49.5,-14.5
@@ -181493,6 +184802,16 @@ entities:
- pos: 29.5,40.5
parent: 2
type: Transform
+ - uid: 25956
+ components:
+ - pos: 45.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 25958
+ components:
+ - pos: 46.5,31.5
+ parent: 2
+ type: Transform
- uid: 26712
components:
- pos: 19.5,41.5
@@ -181748,6 +185067,31 @@ entities:
pos: 1.5,0.5
parent: 36861
type: Transform
+- proto: ReinforcedWindowDiagonal
+ entities:
+ - uid: 20985
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 43.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 21054
+ components:
+ - pos: 43.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 21748
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 46.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 21751
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 46.5,32.5
+ parent: 2
+ type: Transform
- proto: ResearchAndDevelopmentServer
entities:
- uid: 24711
@@ -181849,6 +185193,11 @@ entities:
- pos: 10.23864,45.63891
parent: 2
type: Transform
+ - uid: 15236
+ components:
+ - pos: -35.55853,-25.52916
+ parent: 2
+ type: Transform
- uid: 24728
components:
- pos: -35.707596,-25.568848
@@ -181909,6 +185258,13 @@ entities:
pos: 74.5,4.5
parent: 2
type: Transform
+- proto: SalvagePartsT2Spawner
+ entities:
+ - uid: 11806
+ components:
+ - pos: 28.5,-25.5
+ parent: 2
+ type: Transform
- proto: SalvageShuttleMarker
entities:
- uid: 35661
@@ -182003,6 +185359,14 @@ entities:
type: Transform
- proto: ScalpelShiv
entities:
+ - uid: 15245
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 15244
+ type: Transform
+ - canCollide: False
+ type: Physics
- uid: 37711
components:
- flags: InContainer
@@ -182040,11 +185404,6 @@ entities:
pos: -43.190647,-39.42656
parent: 2
type: Transform
- - uid: 24763
- components:
- - pos: -96.44891,-17.369484
- parent: 2
- type: Transform
- uid: 24764
components:
- pos: 32.505383,-18.395199
@@ -182466,6 +185825,36 @@ entities:
type: Transform
- proto: SheetGlass
entities:
+ - uid: 1246
+ components:
+ - pos: 36.456417,-22.496243
+ parent: 2
+ type: Transform
+ - uid: 11084
+ components:
+ - pos: 36.456417,-22.496243
+ parent: 2
+ type: Transform
+ - uid: 11740
+ components:
+ - pos: 23.151333,21.509151
+ parent: 2
+ type: Transform
+ - uid: 11741
+ components:
+ - pos: 23.495087,21.4779
+ parent: 2
+ type: Transform
+ - uid: 11843
+ components:
+ - pos: 28.440372,-14.408028
+ parent: 2
+ type: Transform
+ - uid: 14178
+ components:
+ - pos: 23.823212,21.524776
+ parent: 2
+ type: Transform
- uid: 14211
components:
- flags: InContainer
@@ -182484,12 +185873,24 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+ - uid: 15258
+ components:
+ - pos: -43.51347,28.385756
+ parent: 2
+ type: Transform
- uid: 37812
components:
- rot: -1.5707963267948966 rad
pos: 47.47223,3.5249634
parent: 36861
type: Transform
+- proto: SheetGlass10
+ entities:
+ - uid: 19284
+ components:
+ - pos: -89.602394,-23.419039
+ parent: 2
+ type: Transform
- proto: SheetPlasma1
entities:
- uid: 24829
@@ -182506,6 +185907,56 @@ entities:
type: Stack
- proto: SheetPlasteel
entities:
+ - uid: 11826
+ components:
+ - pos: 21.510712,19.806025
+ parent: 2
+ type: Transform
+ - uid: 11830
+ components:
+ - pos: 12.333193,-4.4072185
+ parent: 2
+ type: Transform
+ - uid: 11831
+ components:
+ - pos: 12.380068,-4.4228435
+ parent: 2
+ type: Transform
+ - uid: 11835
+ components:
+ - pos: 12.380068,-4.4228435
+ parent: 2
+ type: Transform
+ - uid: 11839
+ components:
+ - pos: 21.510708,20.1654
+ parent: 2
+ type: Transform
+ - uid: 11841
+ components:
+ - pos: 35.494152,-18.533628
+ parent: 2
+ type: Transform
+ - uid: 12270
+ components:
+ - pos: 21.526337,19.540401
+ parent: 2
+ type: Transform
+ - uid: 15255
+ components:
+ - pos: -43.497845,30.088879
+ parent: 2
+ type: Transform
+ - uid: 15262
+ components:
+ - pos: -51.44166,9.684111
+ parent: 2
+ type: Transform
+ - uid: 15263
+ components:
+ - pos: -51.441658,9.418486
+ parent: 2
+ type: Transform
- uid: 24837
components:
- pos: 14.484961,-36.38649
@@ -182536,8 +185987,40 @@ entities:
pos: -15.166014,15.776203
parent: 34641
type: Transform
+- proto: SheetPlasteel10
+ entities:
+ - uid: 448
+ components:
+ - pos: 18.474815,-38.494507
+ parent: 2
+ type: Transform
+ - uid: 14304
+ components:
+ - pos: -16.448689,-13.315871
+ parent: 2
+ type: Transform
+ - uid: 19822
+ components:
+ - pos: 49.655315,-9.600131
+ parent: 2
+ type: Transform
- proto: SheetPlastic
entities:
+ - uid: 7612
+ components:
+ - pos: 30.712841,-21.61555
+ parent: 2
+ type: Transform
+ - uid: 11749
+ components:
+ - pos: 60.46901,-41.708332
+ parent: 2
+ type: Transform
+ - uid: 11842
+ components:
+ - pos: 28.469284,-24.530687
+ parent: 2
+ type: Transform
- uid: 12242
components:
- flags: InContainer
@@ -182565,8 +186048,50 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+ - uid: 12263
+ components:
+ - pos: 24.596622,-17.454903
+ parent: 2
+ type: Transform
+- proto: SheetPlastic10
+ entities:
+ - uid: 26048
+ components:
+ - pos: 26.29253,-11.545265
+ parent: 2
+ type: Transform
- proto: SheetRGlass
entities:
+ - uid: 11739
+ components:
+ - pos: 22.682587,21.524776
+ parent: 2
+ type: Transform
+ - uid: 11828
+ components:
+ - pos: 22.354462,21.5404
+ parent: 2
+ type: Transform
+ - uid: 11834
+ components:
+ - pos: 13.458192,-4.5165935
+ parent: 2
+ type: Transform
+ - uid: 11838
+ components:
+ - pos: 22.041962,21.571651
+ parent: 2
+ type: Transform
+ - uid: 12327
+ components:
+ - pos: 13.489443,-4.4540935
+ parent: 2
+ type: Transform
+ - uid: 13032
+ components:
+ - pos: 13.489443,-4.4540935
+ parent: 2
+ type: Transform
- uid: 14212
components:
- flags: InContainer
@@ -182576,8 +186101,48 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+ - uid: 15257
+ components:
+ - pos: -43.435345,28.917004
+ parent: 2
+ type: Transform
+ - uid: 15275
+ components:
+ - pos: -51.441658,8.387236
+ parent: 2
+ type: Transform
- proto: SheetSteel
entities:
+ - uid: 1222
+ components:
+ - pos: 36.503292,-19.418118
+ parent: 2
+ type: Transform
+ - uid: 1245
+ components:
+ - pos: 28.519749,-24.57433
+ parent: 2
+ type: Transform
+ - uid: 7615
+ components:
+ - pos: 22.515453,-23.824343
+ parent: 2
+ type: Transform
+ - uid: 11083
+ components:
+ - pos: 17.359203,-24.121218
+ parent: 2
+ type: Transform
+ - uid: 11827
+ components:
+ - pos: 21.526333,20.5404
+ parent: 2
+ type: Transform
+ - uid: 11836
+ components:
+ - pos: 24.143501,-17.408028
+ parent: 2
+ type: Transform
- uid: 12244
components:
- flags: InContainer
@@ -182596,11 +186161,66 @@ entities:
- canCollide: False
type: Physics
- type: InsideEntityStorage
+ - uid: 12264
+ components:
+ - pos: 21.541962,20.82165
+ parent: 2
+ type: Transform
+ - uid: 12271
+ components:
+ - pos: 21.510712,21.118525
+ parent: 2
+ type: Transform
+ - uid: 12272
+ components:
+ - pos: 12.864443,-4.4384685
+ parent: 2
+ type: Transform
+ - uid: 12273
+ components:
+ - pos: 12.864443,-4.4384685
+ parent: 2
+ type: Transform
+ - uid: 12275
+ components:
+ - pos: 12.864443,-4.4384685
+ parent: 2
+ type: Transform
+ - uid: 15256
+ components:
+ - pos: -43.497845,29.52638
+ parent: 2
+ type: Transform
+ - uid: 15264
+ components:
+ - pos: -51.47291,9.043486
+ parent: 2
+ type: Transform
+ - uid: 15265
+ components:
+ - pos: -51.44166,8.715361
+ parent: 2
+ type: Transform
- uid: 24857
components:
- pos: 13.492385,-36.347427
parent: 2
type: Transform
+ - uid: 32015
+ components:
+ - pos: 33.522366,17.597954
+ parent: 2
+ type: Transform
+ - uid: 32023
+ components:
+ - pos: 39.487503,12.554711
+ parent: 2
+ type: Transform
+ - uid: 32025
+ components:
+ - pos: 38.753128,12.585962
+ parent: 2
+ type: Transform
- uid: 35663
components:
- pos: 13.528901,-36.341686
@@ -182658,6 +186278,48 @@ entities:
pos: -13.978514,15.463703
parent: 34641
type: Transform
+- proto: SheetSteel10
+ entities:
+ - uid: 900
+ components:
+ - pos: 52.33955,-42.544018
+ parent: 2
+ type: Transform
+ - uid: 3267
+ components:
+ - pos: 49.32719,-9.459505
+ parent: 2
+ type: Transform
+ - uid: 11847
+ components:
+ - pos: -16.433064,-13.690871
+ parent: 2
+ type: Transform
+ - uid: 19264
+ components:
+ - pos: 37.583214,-65.55827
+ parent: 2
+ type: Transform
+ - uid: 19265
+ components:
+ - pos: -33.662083,-72.37711
+ parent: 2
+ type: Transform
+ - uid: 19274
+ components:
+ - pos: -38.46542,-44.476074
+ parent: 2
+ type: Transform
+ - uid: 19282
+ components:
+ - pos: -86.63035,-27.479832
+ parent: 2
+ type: Transform
+ - uid: 19563
+ components:
+ - pos: -16.667131,53.544155
+ parent: 2
+ type: Transform
- proto: ShellShotgun
entities:
- uid: 24016
@@ -183574,45 +187236,45 @@ entities:
type: Transform
- proto: ShuttersRadiationOpen
entities:
- - uid: 24953
+ - uid: 21882
components:
- - pos: 48.5,35.5
+ - pos: 65.5,40.5
parent: 2
type: Transform
- links:
- - 25013
+ - 28686
type: DeviceLinkSink
- - uid: 24954
+ - uid: 24740
components:
- - pos: 48.5,34.5
+ - pos: 65.5,37.5
parent: 2
type: Transform
- links:
- - 25013
+ - 28686
type: DeviceLinkSink
- - uid: 24955
+ - uid: 24742
components:
- - pos: 48.5,33.5
+ - pos: 65.5,39.5
parent: 2
type: Transform
- links:
- - 25013
+ - 28686
type: DeviceLinkSink
- - uid: 24956
+ - uid: 24749
components:
- - pos: 48.5,32.5
+ - pos: 65.5,38.5
parent: 2
type: Transform
- links:
- - 25013
+ - 28686
type: DeviceLinkSink
- - uid: 24957
+ - uid: 24861
components:
- - pos: 48.5,31.5
+ - pos: 65.5,36.5
parent: 2
type: Transform
- links:
- - 25013
+ - 28686
type: DeviceLinkSink
- proto: ShuttersWindowOpen
entities:
@@ -184273,26 +187935,6 @@ entities:
1519:
- Pressed: Toggle
type: DeviceLinkSource
- - uid: 25013
- components:
- - desc: Опускает ставни возле сингулярности.
- name: кнопка анти-рад ставень
- type: MetaData
- - pos: 47.5,36.5
- parent: 2
- type: Transform
- - linkedPorts:
- 24953:
- - Pressed: Toggle
- 24954:
- - Pressed: Toggle
- 24955:
- - Pressed: Toggle
- 24956:
- - Pressed: Toggle
- 24957:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 25015
components:
- rot: 3.141592653589793 rad
@@ -184629,6 +188271,23 @@ entities:
1539:
- Pressed: Toggle
type: DeviceLinkSource
+ - uid: 28686
+ components:
+ - pos: 63.5,41.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21882:
+ - Pressed: Toggle
+ 24742:
+ - Pressed: Toggle
+ 24749:
+ - Pressed: Toggle
+ 24740:
+ - Pressed: Toggle
+ 24861:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 31913
components:
- pos: -4.5,48.5
@@ -184640,6 +188299,27 @@ entities:
pos: -4.5,44.5
parent: 2
type: Transform
+ - uid: 32235
+ components:
+ - pos: 49.5,27.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 17492:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 32238
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 55.5,21.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21271:
+ - Pressed: Toggle
+ 21287:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 32739
components:
- name: ставни камер
@@ -184776,16 +188456,6 @@ entities:
215:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 32748
- components:
- - rot: 3.141592653589793 rad
- pos: 34.5,14.5
- parent: 2
- type: Transform
- - linkedPorts:
- 1504:
- - Pressed: Toggle
- type: DeviceLinkSource
- uid: 32750
components:
- name: доки
@@ -185877,23 +189547,11 @@ entities:
- pos: -3.5,-44.5
parent: 2
type: Transform
-- proto: SignFlammableMed
- entities:
- - uid: 25190
- components:
- - pos: 30.5,12.5
- parent: 2
- type: Transform
- - uid: 25191
- components:
- - pos: 42.5,15.5
- parent: 2
- type: Transform
- proto: SignGravity
entities:
- - uid: 25192
+ - uid: 20311
components:
- - pos: 37.5,34.5
+ - pos: 37.5,33.5
parent: 2
type: Transform
- proto: SignHead
@@ -186045,131 +189703,256 @@ entities:
type: Transform
- proto: SignRadiation
entities:
- - uid: 25211
+ - uid: 1152
components:
- - pos: 59.5,19.5
+ - pos: 95.5,50.5
parent: 2
type: Transform
- - uid: 25213
+ - uid: 1203
components:
- - pos: 78.5,29.5
+ - pos: 65.5,46.5
parent: 2
type: Transform
- - uid: 25214
+ - uid: 10127
components:
- - pos: 76.5,37.5
+ - pos: 63.5,50.5
parent: 2
type: Transform
- - uid: 25215
+ - uid: 15442
components:
- - pos: 76.5,45.5
+ - pos: 93.5,50.5
parent: 2
type: Transform
- - uid: 25216
+ - uid: 15443
components:
- - pos: 59.5,47.5
+ - pos: 95.5,42.5
parent: 2
type: Transform
- - uid: 25217
+ - uid: 15445
components:
- - pos: 67.5,49.5
+ - pos: 93.5,46.5
parent: 2
type: Transform
- - uid: 25218
+ - uid: 15447
components:
- - pos: 78.5,37.5
+ - pos: 95.5,46.5
parent: 2
type: Transform
- - uid: 25219
+ - uid: 15572
components:
- - pos: 76.5,21.5
+ - pos: 67.5,54.5
parent: 2
type: Transform
- - uid: 25220
+ - uid: 15573
components:
- - pos: 78.5,21.5
+ - pos: 75.5,52.5
parent: 2
type: Transform
- - uid: 25221
+ - uid: 15584
components:
- - pos: 51.5,19.5
+ - pos: 83.5,54.5
parent: 2
type: Transform
- - uid: 25222
+ - uid: 15818
components:
- - pos: 51.5,47.5
+ - pos: 75.5,54.5
parent: 2
type: Transform
- - uid: 25223
+ - uid: 15820
components:
- - pos: 76.5,29.5
+ - pos: 83.5,52.5
parent: 2
type: Transform
- - uid: 25224
+ - uid: 15822
components:
- - pos: 46.5,44.5
+ - pos: 71.5,52.5
parent: 2
type: Transform
- - uid: 25225
+ - uid: 15823
components:
- - pos: 48.5,44.5
+ - pos: 71.5,54.5
parent: 2
type: Transform
- - uid: 25226
+ - uid: 15824
components:
- - rot: 3.141592653589793 rad
- pos: 46.5,40.5
+ - pos: 79.5,54.5
parent: 2
type: Transform
- - uid: 25227
+ - uid: 15835
components:
- - rot: 3.141592653589793 rad
- pos: 48.5,40.5
+ - pos: 67.5,52.5
parent: 2
type: Transform
- - uid: 25228
+ - uid: 19802
components:
- - pos: 74.5,49.5
+ - pos: 95.5,38.5
parent: 2
type: Transform
- - uid: 25229
+ - uid: 19803
components:
- - pos: 74.5,47.5
+ - pos: 95.5,34.5
parent: 2
type: Transform
- - uid: 25230
+ - uid: 19804
components:
- - pos: 67.5,47.5
+ - pos: 93.5,30.5
parent: 2
type: Transform
- - uid: 25231
+ - uid: 19805
components:
- - pos: 59.5,49.5
+ - pos: 93.5,34.5
parent: 2
type: Transform
- - uid: 25233
+ - uid: 19810
components:
- - pos: 37.5,32.5
+ - pos: 93.5,42.5
parent: 2
type: Transform
- - uid: 25234
+ - uid: 19811
components:
- - pos: 78.5,45.5
+ - pos: 93.5,38.5
parent: 2
type: Transform
- - uid: 25235
+ - uid: 21273
components:
- - pos: 51.5,49.5
+ - pos: 65.5,50.5
parent: 2
type: Transform
- - uid: 25236
+ - uid: 21370
components:
- - pos: 67.5,19.5
+ - pos: 95.5,30.5
parent: 2
type: Transform
- - uid: 25239
+ - uid: 21371
+ components:
+ - pos: 95.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 21372
+ components:
+ - pos: 91.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 21373
+ components:
+ - pos: 65.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 21374
+ components:
+ - pos: 93.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 21375
+ components:
+ - pos: 91.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 21664
+ components:
+ - pos: 79.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 22671
+ components:
+ - pos: 87.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 22817
+ components:
+ - pos: 75.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 22974
+ components:
+ - pos: 63.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 23100
+ components:
+ - pos: 75.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 23111
+ components:
+ - pos: 67.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 23384
+ components:
+ - pos: 79.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 23459
+ components:
+ - pos: 83.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 23613
+ components:
+ - pos: 63.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 23641
+ components:
+ - pos: 65.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 23686
+ components:
+ - pos: 71.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 23687
+ components:
+ - pos: 83.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 23688
+ components:
+ - pos: 87.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 23691
+ components:
+ - pos: 79.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 23694
+ components:
+ - pos: 71.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 23723
+ components:
+ - pos: 67.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 25811
+ components:
+ - pos: 91.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25824
+ components:
+ - pos: 87.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 25835
+ components:
+ - pos: 91.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 25926
+ components:
+ - pos: 87.5,54.5
+ parent: 2
+ type: Transform
+- proto: SignRadiationMed
+ entities:
+ - uid: 28687
components:
- - pos: 74.5,19.5
+ - pos: 53.5,37.5
parent: 2
type: Transform
- proto: SignRedFour
@@ -186367,24 +190150,6 @@ entities:
pos: 35.5,35.5
parent: 2
type: Transform
- - uid: 25269
- components:
- - rot: 1.5707963267948966 rad
- pos: 40.5,15.5
- parent: 2
- type: Transform
- - uid: 25270
- components:
- - rot: 1.5707963267948966 rad
- pos: 47.5,38.5
- parent: 2
- type: Transform
- - uid: 25271
- components:
- - rot: 1.5707963267948966 rad
- pos: 30.5,14.5
- parent: 2
- type: Transform
- uid: 25272
components:
- rot: -1.5707963267948966 rad
@@ -186637,8 +190402,27 @@ entities:
pos: 0.5,8.5
parent: 32952
type: Transform
+- proto: SmartFridge
+ entities:
+ - uid: 26952
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 7.5,-42.5
+ parent: 2
+ type: Transform
- proto: SMESBasic
entities:
+ - uid: 18763
+ components:
+ - pos: 62.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 19378
+ components:
+ - pos: 59.5,44.5
+ parent: 2
+ type: Transform
- uid: 25303
components:
- pos: 25.5,16.5
@@ -186649,11 +190433,6 @@ entities:
- pos: 25.5,18.5
parent: 2
type: Transform
- - uid: 25307
- components:
- - pos: 42.5,37.5
- parent: 2
- type: Transform
- uid: 25308
components:
- pos: 34.5,67.5
@@ -186662,11 +190441,6 @@ entities:
- autoRechargeRate: 8000000
autoRecharge: True
type: BatterySelfRecharger
- - uid: 25310
- components:
- - pos: 42.5,38.5
- parent: 2
- type: Transform
- uid: 25311
components:
- pos: 32.5,67.5
@@ -186715,6 +190489,16 @@ entities:
type: BatterySelfRecharger
- proto: SMESMachineCircuitboard
entities:
+ - uid: 12307
+ components:
+ - pos: 17.476608,7.56119
+ parent: 2
+ type: Transform
+ - uid: 15261
+ components:
+ - pos: -48.479504,9.230987
+ parent: 2
+ type: Transform
- uid: 34107
components:
- pos: 3.6121006,-12.5481615
@@ -188615,28 +192399,6 @@ entities:
pos: -17.5,-45.5
parent: 2
type: Transform
-- proto: SpawnMobCatGeneric
- entities:
- - uid: 25571
- components:
- - pos: 5.5,-17.5
- parent: 2
- type: Transform
- - uid: 25572
- components:
- - pos: -5.5,19.5
- parent: 2
- type: Transform
- - uid: 25573
- components:
- - pos: -4.5,25.5
- parent: 2
- type: Transform
- - uid: 25574
- components:
- - pos: 4.5,-24.5
- parent: 2
- type: Transform
- proto: SpawnMobCatRuntime
entities:
- uid: 25575
@@ -188944,6 +192706,18 @@ entities:
- pos: -17.5,40.5
parent: 2
type: Transform
+- proto: SpawnPointBorg
+ entities:
+ - uid: 15313
+ components:
+ - pos: -49.5,8.5
+ parent: 2
+ type: Transform
+ - uid: 15315
+ components:
+ - pos: -49.5,9.5
+ parent: 2
+ type: Transform
- proto: SpawnPointBotanist
entities:
- uid: 25627
@@ -189427,6 +193201,11 @@ entities:
type: Transform
- proto: SpawnPointSecurityCadet
entities:
+ - uid: 9868
+ components:
+ - pos: -4.5,-25.5
+ parent: 2
+ type: Transform
- uid: 24674
components:
- pos: 3.5,45.5
@@ -189454,6 +193233,11 @@ entities:
type: Transform
- proto: SpawnPointSecurityOfficer
entities:
+ - uid: 14889
+ components:
+ - pos: -3.5,-23.5
+ parent: 2
+ type: Transform
- uid: 25700
components:
- pos: -9.5,-37.5
@@ -189494,34 +193278,6 @@ entities:
- pos: -4.5,46.5
parent: 2
type: Transform
-- proto: SpawnPointSeniorEngineer
- entities:
- - uid: 41021
- components:
- - pos: 21.5,28.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorOfficer
- entities:
- - uid: 41028
- components:
- - pos: -4.5,-25.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorPhysician
- entities:
- - uid: 41026
- components:
- - pos: 0.5,-48.5
- parent: 2
- type: Transform
-- proto: SpawnPointSeniorResearcher
- entities:
- - uid: 41025
- components:
- - pos: 13.5,-14.5
- parent: 2
- type: Transform
- proto: SpawnPointServiceWorker
entities:
- uid: 25707
@@ -190143,6 +193899,11 @@ entities:
type: Transform
- proto: StorageCanister
entities:
+ - uid: 22024
+ components:
+ - pos: 32.5,19.5
+ parent: 2
+ type: Transform
- uid: 25788
components:
- pos: -38.5,34.5
@@ -190153,19 +193914,19 @@ entities:
- pos: 64.5,-34.5
parent: 2
type: Transform
- - uid: 25791
+ - uid: 28711
components:
- - pos: 30.5,19.5
+ - pos: 48.5,24.5
parent: 2
type: Transform
- - uid: 25792
+ - uid: 28712
components:
- - pos: 30.5,18.5
+ - pos: 47.5,24.5
parent: 2
type: Transform
- - uid: 25793
+ - uid: 32014
components:
- - pos: 30.5,17.5
+ - pos: 30.5,12.5
parent: 2
type: Transform
- proto: Stunbaton
@@ -190282,13 +194043,6 @@ entities:
- pos: 26.5,40.5
parent: 2
type: Transform
- - uid: 25811
- components:
- - name: подстанция Гравитационной сингулярности
- type: MetaData
- - pos: 42.5,35.5
- parent: 2
- type: Transform
- uid: 25812
components:
- name: подстанция Мусоропереработки
@@ -190371,6 +194125,11 @@ entities:
- pos: -74.5,8.5
parent: 2
type: Transform
+ - uid: 27153
+ components:
+ - pos: 58.5,36.5
+ parent: 2
+ type: Transform
- uid: 35232
components:
- pos: -15.5,14.5
@@ -190390,11 +194149,21 @@ entities:
type: Transform
- proto: SubstationMachineCircuitboard
entities:
+ - uid: 11418
+ components:
+ - pos: 15.5440035,5.1069603
+ parent: 2
+ type: Transform
- uid: 25825
components:
- pos: -48.48445,8.85008
parent: 2
type: Transform
+ - uid: 28693
+ components:
+ - pos: 59.130154,46.653145
+ parent: 2
+ type: Transform
- proto: SubstationWallBasic
entities:
- uid: 32852
@@ -190423,19 +194192,19 @@ entities:
type: Transform
- proto: SuitStorageAtmos
entities:
- - uid: 22386
+ - uid: 21765
components:
- - pos: 28.5,18.5
+ - pos: 38.5,29.5
parent: 2
type: Transform
- - uid: 41018
+ - uid: 25950
components:
- - pos: 28.5,17.5
+ - pos: 37.5,29.5
parent: 2
type: Transform
- - uid: 41019
+ - uid: 25962
components:
- - pos: 28.5,16.5
+ - pos: 39.5,29.5
parent: 2
type: Transform
- proto: SuitStorageCaptain
@@ -191471,6 +195240,16 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraSecurity
entities:
+ - uid: 15317
+ components:
+ - pos: -32.5,-37.5
+ parent: 2
+ type: Transform
+ - setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Перма-бриг
+ type: SurveillanceCamera
- uid: 23832
components:
- rot: 1.5707963267948966 rad
@@ -191899,6 +195678,13 @@ entities:
- pos: -2.1976075,14.538639
parent: 33049
type: Transform
+- proto: SyringeEphedrine
+ entities:
+ - uid: 19821
+ components:
+ - pos: 9.547699,40.575836
+ parent: 2
+ type: Transform
- proto: SyringeTranexamicAcid
entities:
- uid: 25964
@@ -191919,11 +195705,61 @@ entities:
- pos: 9.5,57.5
parent: 2
type: Transform
+ - uid: 11515
+ components:
+ - pos: -45.5,-16.5
+ parent: 2
+ type: Transform
- uid: 12418
components:
- pos: 12.5,54.5
parent: 2
type: Transform
+ - uid: 15168
+ components:
+ - pos: -45.5,-15.5
+ parent: 2
+ type: Transform
+ - uid: 15331
+ components:
+ - pos: 80.5,-44.5
+ parent: 2
+ type: Transform
+ - uid: 15332
+ components:
+ - pos: 80.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 20359
+ components:
+ - pos: 39.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 20404
+ components:
+ - pos: 39.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 21598
+ components:
+ - pos: 33.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 21743
+ components:
+ - pos: 35.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 21744
+ components:
+ - pos: 39.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 21746
+ components:
+ - pos: 38.5,12.5
+ parent: 2
+ type: Transform
- uid: 25966
components:
- pos: -29.5,27.5
@@ -192047,21 +195883,6 @@ entities:
pos: 12.5,-14.5
parent: 2
type: Transform
- - uid: 25989
- components:
- - pos: 30.5,29.5
- parent: 2
- type: Transform
- - uid: 25990
- components:
- - pos: 31.5,29.5
- parent: 2
- type: Transform
- - uid: 25991
- components:
- - pos: 32.5,29.5
- parent: 2
- type: Transform
- uid: 25992
components:
- rot: 1.5707963267948966 rad
@@ -192090,16 +195911,6 @@ entities:
pos: 23.5,-17.5
parent: 2
type: Transform
- - uid: 25997
- components:
- - pos: 30.5,27.5
- parent: 2
- type: Transform
- - uid: 25998
- components:
- - pos: 30.5,26.5
- parent: 2
- type: Transform
- uid: 25999
components:
- rot: -1.5707963267948966 rad
@@ -193140,24 +196951,6 @@ entities:
- pos: -51.5,-30.5
parent: 2
type: Transform
- - uid: 26196
- components:
- - rot: 1.5707963267948966 rad
- pos: -96.5,-17.5
- parent: 2
- type: Transform
- - uid: 26197
- components:
- - rot: 1.5707963267948966 rad
- pos: -96.5,-18.5
- parent: 2
- type: Transform
- - uid: 26198
- components:
- - rot: 1.5707963267948966 rad
- pos: -96.5,-19.5
- parent: 2
- type: Transform
- uid: 26199
components:
- rot: -1.5707963267948966 rad
@@ -193320,6 +197113,26 @@ entities:
- pos: 47.5,-62.5
parent: 2
type: Transform
+ - uid: 28688
+ components:
+ - pos: 63.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 28689
+ components:
+ - pos: 62.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 28690
+ components:
+ - pos: 59.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 28691
+ components:
+ - pos: 58.5,46.5
+ parent: 2
+ type: Transform
- uid: 31201
components:
- pos: 12.5,50.5
@@ -193810,6 +197623,16 @@ entities:
type: Transform
- proto: TableGlass
entities:
+ - uid: 15383
+ components:
+ - pos: 10.5,-39.5
+ parent: 2
+ type: Transform
+ - uid: 15386
+ components:
+ - pos: 10.5,-38.5
+ parent: 2
+ type: Transform
- uid: 26283
components:
- pos: -24.5,-42.5
@@ -193966,6 +197789,11 @@ entities:
type: Transform
- proto: TableReinforced
entities:
+ - uid: 1925
+ components:
+ - pos: 55.5,37.5
+ parent: 2
+ type: Transform
- uid: 4606
components:
- rot: 1.5707963267948966 rad
@@ -193984,6 +197812,11 @@ entities:
pos: 2.5,45.5
parent: 2
type: Transform
+ - uid: 20870
+ components:
+ - pos: 39.5,31.5
+ parent: 2
+ type: Transform
- uid: 23997
components:
- rot: -1.5707963267948966 rad
@@ -194455,18 +198288,6 @@ entities:
pos: 57.5,-38.5
parent: 2
type: Transform
- - uid: 26393
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,27.5
- parent: 2
- type: Transform
- - uid: 26394
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,27.5
- parent: 2
- type: Transform
- uid: 26395
components:
- rot: 3.141592653589793 rad
@@ -194680,16 +198501,6 @@ entities:
- pos: -25.5,-47.5
parent: 2
type: Transform
- - uid: 26435
- components:
- - pos: 37.5,29.5
- parent: 2
- type: Transform
- - uid: 26436
- components:
- - pos: 38.5,29.5
- parent: 2
- type: Transform
- uid: 26437
components:
- pos: 49.5,-2.5
@@ -195450,6 +199261,26 @@ entities:
pos: -15.5,19.5
parent: 2
type: Transform
+ - uid: 12219
+ components:
+ - pos: -44.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12220
+ components:
+ - pos: -45.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12222
+ components:
+ - pos: -38.5,0.5
+ parent: 2
+ type: Transform
+ - uid: 12223
+ components:
+ - pos: -37.5,0.5
+ parent: 2
+ type: Transform
- uid: 14421
components:
- pos: -18.5,19.5
@@ -195538,12 +199369,6 @@ entities:
- pos: 2.5,-2.5
parent: 2
type: Transform
- - uid: 26554
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,-32.5
- parent: 2
- type: Transform
- uid: 26555
components:
- rot: -1.5707963267948966 rad
@@ -195610,22 +199435,6 @@ entities:
- pos: 24.5,-27.5
parent: 2
type: Transform
- - uid: 26567
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,-32.5
- parent: 2
- type: Transform
- - uid: 26568
- components:
- - pos: -13.5,27.5
- parent: 2
- type: Transform
- - uid: 26569
- components:
- - pos: -13.5,-32.5
- parent: 2
- type: Transform
- uid: 26570
components:
- rot: 3.141592653589793 rad
@@ -195647,47 +199456,12 @@ entities:
- pos: -31.5,18.5
parent: 2
type: Transform
- - uid: 26575
- components:
- - pos: -43.5,0.5
- parent: 2
- type: Transform
- - uid: 26576
- components:
- - pos: -38.5,0.5
- parent: 2
- type: Transform
- - uid: 26577
- components:
- - pos: -38.5,1.5
- parent: 2
- type: Transform
- - uid: 26578
- components:
- - pos: -39.5,1.5
- parent: 2
- type: Transform
- uid: 26581
components:
- rot: -1.5707963267948966 rad
pos: -18.5,39.5
parent: 2
type: Transform
- - uid: 26583
- components:
- - pos: -44.5,0.5
- parent: 2
- type: Transform
- - uid: 26584
- components:
- - pos: -43.5,1.5
- parent: 2
- type: Transform
- - uid: 26585
- components:
- - pos: -44.5,1.5
- parent: 2
- type: Transform
- uid: 26586
components:
- pos: -52.5,3.5
@@ -196051,11 +199825,6 @@ entities:
pos: -17.5,48.5
parent: 2
type: Transform
- - uid: 26657
- components:
- - pos: -39.5,0.5
- parent: 2
- type: Transform
- uid: 26658
components:
- pos: -17.5,-7.5
@@ -196179,11 +199948,6 @@ entities:
pos: -61.5,2.5
parent: 2
type: Transform
- - uid: 26680
- components:
- - pos: -14.5,27.5
- parent: 2
- type: Transform
- uid: 26681
components:
- rot: 1.5707963267948966 rad
@@ -196492,6 +200256,26 @@ entities:
- pos: 51.5,-67.5
parent: 2
type: Transform
+ - uid: 30110
+ components:
+ - pos: 28.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 30111
+ components:
+ - pos: 29.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 30112
+ components:
+ - pos: 28.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 30117
+ components:
+ - pos: 28.5,15.5
+ parent: 2
+ type: Transform
- uid: 32886
components:
- pos: -6.5,53.5
@@ -196504,6 +200288,11 @@ entities:
type: Transform
- proto: TargetClown
entities:
+ - uid: 14118
+ components:
+ - pos: 79.5,-52.5
+ parent: 2
+ type: Transform
- uid: 26742
components:
- pos: -36.5,35.5
@@ -196533,12 +200322,6 @@ entities:
- pos: -50.5,-27.5
parent: 2
type: Transform
- - uid: 26747
- components:
- - rot: 3.141592653589793 rad
- pos: 79.5,-52.5
- parent: 2
- type: Transform
- proto: TargetSyndicate
entities:
- uid: 26749
@@ -196553,25 +200336,25 @@ entities:
type: Transform
- proto: TegCenter
entities:
- - uid: 19823
+ - uid: 25789
components:
- rot: -1.5707963267948966 rad
- pos: 57.5,14.5
+ pos: 34.5,10.5
parent: 2
type: Transform
- proto: TegCirculator
entities:
- - uid: 19864
+ - uid: 1974
components:
- - pos: 58.5,14.5
+ - rot: 3.141592653589793 rad
+ pos: 33.5,10.5
parent: 2
type: Transform
- color: '#FF3300FF'
type: PointLight
- - uid: 20008
+ - uid: 3450
components:
- - rot: 3.141592653589793 rad
- pos: 56.5,14.5
+ - pos: 35.5,10.5
parent: 2
type: Transform
- color: '#FF3300FF'
@@ -196755,6 +200538,17 @@ entities:
type: Transform
- proto: Thruster
entities:
+ - uid: 15250
+ components:
+ - pos: -49.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 15252
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -49.5,33.5
+ parent: 2
+ type: Transform
- uid: 26753
components:
- pos: -94.5,8.5
@@ -196922,6 +200716,18 @@ entities:
- pos: 40.426636,-11.313995
parent: 36861
type: Transform
+- proto: TimerTrigger
+ entities:
+ - uid: 15347
+ components:
+ - pos: 80.8047,-45.327526
+ parent: 2
+ type: Transform
+ - uid: 15350
+ components:
+ - pos: 80.81369,-45.289463
+ parent: 2
+ type: Transform
- proto: TintedWindow
entities:
- uid: 26759
@@ -197056,19 +200862,19 @@ entities:
type: Transform
- proto: ToolboxElectricalFilled
entities:
- - uid: 26778
+ - uid: 14123
components:
- - pos: 16.500286,-16.451992
+ - pos: 5.077238,27.762358
parent: 2
type: Transform
- - uid: 26779
+ - uid: 14136
components:
- - pos: 4.7634163,27.581316
+ - pos: 5.077238,27.512358
parent: 2
type: Transform
- - uid: 26781
+ - uid: 26778
components:
- - pos: 7.983865,27.612593
+ - pos: 16.500286,-16.451992
parent: 2
type: Transform
- uid: 26783
@@ -197182,29 +200988,34 @@ entities:
type: Transform
- proto: ToolboxMechanicalFilled
entities:
- - uid: 26804
+ - uid: 11974
components:
- - pos: 76.422585,-6.4777412
+ - pos: 67.417725,7.1151795
parent: 2
type: Transform
- - uid: 26805
+ - uid: 14133
components:
- - pos: -43.559715,-38.28595
+ - pos: 4.4209876,27.762358
parent: 2
type: Transform
- - uid: 26806
+ - uid: 14147
components:
- - pos: 16.547161,-15.780117
+ - pos: 4.420988,27.512358
parent: 2
type: Transform
- - uid: 26808
+ - uid: 26804
components:
- - pos: 2.6357207,27.596878
+ - pos: 76.422585,-6.4777412
parent: 2
type: Transform
- - uid: 26809
+ - uid: 26805
components:
- - pos: 6.413291,27.59706
+ - pos: -43.559715,-38.28595
+ parent: 2
+ type: Transform
+ - uid: 26806
+ components:
+ - pos: 16.547161,-15.780117
parent: 2
type: Transform
- uid: 26811
@@ -197270,6 +201081,55 @@ entities:
- pos: -43.27197,-56.59526
parent: 2
type: Transform
+- proto: ToyFigurineAtmosTech
+ entities:
+ - uid: 10489
+ components:
+ - pos: 40.647568,10.7462
+ parent: 2
+ type: Transform
+- proto: ToyFigurineChiefEngineer
+ entities:
+ - uid: 11744
+ components:
+ - pos: 16.620857,17.609613
+ parent: 2
+ type: Transform
+- proto: ToyFigurineEngineer
+ entities:
+ - uid: 1714
+ components:
+ - pos: 5.807271,27.66371
+ parent: 2
+ type: Transform
+- proto: ToyFigurineHamlet
+ entities:
+ - uid: 898
+ components:
+ - pos: 25.971897,-5.2973733
+ parent: 2
+ type: Transform
+- proto: ToyFigurineNukie
+ entities:
+ - uid: 9867
+ components:
+ - pos: 26.003147,-3.5473735
+ parent: 2
+ type: Transform
+- proto: ToyFigurineQueen
+ entities:
+ - uid: 904
+ components:
+ - pos: 24.503147,-4.437998
+ parent: 2
+ type: Transform
+- proto: ToyFigurineSecurity
+ entities:
+ - uid: 6071
+ components:
+ - pos: 27.534397,-4.453624
+ parent: 2
+ type: Transform
- proto: ToyFigurineSpaceDragon
entities:
- uid: 41068
@@ -197337,6 +201197,11 @@ entities:
type: Transform
- proto: ToyMouse
entities:
+ - uid: 11846
+ components:
+ - pos: -12.622315,-10.194635
+ parent: 2
+ type: Transform
- uid: 26826
components:
- pos: -23.77449,53.632347
@@ -197350,6 +201215,14 @@ entities:
- pos: -49.07874,-67.31879
parent: 2
type: Transform
+ - uid: 30121
+ components:
+ - desc: Эта мышь уже замучалась с прокладкой труб. Не огорчайте животных, закройте плазму.
+ name: SonicDC
+ type: MetaData
+ - pos: 42.084793,19.664204
+ parent: 2
+ type: Transform
- proto: ToyNuke
entities:
- uid: 26828
@@ -197395,10 +201268,9 @@ entities:
type: Transform
- proto: ToySpawner
entities:
- - uid: 26833
+ - uid: 14154
components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,17.5
+ - pos: -39.5,6.5
parent: 2
type: Transform
- uid: 26834
@@ -197411,11 +201283,6 @@ entities:
- pos: -58.5,13.5
parent: 2
type: Transform
- - uid: 26836
- components:
- - pos: -40.5,5.5
- parent: 2
- type: Transform
- uid: 26837
components:
- pos: -43.5,5.5
@@ -197491,6 +201358,13 @@ entities:
- pos: 39.5,68.5
parent: 2
type: Transform
+- proto: ToySword
+ entities:
+ - uid: 11755
+ components:
+ - pos: -98.28916,-18.62182
+ parent: 2
+ type: Transform
- proto: TrashBag
entities:
- uid: 26854
@@ -197500,12 +201374,12 @@ entities:
type: Transform
- uid: 26855
components:
- - pos: -51.48515,7.8603888
+ - pos: -51.219242,7.6997385
parent: 2
type: Transform
- uid: 26856
components:
- - pos: -51.578888,9.1171875
+ - pos: -51.547367,7.684113
parent: 2
type: Transform
- proto: TrashBananaPeel
@@ -197542,9 +201416,19 @@ entities:
type: Transform
- proto: Truncheon
entities:
- - uid: 1721
+ - uid: 11082
+ components:
+ - pos: -33.419895,-29.638214
+ parent: 2
+ type: Transform
+ - uid: 14159
components:
- - pos: -31.655231,-27.361507
+ - pos: -33.59177,-29.481964
+ parent: 2
+ type: Transform
+ - uid: 15235
+ components:
+ - pos: -33.4804,-29.544783
parent: 2
type: Transform
- proto: TwoWayLever
@@ -197723,6 +201607,16 @@ entities:
type: DeviceLinkSource
- proto: UnfinishedMachineFrame
entities:
+ - uid: 21469
+ components:
+ - pos: 62.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 21591
+ components:
+ - pos: 60.5,38.5
+ parent: 2
+ type: Transform
- uid: 26870
components:
- pos: 36.5,68.5
@@ -198064,24 +201958,8 @@ entities:
- pos: 8.5,-43.5
parent: 2
type: Transform
-- proto: VendingMachineCigs
- entities:
- - uid: 11420
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -38.5,-2.5
- parent: 2
- type: Transform
- proto: VendingMachineClothing
entities:
- - uid: 26907
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -41.5,3.5
- parent: 2
- type: Transform
- uid: 26908
components:
- flags: SessionSpecific
@@ -198231,6 +202109,11 @@ entities:
type: Transform
- proto: VendingMachineEngivend
entities:
+ - uid: 15249
+ components:
+ - pos: -50.5,30.5
+ parent: 2
+ type: Transform
- uid: 34167
components:
- flags: SessionSpecific
@@ -198252,13 +202135,6 @@ entities:
- pos: -8.5,50.5
parent: 2
type: Transform
- - uid: 26921
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -36.5,-1.5
- parent: 2
- type: Transform
- uid: 37866
components:
- flags: SessionSpecific
@@ -198541,15 +202417,6 @@ entities:
- pos: -33.5,-31.5
parent: 2
type: Transform
-- proto: VendingMachineSmartFridge
- entities:
- - uid: 26952
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: 7.5,-42.5
- parent: 2
- type: Transform
- proto: VendingMachineSovietSoda
entities:
- uid: 26953
@@ -198610,6 +202477,13 @@ entities:
- pos: -21.5,-22.5
parent: 2
type: Transform
+- proto: VendingMachineSyndieDrobe
+ entities:
+ - uid: 14078
+ components:
+ - pos: 54.5,9.5
+ parent: 2
+ type: Transform
- proto: VendingMachineTankDispenserEngineering
entities:
- uid: 26959
@@ -198777,15 +202651,6 @@ entities:
- pos: 9.5,12.5
parent: 36861
type: Transform
-- proto: VendingMachineWinter
- entities:
- - uid: 41014
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -41.5,-2.5
- parent: 2
- type: Transform
- proto: VendingMachineYouTool
entities:
- uid: 26975
@@ -198836,6 +202701,98 @@ entities:
pos: -29.5,-74.5
parent: 2
type: Transform
+- proto: WallIce
+ entities:
+ - uid: 1224
+ components:
+ - pos: -99.5,-22.5
+ parent: 2
+ type: Transform
+ - uid: 1225
+ components:
+ - pos: -101.5,-21.5
+ parent: 2
+ type: Transform
+ - uid: 1231
+ components:
+ - pos: -98.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 1232
+ components:
+ - pos: -101.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 1247
+ components:
+ - pos: -99.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 1488
+ components:
+ - pos: -98.5,-22.5
+ parent: 2
+ type: Transform
+ - uid: 1744
+ components:
+ - pos: -101.5,-18.5
+ parent: 2
+ type: Transform
+ - uid: 1764
+ components:
+ - pos: -100.5,-22.5
+ parent: 2
+ type: Transform
+ - uid: 1765
+ components:
+ - pos: -100.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 3016
+ components:
+ - pos: -101.5,-22.5
+ parent: 2
+ type: Transform
+ - uid: 3058
+ components:
+ - pos: -101.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 9876
+ components:
+ - pos: -101.5,-20.5
+ parent: 2
+ type: Transform
+ - uid: 11423
+ components:
+ - pos: -97.5,-20.5
+ parent: 2
+ type: Transform
+ - uid: 11425
+ components:
+ - pos: -97.5,-18.5
+ parent: 2
+ type: Transform
+ - uid: 11426
+ components:
+ - pos: -97.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 11428
+ components:
+ - pos: -97.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 11429
+ components:
+ - pos: -97.5,-22.5
+ parent: 2
+ type: Transform
+ - uid: 11450
+ components:
+ - pos: -97.5,-21.5
+ parent: 2
+ type: Transform
- proto: WallmountTelevision
entities:
- uid: 26980
@@ -198887,6 +202844,16 @@ entities:
pos: 4.5,52.5
parent: 2
type: Transform
+ - uid: 373
+ components:
+ - pos: 57.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 410
+ components:
+ - pos: -48.5,-15.5
+ parent: 2
+ type: Transform
- uid: 412
components:
- rot: 3.141592653589793 rad
@@ -198911,37 +202878,222 @@ entities:
pos: -9.5,52.5
parent: 2
type: Transform
+ - uid: 1144
+ components:
+ - pos: 64.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 1163
+ components:
+ - pos: 60.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 1184
+ components:
+ - pos: 57.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 1185
+ components:
+ - pos: 60.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 1186
+ components:
+ - pos: 60.5,22.5
+ parent: 2
+ type: Transform
- uid: 1201
components:
- rot: -1.5707963267948966 rad
pos: 14.5,48.5
parent: 2
type: Transform
+ - uid: 1227
+ components:
+ - pos: -102.5,-20.5
+ parent: 2
+ type: Transform
+ - uid: 1235
+ components:
+ - pos: -102.5,-21.5
+ parent: 2
+ type: Transform
+ - uid: 1244
+ components:
+ - pos: -100.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 1249
+ components:
+ - pos: -101.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 1356
+ components:
+ - pos: -99.5,-23.5
+ parent: 2
+ type: Transform
+ - uid: 1359
+ components:
+ - pos: -102.5,-22.5
+ parent: 2
+ type: Transform
+ - uid: 1428
+ components:
+ - pos: -102.5,-23.5
+ parent: 2
+ type: Transform
+ - uid: 1567
+ components:
+ - pos: -98.5,-23.5
+ parent: 2
+ type: Transform
+ - uid: 1731
+ components:
+ - pos: -100.5,-23.5
+ parent: 2
+ type: Transform
- uid: 1776
components:
- pos: 75.5,-48.5
parent: 2
type: Transform
+ - uid: 1835
+ components:
+ - pos: 65.5,35.5
+ parent: 2
+ type: Transform
- uid: 3011
components:
- pos: -10.5,48.5
parent: 2
type: Transform
+ - uid: 3448
+ components:
+ - pos: 62.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 4353
+ components:
+ - pos: 55.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 4354
+ components:
+ - pos: 56.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 4356
+ components:
+ - pos: 55.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 4628
+ components:
+ - pos: 54.5,29.5
+ parent: 2
+ type: Transform
- uid: 5714
components:
- pos: 11.5,48.5
parent: 2
type: Transform
+ - uid: 6003
+ components:
+ - pos: 56.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 6013
+ components:
+ - pos: 54.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 6070
+ components:
+ - pos: -98.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 6140
+ components:
+ - pos: 54.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 6147
+ components:
+ - pos: 54.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 6176
+ components:
+ - pos: 54.5,33.5
+ parent: 2
+ type: Transform
- uid: 6571
components:
- pos: -9.5,48.5
parent: 2
type: Transform
+ - uid: 7043
+ components:
+ - pos: 55.5,20.5
+ parent: 2
+ type: Transform
- uid: 7165
components:
- pos: -9.5,46.5
parent: 2
type: Transform
+ - uid: 7617
+ components:
+ - pos: -102.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 7809
+ components:
+ - pos: 57.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 8501
+ components:
+ - pos: 55.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 9817
+ components:
+ - pos: -102.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 9856
+ components:
+ - pos: -96.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 9859
+ components:
+ - pos: -102.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 9861
+ components:
+ - pos: -102.5,-18.5
+ parent: 2
+ type: Transform
+ - uid: 9862
+ components:
+ - pos: -96.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 9865
+ components:
+ - pos: -101.5,-23.5
+ parent: 2
+ type: Transform
+ - uid: 9871
+ components:
+ - pos: -96.5,-18.5
+ parent: 2
+ type: Transform
- uid: 10258
components:
- pos: -12.5,48.5
@@ -198953,6 +203105,291 @@ entities:
pos: -12.5,50.5
parent: 2
type: Transform
+ - uid: 10482
+ components:
+ - pos: 57.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 10486
+ components:
+ - pos: 57.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 10488
+ components:
+ - pos: 47.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 10532
+ components:
+ - pos: 42.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10550
+ components:
+ - pos: 67.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 10551
+ components:
+ - pos: 57.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 10553
+ components:
+ - pos: 68.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10570
+ components:
+ - pos: 79.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 10571
+ components:
+ - pos: 77.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10572
+ components:
+ - pos: 78.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10573
+ components:
+ - pos: 70.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10574
+ components:
+ - pos: 64.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 10575
+ components:
+ - pos: 65.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 10576
+ components:
+ - pos: 72.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10577
+ components:
+ - pos: 79.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10578
+ components:
+ - pos: 94.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 10579
+ components:
+ - pos: 67.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 10581
+ components:
+ - pos: 80.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10583
+ components:
+ - pos: 42.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 10584
+ components:
+ - pos: 79.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 10585
+ components:
+ - pos: 94.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 10586
+ components:
+ - pos: 79.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 10587
+ components:
+ - pos: 79.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 10588
+ components:
+ - pos: 81.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10593
+ components:
+ - pos: 46.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 10596
+ components:
+ - pos: 44.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10601
+ components:
+ - pos: 46.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10602
+ components:
+ - pos: 42.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 10606
+ components:
+ - pos: 48.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 10612
+ components:
+ - pos: 48.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10617
+ components:
+ - pos: 52.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 10621
+ components:
+ - pos: 52.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10622
+ components:
+ - pos: 54.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10625
+ components:
+ - pos: 54.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 10626
+ components:
+ - pos: 50.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 10627
+ components:
+ - pos: 50.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 10628
+ components:
+ - pos: 44.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 10631
+ components:
+ - pos: 67.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10632
+ components:
+ - pos: 69.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 10633
+ components:
+ - pos: 64.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 10634
+ components:
+ - pos: 58.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 10635
+ components:
+ - pos: 64.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 10636
+ components:
+ - pos: 64.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 10637
+ components:
+ - pos: 64.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 10638
+ components:
+ - pos: 65.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 10639
+ components:
+ - pos: 64.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 10640
+ components:
+ - pos: 63.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 10641
+ components:
+ - pos: 64.5,49.5
+ parent: 2
+ type: Transform
+ - uid: 10656
+ components:
+ - pos: 65.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 10663
+ components:
+ - pos: 64.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 10667
+ components:
+ - pos: 63.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 10668
+ components:
+ - pos: 64.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 10669
+ components:
+ - pos: 63.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 10670
+ components:
+ - pos: 64.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 10671
+ components:
+ - pos: 60.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 10672
+ components:
+ - pos: 57.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 10673
+ components:
+ - pos: 64.5,44.5
+ parent: 2
+ type: Transform
- uid: 10682
components:
- rot: 1.5707963267948966 rad
@@ -198964,6 +203401,31 @@ entities:
- pos: 4.5,48.5
parent: 2
type: Transform
+ - uid: 11419
+ components:
+ - pos: 64.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 11420
+ components:
+ - pos: -14.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 11421
+ components:
+ - pos: -16.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 11561
+ components:
+ - pos: -99.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 11735
+ components:
+ - pos: 64.5,33.5
+ parent: 2
+ type: Transform
- uid: 12163
components:
- rot: -1.5707963267948966 rad
@@ -199002,16 +203464,211 @@ entities:
- pos: 27.5,17.5
parent: 2
type: Transform
+ - uid: 14890
+ components:
+ - pos: -43.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 15037
+ components:
+ - pos: -44.5,-14.5
+ parent: 2
+ type: Transform
- uid: 15038
components:
- pos: 10.5,48.5
parent: 2
type: Transform
+ - uid: 15171
+ components:
+ - pos: -47.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 15172
+ components:
+ - pos: -48.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 15183
+ components:
+ - pos: -46.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 15231
+ components:
+ - pos: -45.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 15232
+ components:
+ - pos: -48.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 15422
+ components:
+ - pos: 73.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 15423
+ components:
+ - pos: 93.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 15424
+ components:
+ - pos: 71.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 15425
+ components:
+ - pos: 95.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 15426
+ components:
+ - pos: 94.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 15427
+ components:
+ - pos: 82.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 15428
+ components:
+ - pos: 94.5,38.5
+ parent: 2
+ type: Transform
+ - uid: 15429
+ components:
+ - pos: 94.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 15433
+ components:
+ - pos: 28.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 15441
+ components:
+ - pos: 28.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 15444
+ components:
+ - pos: 53.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 15478
+ components:
+ - pos: 50.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 15781
+ components:
+ - pos: 53.5,39.5
+ parent: 2
+ type: Transform
+ - uid: 15787
+ components:
+ - pos: 50.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 15788
+ components:
+ - pos: 57.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 15799
+ components:
+ - pos: 59.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 15848
+ components:
+ - pos: 50.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 15864
+ components:
+ - pos: 54.5,36.5
+ parent: 2
+ type: Transform
- uid: 16353
components:
- pos: 14.5,47.5
parent: 2
type: Transform
+ - uid: 17459
+ components:
+ - pos: 57.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 17464
+ components:
+ - pos: 50.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 17494
+ components:
+ - pos: 53.5,36.5
+ parent: 2
+ type: Transform
+ - uid: 18339
+ components:
+ - pos: 53.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 18340
+ components:
+ - pos: 57.5,37.5
+ parent: 2
+ type: Transform
+ - uid: 18342
+ components:
+ - pos: 61.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 18458
+ components:
+ - pos: 64.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 18462
+ components:
+ - pos: 62.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 18762
+ components:
+ - pos: 54.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 18767
+ components:
+ - pos: 63.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 18771
+ components:
+ - pos: 60.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 18772
+ components:
+ - pos: 60.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 18799
+ components:
+ - pos: 58.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 18823
+ components:
+ - pos: 58.5,35.5
+ parent: 2
+ type: Transform
- uid: 18885
components:
- rot: 1.5707963267948966 rad
@@ -199029,6 +203686,26 @@ entities:
- pos: -1.5,57.5
parent: 2
type: Transform
+ - uid: 19332
+ components:
+ - pos: 57.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 19344
+ components:
+ - pos: 61.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 19348
+ components:
+ - pos: 57.5,40.5
+ parent: 2
+ type: Transform
+ - uid: 19366
+ components:
+ - pos: 57.5,39.5
+ parent: 2
+ type: Transform
- uid: 19488
components:
- pos: -5.5,55.5
@@ -199044,6 +203721,16 @@ entities:
- pos: 10.5,57.5
parent: 2
type: Transform
+ - uid: 19568
+ components:
+ - pos: 57.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 19569
+ components:
+ - pos: 60.5,25.5
+ parent: 2
+ type: Transform
- uid: 19577
components:
- pos: 12.5,57.5
@@ -199089,6 +203776,11 @@ entities:
- pos: 13.5,50.5
parent: 2
type: Transform
+ - uid: 19727
+ components:
+ - pos: 53.5,37.5
+ parent: 2
+ type: Transform
- uid: 19732
components:
- rot: -1.5707963267948966 rad
@@ -199100,87 +203792,309 @@ entities:
- pos: 2.5,44.5
parent: 2
type: Transform
- - uid: 19818
+ - uid: 19806
components:
- - rot: -1.5707963267948966 rad
- pos: 56.5,19.5
+ - pos: 77.5,53.5
parent: 2
type: Transform
- - uid: 19819
+ - uid: 19814
components:
- - pos: 65.5,17.5
+ - pos: 78.5,53.5
parent: 2
type: Transform
- - uid: 19821
+ - uid: 19815
components:
- - pos: 55.5,17.5
+ - pos: 83.5,23.5
parent: 2
type: Transform
- - uid: 19822
+ - uid: 19816
+ components:
+ - pos: 87.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 19817
components:
- - pos: 60.5,17.5
+ - pos: 80.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19818
+ components:
+ - pos: 87.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19820
+ components:
+ - pos: 94.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 19823
+ components:
+ - pos: 94.5,34.5
parent: 2
type: Transform
- uid: 19824
components:
- - pos: 54.5,17.5
+ - pos: 83.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 19825
+ components:
+ - pos: 71.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 19826
+ components:
+ - pos: 95.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 19827
+ components:
+ - pos: 94.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 19828
+ components:
+ - pos: 94.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 19829
+ components:
+ - pos: 94.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 19830
+ components:
+ - pos: 63.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19831
+ components:
+ - pos: 81.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19832
+ components:
+ - pos: 87.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 19833
+ components:
+ - pos: 51.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 19834
+ components:
+ - pos: 46.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 19835
+ components:
+ - pos: 44.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 19838
+ components:
+ - pos: 94.5,27.5
parent: 2
type: Transform
- uid: 19839
components:
- - pos: 61.5,17.5
+ - pos: 95.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19842
+ components:
+ - pos: 94.5,53.5
parent: 2
type: Transform
- uid: 19843
components:
- - pos: 62.5,17.5
+ - pos: 94.5,31.5
parent: 2
type: Transform
- - uid: 19847
+ - uid: 19849
components:
- - pos: 67.5,17.5
+ - pos: 95.5,54.5
parent: 2
type: Transform
- - uid: 19851
+ - uid: 19853
+ components:
+ - pos: 84.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19854
components:
- - pos: 68.5,17.5
+ - pos: 75.5,22.5
parent: 2
type: Transform
- uid: 19855
components:
- - rot: -1.5707963267948966 rad
- pos: 58.5,19.5
+ - pos: 85.5,23.5
parent: 2
type: Transform
- - uid: 19856
+ - uid: 19857
components:
- - rot: -1.5707963267948966 rad
- pos: 57.5,19.5
+ - pos: 91.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 19858
+ components:
+ - pos: 75.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 19859
+ components:
+ - pos: 63.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19860
+ components:
+ - pos: 94.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19861
+ components:
+ - pos: 65.5,41.5
parent: 2
type: Transform
- uid: 19863
components:
- - pos: 52.5,17.5
+ - pos: 45.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 19864
+ components:
+ - pos: 93.5,42.5
parent: 2
type: Transform
- uid: 19865
components:
- - pos: 53.5,17.5
+ - pos: 42.5,16.5
parent: 2
type: Transform
- - uid: 19911
+ - uid: 19866
components:
- - pos: 63.5,17.5
+ - pos: 91.5,23.5
parent: 2
type: Transform
- - uid: 19912
+ - uid: 19868
components:
- - pos: 64.5,17.5
+ - pos: 92.5,23.5
parent: 2
type: Transform
- - uid: 19913
+ - uid: 19869
+ components:
+ - pos: 94.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19870
components:
- - pos: 59.5,17.5
+ - pos: 94.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 19871
+ components:
+ - pos: 64.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 19872
+ components:
+ - pos: 88.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19873
+ components:
+ - pos: 90.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19874
+ components:
+ - pos: 95.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19875
+ components:
+ - pos: 66.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19876
+ components:
+ - pos: 93.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 19877
+ components:
+ - pos: 65.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 19878
+ components:
+ - pos: 66.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19879
+ components:
+ - pos: 65.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19880
+ components:
+ - pos: 95.5,42.5
+ parent: 2
+ type: Transform
+ - uid: 19881
+ components:
+ - pos: 93.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19882
+ components:
+ - pos: 64.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 19894
+ components:
+ - pos: 61.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 19898
+ components:
+ - pos: 63.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 19902
+ components:
+ - pos: 57.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 19905
+ components:
+ - pos: 62.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 19906
+ components:
+ - pos: 89.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 19907
+ components:
+ - pos: 92.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19908
+ components:
+ - pos: 64.5,51.5
+ parent: 2
+ type: Transform
+ - uid: 19909
+ components:
+ - pos: 63.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 19910
+ components:
+ - pos: 64.5,23.5
parent: 2
type: Transform
- uid: 19925
@@ -199188,14 +204102,84 @@ entities:
- pos: 13.5,49.5
parent: 2
type: Transform
- - uid: 20021
+ - uid: 19954
components:
- - pos: 66.5,17.5
+ - pos: 83.5,24.5
parent: 2
type: Transform
- - uid: 20022
+ - uid: 19955
+ components:
+ - pos: 64.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 19956
components:
- - pos: 69.5,17.5
+ - pos: 94.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 19974
+ components:
+ - pos: 40.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 19975
+ components:
+ - pos: 40.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 19976
+ components:
+ - pos: 40.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 19977
+ components:
+ - pos: 40.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 19978
+ components:
+ - pos: 95.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 19979
+ components:
+ - pos: 65.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 19981
+ components:
+ - pos: 64.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 19982
+ components:
+ - pos: 64.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 19983
+ components:
+ - pos: 94.5,35.5
+ parent: 2
+ type: Transform
+ - uid: 19994
+ components:
+ - pos: 95.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 20008
+ components:
+ - pos: 95.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 20019
+ components:
+ - pos: 86.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20020
+ components:
+ - pos: 93.5,26.5
parent: 2
type: Transform
- uid: 20258
@@ -199203,6 +204187,96 @@ entities:
- pos: 16.5,42.5
parent: 2
type: Transform
+ - uid: 20260
+ components:
+ - pos: 94.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 20264
+ components:
+ - pos: 93.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20307
+ components:
+ - pos: 37.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 20312
+ components:
+ - pos: 94.5,32.5
+ parent: 2
+ type: Transform
+ - uid: 20313
+ components:
+ - pos: 91.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 20314
+ components:
+ - pos: 76.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20315
+ components:
+ - pos: 94.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20316
+ components:
+ - pos: 93.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 20317
+ components:
+ - pos: 74.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20318
+ components:
+ - pos: 65.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 20319
+ components:
+ - pos: 94.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 20343
+ components:
+ - pos: 94.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 20344
+ components:
+ - pos: 71.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 20348
+ components:
+ - pos: 40.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 20349
+ components:
+ - pos: 40.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 20351
+ components:
+ - pos: 40.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 20352
+ components:
+ - pos: 40.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 20354
+ components:
+ - pos: 41.5,20.5
+ parent: 2
+ type: Transform
- uid: 20470
components:
- pos: 6.5,58.5
@@ -199213,6 +204287,11 @@ entities:
- pos: 13.5,48.5
parent: 2
type: Transform
+ - uid: 20777
+ components:
+ - pos: 54.5,20.5
+ parent: 2
+ type: Transform
- uid: 20814
components:
- pos: -5.5,48.5
@@ -199248,17 +204327,214 @@ entities:
- pos: 13.5,54.5
parent: 2
type: Transform
+ - uid: 20966
+ components:
+ - pos: 93.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 21206
+ components:
+ - pos: 63.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 21207
+ components:
+ - pos: 47.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 21212
+ components:
+ - pos: 55.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 21214
+ components:
+ - pos: 55.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 21262
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 41.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 21368
+ components:
+ - pos: 49.5,27.5
+ parent: 2
+ type: Transform
- uid: 21397
components:
- pos: 75.5,-47.5
parent: 2
type: Transform
+ - uid: 21466
+ components:
+ - pos: 60.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 21593
+ components:
+ - pos: 55.5,22.5
+ parent: 2
+ type: Transform
+ - uid: 21652
+ components:
+ - pos: 79.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 21667
+ components:
+ - pos: 65.5,30.5
+ parent: 2
+ type: Transform
+ - uid: 21675
+ components:
+ - pos: 64.5,28.5
+ parent: 2
+ type: Transform
+ - uid: 21682
+ components:
+ - pos: 59.5,47.5
+ parent: 2
+ type: Transform
+ - uid: 21683
+ components:
+ - pos: 43.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 21694
+ components:
+ - pos: 65.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 21703
+ components:
+ - pos: 63.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 21704
+ components:
+ - pos: 64.5,26.5
+ parent: 2
+ type: Transform
+ - uid: 21705
+ components:
+ - pos: 64.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 21707
+ components:
+ - pos: 64.5,29.5
+ parent: 2
+ type: Transform
+ - uid: 21721
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 37.5,31.5
+ parent: 2
+ type: Transform
+ - uid: 21725
+ components:
+ - pos: 64.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 21753
+ components:
+ - pos: 28.5,10.5
+ parent: 2
+ type: Transform
+ - uid: 21779
+ components:
+ - pos: 52.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 21836
+ components:
+ - pos: 51.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 21846
+ components:
+ - pos: 53.5,33.5
+ parent: 2
+ type: Transform
+ - uid: 21860
+ components:
+ - pos: 50.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 21910
+ components:
+ - pos: 46.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 21911
+ components:
+ - pos: 44.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 21912
+ components:
+ - pos: 42.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22018
+ components:
+ - pos: 48.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 22022
+ components:
+ - pos: 38.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 22030
+ components:
+ - pos: 28.5,9.5
+ parent: 2
+ type: Transform
+ - uid: 22031
+ components:
+ - pos: 38.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 22127
+ components:
+ - pos: 52.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22213
+ components:
+ - pos: 54.5,18.5
+ parent: 2
+ type: Transform
- uid: 22754
components:
- rot: -1.5707963267948966 rad
pos: 12.5,44.5
parent: 2
type: Transform
+ - uid: 23068
+ components:
+ - pos: 54.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 23269
+ components:
+ - pos: 46.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 23272
+ components:
+ - pos: 48.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 23692
+ components:
+ - pos: 43.5,27.5
+ parent: 2
+ type: Transform
- uid: 23992
components:
- pos: 15.5,43.5
@@ -199274,6 +204550,46 @@ entities:
- pos: 6.5,55.5
parent: 2
type: Transform
+ - uid: 24133
+ components:
+ - pos: 93.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 24137
+ components:
+ - pos: 94.5,43.5
+ parent: 2
+ type: Transform
+ - uid: 24150
+ components:
+ - pos: 93.5,34.5
+ parent: 2
+ type: Transform
+ - uid: 24168
+ components:
+ - pos: 94.5,49.5
+ parent: 2
+ type: Transform
+ - uid: 24169
+ components:
+ - pos: 94.5,41.5
+ parent: 2
+ type: Transform
+ - uid: 24189
+ components:
+ - pos: 83.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24190
+ components:
+ - pos: 94.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 24201
+ components:
+ - pos: 83.5,52.5
+ parent: 2
+ type: Transform
- uid: 24306
components:
- pos: 2.5,55.5
@@ -199289,6 +204605,11 @@ entities:
- pos: 8.5,58.5
parent: 2
type: Transform
+ - uid: 24335
+ components:
+ - pos: 94.5,47.5
+ parent: 2
+ type: Transform
- uid: 24403
components:
- pos: -12.5,45.5
@@ -199299,40 +204620,259 @@ entities:
- pos: -12.5,46.5
parent: 2
type: Transform
+ - uid: 24650
+ components:
+ - pos: 82.5,53.5
+ parent: 2
+ type: Transform
- uid: 24722
components:
- pos: -31.5,-8.5
parent: 2
type: Transform
+ - uid: 24725
+ components:
+ - pos: 90.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 24727
+ components:
+ - pos: 69.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 24729
+ components:
+ - pos: 72.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 24730
+ components:
+ - pos: 73.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 24823
+ components:
+ - pos: 74.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 24824
+ components:
+ - pos: 52.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 24828
+ components:
+ - pos: 54.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 24834
+ components:
+ - pos: 94.5,45.5
+ parent: 2
+ type: Transform
+ - uid: 24836
+ components:
+ - pos: 44.5,17.5
+ parent: 2
+ type: Transform
+ - uid: 24838
+ components:
+ - pos: 46.5,17.5
+ parent: 2
+ type: Transform
- uid: 24843
components:
- pos: -13.5,-12.5
parent: 2
type: Transform
+ - uid: 24845
+ components:
+ - pos: 68.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 24853
+ components:
+ - pos: 87.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 24854
+ components:
+ - pos: 71.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 24855
+ components:
+ - pos: 67.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 24858
+ components:
+ - pos: 71.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24862
+ components:
+ - pos: 50.5,33.5
+ parent: 2
+ type: Transform
- uid: 24864
components:
- pos: -14.5,-12.5
parent: 2
type: Transform
- - uid: 25212
+ - uid: 24871
components:
- - pos: 50.5,17.5
+ - pos: 91.5,54.5
parent: 2
type: Transform
- - uid: 25232
+ - uid: 24953
components:
- - pos: 49.5,17.5
+ - pos: 67.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 24955
+ components:
+ - pos: 91.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 24956
+ components:
+ - pos: 83.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25191
+ components:
+ - pos: 86.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25192
+ components:
+ - pos: 70.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25211
+ components:
+ - pos: 94.5,48.5
+ parent: 2
+ type: Transform
+ - uid: 25213
+ components:
+ - pos: 93.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 25215
+ components:
+ - pos: 95.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 25217
+ components:
+ - pos: 94.5,44.5
+ parent: 2
+ type: Transform
+ - uid: 25218
+ components:
+ - pos: 95.5,50.5
+ parent: 2
+ type: Transform
+ - uid: 25219
+ components:
+ - pos: 71.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25221
+ components:
+ - pos: 94.5,46.5
+ parent: 2
+ type: Transform
+ - uid: 25229
+ components:
+ - pos: 75.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 25236
+ components:
+ - pos: 50.5,17.5
parent: 2
type: Transform
- uid: 25237
components:
- - pos: 51.5,17.5
+ - pos: 67.5,53.5
parent: 2
type: Transform
- - uid: 25238
+ - uid: 25239
components:
- - rot: -1.5707963267948966 rad
- pos: 58.5,18.5
+ - pos: 76.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25270
+ components:
+ - pos: 47.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 25271
+ components:
+ - pos: 49.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 25302
+ components:
+ - pos: 54.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 25305
+ components:
+ - pos: 53.5,14.5
+ parent: 2
+ type: Transform
+ - uid: 25306
+ components:
+ - pos: 50.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 25307
+ components:
+ - pos: 52.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 25309
+ components:
+ - pos: 48.5,16.5
+ parent: 2
+ type: Transform
+ - uid: 25551
+ components:
+ - pos: 75.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25552
+ components:
+ - pos: 88.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25572
+ components:
+ - pos: 87.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25573
+ components:
+ - pos: 85.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25574
+ components:
+ - pos: 91.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25579
+ components:
+ - pos: 84.5,53.5
+ parent: 2
+ type: Transform
+ - uid: 25654
+ components:
+ - pos: 75.5,52.5
parent: 2
type: Transform
- uid: 25656
@@ -199346,12 +204886,37 @@ entities:
pos: 4.5,54.5
parent: 2
type: Transform
+ - uid: 25717
+ components:
+ - pos: 75.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25725
+ components:
+ - pos: 87.5,52.5
+ parent: 2
+ type: Transform
+ - uid: 25743
+ components:
+ - pos: 89.5,53.5
+ parent: 2
+ type: Transform
- uid: 25758
components:
- rot: -1.5707963267948966 rad
pos: 5.5,48.5
parent: 2
type: Transform
+ - uid: 25791
+ components:
+ - pos: 63.5,54.5
+ parent: 2
+ type: Transform
+ - uid: 25792
+ components:
+ - pos: 94.5,29.5
+ parent: 2
+ type: Transform
- uid: 25834
components:
- rot: -1.5707963267948966 rad
@@ -199833,12 +205398,6 @@ entities:
- pos: -15.5,-27.5
parent: 2
type: Transform
- - uid: 27088
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,12.5
- parent: 2
- type: Transform
- uid: 27089
components:
- pos: -6.5,-1.5
@@ -199849,12 +205408,6 @@ entities:
- pos: -24.5,-30.5
parent: 2
type: Transform
- - uid: 27091
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,11.5
- parent: 2
- type: Transform
- uid: 27092
components:
- pos: -7.5,-1.5
@@ -200087,21 +205640,11 @@ entities:
- pos: 3.5,-1.5
parent: 2
type: Transform
- - uid: 27139
- components:
- - pos: 48.5,21.5
- parent: 2
- type: Transform
- uid: 27140
components:
- pos: -25.5,-6.5
parent: 2
type: Transform
- - uid: 27141
- components:
- - pos: 45.5,40.5
- parent: 2
- type: Transform
- uid: 27142
components:
- rot: 1.5707963267948966 rad
@@ -200162,12 +205705,6 @@ entities:
- pos: 13.5,14.5
parent: 2
type: Transform
- - uid: 27153
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,10.5
- parent: 2
- type: Transform
- uid: 27154
components:
- pos: 9.5,-35.5
@@ -200421,11 +205958,6 @@ entities:
- pos: 36.5,30.5
parent: 2
type: Transform
- - uid: 27204
- components:
- - pos: 40.5,7.5
- parent: 2
- type: Transform
- uid: 27205
components:
- rot: -1.5707963267948966 rad
@@ -200488,26 +206020,11 @@ entities:
pos: 58.5,-46.5
parent: 2
type: Transform
- - uid: 27217
- components:
- - pos: 28.5,14.5
- parent: 2
- type: Transform
- - uid: 27218
- components:
- - pos: 28.5,14.5
- parent: 2
- type: Transform
- uid: 27219
components:
- pos: 25.5,10.5
parent: 2
type: Transform
- - uid: 27220
- components:
- - pos: 44.5,40.5
- parent: 2
- type: Transform
- uid: 27221
components:
- pos: 20.5,-28.5
@@ -200533,17 +206050,6 @@ entities:
- pos: -52.5,26.5
parent: 2
type: Transform
- - uid: 27226
- components:
- - pos: 46.5,30.5
- parent: 2
- type: Transform
- - uid: 27227
- components:
- - rot: -1.5707963267948966 rad
- pos: 39.5,9.5
- parent: 2
- type: Transform
- uid: 27228
components:
- rot: 1.5707963267948966 rad
@@ -200565,11 +206071,6 @@ entities:
- pos: 35.5,30.5
parent: 2
type: Transform
- - uid: 27232
- components:
- - pos: 47.5,30.5
- parent: 2
- type: Transform
- uid: 27233
components:
- pos: 36.5,-35.5
@@ -200657,31 +206158,6 @@ entities:
- pos: 61.5,9.5
parent: 2
type: Transform
- - uid: 27250
- components:
- - pos: 28.5,13.5
- parent: 2
- type: Transform
- - uid: 27251
- components:
- - pos: 28.5,12.5
- parent: 2
- type: Transform
- - uid: 27252
- components:
- - pos: 28.5,11.5
- parent: 2
- type: Transform
- - uid: 27253
- components:
- - pos: 28.5,10.5
- parent: 2
- type: Transform
- - uid: 27254
- components:
- - pos: 28.5,9.5
- parent: 2
- type: Transform
- uid: 27255
components:
- pos: 28.5,8.5
@@ -200737,45 +206213,17 @@ entities:
- pos: 37.5,7.5
parent: 2
type: Transform
- - uid: 27266
- components:
- - pos: 38.5,7.5
- parent: 2
- type: Transform
- - uid: 27267
- components:
- - pos: 39.5,7.5
- parent: 2
- type: Transform
- uid: 27268
components:
- pos: 75.5,4.5
parent: 2
type: Transform
- - uid: 27269
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,7.5
- parent: 2
- type: Transform
- uid: 27270
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-39.5
parent: 2
type: Transform
- - uid: 27271
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,8.5
- parent: 2
- type: Transform
- - uid: 27272
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,9.5
- parent: 2
- type: Transform
- uid: 27273
components:
- pos: 6.5,-2.5
@@ -200806,81 +206254,6 @@ entities:
- pos: 40.5,29.5
parent: 2
type: Transform
- - uid: 27279
- components:
- - pos: 40.5,28.5
- parent: 2
- type: Transform
- - uid: 27280
- components:
- - pos: 43.5,29.5
- parent: 2
- type: Transform
- - uid: 27281
- components:
- - pos: 44.5,29.5
- parent: 2
- type: Transform
- - uid: 27282
- components:
- - pos: 47.5,28.5
- parent: 2
- type: Transform
- - uid: 27283
- components:
- - pos: 47.5,27.5
- parent: 2
- type: Transform
- - uid: 27284
- components:
- - pos: 47.5,26.5
- parent: 2
- type: Transform
- - uid: 27285
- components:
- - pos: 47.5,25.5
- parent: 2
- type: Transform
- - uid: 27286
- components:
- - pos: 47.5,24.5
- parent: 2
- type: Transform
- - uid: 27287
- components:
- - pos: 47.5,23.5
- parent: 2
- type: Transform
- - uid: 27288
- components:
- - pos: 47.5,22.5
- parent: 2
- type: Transform
- - uid: 27289
- components:
- - pos: 47.5,21.5
- parent: 2
- type: Transform
- - uid: 27290
- components:
- - pos: 47.5,20.5
- parent: 2
- type: Transform
- - uid: 27291
- components:
- - pos: 47.5,19.5
- parent: 2
- type: Transform
- - uid: 27292
- components:
- - pos: 47.5,18.5
- parent: 2
- type: Transform
- - uid: 27293
- components:
- - pos: 47.5,17.5
- parent: 2
- type: Transform
- uid: 27296
components:
- pos: 9.5,-64.5
@@ -200911,21 +206284,11 @@ entities:
- pos: 16.5,20.5
parent: 2
type: Transform
- - uid: 27302
- components:
- - pos: 40.5,15.5
- parent: 2
- type: Transform
- uid: 27303
components:
- pos: 18.5,19.5
parent: 2
type: Transform
- - uid: 27304
- components:
- - pos: 30.5,14.5
- parent: 2
- type: Transform
- uid: 27305
components:
- pos: 40.5,27.5
@@ -201002,36 +206365,6 @@ entities:
- pos: 11.5,-51.5
parent: 2
type: Transform
- - uid: 27320
- components:
- - rot: -1.5707963267948966 rad
- pos: 34.5,14.5
- parent: 2
- type: Transform
- - uid: 27321
- components:
- - rot: -1.5707963267948966 rad
- pos: 37.5,9.5
- parent: 2
- type: Transform
- - uid: 27322
- components:
- - rot: -1.5707963267948966 rad
- pos: 36.5,9.5
- parent: 2
- type: Transform
- - uid: 27323
- components:
- - rot: -1.5707963267948966 rad
- pos: 35.5,9.5
- parent: 2
- type: Transform
- - uid: 27324
- components:
- - rot: -1.5707963267948966 rad
- pos: 38.5,9.5
- parent: 2
- type: Transform
- uid: 27325
components:
- pos: 6.5,6.5
@@ -201062,12 +206395,6 @@ entities:
- pos: 33.5,36.5
parent: 2
type: Transform
- - uid: 27331
- components:
- - rot: -1.5707963267948966 rad
- pos: 36.5,11.5
- parent: 2
- type: Transform
- uid: 27332
components:
- pos: 34.5,36.5
@@ -201258,12 +206585,6 @@ entities:
- pos: -2.5,-8.5
parent: 2
type: Transform
- - uid: 27370
- components:
- - rot: -1.5707963267948966 rad
- pos: 36.5,10.5
- parent: 2
- type: Transform
- uid: 27371
components:
- pos: 12.5,7.5
@@ -201330,18 +206651,6 @@ entities:
- pos: 16.5,-48.5
parent: 2
type: Transform
- - uid: 27384
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,21.5
- parent: 2
- type: Transform
- - uid: 27385
- components:
- - rot: -1.5707963267948966 rad
- pos: 34.5,12.5
- parent: 2
- type: Transform
- uid: 27386
components:
- pos: 14.5,5.5
@@ -201357,30 +206666,6 @@ entities:
- pos: -23.5,-32.5
parent: 2
type: Transform
- - uid: 27389
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,27.5
- parent: 2
- type: Transform
- - uid: 27390
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,20.5
- parent: 2
- type: Transform
- - uid: 27391
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,19.5
- parent: 2
- type: Transform
- - uid: 27392
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,24.5
- parent: 2
- type: Transform
- uid: 27393
components:
- rot: 3.141592653589793 rad
@@ -201397,12 +206682,6 @@ entities:
- pos: 42.5,57.5
parent: 2
type: Transform
- - uid: 27396
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,23.5
- parent: 2
- type: Transform
- uid: 27397
components:
- rot: -1.5707963267948966 rad
@@ -201414,18 +206693,6 @@ entities:
- pos: 53.5,55.5
parent: 2
type: Transform
- - uid: 27399
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,27.5
- parent: 2
- type: Transform
- - uid: 27400
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,25.5
- parent: 2
- type: Transform
- uid: 27401
components:
- rot: 1.5707963267948966 rad
@@ -201450,12 +206717,6 @@ entities:
pos: 52.5,-23.5
parent: 2
type: Transform
- - uid: 27406
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,26.5
- parent: 2
- type: Transform
- uid: 27407
components:
- pos: -7.5,8.5
@@ -201514,18 +206775,6 @@ entities:
pos: -35.5,-38.5
parent: 2
type: Transform
- - uid: 27418
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,22.5
- parent: 2
- type: Transform
- - uid: 27419
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,18.5
- parent: 2
- type: Transform
- uid: 27420
components:
- pos: 6.5,8.5
@@ -201541,42 +206790,11 @@ entities:
- pos: 5.5,-7.5
parent: 2
type: Transform
- - uid: 27423
- components:
- - pos: 42.5,29.5
- parent: 2
- type: Transform
- uid: 27424
components:
- pos: -6.5,-14.5
parent: 2
type: Transform
- - uid: 27425
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,25.5
- parent: 2
- type: Transform
- - uid: 27426
- components:
- - pos: 41.5,29.5
- parent: 2
- type: Transform
- - uid: 27427
- components:
- - pos: 45.5,29.5
- parent: 2
- type: Transform
- - uid: 27428
- components:
- - pos: 46.5,29.5
- parent: 2
- type: Transform
- - uid: 27429
- components:
- - pos: 47.5,29.5
- parent: 2
- type: Transform
- uid: 27430
components:
- pos: -11.5,-9.5
@@ -201650,18 +206868,6 @@ entities:
- pos: -11.5,11.5
parent: 2
type: Transform
- - uid: 27444
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,27.5
- parent: 2
- type: Transform
- - uid: 27445
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,27.5
- parent: 2
- type: Transform
- uid: 27446
components:
- pos: -7.5,-14.5
@@ -202039,11 +207245,6 @@ entities:
- pos: 4.5,-8.5
parent: 2
type: Transform
- - uid: 27523
- components:
- - pos: 48.5,36.5
- parent: 2
- type: Transform
- uid: 27524
components:
- pos: -19.5,2.5
@@ -202234,11 +207435,6 @@ entities:
- pos: 13.5,9.5
parent: 2
type: Transform
- - uid: 27562
- components:
- - pos: 33.5,9.5
- parent: 2
- type: Transform
- uid: 27563
components:
- pos: 32.5,-42.5
@@ -202484,11 +207680,6 @@ entities:
- pos: -25.5,-25.5
parent: 2
type: Transform
- - uid: 27612
- components:
- - pos: 48.5,17.5
- parent: 2
- type: Transform
- uid: 27613
components:
- pos: -27.5,-39.5
@@ -202559,12 +207750,6 @@ entities:
- pos: -36.5,-40.5
parent: 2
type: Transform
- - uid: 27627
- components:
- - rot: -1.5707963267948966 rad
- pos: 36.5,12.5
- parent: 2
- type: Transform
- uid: 27628
components:
- pos: -33.5,-43.5
@@ -202965,12 +208150,6 @@ entities:
- pos: 53.5,-11.5
parent: 2
type: Transform
- - uid: 27708
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,15.5
- parent: 2
- type: Transform
- uid: 27709
components:
- pos: 36.5,57.5
@@ -203634,12 +208813,6 @@ entities:
pos: 16.5,-28.5
parent: 2
type: Transform
- - uid: 27840
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,23.5
- parent: 2
- type: Transform
- uid: 27841
components:
- pos: 44.5,-5.5
@@ -204793,12 +209966,6 @@ entities:
- pos: 45.5,-1.5
parent: 2
type: Transform
- - uid: 28073
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,15.5
- parent: 2
- type: Transform
- uid: 28074
components:
- pos: -34.5,-17.5
@@ -205215,31 +210382,11 @@ entities:
- pos: -26.5,-66.5
parent: 2
type: Transform
- - uid: 28159
- components:
- - pos: 42.5,30.5
- parent: 2
- type: Transform
- uid: 28160
components:
- pos: 41.5,30.5
parent: 2
type: Transform
- - uid: 28161
- components:
- - pos: 43.5,30.5
- parent: 2
- type: Transform
- - uid: 28162
- components:
- - pos: 44.5,30.5
- parent: 2
- type: Transform
- - uid: 28163
- components:
- - pos: 45.5,30.5
- parent: 2
- type: Transform
- uid: 28164
components:
- rot: -1.5707963267948966 rad
@@ -205266,32 +210413,11 @@ entities:
- pos: 41.5,35.5
parent: 2
type: Transform
- - uid: 28169
- components:
- - pos: 47.5,36.5
- parent: 2
- type: Transform
- uid: 28170
components:
- pos: 51.5,55.5
parent: 2
type: Transform
- - uid: 28171
- components:
- - pos: 46.5,36.5
- parent: 2
- type: Transform
- - uid: 28172
- components:
- - pos: 44.5,36.5
- parent: 2
- type: Transform
- - uid: 28173
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,25.5
- parent: 2
- type: Transform
- uid: 28174
components:
- pos: 41.5,36.5
@@ -205307,22 +210433,6 @@ entities:
- pos: 1.5,-26.5
parent: 2
type: Transform
- - uid: 28177
- components:
- - pos: 48.5,30.5
- parent: 2
- type: Transform
- - uid: 28178
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,17.5
- parent: 2
- type: Transform
- - uid: 28179
- components:
- - pos: 42.5,40.5
- parent: 2
- type: Transform
- uid: 28180
components:
- pos: 16.5,12.5
@@ -205399,42 +210509,6 @@ entities:
- pos: -16.5,-37.5
parent: 2
type: Transform
- - uid: 28211
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,17.5
- parent: 2
- type: Transform
- - uid: 28212
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,19.5
- parent: 2
- type: Transform
- - uid: 28213
- components:
- - rot: -1.5707963267948966 rad
- pos: 44.5,21.5
- parent: 2
- type: Transform
- - uid: 28214
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,15.5
- parent: 2
- type: Transform
- - uid: 28215
- components:
- - rot: -1.5707963267948966 rad
- pos: 45.5,16.5
- parent: 2
- type: Transform
- - uid: 28217
- components:
- - rot: -1.5707963267948966 rad
- pos: 34.5,9.5
- parent: 2
- type: Transform
- uid: 28218
components:
- pos: 2.5,41.5
@@ -205445,24 +210519,6 @@ entities:
- pos: -27.5,-51.5
parent: 2
type: Transform
- - uid: 28223
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,19.5
- parent: 2
- type: Transform
- - uid: 28224
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,15.5
- parent: 2
- type: Transform
- - uid: 28225
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,23.5
- parent: 2
- type: Transform
- uid: 28227
components:
- pos: 28.5,-47.5
@@ -205474,18 +210530,6 @@ entities:
pos: -45.5,-41.5
parent: 2
type: Transform
- - uid: 28230
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,19.5
- parent: 2
- type: Transform
- - uid: 28231
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,21.5
- parent: 2
- type: Transform
- uid: 28232
components:
- pos: -46.5,10.5
@@ -205501,41 +210545,11 @@ entities:
- pos: -42.5,30.5
parent: 2
type: Transform
- - uid: 28237
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,21.5
- parent: 2
- type: Transform
- - uid: 28238
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,23.5
- parent: 2
- type: Transform
- - uid: 28239
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,25.5
- parent: 2
- type: Transform
- - uid: 28240
- components:
- - rot: -1.5707963267948966 rad
- pos: 42.5,17.5
- parent: 2
- type: Transform
- uid: 28241
components:
- pos: -33.5,-64.5
parent: 2
type: Transform
- - uid: 28244
- components:
- - rot: -1.5707963267948966 rad
- pos: 43.5,17.5
- parent: 2
- type: Transform
- uid: 28248
components:
- rot: 3.141592653589793 rad
@@ -207423,11 +212437,6 @@ entities:
- pos: -36.5,48.5
parent: 2
type: Transform
- - uid: 28636
- components:
- - pos: 43.5,40.5
- parent: 2
- type: Transform
- uid: 28637
components:
- pos: -38.5,-14.5
@@ -207496,624 +212505,12 @@ entities:
pos: -45.5,-48.5
parent: 2
type: Transform
- - uid: 28649
- components:
- - pos: 47.5,38.5
- parent: 2
- type: Transform
- - uid: 28650
- components:
- - pos: 47.5,39.5
- parent: 2
- type: Transform
- - uid: 28651
- components:
- - pos: 47.5,40.5
- parent: 2
- type: Transform
- - uid: 28652
- components:
- - pos: 47.5,41.5
- parent: 2
- type: Transform
- - uid: 28653
- components:
- - pos: 47.5,42.5
- parent: 2
- type: Transform
- - uid: 28654
- components:
- - pos: 47.5,43.5
- parent: 2
- type: Transform
- - uid: 28655
- components:
- - pos: 47.5,44.5
- parent: 2
- type: Transform
- - uid: 28656
- components:
- - pos: 47.5,45.5
- parent: 2
- type: Transform
- - uid: 28657
- components:
- - pos: 47.5,46.5
- parent: 2
- type: Transform
- - uid: 28658
- components:
- - pos: 47.5,47.5
- parent: 2
- type: Transform
- - uid: 28659
- components:
- - pos: 47.5,48.5
- parent: 2
- type: Transform
- - uid: 28660
- components:
- - pos: 48.5,48.5
- parent: 2
- type: Transform
- - uid: 28661
- components:
- - pos: 49.5,48.5
- parent: 2
- type: Transform
- - uid: 28662
- components:
- - pos: 50.5,48.5
- parent: 2
- type: Transform
- - uid: 28663
- components:
- - pos: 51.5,48.5
- parent: 2
- type: Transform
- - uid: 28664
- components:
- - pos: 52.5,48.5
- parent: 2
- type: Transform
- - uid: 28665
- components:
- - pos: 53.5,48.5
- parent: 2
- type: Transform
- - uid: 28666
- components:
- - pos: 54.5,48.5
- parent: 2
- type: Transform
- - uid: 28667
- components:
- - pos: 55.5,48.5
- parent: 2
- type: Transform
- - uid: 28668
- components:
- - pos: 56.5,48.5
- parent: 2
- type: Transform
- - uid: 28669
- components:
- - pos: 57.5,48.5
- parent: 2
- type: Transform
- - uid: 28670
- components:
- - pos: 58.5,48.5
- parent: 2
- type: Transform
- - uid: 28671
- components:
- - pos: 59.5,48.5
- parent: 2
- type: Transform
- - uid: 28672
- components:
- - pos: 60.5,48.5
- parent: 2
- type: Transform
- - uid: 28673
- components:
- - pos: 61.5,48.5
- parent: 2
- type: Transform
- - uid: 28674
- components:
- - pos: 62.5,48.5
- parent: 2
- type: Transform
- - uid: 28675
- components:
- - pos: 63.5,48.5
- parent: 2
- type: Transform
- - uid: 28676
- components:
- - pos: 64.5,48.5
- parent: 2
- type: Transform
- - uid: 28677
- components:
- - pos: 77.5,34.5
- parent: 2
- type: Transform
- - uid: 28678
- components:
- - pos: 77.5,43.5
- parent: 2
- type: Transform
- - uid: 28679
- components:
- - pos: 78.5,41.5
- parent: 2
- type: Transform
- - uid: 28680
- components:
- - pos: 59.5,47.5
- parent: 2
- type: Transform
- - uid: 28681
- components:
- - pos: 77.5,42.5
- parent: 2
- type: Transform
- - uid: 28682
- components:
- - pos: 77.5,40.5
- parent: 2
- type: Transform
- - uid: 28683
- components:
- - pos: 77.5,38.5
- parent: 2
- type: Transform
- - uid: 28684
- components:
- - pos: 78.5,33.5
- parent: 2
- type: Transform
- - uid: 28685
- components:
- - pos: 77.5,17.5
- parent: 2
- type: Transform
- - uid: 28686
- components:
- - pos: 75.5,48.5
- parent: 2
- type: Transform
- - uid: 28687
- components:
- - pos: 77.5,48.5
- parent: 2
- type: Transform
- - uid: 28688
- components:
- - pos: 77.5,37.5
- parent: 2
- type: Transform
- - uid: 28689
- components:
- - pos: 77.5,25.5
- parent: 2
- type: Transform
- - uid: 28690
- components:
- - pos: 77.5,18.5
- parent: 2
- type: Transform
- - uid: 28691
- components:
- - pos: 77.5,27.5
- parent: 2
- type: Transform
- - uid: 28692
- components:
- - pos: 76.5,48.5
- parent: 2
- type: Transform
- - uid: 28693
- components:
- - pos: 74.5,19.5
- parent: 2
- type: Transform
- - uid: 28694
- components:
- - pos: 74.5,18.5
- parent: 2
- type: Transform
- - uid: 28695
- components:
- - pos: 73.5,18.5
- parent: 2
- type: Transform
- - uid: 28696
- components:
- - pos: 72.5,18.5
- parent: 2
- type: Transform
- - uid: 28697
- components:
- - pos: 71.5,18.5
- parent: 2
- type: Transform
- - uid: 28698
- components:
- - pos: 70.5,18.5
- parent: 2
- type: Transform
- - uid: 28699
- components:
- - pos: 69.5,18.5
- parent: 2
- type: Transform
- - uid: 28700
- components:
- - pos: 68.5,18.5
- parent: 2
- type: Transform
- - uid: 28701
- components:
- - pos: 67.5,18.5
- parent: 2
- type: Transform
- - uid: 28702
- components:
- - pos: 66.5,18.5
- parent: 2
- type: Transform
- - uid: 28703
- components:
- - pos: 65.5,18.5
- parent: 2
- type: Transform
- - uid: 28704
- components:
- - pos: 64.5,18.5
- parent: 2
- type: Transform
- - uid: 28705
- components:
- - pos: 63.5,18.5
- parent: 2
- type: Transform
- - uid: 28706
- components:
- - pos: 62.5,18.5
- parent: 2
- type: Transform
- - uid: 28707
- components:
- - pos: 61.5,18.5
- parent: 2
- type: Transform
- - uid: 28708
- components:
- - pos: 60.5,18.5
- parent: 2
- type: Transform
- - uid: 28709
- components:
- - pos: 59.5,18.5
- parent: 2
- type: Transform
- - uid: 28710
- components:
- - rot: -1.5707963267948966 rad
- pos: 56.5,18.5
- parent: 2
- type: Transform
- - uid: 28711
- components:
- - rot: -1.5707963267948966 rad
- pos: 57.5,18.5
- parent: 2
- type: Transform
- - uid: 28712
- components:
- - pos: 73.5,17.5
- parent: 2
- type: Transform
- - uid: 28713
- components:
- - pos: 55.5,18.5
- parent: 2
- type: Transform
- - uid: 28714
- components:
- - pos: 54.5,18.5
- parent: 2
- type: Transform
- - uid: 28715
- components:
- - pos: 53.5,18.5
- parent: 2
- type: Transform
- - uid: 28716
- components:
- - pos: 52.5,18.5
- parent: 2
- type: Transform
- - uid: 28717
- components:
- - pos: 51.5,18.5
- parent: 2
- type: Transform
- - uid: 28718
- components:
- - pos: 50.5,18.5
- parent: 2
- type: Transform
- - uid: 28719
- components:
- - pos: 49.5,18.5
- parent: 2
- type: Transform
- - uid: 28720
- components:
- - pos: 48.5,18.5
- parent: 2
- type: Transform
- - uid: 28721
- components:
- - pos: 77.5,35.5
- parent: 2
- type: Transform
- - uid: 28722
- components:
- - pos: 55.5,19.5
- parent: 2
- type: Transform
- - uid: 28723
- components:
- - pos: 51.5,19.5
- parent: 2
- type: Transform
- - uid: 28724
- components:
- - pos: 48.5,19.5
- parent: 2
- type: Transform
- - uid: 28726
- components:
- - pos: 46.5,48.5
- parent: 2
- type: Transform
- - uid: 28727
- components:
- - pos: 71.5,19.5
- parent: 2
- type: Transform
- - uid: 28728
- components:
- - pos: 55.5,47.5
- parent: 2
- type: Transform
- - uid: 28729
- components:
- - pos: 59.5,49.5
- parent: 2
- type: Transform
- - uid: 28730
- components:
- - pos: 67.5,19.5
- parent: 2
- type: Transform
- - uid: 28731
- components:
- - pos: 74.5,17.5
- parent: 2
- type: Transform
- - uid: 28732
- components:
- - pos: 47.5,49.5
- parent: 2
- type: Transform
- - uid: 28733
- components:
- - pos: 63.5,47.5
- parent: 2
- type: Transform
- uid: 28734
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-51.5
parent: 2
type: Transform
- - uid: 28735
- components:
- - pos: 46.5,44.5
- parent: 2
- type: Transform
- - uid: 28736
- components:
- - pos: 48.5,44.5
- parent: 2
- type: Transform
- - uid: 28737
- components:
- - pos: 46.5,40.5
- parent: 2
- type: Transform
- - uid: 28738
- components:
- - pos: 48.5,40.5
- parent: 2
- type: Transform
- - uid: 28739
- components:
- - pos: 77.5,22.5
- parent: 2
- type: Transform
- - uid: 28740
- components:
- - pos: 76.5,25.5
- parent: 2
- type: Transform
- - uid: 28741
- components:
- - pos: 75.5,17.5
- parent: 2
- type: Transform
- - uid: 28742
- components:
- - pos: 63.5,19.5
- parent: 2
- type: Transform
- - uid: 28743
- components:
- - pos: 76.5,29.5
- parent: 2
- type: Transform
- - uid: 28744
- components:
- - pos: 71.5,48.5
- parent: 2
- type: Transform
- - uid: 28745
- components:
- - pos: 71.5,49.5
- parent: 2
- type: Transform
- - uid: 28746
- components:
- - pos: 70.5,17.5
- parent: 2
- type: Transform
- - uid: 28747
- components:
- - pos: 59.5,19.5
- parent: 2
- type: Transform
- - uid: 28748
- components:
- - pos: 69.5,48.5
- parent: 2
- type: Transform
- - uid: 28749
- components:
- - pos: 71.5,47.5
- parent: 2
- type: Transform
- - uid: 28750
- components:
- - pos: 63.5,49.5
- parent: 2
- type: Transform
- - uid: 28751
- components:
- - pos: 72.5,48.5
- parent: 2
- type: Transform
- - uid: 28752
- components:
- - pos: 77.5,30.5
- parent: 2
- type: Transform
- - uid: 28753
- components:
- - pos: 72.5,17.5
- parent: 2
- type: Transform
- - uid: 28754
- components:
- - pos: 75.5,18.5
- parent: 2
- type: Transform
- - uid: 28755
- components:
- - pos: 71.5,17.5
- parent: 2
- type: Transform
- - uid: 28756
- components:
- - pos: 77.5,28.5
- parent: 2
- type: Transform
- - uid: 28758
- components:
- - pos: 77.5,36.5
- parent: 2
- type: Transform
- - uid: 28759
- components:
- - pos: 67.5,47.5
- parent: 2
- type: Transform
- - uid: 28760
- components:
- - pos: 68.5,48.5
- parent: 2
- type: Transform
- - uid: 28761
- components:
- - pos: 70.5,48.5
- parent: 2
- type: Transform
- - uid: 28762
- components:
- - pos: 78.5,21.5
- parent: 2
- type: Transform
- - uid: 28763
- components:
- - pos: 76.5,21.5
- parent: 2
- type: Transform
- - uid: 28764
- components:
- - pos: 78.5,45.5
- parent: 2
- type: Transform
- - uid: 28765
- components:
- - pos: 77.5,41.5
- parent: 2
- type: Transform
- - uid: 28766
- components:
- - pos: 76.5,41.5
- parent: 2
- type: Transform
- - uid: 28767
- components:
- - pos: 77.5,47.5
- parent: 2
- type: Transform
- - uid: 28768
- components:
- - pos: 77.5,45.5
- parent: 2
- type: Transform
- - uid: 28769
- components:
- - pos: 77.5,46.5
- parent: 2
- type: Transform
- - uid: 28770
- components:
- - pos: 77.5,44.5
- parent: 2
- type: Transform
- - uid: 28771
- components:
- - pos: 77.5,33.5
- parent: 2
- type: Transform
- - uid: 28772
- components:
- - pos: 76.5,33.5
- parent: 2
- type: Transform
- - uid: 28773
- components:
- - pos: 78.5,48.5
- parent: 2
- type: Transform
- uid: 28774
components:
- pos: -45.5,35.5
@@ -208124,31 +212521,6 @@ entities:
- pos: 31.5,61.5
parent: 2
type: Transform
- - uid: 28776
- components:
- - pos: 76.5,45.5
- parent: 2
- type: Transform
- - uid: 28777
- components:
- - pos: 77.5,39.5
- parent: 2
- type: Transform
- - uid: 28778
- components:
- - pos: 51.5,49.5
- parent: 2
- type: Transform
- - uid: 28779
- components:
- - pos: 51.5,47.5
- parent: 2
- type: Transform
- - uid: 28780
- components:
- - pos: 55.5,49.5
- parent: 2
- type: Transform
- uid: 28781
components:
- rot: -1.5707963267948966 rad
@@ -208217,26 +212589,6 @@ entities:
- pos: 31.5,-66.5
parent: 2
type: Transform
- - uid: 28794
- components:
- - pos: 40.5,32.5
- parent: 2
- type: Transform
- - uid: 28795
- components:
- - pos: 39.5,32.5
- parent: 2
- type: Transform
- - uid: 28796
- components:
- - pos: 38.5,32.5
- parent: 2
- type: Transform
- - uid: 28797
- components:
- - pos: 37.5,32.5
- parent: 2
- type: Transform
- uid: 28798
components:
- pos: 37.5,34.5
@@ -208659,11 +213011,6 @@ entities:
- pos: -35.5,48.5
parent: 2
type: Transform
- - uid: 28888
- components:
- - pos: 44.5,37.5
- parent: 2
- type: Transform
- uid: 28889
components:
- rot: 3.141592653589793 rad
@@ -208685,31 +213032,11 @@ entities:
- pos: 35.5,62.5
parent: 2
type: Transform
- - uid: 28893
- components:
- - pos: 44.5,38.5
- parent: 2
- type: Transform
- uid: 28894
components:
- pos: 41.5,39.5
parent: 2
type: Transform
- - uid: 28895
- components:
- - pos: 42.5,39.5
- parent: 2
- type: Transform
- - uid: 28896
- components:
- - pos: 43.5,39.5
- parent: 2
- type: Transform
- - uid: 28897
- components:
- - pos: 44.5,39.5
- parent: 2
- type: Transform
- uid: 28898
components:
- rot: 3.141592653589793 rad
@@ -208903,31 +213230,6 @@ entities:
- pos: 21.5,-28.5
parent: 2
type: Transform
- - uid: 28936
- components:
- - pos: 67.5,49.5
- parent: 2
- type: Transform
- - uid: 28937
- components:
- - pos: 48.5,20.5
- parent: 2
- type: Transform
- - uid: 28938
- components:
- - pos: 76.5,18.5
- parent: 2
- type: Transform
- - uid: 28939
- components:
- - pos: 67.5,48.5
- parent: 2
- type: Transform
- - uid: 28940
- components:
- - pos: 77.5,32.5
- parent: 2
- type: Transform
- uid: 28941
components:
- pos: -56.5,29.5
@@ -209127,11 +213429,6 @@ entities:
- pos: 25.5,24.5
parent: 2
type: Transform
- - uid: 28979
- components:
- - pos: 30.5,9.5
- parent: 2
- type: Transform
- uid: 28980
components:
- pos: 23.5,24.5
@@ -209153,21 +213450,6 @@ entities:
- pos: -45.5,33.5
parent: 2
type: Transform
- - uid: 28984
- components:
- - pos: 30.5,12.5
- parent: 2
- type: Transform
- - uid: 28985
- components:
- - pos: 31.5,9.5
- parent: 2
- type: Transform
- - uid: 28986
- components:
- - pos: 32.5,9.5
- parent: 2
- type: Transform
- uid: 28987
components:
- rot: 3.141592653589793 rad
@@ -209394,46 +213676,6 @@ entities:
- pos: 54.5,10.5
parent: 2
type: Transform
- - uid: 29030
- components:
- - pos: 48.5,22.5
- parent: 2
- type: Transform
- - uid: 29031
- components:
- - pos: 48.5,23.5
- parent: 2
- type: Transform
- - uid: 29032
- components:
- - pos: 48.5,24.5
- parent: 2
- type: Transform
- - uid: 29033
- components:
- - pos: 48.5,25.5
- parent: 2
- type: Transform
- - uid: 29034
- components:
- - pos: 48.5,26.5
- parent: 2
- type: Transform
- - uid: 29035
- components:
- - pos: 48.5,27.5
- parent: 2
- type: Transform
- - uid: 29036
- components:
- - pos: 48.5,28.5
- parent: 2
- type: Transform
- - uid: 29037
- components:
- - pos: 48.5,29.5
- parent: 2
- type: Transform
- uid: 29039
components:
- pos: 38.5,34.5
@@ -209558,11 +213800,6 @@ entities:
- pos: -35.5,-3.5
parent: 2
type: Transform
- - uid: 29063
- components:
- - pos: 28.5,15.5
- parent: 2
- type: Transform
- uid: 29064
components:
- pos: 14.5,44.5
@@ -209653,51 +213890,6 @@ entities:
- pos: 38.5,-45.5
parent: 2
type: Transform
- - uid: 29083
- components:
- - pos: 42.5,36.5
- parent: 2
- type: Transform
- - uid: 29084
- components:
- - pos: 73.5,48.5
- parent: 2
- type: Transform
- - uid: 29085
- components:
- - pos: 74.5,49.5
- parent: 2
- type: Transform
- - uid: 29086
- components:
- - pos: 74.5,47.5
- parent: 2
- type: Transform
- - uid: 29087
- components:
- - pos: 74.5,48.5
- parent: 2
- type: Transform
- - uid: 29088
- components:
- - pos: 65.5,48.5
- parent: 2
- type: Transform
- - uid: 29089
- components:
- - pos: 76.5,37.5
- parent: 2
- type: Transform
- - uid: 29090
- components:
- - pos: 77.5,26.5
- parent: 2
- type: Transform
- - uid: 29091
- components:
- - pos: 78.5,18.5
- parent: 2
- type: Transform
- uid: 29092
components:
- pos: -44.5,35.5
@@ -212237,46 +216429,6 @@ entities:
- pos: 48.5,-41.5
parent: 2
type: Transform
- - uid: 29576
- components:
- - pos: 77.5,23.5
- parent: 2
- type: Transform
- - uid: 29577
- components:
- - pos: 77.5,20.5
- parent: 2
- type: Transform
- - uid: 29578
- components:
- - pos: 77.5,29.5
- parent: 2
- type: Transform
- - uid: 29579
- components:
- - pos: 77.5,19.5
- parent: 2
- type: Transform
- - uid: 29580
- components:
- - pos: 78.5,37.5
- parent: 2
- type: Transform
- - uid: 29581
- components:
- - pos: 77.5,21.5
- parent: 2
- type: Transform
- - uid: 29582
- components:
- - pos: 77.5,31.5
- parent: 2
- type: Transform
- - uid: 29583
- components:
- - pos: 77.5,24.5
- parent: 2
- type: Transform
- uid: 29584
components:
- rot: -1.5707963267948966 rad
@@ -212348,21 +216500,6 @@ entities:
pos: 54.5,-24.5
parent: 2
type: Transform
- - uid: 29598
- components:
- - pos: 66.5,48.5
- parent: 2
- type: Transform
- - uid: 29599
- components:
- - pos: 77.5,49.5
- parent: 2
- type: Transform
- - uid: 29600
- components:
- - pos: 78.5,25.5
- parent: 2
- type: Transform
- uid: 29601
components:
- rot: -1.5707963267948966 rad
@@ -212465,12 +216602,6 @@ entities:
pos: -40.5,40.5
parent: 2
type: Transform
- - uid: 29620
- components:
- - rot: -1.5707963267948966 rad
- pos: 41.5,10.5
- parent: 2
- type: Transform
- uid: 29621
components:
- rot: -1.5707963267948966 rad
@@ -212513,17 +216644,6 @@ entities:
pos: 46.5,12.5
parent: 2
type: Transform
- - uid: 29628
- components:
- - rot: -1.5707963267948966 rad
- pos: 47.5,12.5
- parent: 2
- type: Transform
- - uid: 29629
- components:
- - pos: 76.5,17.5
- parent: 2
- type: Transform
- uid: 29630
components:
- pos: 52.5,10.5
@@ -213079,11 +217199,6 @@ entities:
- pos: -52.5,-25.5
parent: 2
type: Transform
- - uid: 29743
- components:
- - pos: -97.5,-20.5
- parent: 2
- type: Transform
- uid: 29744
components:
- pos: -52.5,-21.5
@@ -213564,11 +217679,6 @@ entities:
- pos: 30.5,30.5
parent: 2
type: Transform
- - uid: 29834
- components:
- - pos: -97.5,-18.5
- parent: 2
- type: Transform
- uid: 29835
components:
- pos: -95.5,-24.5
@@ -213579,11 +217689,6 @@ entities:
- pos: -95.5,-23.5
parent: 2
type: Transform
- - uid: 29837
- components:
- - pos: -97.5,-19.5
- parent: 2
- type: Transform
- uid: 29838
components:
- pos: -96.5,-21.5
@@ -213616,11 +217721,6 @@ entities:
- pos: -65.5,-35.5
parent: 2
type: Transform
- - uid: 29844
- components:
- - pos: -97.5,-17.5
- parent: 2
- type: Transform
- uid: 29845
components:
- pos: 28.5,23.5
@@ -214503,21 +218603,11 @@ entities:
- pos: -43.5,-31.5
parent: 2
type: Transform
- - uid: 30019
- components:
- - pos: -97.5,-22.5
- parent: 2
- type: Transform
- uid: 30020
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- - uid: 30021
- components:
- - pos: 78.5,29.5
- parent: 2
- type: Transform
- uid: 30022
components:
- pos: -34.5,-5.5
@@ -214973,11 +219063,6 @@ entities:
pos: -52.5,-65.5
parent: 2
type: Transform
- - uid: 30119
- components:
- - pos: -97.5,-21.5
- parent: 2
- type: Transform
- uid: 30913
components:
- rot: -1.5707963267948966 rad
@@ -232024,81 +236109,79 @@ entities:
type: Transform
- proto: WallSolid
entities:
- - uid: 359
+ - uid: 6
components:
- - rot: 3.141592653589793 rad
- pos: -43.5,-16.5
+ - pos: 40.5,21.5
parent: 2
type: Transform
- - uid: 410
+ - uid: 511
components:
- - rot: 3.141592653589793 rad
- pos: -44.5,-16.5
+ - pos: -17.5,14.5
parent: 2
type: Transform
- - uid: 448
+ - uid: 1087
components:
- - rot: 3.141592653589793 rad
- pos: -47.5,-16.5
+ - pos: 30.5,18.5
parent: 2
type: Transform
- - uid: 511
+ - uid: 1145
components:
- - pos: -17.5,14.5
+ - pos: 32.5,18.5
parent: 2
type: Transform
- - uid: 898
+ - uid: 1146
components:
- - rot: 3.141592653589793 rad
- pos: -46.5,-15.5
+ - pos: 31.5,18.5
parent: 2
type: Transform
- - uid: 900
+ - uid: 1148
components:
- - rot: 3.141592653589793 rad
- pos: -45.5,-16.5
+ - pos: 29.5,18.5
parent: 2
type: Transform
- - uid: 904
+ - uid: 3268
components:
- - rot: 3.141592653589793 rad
- pos: -46.5,-16.5
+ - pos: -38.5,4.5
parent: 2
type: Transform
- - uid: 906
+ - uid: 4128
components:
- - rot: 3.141592653589793 rad
- pos: -44.5,-15.5
+ - pos: 32.5,15.5
parent: 2
type: Transform
- - uid: 908
+ - uid: 4136
components:
- - rot: 3.141592653589793 rad
- pos: -45.5,-15.5
+ - pos: 32.5,14.5
parent: 2
type: Transform
- - uid: 1193
+ - uid: 4161
components:
- - rot: 3.141592653589793 rad
- pos: -43.5,-15.5
+ - pos: 30.5,13.5
parent: 2
type: Transform
- - uid: 1194
+ - uid: 4162
components:
- - rot: 3.141592653589793 rad
- pos: -48.5,-15.5
+ - pos: 32.5,17.5
parent: 2
type: Transform
- - uid: 1204
+ - uid: 5882
components:
- - rot: 3.141592653589793 rad
- pos: -47.5,-15.5
+ - pos: 31.5,13.5
parent: 2
type: Transform
- - uid: 1205
+ - uid: 6067
components:
- - rot: 3.141592653589793 rad
- pos: -48.5,-16.5
+ - pos: -39.5,4.5
+ parent: 2
+ type: Transform
+ - uid: 6133
+ components:
+ - pos: 33.5,20.5
+ parent: 2
+ type: Transform
+ - uid: 6139
+ components:
+ - pos: 29.5,13.5
parent: 2
type: Transform
- uid: 6643
@@ -232113,11 +236196,106 @@ entities:
pos: -9.5,39.5
parent: 2
type: Transform
+ - uid: 10608
+ components:
+ - pos: 33.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 10620
+ components:
+ - pos: 28.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 11468
+ components:
+ - pos: -40.5,4.5
+ parent: 2
+ type: Transform
+ - uid: 15786
+ components:
+ - pos: 33.5,24.5
+ parent: 2
+ type: Transform
+ - uid: 15795
+ components:
+ - pos: 33.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 18343
+ components:
+ - pos: 32.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 18346
+ components:
+ - pos: 30.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 18449
+ components:
+ - pos: 33.5,23.5
+ parent: 2
+ type: Transform
+ - uid: 18808
+ components:
+ - pos: 33.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 19354
+ components:
+ - pos: 33.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 21259
+ components:
+ - pos: 35.5,27.5
+ parent: 2
+ type: Transform
+ - uid: 21726
+ components:
+ - pos: 33.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 22029
+ components:
+ - pos: 28.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 22042
+ components:
+ - pos: 39.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 22053
+ components:
+ - pos: 39.5,8.5
+ parent: 2
+ type: Transform
+ - uid: 22077
+ components:
+ - pos: 41.5,7.5
+ parent: 2
+ type: Transform
+ - uid: 22079
+ components:
+ - pos: 41.5,8.5
+ parent: 2
+ type: Transform
+ - uid: 22080
+ components:
+ - pos: 41.5,9.5
+ parent: 2
+ type: Transform
- uid: 23088
components:
- pos: -9.5,42.5
parent: 2
type: Transform
+ - uid: 25793
+ components:
+ - pos: 27.5,12.5
+ parent: 2
+ type: Transform
- uid: 25959
components:
- rot: 1.5707963267948966 rad
@@ -235952,21 +240130,6 @@ entities:
- pos: -49.5,-14.5
parent: 2
type: Transform
- - uid: 30955
- components:
- - pos: -48.5,-14.5
- parent: 2
- type: Transform
- - uid: 30956
- components:
- - pos: -47.5,-14.5
- parent: 2
- type: Transform
- - uid: 30957
- components:
- - pos: -46.5,-14.5
- parent: 2
- type: Transform
- uid: 30960
components:
- pos: -58.5,12.5
@@ -238397,23 +242560,6 @@ entities:
- pos: -25.5,8.5
parent: 2
type: Transform
- - uid: 31444
- components:
- - desc: вскрыв эту стену ты получишь бан. А, ну и узнаешь создателей аврита
- type: MetaData
- - pos: -45.5,-14.5
- parent: 2
- type: Transform
- - uid: 31445
- components:
- - pos: -44.5,-14.5
- parent: 2
- type: Transform
- - uid: 31446
- components:
- - pos: -43.5,-14.5
- parent: 2
- type: Transform
- uid: 31447
components:
- pos: -3.5,14.5
@@ -238948,11 +243094,6 @@ entities:
- pos: -28.5,45.5
parent: 2
type: Transform
- - uid: 31551
- components:
- - pos: 27.5,12.5
- parent: 2
- type: Transform
- uid: 31552
components:
- pos: -85.5,-20.5
@@ -241469,6 +245610,12 @@ entities:
type: Transform
- proto: WallSolidDiagonal
entities:
+ - uid: 4158
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 32.5,13.5
+ parent: 2
+ type: Transform
- uid: 40991
components:
- rot: -1.5707963267948966 rad
@@ -241495,11 +245642,26 @@ entities:
type: Transform
- proto: WallSolidRust
entities:
+ - uid: 22065
+ components:
+ - pos: 38.5,7.5
+ parent: 2
+ type: Transform
+ - uid: 22076
+ components:
+ - pos: 38.5,8.5
+ parent: 2
+ type: Transform
- uid: 22126
components:
- pos: 50.5,8.5
parent: 2
type: Transform
+ - uid: 25748
+ components:
+ - pos: 41.5,10.5
+ parent: 2
+ type: Transform
- uid: 31846
components:
- pos: 48.5,11.5
@@ -242219,13 +246381,6 @@ entities:
- 0
- 0
type: EntityStorage
-- proto: WardrobeMedicalDoctorFilled
- entities:
- - uid: 41049
- components:
- - pos: -11.5,-17.5
- parent: 2
- type: Transform
- proto: WardrobeMixed
entities:
- uid: 31892
@@ -242482,34 +246637,30 @@ entities:
type: EntityStorage
- proto: WarningCO2
entities:
- - uid: 31908
+ - uid: 3716
components:
- - rot: 1.5707963267948966 rad
- pos: 42.5,21.5
+ - pos: 46.5,18.5
parent: 2
type: Transform
- proto: WarningN2
entities:
- - uid: 31909
+ - uid: 5880
components:
- - rot: 1.5707963267948966 rad
- pos: 42.5,23.5
+ - pos: 44.5,18.5
parent: 2
type: Transform
-- proto: WarningN2O
+- proto: WarningO2
entities:
- - uid: 31910
+ - uid: 5879
components:
- - rot: 1.5707963267948966 rad
- pos: 42.5,19.5
+ - pos: 42.5,18.5
parent: 2
type: Transform
-- proto: WarningO2
+- proto: WarningPlasma
entities:
- - uid: 31911
+ - uid: 28713
components:
- - rot: 1.5707963267948966 rad
- pos: 42.5,25.5
+ - pos: 48.5,18.5
parent: 2
type: Transform
- proto: WarpPoint
@@ -242639,15 +246790,6 @@ entities:
type: WarpPoint
- proto: WarpPointBeaconEngineering
entities:
- - uid: 29933
- components:
- - pos: 57.5,15.5
- parent: 2
- type: Transform
- - text: ТЭГ
- type: NavMapBeacon
- - location: ТЭГ
- type: WarpPoint
- uid: 31938
components:
- pos: 20.5,21.5
@@ -242657,15 +246799,6 @@ entities:
type: NavMapBeacon
- location: Инженерная
type: WarpPoint
- - uid: 32044
- components:
- - pos: 47.5,33.5
- parent: 2
- type: Transform
- - text: Сингулярность
- type: NavMapBeacon
- - location: Сингулярность
- type: WarpPoint
- uid: 32897
components:
- pos: 34.5,21.5
@@ -242919,6 +247052,11 @@ entities:
type: WarpPoint
- proto: WaterCooler
entities:
+ - uid: 10491
+ components:
+ - pos: 31.5,17.5
+ parent: 2
+ type: Transform
- uid: 31940
components:
- pos: -12.5,-28.5
@@ -242934,11 +247072,6 @@ entities:
- pos: 0.5,-51.5
parent: 2
type: Transform
- - uid: 31943
- components:
- - pos: 39.5,29.5
- parent: 2
- type: Transform
- uid: 31944
components:
- pos: 12.5,-27.5
@@ -243132,14 +247265,14 @@ entities:
type: Transform
- proto: WaterVaporCanister
entities:
- - uid: 31981
+ - uid: 15870
components:
- - pos: -37.5,-64.5
+ - pos: 2.5,15.5
parent: 2
type: Transform
- - uid: 31982
+ - uid: 31981
components:
- - pos: 2.5,15.5
+ - pos: -37.5,-64.5
parent: 2
type: Transform
- uid: 31983
@@ -243309,6 +247442,11 @@ entities:
type: Transform
- proto: WeaponDisablerPractice
entities:
+ - uid: 14318
+ components:
+ - pos: -31.598904,-15.39574
+ parent: 2
+ type: Transform
- uid: 32013
components:
- rot: 1.5707963267948966 rad
@@ -243336,6 +247474,20 @@ entities:
- pos: -54.495235,-15.451785
parent: 2
type: Transform
+- proto: WeaponLaserCannon
+ entities:
+ - uid: 15233
+ components:
+ - pos: -37.4179,-29.169783
+ parent: 2
+ type: Transform
+- proto: WeaponLaserCarbine
+ entities:
+ - uid: 14320
+ components:
+ - pos: -37.45747,-29.661451
+ parent: 2
+ type: Transform
- proto: WeaponLaserCarbinePractice
entities:
- uid: 32022
@@ -243465,9 +247617,14 @@ entities:
type: Transform
- proto: WeaponRifleLecter
entities:
- - uid: 32038
+ - uid: 14157
components:
- - pos: -32.416775,-29.583643
+ - pos: -32.474667,-29.66205
+ parent: 2
+ type: Transform
+ - uid: 14367
+ components:
+ - pos: -32.45904,-29.458925
parent: 2
type: Transform
- proto: WeaponShotgunDoubleBarreled
@@ -243482,13 +247639,13 @@ entities:
- pos: -32.53543,-25.512093
parent: 2
type: Transform
- - uid: 1190
+- proto: WeaponShotgunEnforcer
+ entities:
+ - uid: 14341
components:
- - pos: -32.53543,-25.652718
+ - pos: -31.466774,-29.356964
parent: 2
type: Transform
-- proto: WeaponShotgunEnforcer
- entities:
- uid: 32041
components:
- pos: -31.448025,-29.552393
@@ -243501,6 +247658,11 @@ entities:
- pos: -32.53866,-25.778717
parent: 2
type: Transform
+ - uid: 14158
+ components:
+ - pos: -32.52453,-25.659916
+ parent: 2
+ type: Transform
- uid: 35589
components:
- rot: 3.141592653589793 rad
@@ -243516,16 +247678,14 @@ entities:
type: Transform
- proto: WeaponSubMachineGunDrozd
entities:
- - uid: 32011
+ - uid: 11733
components:
- - pos: -30.478733,-29.454456
+ - pos: -30.482399,-29.388214
parent: 2
type: Transform
-- proto: WeaponSubMachineGunDrozdRubber
- entities:
- - uid: 1189
+ - uid: 11734
components:
- - pos: -33.45699,-29.401958
+ - pos: -30.451149,-29.68509
parent: 2
type: Transform
- proto: WeaponTurretSyndicateBroken
@@ -243627,6 +247787,11 @@ entities:
type: Transform
- proto: Welder
entities:
+ - uid: 15238
+ components:
+ - pos: -47.377644,-29.547077
+ parent: 2
+ type: Transform
- uid: 32064
components:
- pos: -39.33958,-13.709017
@@ -243760,125 +247925,6 @@ entities:
- pos: 29.509287,-40.660202
parent: 2
type: Transform
-- proto: WheatBushel
- entities:
- - uid: 11745
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11746
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11747
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11748
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11749
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11750
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11751
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11752
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11753
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11754
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11755
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11756
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 11757
- components:
- - flags: InContainer
- type: MetaData
- - parent: 11727
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- proto: WhiteCane
entities:
- uid: 32094
@@ -243920,11 +247966,6 @@ entities:
- pos: 50.5,2.5
parent: 2
type: Transform
- - uid: 32098
- components:
- - pos: -39.5,4.5
- parent: 2
- type: Transform
- uid: 32099
components:
- rot: 3.141592653589793 rad
@@ -244311,14 +248352,6 @@ entities:
pos: -24.5,-13.5
parent: 2
type: Transform
-- proto: WindoorSecureAtmosphericsLocked
- entities:
- - uid: 21771
- components:
- - rot: 1.5707963267948966 rad
- pos: 54.5,12.5
- parent: 2
- type: Transform
- proto: WindoorSecureBrigLocked
entities:
- uid: 32155
@@ -244900,11 +248933,6 @@ entities:
- pos: 1.5,-45.5
parent: 2
type: Transform
- - uid: 32235
- components:
- - pos: -40.5,4.5
- parent: 2
- type: Transform
- uid: 32236
components:
- pos: -33.5,4.5
@@ -244915,11 +248943,6 @@ entities:
- pos: -32.5,4.5
parent: 2
type: Transform
- - uid: 32238
- components:
- - pos: -38.5,4.5
- parent: 2
- type: Transform
- uid: 32239
components:
- pos: -23.5,7.5
@@ -246950,6 +250973,9 @@ entities:
pos: -31.5,-23.5
parent: 2
type: Transform
+ - step: 1
+ edge: 0
+ type: Construction
- uid: 32494
components:
- pos: 7.5,-41.5
@@ -248170,6 +252196,11 @@ entities:
type: Transform
- proto: Wrench
entities:
+ - uid: 15239
+ components:
+ - pos: -47.67452,-29.484577
+ parent: 2
+ type: Transform
- uid: 32714
components:
- rot: -1.5707963267948966 rad
@@ -248206,11 +252237,6 @@ entities:
- pos: -49.48964,-63.574474
parent: 2
type: Transform
- - uid: 32721
- components:
- - pos: -96.60292,-19.318443
- parent: 2
- type: Transform
- uid: 32722
components:
- pos: 22.584253,-23.881992
@@ -248249,6 +252275,16 @@ entities:
type: Transform
- proto: YellowOxygenTankFilled
entities:
+ - uid: 207
+ components:
+ - pos: 2.7114801,17.509315
+ parent: 2
+ type: Transform
+ - uid: 902
+ components:
+ - pos: 2.3833556,17.571815
+ parent: 2
+ type: Transform
- uid: 32728
components:
- pos: 41.318184,58.68508
diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml
index 28cb6f87d7e..3c3fdfdf003 100644
--- a/Resources/Maps/corvax_delta.yml
+++ b/Resources/Maps/corvax_delta.yml
@@ -226218,111 +226218,155 @@ entities:
entities:
- uid: 232
components:
+ - name: солнечные панели СЗ 2
+ type: MetaData
- pos: -57.5,61.5
parent: 13307
type: Transform
- uid: 407
components:
+ - name: инженерный 2
+ type: MetaData
- pos: -44.5,1.5
parent: 13307
type: Transform
- uid: 1125
components:
+ - name: солнечные панели СЗ 1
+ type: MetaData
- pos: -59.5,60.5
parent: 13307
type: Transform
- uid: 1598
components:
+ - name: инженерный 3
+ type: MetaData
- pos: -44.5,0.5
parent: 13307
type: Transform
- uid: 3542
components:
+ - name: тюрьма
+ type: MetaData
- pos: 77.5,-0.5
parent: 13307
type: Transform
- uid: 9559
components:
+ - name: служба безопасности
+ type: MetaData
- pos: 73.5,-2.5
parent: 13307
type: Transform
- uid: 11527
components:
+ - name: ДАМ
+ type: MetaData
- pos: -60.5,-9.5
parent: 13307
type: Transform
- uid: 12026
components:
+ - name: солнечные панели ЮЗ
+ type: MetaData
- pos: -42.5,-73.5
parent: 13307
type: Transform
- uid: 13653
components:
+ - name: научный
+ type: MetaData
- pos: -18.5,-29.5
parent: 13307
type: Transform
- uid: 13738
components:
+ - name: комната доп. питания 1
+ type: MetaData
- pos: -59.5,-28.5
parent: 13307
type: Transform
- uid: 14168
components:
+ - name: комната доп. питания 1
+ type: MetaData
- pos: -63.5,-28.5
parent: 13307
type: Transform
- uid: 14259
components:
+ - name: медицинский
+ type: MetaData
- pos: 6.5,-40.5
parent: 13307
type: Transform
- uid: 14286
components:
+ - name: инженерный 1
+ type: MetaData
- pos: -44.5,2.5
parent: 13307
type: Transform
- uid: 16627
components:
+ - name: инженерный 4
+ type: MetaData
- pos: -44.5,-0.5
parent: 13307
type: Transform
- uid: 17603
components:
+ - name: ТЭГ 2
+ type: MetaData
- pos: -43.5,45.5
parent: 13307
type: Transform
- uid: 18153
components:
+ - name: УЧ
+ type: MetaData
- pos: -80.5,-11.5
parent: 13307
type: Transform
- uid: 18556
components:
+ - name: ТЭГ 1
+ type: MetaData
- pos: -59.5,45.5
parent: 13307
type: Transform
- uid: 25551
components:
+ - name: генератор гравитации
+ type: MetaData
- pos: -73.5,12.5
parent: 13307
type: Transform
- uid: 27615
components:
+ - name: солнечные панели СВ
+ type: MetaData
- pos: 14.5,88.5
parent: 13307
type: Transform
- uid: 31024
components:
+ - name: утилизаторная
+ type: MetaData
- pos: 25.5,32.5
parent: 13307
type: Transform
- uid: 36796
components:
+ - name: солнечные панели ЮВ
+ type: MetaData
- pos: 79.5,-44.5
parent: 13307
type: Transform
- uid: 37618
components:
+ - name: ИИ
+ type: MetaData
- pos: -121.5,24.5
parent: 13307
type: Transform
@@ -229625,61 +229669,85 @@ entities:
entities:
- uid: 1486
components:
+ - name: тюрьма и доки
+ type: MetaData
- pos: 77.5,-1.5
parent: 13307
type: Transform
- uid: 3522
components:
+ - name: инженерный Ю
+ type: MetaData
- pos: -48.5,6.5
parent: 13307
type: Transform
- uid: 8924
components:
+ - name: атмосферная С 2
+ type: MetaData
- pos: -49.5,42.5
parent: 13307
type: Transform
- uid: 9856
components:
+ - name: атмосферная Ю
+ type: MetaData
- pos: -46.5,34.5
parent: 13307
type: Transform
- uid: 11152
components:
+ - name: тех. тоннели ЮЗ
+ type: MetaData
- pos: -76.5,-23.5
parent: 13307
type: Transform
- uid: 11632
components:
+ - name: зал брифинга сб и обсерватория
+ type: MetaData
- pos: 61.5,21.5
parent: 13307
type: Transform
- uid: 11715
components:
+ - name: суд, офисы АВД и детектива
+ type: MetaData
- pos: 53.5,-6.5
parent: 13307
type: Transform
- uid: 11818
components:
+ - name: коридор и утилизаторная З
+ type: MetaData
- pos: 25.5,24.5
parent: 13307
type: Transform
- uid: 11890
components:
+ - name: служба безопасности
+ type: MetaData
- pos: 74.5,-2.5
parent: 13307
type: Transform
- uid: 11913
components:
+ - name: солнечные панели ЮЗ
+ type: MetaData
- pos: -41.5,-73.5
parent: 13307
type: Transform
- uid: 12621
components:
+ - name: отбытие и церковь
+ type: MetaData
- pos: -26.5,-78.5
parent: 13307
type: Transform
- uid: 13256
components:
+ - name: мостик
+ type: MetaData
- pos: 14.5,-1.5
parent: 13307
type: Transform
@@ -229689,26 +229757,28 @@ entities:
type: PowerNetworkBattery
- uid: 13556
components:
- - name: 'подстанция научного отдела '
+ - name: научный
type: MetaData
- pos: -17.5,-29.5
parent: 13307
type: Transform
- uid: 13776
components:
- - name: 'подстанция медицинского отдела '
+ - name: медицинский З
type: MetaData
- pos: 3.5,-37.5
parent: 13307
type: Transform
- uid: 15106
components:
+ - name: генератор гравитации
+ type: MetaData
- pos: -73.5,10.5
parent: 13307
type: Transform
- uid: 15846
components:
- - name: подстанция сервисного отдела
+ - name: сервисный З
type: MetaData
- pos: -26.5,27.5
parent: 13307
@@ -229717,11 +229787,15 @@ entities:
type: PowerNetworkBattery
- uid: 15851
components:
+ - name: тех. тоннели СЗ нижняя часть
+ type: MetaData
- pos: -40.5,40.5
parent: 13307
type: Transform
- uid: 16074
components:
+ - name: медицинский В
+ type: MetaData
- pos: 26.5,-22.5
parent: 13307
type: Transform
@@ -229731,26 +229805,36 @@ entities:
type: PowerNetworkBattery
- uid: 18224
components:
+ - name: прибытие
+ type: MetaData
- pos: 9.5,88.5
parent: 13307
type: Transform
- uid: 18502
components:
+ - name: тех. тоннели СВ
+ type: MetaData
- pos: 7.5,60.5
parent: 13307
type: Transform
- uid: 19156
components:
+ - name: библиотека
+ type: MetaData
- pos: -39.5,-6.5
parent: 13307
type: Transform
- uid: 21072
components:
+ - name: дормитории
+ type: MetaData
- pos: 55.5,-42.5
parent: 13307
type: Transform
- uid: 21824
components:
+ - name: атмосферная С 1
+ type: MetaData
- pos: -57.5,60.5
parent: 13307
type: Transform
@@ -229760,6 +229844,8 @@ entities:
type: PowerNetworkBattery
- uid: 24013
components:
+ - name: тех. тоннели СЗ верхняя часть
+ type: MetaData
- pos: -37.5,40.5
parent: 13307
type: Transform
@@ -229767,6 +229853,8 @@ entities:
type: PowerNetworkBattery
- uid: 24261
components:
+ - name: снабжение
+ type: MetaData
- pos: 9.5,40.5
parent: 13307
type: Transform
@@ -229777,41 +229865,57 @@ entities:
type: Transform
- uid: 25451
components:
+ - name: сервисный В
+ type: MetaData
- pos: -1.5,34.5
parent: 13307
type: Transform
- uid: 25789
components:
+ - name: инженерный С
+ type: MetaData
- pos: -44.5,6.5
parent: 13307
type: Transform
- uid: 25802
components:
+ - name: хранилище
+ type: MetaData
- pos: 22.5,20.5
parent: 13307
type: Transform
- uid: 26243
components:
+ - name: токсины
+ type: MetaData
- pos: -31.5,-55.5
parent: 13307
type: Transform
- uid: 27510
components:
+ - name: ДАМ и УЧ
+ type: MetaData
- pos: -56.5,-9.5
parent: 13307
type: Transform
- uid: 31694
components:
+ - name: утилизаторная В
+ type: MetaData
- pos: 27.5,26.5
parent: 13307
type: Transform
- uid: 32635
components:
+ - name: комната доп. питания
+ type: MetaData
- pos: -63.5,-22.5
parent: 13307
type: Transform
- uid: 34544
components:
+ - name: солнечные панели СВ
+ type: MetaData
- pos: 13.5,88.5
parent: 13307
type: Transform
@@ -229822,16 +229926,22 @@ entities:
type: Transform
- uid: 36288
components:
+ - name: сингулярность
+ type: MetaData
- pos: -80.5,-3.5
parent: 13307
type: Transform
- uid: 36797
components:
+ - name: пристройка
+ type: MetaData
- pos: 79.5,-42.5
parent: 13307
type: Transform
- uid: 37619
components:
+ - name: ИИ
+ type: MetaData
- pos: -123.5,24.5
parent: 13307
type: Transform
diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml
index 806dba4a8f7..11e59e5acdf 100644
--- a/Resources/Maps/marathon.yml
+++ b/Resources/Maps/marathon.yml
@@ -113,7 +113,7 @@ entities:
version: 6
-4,0:
ind: -4,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACWQAAAAACWQAAAAACMAAAAAAAWQAAAAABMgAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACWQAAAAACWQAAAAACMAAAAAAAWQAAAAABMgAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAC
version: 6
-3,-1:
ind: -3,-1
@@ -5915,8 +5915,7 @@ entities:
-9,-4:
0: 65535
-9,-3:
- 0: 65531
- 2: 4
+ 0: 65535
-9,-2:
0: 65535
-8,-4:
@@ -6177,15 +6176,15 @@ entities:
0: 65535
6,-8:
0: 7967
- 3: 224
- 4: 57344
+ 2: 224
+ 3: 57344
6,-7:
0: 7967
- 4: 224
- 5: 57344
+ 3: 224
+ 4: 57344
6,-6:
0: 65311
- 6: 224
+ 5: 224
6,-5:
0: 65535
7,-8:
@@ -6234,7 +6233,7 @@ entities:
0: 65535
6,-9:
0: 7967
- 4: 57568
+ 3: 57568
7,-9:
0: 13107
-4,-12:
@@ -6825,7 +6824,7 @@ entities:
0: 65280
-16,14:
0: 52862
- 3: 128
+ 2: 128
-16,15:
0: 3976
-16,13:
@@ -7557,21 +7556,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.803423
- - 82.02241
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 293.15
moles:
@@ -10112,6 +10096,11 @@ entities:
type: DeviceLinkSource
- proto: AirlockExternalGlassShuttleArrivals
entities:
+ - uid: 891
+ components:
+ - pos: -52.5,4.5
+ parent: 30
+ type: Transform
- uid: 1299
components:
- rot: 3.141592653589793 rad
@@ -10124,14 +10113,9 @@ entities:
pos: -59.5,-7.5
parent: 30
type: Transform
- - uid: 3188
- components:
- - pos: -52.5,3.5
- parent: 30
- type: Transform
- - uid: 3189
+ - uid: 1755
components:
- - pos: -59.5,3.5
+ - pos: -59.5,4.5
parent: 30
type: Transform
- proto: AirlockExternalGlassShuttleEmergencyLocked
@@ -13046,19 +13030,19 @@ entities:
- pos: -59.5,-10.5
parent: 30
type: Transform
- - uid: 1290
+ - uid: 886
components:
- - pos: -52.5,3.5
+ - pos: -52.5,4.5
parent: 30
type: Transform
- - uid: 3707
+ - uid: 919
components:
- - pos: 25.5,43.5
+ - pos: -59.5,4.5
parent: 30
type: Transform
- - uid: 3712
+ - uid: 3707
components:
- - pos: -59.5,3.5
+ - pos: 25.5,43.5
parent: 30
type: Transform
- uid: 4353
@@ -14934,11 +14918,6 @@ entities:
- pos: -59.5,5.5
parent: 30
type: Transform
- - uid: 961
- components:
- - pos: -59.5,4.5
- parent: 30
- type: Transform
- uid: 988
components:
- pos: -39.5,-13.5
@@ -21849,11 +21828,6 @@ entities:
- pos: -10.5,-55.5
parent: 30
type: Transform
- - uid: 9802
- components:
- - pos: -52.5,4.5
- parent: 30
- type: Transform
- uid: 9821
components:
- pos: -3.5,-58.5
@@ -44468,11 +44442,6 @@ entities:
- pos: -52.5,5.5
parent: 30
type: Transform
- - uid: 1077
- components:
- - pos: -59.5,4.5
- parent: 30
- type: Transform
- uid: 1079
components:
- pos: -51.5,-8.5
@@ -44483,11 +44452,6 @@ entities:
- pos: -49.5,-8.5
parent: 30
type: Transform
- - uid: 3115
- components:
- - pos: -52.5,4.5
- parent: 30
- type: Transform
- uid: 4852
components:
- rot: 1.5707963267948966 rad
@@ -48277,12 +48241,6 @@ entities:
pos: 23.5,12.5
parent: 30
type: Transform
- - uid: 21733
- components:
- - rot: -1.5707963267948966 rad
- pos: 15.5,16.5
- parent: 30
- type: Transform
- uid: 21734
components:
- rot: -1.5707963267948966 rad
@@ -48321,9 +48279,10 @@ entities:
pos: -40.5,11.5
parent: 30
type: Transform
- - uid: 1397
+ - uid: 1077
components:
- - pos: -30.5,39.5
+ - rot: -1.5707963267948966 rad
+ pos: -31.5,39.5
parent: 30
type: Transform
- uid: 1514
@@ -48343,12 +48302,6 @@ entities:
- pos: -52.5,30.5
parent: 30
type: Transform
- - uid: 1758
- components:
- - rot: -1.5707963267948966 rad
- pos: -32.5,39.5
- parent: 30
- type: Transform
- uid: 2018
components:
- pos: -42.5,46.5
@@ -53437,11 +53390,6 @@ entities:
pos: -53.5,30.5
parent: 30
type: Transform
- - uid: 1757
- components:
- - pos: -32.5,40.5
- parent: 30
- type: Transform
- uid: 2017
components:
- pos: -42.5,49.5
@@ -53657,6 +53605,12 @@ entities:
type: Transform
- proto: ComputerStationRecords
entities:
+ - uid: 1397
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -30.5,40.5
+ parent: 30
+ type: Transform
- uid: 1448
components:
- rot: 3.141592653589793 rad
@@ -53694,6 +53648,12 @@ entities:
pos: -42.5,10.5
parent: 30
type: Transform
+ - uid: 1290
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -30.5,39.5
+ parent: 30
+ type: Transform
- uid: 2121
components:
- rot: 1.5707963267948966 rad
@@ -60663,6 +60623,13 @@ entities:
- pos: -48.41462,63.788986
parent: 30
type: Transform
+ - uid: 21336
+ components:
+ - pos: -0.68636847,-9.05644
+ parent: 30
+ type: Transform
+ - tags: []
+ type: Tag
- proto: DrinkMug
entities:
- uid: 10991
@@ -60706,6 +60673,15 @@ entities:
- pos: -11.5122795,35.330956
parent: 30
type: Transform
+- proto: DrinkOatMilkCarton
+ entities:
+ - uid: 21335
+ components:
+ - pos: -0.70199347,-9.447065
+ parent: 30
+ type: Transform
+ - tags: []
+ type: Tag
- proto: DrinkShaker
entities:
- uid: 702
@@ -60723,6 +60699,15 @@ entities:
- pos: 15.511198,62.487156
parent: 30
type: Transform
+- proto: DrinkSoyMilkCarton
+ entities:
+ - uid: 21334
+ components:
+ - pos: -0.68636847,-9.259565
+ parent: 30
+ type: Transform
+ - tags: []
+ type: Tag
- proto: DrinkWaterCup
entities:
- uid: 7678
@@ -89836,11 +89821,6 @@ entities:
- pos: 5.5,24.5
parent: 30
type: Transform
- - uid: 871
- components:
- - pos: -46.5,0.5
- parent: 30
- type: Transform
- uid: 879
components:
- pos: -59.5,9.5
@@ -90350,6 +90330,11 @@ entities:
- pos: -29.5,44.5
parent: 30
type: Transform
+ - uid: 1751
+ components:
+ - pos: -46.5,-0.5
+ parent: 30
+ type: Transform
- uid: 1821
components:
- pos: -20.5,48.5
@@ -90695,6 +90680,11 @@ entities:
- pos: -33.5,66.5
parent: 30
type: Transform
+ - uid: 3712
+ components:
+ - pos: -46.5,3.5
+ parent: 30
+ type: Transform
- uid: 4241
components:
- rot: -1.5707963267948966 rad
@@ -91048,11 +91038,6 @@ entities:
- pos: -56.5,5.5
parent: 30
type: Transform
- - uid: 5693
- components:
- - pos: -60.5,4.5
- parent: 30
- type: Transform
- uid: 5694
components:
- pos: -49.5,4.5
@@ -98294,6 +98279,52 @@ entities:
pos: -30.5,7.5
parent: 30
type: Transform
+- proto: JanitorServiceLight
+ entities:
+ - uid: 844
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-30.5
+ parent: 30
+ type: Transform
+ - links:
+ - 3598
+ type: DeviceLinkSink
+ - uid: 864
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-7.5
+ parent: 30
+ type: Transform
+ - links:
+ - 3189
+ type: DeviceLinkSink
+ - uid: 871
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,-0.5
+ parent: 30
+ type: Transform
+ - links:
+ - 3188
+ type: DeviceLinkSink
+ - uid: 961
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,16.5
+ parent: 30
+ type: Transform
+ - links:
+ - 3115
+ type: DeviceLinkSink
+ - uid: 1753
+ components:
+ - pos: -33.5,37.5
+ parent: 30
+ type: Transform
+ - links:
+ - 5417
+ type: DeviceLinkSink
- proto: JetpackBlueFilled
entities:
- uid: 8311
@@ -103732,11 +103763,10 @@ entities:
type: ApcPowerReceiver
- uid: 4385
components:
- - pos: -33.5,37.5
+ - rot: 3.141592653589793 rad
+ pos: -31.5,35.5
parent: 30
type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- uid: 4387
components:
- pos: -41.5,37.5
@@ -108667,33 +108697,6 @@ entities:
type: Transform
- tags: []
type: Tag
-- proto: ReagentContainerMilk
- entities:
- - uid: 21336
- components:
- - pos: -0.68636847,-9.05644
- parent: 30
- type: Transform
- - tags: []
- type: Tag
-- proto: ReagentContainerMilkOat
- entities:
- - uid: 21335
- components:
- - pos: -0.70199347,-9.447065
- parent: 30
- type: Transform
- - tags: []
- type: Tag
-- proto: ReagentContainerMilkSoy
- entities:
- - uid: 21334
- components:
- - pos: -0.68636847,-9.259565
- parent: 30
- type: Transform
- - tags: []
- type: Tag
- proto: Recycler
entities:
- uid: 14530
@@ -108987,11 +108990,6 @@ entities:
- pos: -46.5,-1.5
parent: 30
type: Transform
- - uid: 864
- components:
- - pos: -46.5,0.5
- parent: 30
- type: Transform
- uid: 872
components:
- pos: -54.5,5.5
@@ -109032,6 +109030,11 @@ entities:
- pos: -46.5,-2.5
parent: 30
type: Transform
+ - uid: 920
+ components:
+ - pos: -46.5,3.5
+ parent: 30
+ type: Transform
- uid: 930
components:
- pos: -46.5,-4.5
@@ -109487,6 +109490,11 @@ entities:
- pos: -29.5,44.5
parent: 30
type: Transform
+ - uid: 1758
+ components:
+ - pos: -46.5,-0.5
+ parent: 30
+ type: Transform
- uid: 1772
components:
- pos: 3.5,38.5
@@ -109918,11 +109926,6 @@ entities:
- pos: 0.5,38.5
parent: 30
type: Transform
- - uid: 5417
- components:
- - pos: -60.5,4.5
- parent: 30
- type: Transform
- uid: 5423
components:
- pos: 12.5,29.5
@@ -113696,6 +113699,18 @@ entities:
- pos: -39.5,9.5
parent: 30
type: Transform
+ - uid: 3598
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-38.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 844:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 8570
components:
- pos: 13.5,-38.5
@@ -113925,6 +113940,8 @@ entities:
type: DeviceLinkSource
- uid: 20399
components:
+ - name: Shutters
+ type: MetaData
- pos: 16.5,13.5
parent: 30
type: Transform
@@ -113970,6 +113987,17 @@ entities:
type: DeviceLinkSource
- proto: SignalButtonDirectional
entities:
+ - uid: 3115
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - pos: 12.5,13.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 961:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 3180
components:
- pos: -37.5,45.5
@@ -113995,6 +114023,42 @@ entities:
3181:
- Pressed: Toggle
type: DeviceLinkSource
+ - uid: 3188
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: 3.141592653589793 rad
+ pos: -14.5,-11.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 871:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 3189
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: 22.5,-5.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 864:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 5417
+ components:
+ - name: Janitorial Service Light
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: -29.5,40.5
+ parent: 30
+ type: Transform
+ - linkedPorts:
+ 1753:
+ - Pressed: Toggle
+ type: DeviceLinkSource
- uid: 7673
components:
- rot: 3.141592653589793 rad
@@ -117640,9 +117704,9 @@ entities:
type: Transform
- proto: SpawnVehicleSecway
entities:
- - uid: 20465
+ - uid: 1757
components:
- - pos: -30.5,40.5
+ - pos: -34.5,54.5
parent: 30
type: Transform
- uid: 20466
@@ -124077,11 +124141,6 @@ entities:
- pos: -47.5,-7.5
parent: 30
type: Transform
- - uid: 844
- components:
- - pos: -46.5,3.5
- parent: 30
- type: Transform
- uid: 846
components:
- pos: -53.5,11.5
@@ -124177,16 +124236,6 @@ entities:
- pos: -65.5,24.5
parent: 30
type: Transform
- - uid: 886
- components:
- - pos: -51.5,3.5
- parent: 30
- type: Transform
- - uid: 891
- components:
- - pos: -60.5,3.5
- parent: 30
- type: Transform
- uid: 900
components:
- pos: -65.5,12.5
@@ -124197,16 +124246,6 @@ entities:
- pos: -46.5,-3.5
parent: 30
type: Transform
- - uid: 919
- components:
- - pos: -58.5,3.5
- parent: 30
- type: Transform
- - uid: 920
- components:
- - pos: -53.5,3.5
- parent: 30
- type: Transform
- uid: 926
components:
- rot: 3.141592653589793 rad
@@ -124773,6 +124812,16 @@ entities:
- pos: -29.5,45.5
parent: 30
type: Transform
+ - uid: 1752
+ components:
+ - pos: -60.5,4.5
+ parent: 30
+ type: Transform
+ - uid: 1754
+ components:
+ - pos: -46.5,0.5
+ parent: 30
+ type: Transform
- uid: 1775
components:
- pos: -30.5,45.5
@@ -125538,11 +125587,6 @@ entities:
- pos: -58.5,5.5
parent: 30
type: Transform
- - uid: 3598
- components:
- - pos: -46.5,-0.5
- parent: 30
- type: Transform
- uid: 3620
components:
- pos: -53.5,4.5
@@ -139514,33 +139558,6 @@ entities:
type: Transform
- proto: WindoorSecure
entities:
- - uid: 1751
- components:
- - rot: -1.5707963267948966 rad
- pos: -33.5,39.5
- parent: 30
- type: Transform
- - uid: 1752
- components:
- - rot: -1.5707963267948966 rad
- pos: -33.5,40.5
- parent: 30
- type: Transform
- - uid: 1753
- components:
- - pos: -32.5,38.5
- parent: 30
- type: Transform
- - uid: 1754
- components:
- - pos: -31.5,38.5
- parent: 30
- type: Transform
- - uid: 1755
- components:
- - pos: -30.5,38.5
- parent: 30
- type: Transform
- uid: 15983
components:
- rot: 3.141592653589793 rad
diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml
index 27880276af7..5338dd05cd3 100644
--- a/Resources/Maps/origin.yml
+++ b/Resources/Maps/origin.yml
@@ -87,175 +87,175 @@ entities:
- chunks:
-1,-1:
ind: -1,-1
- tiles: YAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAZwAAAAAAZAAAAAACZwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAagAAAAADZwAAAAABZAAAAAAAZwAAAAABeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAZwAAAAADZAAAAAADZwAAAAABagAAAAACeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAagAAAAACYAAAAAAAaAAAAAAAaAAAAAAAagAAAAAAeQAAAAAAZwAAAAABZAAAAAADZwAAAAABaAAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAZwAAAAAAZAAAAAABZwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAADagAAAAABagAAAAABagAAAAACeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAagAAAAADZwAAAAABZAAAAAADZwAAAAADeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAZwAAAAACZAAAAAABZwAAAAAAHQAAAAACeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAZwAAAAAAZAAAAAABZwAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAZwAAAAABZAAAAAAAZwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAABCwAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZwAAAAACZAAAAAAAZwAAAAACHQAAAAAAdgAAAAADdgAAAAAATAAAAAADZAAAAAACZAAAAAAACwAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZwAAAAAAZAAAAAAAZwAAAAADHQAAAAABdgAAAAADdgAAAAADWQAAAAABWQAAAAABZAAAAAABCwAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZwAAAAADZAAAAAADZwAAAAADeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAZAAAAAABZwAAAAADeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAWQAAAAABZAAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAagAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABTAAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADZAAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAA
+ tiles: YAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAZwAAAAACZAAAAAACZwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAagAAAAACZwAAAAAAZAAAAAACZwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAZwAAAAADZAAAAAACZwAAAAABagAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAagAAAAADYAAAAAAAaAAAAAAAaAAAAAAAagAAAAADeQAAAAAAZwAAAAADZAAAAAACZwAAAAADaAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAZwAAAAAAZAAAAAACZwAAAAACaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAACagAAAAADagAAAAABagAAAAACeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAagAAAAABZwAAAAADZAAAAAADZwAAAAADeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABZwAAAAACZAAAAAAAZwAAAAADHQAAAAADeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAZwAAAAABZAAAAAABZwAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAZwAAAAABZAAAAAADZwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABCwAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZwAAAAAAZAAAAAABZwAAAAABHQAAAAAAdgAAAAABdgAAAAACTAAAAAABZAAAAAACZAAAAAAACwAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZwAAAAACZAAAAAADZwAAAAABHQAAAAACdgAAAAABdgAAAAAAWQAAAAABWQAAAAABZAAAAAACCwAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZwAAAAABZAAAAAABZwAAAAABeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAADZAAAAAAAZwAAAAABeQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAagAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABTAAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACZAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAD
version: 6
0,-1:
ind: 0,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAABHQAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAACRQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAQAAAAAAAaAAAAAAAQAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABYAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAATAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABTAAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAD
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABHQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAADRQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAHQAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAQAAAAAAAaAAAAAAAQAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABYAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADTAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAATAAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: eQAAAAAAWQAAAAACZAAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAADZAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAADTAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAZAAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADYAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAPAAAAAAAWQAAAAADWQAAAAADZAAAAAAAWQAAAAACLwAAAAAAWQAAAAACWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAPAAAAAAATAAAAAACZAAAAAACZAAAAAADWQAAAAAALwAAAAAAOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAACOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAAAWQAAAAACOgAAAAAAPAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACOgAAAAAAWQAAAAADOgAAAAAAWQAAAAABOgAAAAAAWQAAAAACOgAAAAAAWQAAAAAAWQAAAAABeQAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABOgAAAAAAWQAAAAABOgAAAAAAWQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAPAAAAAAAaAAAAAAAaAAAAAAAagAAAAAAaAAAAAAAWQAAAAAAOgAAAAAAYAAAAAAAOgAAAAAAWQAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAABOgAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAADeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAWQAAAAACOgAAAAAAWQAAAAAAOgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALAAAAAAAaQAAAAAAeQAAAAAAagAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABOgAAAAAAWQAAAAABWQAAAAABOgAAAAAAWQAAAAAAHQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAWQAAAAACZAAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADZAAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAATAAAAAABYAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAACZAAAAAAAWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABYAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAPAAAAAAAWQAAAAABWQAAAAAAZAAAAAABWQAAAAAALwAAAAAAWQAAAAABWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAPAAAAAAATAAAAAABZAAAAAAAZAAAAAABWQAAAAADLwAAAAAAOgAAAAAAWQAAAAACOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAACOgAAAAAAWQAAAAACWQAAAAAAOgAAAAAAPAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACOgAAAAAAWQAAAAACOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAABOgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADOgAAAAAAWQAAAAACOgAAAAAAWQAAAAADOgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAPAAAAAAAaAAAAAAAaAAAAAAAagAAAAADaAAAAAAAWQAAAAACOgAAAAAAYAAAAAAAOgAAAAAAWQAAAAABOgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABOgAAAAAAWQAAAAADOgAAAAAAWQAAAAADOgAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAWQAAAAACOgAAAAAAWQAAAAABOgAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAALAAAAAAAaQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABOgAAAAAAWQAAAAABWQAAAAADOgAAAAAAWQAAAAADHQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAeQAAAAAAeQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: HQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACVwAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAUAAAAAAAVwAAAAAAVwAAAAACVwAAAAAIHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAUAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACTAAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADTAAAAAADWQAAAAABYAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAACHQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACdwAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdwAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdwAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdwAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdwAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: HQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABVwAAAAAHVwAAAAAAVwAAAAAAUAAAAAAAUAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAUAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADTAAAAAABYAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABTAAAAAACWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAADHQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdwAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAACdwAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdwAAAAADLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdwAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAABdwAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAACeQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABHQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAACZAAAAAABWQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADWQAAAAACZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADHQAAAAADWQAAAAADZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADZAAAAAADWQAAAAACeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAZAAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAABeQAAAAAAaQAAAAAAbAAAAAADbAAAAAABbAAAAAABVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAACwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAZAAAAAADWQAAAAACYAAAAAAAWQAAAAABbAAAAAACbAAAAAABbAAAAAAAVQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAZAAAAAACTAAAAAADZAAAAAADZAAAAAAAZAAAAAACTAAAAAACZAAAAAADZAAAAAACZAAAAAABeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAWQAAAAADZAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABTAAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAAAWQAAAAADZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAADeQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADHQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAABaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACZAAAAAAAWQAAAAADeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADHQAAAAABWQAAAAACZAAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACHQAAAAAAWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABHQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAACZAAAAAABWQAAAAADeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABZAAAAAACWQAAAAABeQAAAAAAaQAAAAAAbAAAAAABbAAAAAABbAAAAAACVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABCwAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAZAAAAAADWQAAAAACYAAAAAAAWQAAAAACbAAAAAAAbAAAAAABbAAAAAACVQAAAAAAeQAAAAAAWQAAAAAAZAAAAAADZAAAAAAATAAAAAADZAAAAAADZAAAAAABZAAAAAABTAAAAAAAZAAAAAABZAAAAAACZAAAAAADeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADTAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADHQAAAAABWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: ZAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAZAAAAAABZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACHQAAAAABWQAAAAACZAAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAABWQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAAATAAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAABHQAAAAABHQAAAAADWQAAAAABWQAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAYAAAAAAAWQAAAAABZAAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAZAAAAAACTAAAAAABZAAAAAADZAAAAAACZAAAAAABTAAAAAADZAAAAAAAZAAAAAAAZAAAAAACIgAAAAABIQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADZAAAAAAAWQAAAAADWQAAAAADWQAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAABWQAAAAAAWQAAAAACWQAAAAABIgAAAAAAIQAAAAAAIQAAAAABIQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAABaAAAAAAAeQAAAAAAIAAAAAAAIAAAAAADIAAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAZAAAAAADYAAAAAAAeQAAAAAAaAAAAAAAIAAAAAABIAAAAAABIAAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACZAAAAAABYAAAAAAAeQAAAAAAeQAAAAAAIAAAAAACIAAAAAADIAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAIAAAAAACIAAAAAACIAAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADWQAAAAABZAAAAAABWQAAAAABeQAAAAAAaAAAAAAA
+ tiles: ZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADHQAAAAADZAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACHQAAAAADWQAAAAACZAAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAACHQAAAAABHQAAAAACWQAAAAABWQAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAAATAAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACHQAAAAACHQAAAAABHQAAAAADWQAAAAACWQAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAZAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACZAAAAAADTAAAAAABZAAAAAAAZAAAAAABZAAAAAACTAAAAAADZAAAAAACZAAAAAABZAAAAAAAIgAAAAAAIQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACZAAAAAACWQAAAAABWQAAAAACWQAAAAADIQAAAAADIQAAAAAAIQAAAAACIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAABWQAAAAABWQAAAAAAWQAAAAACIgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAABaAAAAAAAeQAAAAAAIAAAAAAAIAAAAAACIAAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAZAAAAAABYAAAAAAAeQAAAAAAaAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAIAAAAAADIAAAAAABIAAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAACWQAAAAADZAAAAAAAWQAAAAACeQAAAAAAaAAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAACeQAAAAAAYAAAAAAAZAAAAAACWQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAIAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAABYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAIAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACeQAAAAAAWQAAAAACZAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADZAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABHQAAAAADWQAAAAABWQAAAAADWQAAAAAAHQAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAYwAAAAACEgAAAAAAEgAAAAACEgAAAAADEgAAAAACEgAAAAADEgAAAAAAYwAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACeQAAAAAAYwAAAAABEgAAAAABEgAAAAACEgAAAAADEgAAAAAAEgAAAAABEgAAAAADYwAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAeQAAAAAAYAAAAAAAZAAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAIAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAABYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAIAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAADYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAACeQAAAAAAWQAAAAACZAAAAAACYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACZAAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABHQAAAAACWQAAAAACWQAAAAADWQAAAAACHQAAAAADZAAAAAADZAAAAAADZAAAAAABZAAAAAABZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAACZAAAAAACZAAAAAADHQAAAAABWQAAAAACWQAAAAABWQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACHQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAYwAAAAADEgAAAAADEgAAAAACEgAAAAADEgAAAAACEgAAAAADEgAAAAAAYwAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAADeQAAAAAAYwAAAAACEgAAAAABEgAAAAADEgAAAAADEgAAAAADEgAAAAACEgAAAAAAYwAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: WQAAAAABWQAAAAABWQAAAAACeQAAAAAAYwAAAAADEgAAAAAAEgAAAAAAEgAAAAADEgAAAAABEgAAAAAAEgAAAAAAYwAAAAABWQAAAAADWQAAAAABYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAYwAAAAABEgAAAAADEgAAAAADEgAAAAAAEgAAAAACEgAAAAADEgAAAAABYwAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAYwAAAAABEgAAAAACEgAAAAADEgAAAAACEgAAAAADEgAAAAACEgAAAAADYwAAAAABWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAYwAAAAACEgAAAAACEgAAAAAAEgAAAAADEgAAAAABEgAAAAABEgAAAAAAYwAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABHQAAAAACYAAAAAAAWQAAAAACWQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADYAAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADCwAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAAAYAAAAAAAHQAAAAACdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAIQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABHQAAAAABdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAHQAAAAACIQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABdgAAAAACdgAAAAABdgAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAHQAAAAACIQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAYAAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADIQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAHQAAAAABIQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAACeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAJAAAAAABJAAAAAAAJAAAAAADJAAAAAAA
+ tiles: WQAAAAADWQAAAAACWQAAAAAAeQAAAAAAYwAAAAABEgAAAAAAEgAAAAADEgAAAAACEgAAAAABEgAAAAACEgAAAAACYwAAAAABWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAYwAAAAACEgAAAAACEgAAAAADEgAAAAADEgAAAAABEgAAAAABEgAAAAABYwAAAAACWQAAAAADWQAAAAAAWQAAAAABHQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAYwAAAAACEgAAAAAAEgAAAAABEgAAAAACEgAAAAAAEgAAAAABEgAAAAABYwAAAAACWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAYwAAAAACEgAAAAAAEgAAAAADEgAAAAACEgAAAAACEgAAAAAAEgAAAAAAYwAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACHQAAAAABYAAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABYAAAAAAAHQAAAAADYAAAAAAAYAAAAAAAWQAAAAADHQAAAAAAWQAAAAADWQAAAAABWQAAAAACCwAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAHQAAAAABdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACIQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACHQAAAAACdgAAAAACdgAAAAABdgAAAAACeQAAAAAAHQAAAAADIQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADdgAAAAADdgAAAAACdgAAAAACHQAAAAABdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAHQAAAAACIQAAAAAAHQAAAAADeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAIQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAAAIQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAJAAAAAADJAAAAAACJAAAAAADJAAAAAACeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAAD
version: 6
-1,1:
ind: -1,1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACYAAAAAAAWQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAeQAAAAAAGQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAASQAAAAAALwAAAAAALwAAAAAASQAAAAAALwAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAeQAAAAAAWQAAAAAACwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAALwAAAAAASQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHgAAAAADHgAAAAABYAAAAAAAagAAAAABCwAAAAAAWQAAAAAAeQAAAAAAagAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHgAAAAACHgAAAAACYAAAAAAAGQAAAAAAWQAAAAACCwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAWQAAAAACeQAAAAAAGQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAHQAAAAACaAAAAAAAYAAAAAAAagAAAAADYAAAAAAAYAAAAAAAeQAAAAAAHgAAAAACHgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAagAAAAACYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAIQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAIQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADYAAAAAAAYAAAAAAAIQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAIQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAHgAAAAABHgAAAAABeQAAAAAAGQAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAASQAAAAAALwAAAAAALwAAAAAASQAAAAAALwAAAAAAeQAAAAAAHgAAAAACHgAAAAACGQAAAAAAeQAAAAAAWQAAAAABCwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAALwAAAAAASQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHgAAAAAAHgAAAAABYAAAAAAAagAAAAACCwAAAAAAWQAAAAACeQAAAAAAagAAAAADeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHgAAAAADHgAAAAAAYAAAAAAAGQAAAAAAWQAAAAABCwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAADHgAAAAABWQAAAAACeQAAAAAAGQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAHQAAAAACaAAAAAAAYAAAAAAAagAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHgAAAAAAHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADYAAAAAAAYAAAAAAAagAAAAACYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAIQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAIQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACYAAAAAAAYAAAAAAAIQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAACHQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAIQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAAD
version: 6
0,1:
ind: 0,1
- tiles: HgAAAAAAHgAAAAAAHgAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADJAAAAAABJAAAAAAAJAAAAAACJAAAAAAAHQAAAAAAJAAAAAADHgAAAAAAHgAAAAABHgAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACJAAAAAADJAAAAAACJAAAAAABJAAAAAACHQAAAAABJAAAAAADHgAAAAADHgAAAAAAHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAAAeQAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAADdwAAAAADHQAAAAADYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAIAAAAAAAIAAAAAACHgAAAAAAHgAAAAACHgAAAAABeQAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdwAAAAACeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAIAAAAAACIAAAAAAAHgAAAAAAHgAAAAAAHgAAAAABeQAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAABdwAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADeQAAAAAAIAAAAAAAIAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAABeQAAAAAAHQAAAAACWQAAAAACWQAAAAABHQAAAAACIAAAAAACIAAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAeQAAAAAAIAAAAAACIAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAA
+ tiles: HgAAAAABHgAAAAADHgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACJAAAAAABJAAAAAACJAAAAAAAJAAAAAADHQAAAAABJAAAAAAAHgAAAAAAHgAAAAACHgAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACJAAAAAAAJAAAAAADJAAAAAABJAAAAAADHQAAAAABJAAAAAACHgAAAAABHgAAAAABHgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAeQAAAAAAdwAAAAACdwAAAAACdwAAAAAAdwAAAAADdwAAAAAAHQAAAAACYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIAAAAAABIAAAAAADHgAAAAAAHgAAAAACHgAAAAABeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAADdwAAAAADeQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAIAAAAAACIAAAAAAAHgAAAAABHgAAAAADHgAAAAABeQAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAABdwAAAAABeQAAAAAAHQAAAAACWQAAAAABWQAAAAABeQAAAAAAIAAAAAACIAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABHQAAAAAAIAAAAAACIAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACWQAAAAAAeQAAAAAAIAAAAAACIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: JAAAAAADJAAAAAABJAAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAABJAAAAAADJAAAAAAAJAAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAADJQAAAAABJQAAAAABJQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAJQAAAAAAJQAAAAABJQAAAAADHQAAAAADIAAAAAADIAAAAAADIAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAJQAAAAACJQAAAAACJQAAAAAAHQAAAAACIAAAAAABIAAAAAACIAAAAAAAeQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAJQAAAAAAJQAAAAABJQAAAAABeQAAAAAAIAAAAAADIAAAAAAAIAAAAAADeQAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADJQAAAAAAJQAAAAABJQAAAAACaQAAAAAAIAAAAAACIAAAAAACIAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAJQAAAAACJQAAAAABJQAAAAABeQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABYAAAAAAAYAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABaQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAC
+ tiles: JAAAAAADJAAAAAABJAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAADJQAAAAAAJQAAAAAAJQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADJQAAAAAAJQAAAAACJQAAAAAAHQAAAAABIAAAAAAAIAAAAAADIAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAJQAAAAABJQAAAAABJQAAAAACHQAAAAADIAAAAAACIAAAAAACIAAAAAABeQAAAAAAHQAAAAADHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAJQAAAAADJQAAAAACJQAAAAADeQAAAAAAIAAAAAABIAAAAAADIAAAAAACeQAAAAAAHQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADJQAAAAAAJQAAAAACJQAAAAADaQAAAAAAIAAAAAABIAAAAAADIAAAAAADeQAAAAAAHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAJQAAAAAAJQAAAAADJQAAAAABeQAAAAAAIAAAAAADIAAAAAADIAAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAACYAAAAAAAYAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADaQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAC
version: 6
-2,-2:
ind: -2,-2
- tiles: WQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZAAAAAABYAAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACYAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAACWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAHQAAAAAAHQAAAAADWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADWQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAACHQAAAAAAHQAAAAABWQAAAAADHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADHQAAAAADYAAAAAAAZAAAAAABWQAAAAABeQAAAAAAHQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAABWQAAAAAAeQAAAAAAagAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADZAAAAAACWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAACYAAAAAAAHQAAAAADYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAA
+ tiles: WQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZAAAAAADYAAAAAAAHQAAAAABeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZAAAAAACYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABYAAAAAAAZAAAAAAAZAAAAAADZAAAAAADZAAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABHQAAAAAAHQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADeQAAAAAAWQAAAAABZAAAAAAAWQAAAAABHQAAAAABHQAAAAACWQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABHQAAAAACYAAAAAAAZAAAAAAAWQAAAAACeQAAAAAAHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAADWQAAAAAAeQAAAAAAagAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACZAAAAAACWQAAAAADeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAABZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAAAYAAAAAAAHQAAAAABYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAZAAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADWQAAAAABWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAYwAAAAADYwAAAAAAYwAAAAABWQAAAAABWQAAAAABHQAAAAABZAAAAAADZAAAAAABHQAAAAACZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAACZAAAAAAAZAAAAAABYwAAAAACTAAAAAADYwAAAAABZAAAAAADZAAAAAADHQAAAAABWQAAAAADWQAAAAABHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACYwAAAAADYwAAAAADYwAAAAABWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAeQAAAAAAQQAAAAAAFAAAAAAAIQAAAAABeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAQQAAAAAAFAAAAAAAIQAAAAABeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAZwAAAAACZAAAAAABZwAAAAABeQAAAAAAQQAAAAAAFAAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAZwAAAAAAZAAAAAACZwAAAAACHQAAAAAAQQAAAAAAFAAAAAAAYAAAAAAAYAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAZwAAAAABZAAAAAACZwAAAAACeQAAAAAAQQAAAAAAFAAAAAAAYAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAZwAAAAAAZAAAAAADZwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAZwAAAAABZAAAAAACZwAAAAAAHQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAADZAAAAAACZwAAAAAAeQAAAAAAeQAAAAAAagAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAABYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAZAAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAACYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADYwAAAAADYwAAAAADYwAAAAADWQAAAAABWQAAAAABHQAAAAAAZAAAAAAAZAAAAAADHQAAAAADZAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAAAZAAAAAABYwAAAAABTAAAAAABYwAAAAADZAAAAAADZAAAAAABHQAAAAABWQAAAAAAWQAAAAABHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYwAAAAABYwAAAAADYwAAAAAAWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAABeQAAAAAAQQAAAAAAFAAAAAAAIQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAQQAAAAAAFAAAAAAAIQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAZwAAAAAAZAAAAAACZwAAAAADeQAAAAAAQQAAAAAAFAAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAZwAAAAADZAAAAAABZwAAAAABHQAAAAADQQAAAAAAFAAAAAAAYAAAAAAAYAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAZwAAAAADZAAAAAACZwAAAAADeQAAAAAAQQAAAAAAFAAAAAAAYAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAZwAAAAACZAAAAAADZwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAZwAAAAADZAAAAAABZwAAAAADHQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAADZAAAAAAAZwAAAAACeQAAAAAAeQAAAAAAagAAAAAB
version: 6
0,-2:
ind: 0,-2
- tiles: AAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAACWQAAAAADZAAAAAABAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACHQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAAATAAAAAABZAAAAAAAZAAAAAAATAAAAAACZAAAAAABZAAAAAAAZAAAAAAAHQAAAAADZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABHQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAWQAAAAABZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAWQAAAAACZAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAACHQAAAAACWQAAAAACZAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAZAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAA
+ tiles: AAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAADWQAAAAAAZAAAAAACAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAACAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADHQAAAAACWQAAAAABWQAAAAABYAAAAAAAWQAAAAADZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABTAAAAAAAZAAAAAADZAAAAAAATAAAAAADZAAAAAADZAAAAAAAZAAAAAACHQAAAAADZAAAAAABZAAAAAABZAAAAAAAZAAAAAABZAAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAABWQAAAAABYAAAAAAAYAAAAAAAWQAAAAADZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABZAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABZAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAADHQAAAAACWQAAAAADZAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABZAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAB
version: 6
1,-2:
ind: 1,-2
- tiles: WQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADeQAAAAAAaQAAAAAAeQAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAABWQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAADeQAAAAAAaAAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAADdwAAAAACeQAAAAAAaQAAAAAAeQAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAABWQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAADeQAAAAAAaQAAAAAAeQAAAAAAdwAAAAADdwAAAAABdwAAAAABdwAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAABTwAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACHQAAAAADWQAAAAACHQAAAAABTwAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAACWQAAAAAAWQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAABZAAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABZAAAAAADZAAAAAABZAAAAAABZAAAAAABZAAAAAACZAAAAAADZAAAAAABZAAAAAABZAAAAAABWQAAAAACWQAAAAAA
+ tiles: WQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAAAdwAAAAABeQAAAAAAaQAAAAAAeQAAAAAAdwAAAAADdwAAAAABdwAAAAABdwAAAAADWQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAABeQAAAAAAaAAAAAAAeQAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAADdwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAABdwAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADTwAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABHQAAAAADWQAAAAAAHQAAAAAATwAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACHQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAABZAAAAAADZAAAAAABWQAAAAACWQAAAAACZAAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAAAZAAAAAABZAAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACWQAAAAABWQAAAAAC
version: 6
2,0:
ind: 2,0
- tiles: WQAAAAACZAAAAAADWQAAAAADHQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADZAAAAAAAZAAAAAACHQAAAAACZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAAAWQAAAAAAZAAAAAADWQAAAAABHQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABJQAAAAABJQAAAAACJQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADWQAAAAABZAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAABWQAAAAABJQAAAAACJQAAAAABJQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACWQAAAAABZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAADJQAAAAAAJQAAAAACHQAAAAABbAAAAAAAVQAAAAAAbAAAAAACbAAAAAAAZAAAAAAAZAAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADJQAAAAABJQAAAAABJQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACJQAAAAADJQAAAAABJQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAAAJQAAAAABJQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAJQAAAAACJQAAAAADJQAAAAABeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABJQAAAAADJQAAAAADJQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAagAAAAACYAAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAJQAAAAAAJQAAAAADJQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAJAAAAAADJAAAAAADJAAAAAADJAAAAAADJAAAAAABJAAAAAADJAAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADCwAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAADJAAAAAACJAAAAAACJAAAAAADJAAAAAAAJAAAAAAAJAAAAAADJAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABCwAAAAAA
+ tiles: WQAAAAABZAAAAAADWQAAAAADHQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAZAAAAAABZAAAAAABHQAAAAABZAAAAAADZAAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAACZAAAAAACWQAAAAADZAAAAAADWQAAAAABHQAAAAABYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACJQAAAAADJQAAAAAAJQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAWQAAAAAAZAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAADJQAAAAACJQAAAAACJQAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABWQAAAAAAZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAACJQAAAAACJQAAAAADHQAAAAADbAAAAAADVQAAAAAAbAAAAAAAbAAAAAACZAAAAAAAZAAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACJQAAAAADJQAAAAADJQAAAAACeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAAAJQAAAAABJQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAJQAAAAADJQAAAAADJQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAagAAAAABYAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAJQAAAAABJQAAAAADJQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJQAAAAADJQAAAAADJQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAJAAAAAACJAAAAAABJAAAAAACJAAAAAAAJAAAAAABJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAACJAAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACCwAAAAAAJAAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAADJAAAAAADJAAAAAADJAAAAAABJAAAAAABJAAAAAAAJAAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAAACwAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: JAAAAAAAJAAAAAAAJAAAAAACJAAAAAABJAAAAAACJAAAAAABJAAAAAADJAAAAAADJAAAAAADJAAAAAADJAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAABHQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABHQAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAABeQAAAAAAYAAAAAAAYAAAAAAACwAAAAAAagAAAAADaAAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: JAAAAAADJAAAAAACJAAAAAADJAAAAAAAJAAAAAABJAAAAAADJAAAAAAAJAAAAAADJAAAAAACJAAAAAABJAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADHQAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAACHQAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAYAAAAAAAYAAAAAAACwAAAAAAagAAAAACaAAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: HQAAAAACeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACYAAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAABZAAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACHQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAAAHQAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACZAAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAZAAAAAAAYAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAHQAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAA
+ tiles: HQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADYAAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAABZAAAAAACWQAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAADeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAADHQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAACWQAAAAAAHQAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABZAAAAAACYAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAZAAAAAAAYAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADHQAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAHQAAAAABYAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAHQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADZAAAAAABWQAAAAAAagAAAAADYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACHQAAAAADWQAAAAAAZAAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAADWQAAAAADZAAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAABZAAAAAADWQAAAAADeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAZAAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAACZAAAAAADWQAAAAACeQAAAAAAHQAAAAACWQAAAAACWQAAAAADCwAAAAAAWQAAAAAACwAAAAAAWQAAAAABCwAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAACeQAAAAAAHQAAAAADWQAAAAABWQAAAAABHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAWQAAAAACZAAAAAADWQAAAAAAHQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADWQAAAAAAZAAAAAADWQAAAAACHQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAWQAAAAAD
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAYAAAAAAAHQAAAAACYAAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABYAAAAAAAHQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAACagAAAAACYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAADWQAAAAACZAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACHQAAAAAAWQAAAAAAZAAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABHQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAZAAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACCwAAAAAAWQAAAAADCwAAAAAAWQAAAAAACwAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADZAAAAAABWQAAAAABHQAAAAABHQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAABeQAAAAAAHQAAAAADWQAAAAABWQAAAAABHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAACeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAABHQAAAAADWQAAAAADZAAAAAABWQAAAAABHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAACZAAAAAADWQAAAAAAeQAAAAAAWQAAAAAB
version: 6
3,1:
ind: 3,1
- tiles: YAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAADYAAAAAAACwAAAAAAYAAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAagAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAACwAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAagAAAAACYAAAAAAACwAAAAAAagAAAAAAYAAAAAAACwAAAAAAagAAAAACYAAAAAAAYAAAAAAAagAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAVQAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADYAAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAA
+ tiles: YAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAABYAAAAAAACwAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAagAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAACwAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAagAAAAACYAAAAAAACwAAAAAAagAAAAADYAAAAAAACwAAAAAAagAAAAABYAAAAAAAYAAAAAAAagAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAbAAAAAACeQAAAAAAbAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAVQAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACYAAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAB
version: 6
3,0:
ind: 3,0
- tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAABZAAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAAAZAAAAAABWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACWQAAAAABCwAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADYAAAAAAAYAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACCwAAAAAACwAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAbAAAAAACVQAAAAAAWQAAAAABWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAbAAAAAACVQAAAAAAYAAAAAAAYAAAAAAAagAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAagAAAAACYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAagAAAAABagAAAAACagAAAAABYAAAAAAAbAAAAAABbAAAAAADbAAAAAABVQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAATAAAAAABYAAAAAAAWQAAAAADWQAAAAACCwAAAAAAWQAAAAADWQAAAAABCwAAAAAATAAAAAADCwAAAAAAagAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAA
+ tiles: WQAAAAADWQAAAAABWQAAAAAAWQAAAAAAZAAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAZAAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAABWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAABCwAAAAAAWQAAAAADWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAADYAAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAACwAAAAAACwAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAbAAAAAAAVQAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAbAAAAAACVQAAAAAAYAAAAAAAYAAAAAAAagAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAagAAAAADYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAagAAAAACagAAAAAAagAAAAABYAAAAAAAbAAAAAABbAAAAAACbAAAAAADVQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAATAAAAAADYAAAAAAAWQAAAAABWQAAAAACCwAAAAAAWQAAAAACWQAAAAACCwAAAAAATAAAAAABCwAAAAAAagAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: eQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADYAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAVwAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAFWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABVwAAAAALVwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAACVwAAAAAAWQAAAAADWQAAAAACHQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAABWQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAEWQAAAAADWQAAAAADeQAAAAAAYAAAAAAAVwAAAAAAWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAACaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAACWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABZAAAAAAAWQAAAAACWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAAC
+ tiles: eQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAABaAAAAAAAeQAAAAAAVwAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAJWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACVwAAAAAJVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAABWQAAAAAAHQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAADVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACVwAAAAAJVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAVwAAAAAAWQAAAAAAWQAAAAABWQAAAAABYAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAACWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAADaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAZAAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: eQAAAAAAeQAAAAAAYAAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABeQAAAAAAWQAAAAACZAAAAAABWQAAAAABHQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAdwAAAAACeQAAAAAAWQAAAAACZAAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAdwAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAdwAAAAACeQAAAAAAWQAAAAACZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACYAAAAAAAZAAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACTQAAAAAATQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAATwAAAAAAHQAAAAADYAAAAAAAZAAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACTQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADUAAAAAAATwAAAAAAHQAAAAAAWQAAAAABZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAWQAAAAACeQAAAAAAWQAAAAADZAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAWQAAAAADeQAAAAAAWQAAAAACZAAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAAAZAAAAAADWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACeQAAAAAAWQAAAAACZAAAAAABWQAAAAABHQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAdwAAAAACeQAAAAAAWQAAAAAAZAAAAAABWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAdwAAAAADeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAdwAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAADYAAAAAAAZAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADTQAAAAAATQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAATwAAAAAAHQAAAAADYAAAAAAAZAAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABTQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACUAAAAAAATwAAAAAAHQAAAAACWQAAAAAAZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAWQAAAAAAeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAANgAAAAAANgAAAAAANgAAAAAAWQAAAAADeQAAAAAAWQAAAAACZAAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAZAAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAZAAAAAADWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAABWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: HQAAAAADaQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAHQAAAAABHQAAAAADeQAAAAAAbwAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAABNgAAAAAAHQAAAAABHQAAAAABeQAAAAAAbwAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAABNgAAAAAAHQAAAAABHQAAAAAAeQAAAAAAbwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADWQAAAAACZAAAAAAAZAAAAAABZAAAAAAAHQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZAAAAAACYAAAAAAAYAAAAAAAHQAAAAAAWQAAAAABHQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAZAAAAAACYAAAAAAAeQAAAAAAdgAAAAACWQAAAAABYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAADWQAAAAABeQAAAAAAdgAAAAADHQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACeQAAAAAAYAAAAAAAZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADeQAAAAAAWQAAAAABZAAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABaQAAAAAAWQAAAAABHQAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAABWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAaAAAAAAAYAAAAAAAWQAAAAADHQAAAAADWQAAAAADaQAAAAAAHQAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADeQAAAAAAWQAAAAADZAAAAAADWQAAAAABeQAAAAAAagAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACHQAAAAABWQAAAAABZAAAAAABWQAAAAACeQAAAAAAeQAAAAAA
+ tiles: HQAAAAACaQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAADeQAAAAAAbwAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAABNgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAbwAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAHQAAAAADHQAAAAADeQAAAAAAbwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAZAAAAAACZAAAAAACZAAAAAADHQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAZAAAAAABYAAAAAAAYAAAAAAAHQAAAAAAWQAAAAABHQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAdgAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAZAAAAAABYAAAAAAAeQAAAAAAdgAAAAACWQAAAAADYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACeQAAAAAAYAAAAAAAZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAADeQAAAAAAWQAAAAAAZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADHQAAAAADaQAAAAAAWQAAAAAAHQAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAACWQAAAAAAWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAaAAAAAAAYAAAAAAAWQAAAAACHQAAAAACWQAAAAACaQAAAAAAHQAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABeQAAAAAAWQAAAAACZAAAAAAAWQAAAAABeQAAAAAAagAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAACHQAAAAAAWQAAAAABZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: bwAAAAABbwAAAAACbwAAAAADbwAAAAABbwAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADbwAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAACWQAAAAABbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbwAAAAADbwAAAAAAbwAAAAACbwAAAAAAbwAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAABYAAAAAAAYAAAAAAAZAAAAAABZAAAAAACTAAAAAAAZAAAAAADZAAAAAADZAAAAAACTAAAAAADZAAAAAACZAAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAZAAAAAACZAAAAAABYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAdgAAAAADdgAAAAABHQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAWQAAAAABZAAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAWQAAAAADZAAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAACZAAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAZAAAAAACYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAagAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAABZAAAAAABYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAACZAAAAAABYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAA
+ tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbwAAAAABbwAAAAAAbwAAAAADbwAAAAAAbwAAAAADWQAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbwAAAAAAbwAAAAABbwAAAAAAbwAAAAADbwAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAABWQAAAAACWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAACYAAAAAAAYAAAAAAAZAAAAAACZAAAAAACTAAAAAABZAAAAAADZAAAAAACZAAAAAACTAAAAAACZAAAAAADZAAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADZAAAAAADZAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAdgAAAAACdgAAAAACHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAACeQAAAAAAWQAAAAACZAAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAWQAAAAACZAAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAADZAAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACZAAAAAACYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAagAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAACZAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADZAAAAAABYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: bAAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAHQAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABbAAAAAACbAAAAAADcAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAATAAAAAAAZAAAAAACZAAAAAADZAAAAAACTAAAAAABZAAAAAAAZAAAAAACHQAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAADZAAAAAAAZAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADZAAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACZAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAADAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAYwAAAAABWQAAAAACZAAAAAACAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAABWQAAAAAATAAAAAABAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAAAWQAAAAABZAAAAAABAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAABWQAAAAABZAAAAAAD
+ tiles: bAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAACHQAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABbAAAAAACbAAAAAACcAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADYAAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACTAAAAAACZAAAAAADZAAAAAAAZAAAAAABTAAAAAACZAAAAAABZAAAAAACHQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADZAAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADZAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADZAAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAYwAAAAACWQAAAAAAZAAAAAADAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAACWQAAAAADTAAAAAAAAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAAAWQAAAAABZAAAAAADAAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAAAWQAAAAABZAAAAAAD
version: 6
1,-3:
ind: 1,-3
- tiles: eQAAAAAAYAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAdwAAAAABdwAAAAADdgAAAAABdgAAAAACeQAAAAAAYAAAAAAAeQAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAADeQAAAAAAYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAIQAAAAABIQAAAAACIQAAAAABIQAAAAACeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACZAAAAAAAZAAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAVwAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAAAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAA
+ tiles: eQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAdwAAAAADdwAAAAACdgAAAAABdgAAAAACeQAAAAAAYAAAAAAAeQAAAAAAIQAAAAACIQAAAAABIQAAAAAAIQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADeQAAAAAAIQAAAAABIQAAAAAAIQAAAAAAIQAAAAADeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADZAAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAADZAAAAAADZAAAAAACZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAABZAAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAVwAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAADeQAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: dgAAAAADdwAAAAACdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAdgAAAAADHQAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABHQAAAAADIQAAAAABIQAAAAACIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACHQAAAAADZgAAAAABZgAAAAABZgAAAAADZgAAAAABZgAAAAAAZgAAAAACHQAAAAABZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAACZAAAAAACZAAAAAABHQAAAAABZgAAAAABZgAAAAABZgAAAAADZgAAAAABZgAAAAADZgAAAAADHQAAAAAAWQAAAAADWQAAAAABWQAAAAACZAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAHQAAAAADZgAAAAACZgAAAAAAZgAAAAACZgAAAAAAZgAAAAADZgAAAAADHQAAAAABVwAAAAAAWQAAAAABWQAAAAAAZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACeQAAAAAAVwAAAAAAWQAAAAADWQAAAAADZAAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACHQAAAAABAAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: dgAAAAADdwAAAAAAdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAADHQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAHQAAAAACIQAAAAAAIQAAAAADIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADHQAAAAACZgAAAAADZgAAAAABZgAAAAAAZgAAAAABZgAAAAABZgAAAAADHQAAAAADZAAAAAACZAAAAAACZAAAAAACZAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAADHQAAAAAAZgAAAAAAZgAAAAADZgAAAAAAZgAAAAAAZgAAAAADZgAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAADZAAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAACZgAAAAADZgAAAAADZgAAAAAAZgAAAAABZgAAAAABZgAAAAABHQAAAAACVwAAAAAAWQAAAAABWQAAAAACZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAVwAAAAAAWQAAAAABWQAAAAAAZAAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAABeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAADaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAZAAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAagAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADYAAAAAAAdgAAAAABdgAAAAACDgAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADDgAAAAAAWQAAAAAADgAAAAABdgAAAAACDgAAAAADdgAAAAACWQAAAAABdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAADgAAAAACWQAAAAABDgAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAADgAAAAADdgAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADDgAAAAACDgAAAAAADgAAAAAADgAAAAADeQAAAAAADgAAAAAAdgAAAAADYAAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAagAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACYAAAAAAAdgAAAAABdgAAAAADDgAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACDgAAAAAAWQAAAAACDgAAAAAAdgAAAAACDgAAAAACdgAAAAADWQAAAAAAdgAAAAAAeQAAAAAAdgAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADDgAAAAAAWQAAAAAADgAAAAADWQAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAADgAAAAACdgAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABDgAAAAADDgAAAAAADgAAAAADDgAAAAADeQAAAAAADgAAAAABdgAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: aQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAADCQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAWQAAAAADYAAAAAAAHQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAJCQAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAA
+ tiles: aQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAABwAAAAAHBwAAAAAFBwAAAAAABwAAAAAABwAAAAAGeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAWQAAAAACYAAAAAAAHQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: bAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAAAWQAAAAACbAAAAAACbAAAAAADbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACLAAAAAAALAAAAAAAbAAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAbAAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAbAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADbAAAAAADbAAAAAAAeQAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAagAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABHQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAABbAAAAAACcAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAA
+ tiles: bAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAADWQAAAAACbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABLAAAAAAALAAAAAAAbAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAbAAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAbAAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABbAAAAAADbAAAAAADeQAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAagAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAABHQAAAAABeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAcAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAdwAAAAACdwAAAAADdwAAAAABdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAdwAAAAABdwAAAAAAdwAAAAAAdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdwAAAAAAdwAAAAABdgAAAAAAdgAAAAAA
+ tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABYAAAAAAAeQAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABYAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAdwAAAAADdwAAAAADdgAAAAADdgAAAAAD
version: 6
2,-4:
ind: 2,-4
- tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADHQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACYAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABdwAAAAAAdwAAAAACdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABCwAAAAAAeQAAAAAAaAAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAADdwAAAAACdwAAAAADdwAAAAABeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAdwAAAAAAdwAAAAADdwAAAAABeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAHQAAAAACdwAAAAABdwAAAAADdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAABHQAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAdgAAAAABdwAAAAAAdwAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAHQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABYAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAABHQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABdwAAAAABdwAAAAACdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACCwAAAAAAeQAAAAAAaAAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACdwAAAAACdwAAAAACdwAAAAABeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAaQAAAAAAaAAAAAAAHQAAAAABdwAAAAAAdwAAAAABdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAACHQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAABdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdwAAAAAAdwAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAAALAAAAAAALAAAAAAAbAAAAAACLAAAAAAALAAAAAAAbAAAAAABLAAAAAAALAAAAAAAbAAAAAACLAAAAAAALAAAAAAAbAAAAAACLAAAAAAALAAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAHQAAAAAAbAAAAAABeQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAADVQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAABVQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABbwAAAAACbwAAAAACbwAAAAABbwAAAAABbwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABbwAAAAABbwAAAAAAbwAAAAADbwAAAAAAbwAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbwAAAAABbwAAAAAAbwAAAAACbwAAAAADbwAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAAC
+ tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACLAAAAAAALAAAAAAAbAAAAAABLAAAAAAALAAAAAAAbAAAAAADLAAAAAAALAAAAAAAbAAAAAADLAAAAAAALAAAAAAAbAAAAAADLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAHQAAAAACbAAAAAACeQAAAAAAHQAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAACVQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAABVQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABbwAAAAABbwAAAAAAbwAAAAADbwAAAAADbwAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbwAAAAADbwAAAAADbwAAAAAAbwAAAAABbwAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAB
version: 6
-2,-4:
ind: -2,-4
- tiles: HQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAHQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACWQAAAAAALAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABeAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAcQAAAAADbAAAAAAAbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAABdwAAAAACdwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAagAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbwAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbwAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAbwAAAAAA
+ tiles: HQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAHQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABWQAAAAACLAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADeAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAcQAAAAABbAAAAAACbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAABeQAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAABWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdwAAAAACdwAAAAADdwAAAAACdwAAAAAAdwAAAAACdwAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAABdwAAAAADdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAagAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbwAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbwAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAbwAAAAAC
version: 6
-1,-5:
ind: -1,-5
- tiles: WQAAAAABWQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAagAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAagAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAAALAAAAAAAHQAAAAABHQAAAAABLAAAAAAAHQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAYwAAAAABYwAAAAABYwAAAAAALAAAAAAAHQAAAAADHQAAAAADLAAAAAAAHQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAADYwAAAAABYwAAAAAAYwAAAAAALAAAAAAAHQAAAAABHQAAAAADLAAAAAAAHQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACYwAAAAABYwAAAAACYwAAAAAB
+ tiles: WQAAAAABWQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAagAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAagAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADLAAAAAAAHQAAAAAAHQAAAAABLAAAAAAAHQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACYwAAAAADYwAAAAAAYwAAAAAALAAAAAAAHQAAAAABHQAAAAAALAAAAAAAHQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAABYwAAAAADYwAAAAACYwAAAAACLAAAAAAAHQAAAAACHQAAAAABLAAAAAAAHQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAADYwAAAAAAYwAAAAABYwAAAAAB
version: 6
-2,-5:
ind: -2,-5
- tiles: eQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADWQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADWQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAACWQAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbwAAAAABbwAAAAADbwAAAAACbwAAAAADbwAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbwAAAAADbwAAAAABbwAAAAABbwAAAAAAbwAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAABbwAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAYAAAAAAAagAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAHQAAAAAA
+ tiles: eQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAACWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABWQAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADWQAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACWQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbwAAAAACbwAAAAABbwAAAAACbwAAAAADbwAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbwAAAAADbwAAAAADbwAAAAADbwAAAAADbwAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAAbwAAAAADbwAAAAAAbwAAAAAAbwAAAAABbwAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAagAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAAD
version: 6
0,-5:
ind: 0,-5
- tiles: eQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAbAAAAAADeQAAAAAAbAAAAAABVQAAAAAAbAAAAAABeQAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAagAAAAABaAAAAAAAagAAAAACagAAAAACeQAAAAAAeQAAAAAAYAAAAAAA
+ tiles: eQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAbAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAVQAAAAAAbAAAAAABeQAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAagAAAAADaAAAAAAAagAAAAABagAAAAADeQAAAAAAeQAAAAAAYAAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADaQAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADaQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAaQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAaQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABaQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABaQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABaQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACaQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-6:
ind: -2,-6
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAABeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAACcAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAADcAAAAAAAeQAAAAAAHQAAAAABeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAABeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAABeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAABcAAAAAACeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAABeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAAAcAAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAACcAAAAAACeQAAAAAAHQAAAAACeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
0,-6:
ind: 0,-6
- tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdwAAAAABdgAAAAABYwAAAAADYwAAAAADYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdgAAAAADYwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAagAAAAACaAAAAAAAaAAAAAAAeQAAAAAAdwAAAAAAdgAAAAACYwAAAAABVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdgAAAAABYwAAAAABVwAAAAAAVwAAAAAGeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAdwAAAAADdgAAAAAAYwAAAAADYwAAAAAAYwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAMCQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAADCQAAAAADBwAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAADdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdwAAAAAAdgAAAAABYwAAAAABYwAAAAADYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdgAAAAACYwAAAAADVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAagAAAAADaAAAAAAAaAAAAAAAeQAAAAAAdwAAAAACdgAAAAACYwAAAAACVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAACdgAAAAACYwAAAAADVwAAAAAMVwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAdwAAAAACdgAAAAABYwAAAAADYwAAAAACYwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAAD
version: 6
-3,-5:
ind: -3,-5
- tiles: WQAAAAADYAAAAAAACwAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAWQAAAAAAYAAAAAAAdgAAAAAAdgAAAAABWQAAAAACdgAAAAADdgAAAAACdgAAAAAAYAAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYAAAAAAAdgAAAAAAYAAAAAAAagAAAAABYAAAAAAAYAAAAAAAdgAAAAABYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACwAAAAAAWQAAAAABdgAAAAADdgAAAAACWQAAAAABdgAAAAAAYAAAAAAAdgAAAAABWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAAYAAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABeQAAAAAACwAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABCwAAAAAAagAAAAADagAAAAACCwAAAAAAWQAAAAAAWQAAAAADWQAAAAADCwAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAABWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAADHQAAAAAAHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADCwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAADYAAAAAAACwAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAWQAAAAABWQAAAAAAWQAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAWQAAAAADYAAAAAAAdgAAAAACdgAAAAAAWQAAAAADdgAAAAAAdgAAAAACdgAAAAADYAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYAAAAAAAdgAAAAADYAAAAAAAagAAAAACYAAAAAAAYAAAAAAAdgAAAAADYAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACwAAAAAAWQAAAAAAdgAAAAABdgAAAAACWQAAAAABdgAAAAAAYAAAAAAAdgAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAAYAAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAACwAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADCwAAAAAAagAAAAADagAAAAAACwAAAAAAWQAAAAACWQAAAAABWQAAAAADCwAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABCwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAADHQAAAAADHQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACCwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-6:
ind: 1,-6
- tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAZAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZAAAAAABZAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABdwAAAAACdwAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAADYAAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABZAAAAAAAWQAAAAABYwAAAAAAYwAAAAAAdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYQAAAAAAYQAAAAAAYwAAAAAAWQAAAAADYAAAAAAAWQAAAAABZAAAAAACWQAAAAABVwAAAAAAYwAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAACYwAAAAADWQAAAAADWQAAAAADWQAAAAADZAAAAAABWQAAAAACVwAAAAAAYwAAAAACdgAAAAACdgAAAAABHQAAAAACdQAAAAACdQAAAAACHQAAAAAAdQAAAAACdQAAAAADdQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAAAWQAAAAACVwAAAAAAYwAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAAAYwAAAAABWQAAAAABYAAAAAAAWQAAAAACZAAAAAABZAAAAAAAYwAAAAAAYwAAAAAAdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYQAAAAABYQAAAAACYwAAAAACWQAAAAACWQAAAAABYAAAAAAAZAAAAAAAWQAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABZAAAAAAAWQAAAAAC
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAZAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZAAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABTAAAAAABZAAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAADdwAAAAADdwAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAYAAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABZAAAAAACWQAAAAABYwAAAAADYwAAAAABdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYQAAAAADYQAAAAACYwAAAAADWQAAAAABYAAAAAAAWQAAAAABZAAAAAACWQAAAAABVwAAAAAIYwAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAADYQAAAAAAYwAAAAACWQAAAAAAWQAAAAAAWQAAAAABZAAAAAABWQAAAAADVwAAAAAAYwAAAAAAdgAAAAACdgAAAAACHQAAAAACdQAAAAAAdQAAAAAAHQAAAAAAdQAAAAACdQAAAAABdQAAAAACZAAAAAADZAAAAAABZAAAAAABZAAAAAACWQAAAAABVwAAAAAAYwAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAACYQAAAAABYwAAAAAAWQAAAAADYAAAAAAAWQAAAAAATAAAAAADZAAAAAABYwAAAAADYwAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYQAAAAADYQAAAAABYwAAAAACWQAAAAACWQAAAAAAYAAAAAAAZAAAAAACWQAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAZAAAAAABWQAAAAAA
version: 6
0,-7:
ind: 0,-7
@@ -263,119 +263,119 @@ entities:
version: 6
1,-5:
ind: 1,-5
- tiles: dwAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAWQAAAAABZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAWQAAAAACZAAAAAAAWQAAAAABagAAAAABaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACZAAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: dwAAAAAAdwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAACWQAAAAAAZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAACWQAAAAABYAAAAAAAYAAAAAAAWQAAAAABZAAAAAADWQAAAAAAagAAAAACaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAADYAAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADYAAAAAAAYAAAAAAAHQAAAAAAWQAAAAACHQAAAAACWQAAAAACTAAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADTAAAAAACYAAAAAAAHQAAAAADZAAAAAADHQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAATAAAAAACWQAAAAACaAAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAagAAAAABaAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACYAAAAAAAYAAAAAAAHQAAAAADWQAAAAADHQAAAAAAWQAAAAACTAAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAATAAAAAADYAAAAAAAHQAAAAABZAAAAAADHQAAAAABWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAATAAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAATAAAAAACWQAAAAABaAAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAagAAAAABaAAAAAAAeQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: YAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAQAAAAAAAQAAAAAAYAAAAAAAAQAAAAAAAQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAADWQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAABWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAWQAAAAADWQAAAAABeQAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: YAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAQAAAAAAAQAAAAAAYAAAAAAAAQAAAAAAAQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAADBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAWQAAAAACWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAGBwAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: BwAAAAADBwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAMBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: WQAAAAAAWQAAAAACeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAWQAAAAACWQAAAAABeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAIBwAAAAAFBwAAAAAIBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMWQAAAAAAWQAAAAACeQAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAADeQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAMBwAAAAAAWQAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAABBwAAAAAABwAAAAAABwAAAAAAHQAAAAADHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAAABwAAAAAABwAAAAAMWQAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAABKAAAAAACBwAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADBwAAAAAABwAAAAAABwAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKAAAAAABBwAAAAAIBwAAAAAEBwAAAAAABwAAAAAEWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAFBwAAAAALBwAAAAAABwAAAAAAWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAKBwAAAAAABwAAAAAABwAAAAALBwAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAACWQAAAAABeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAWQAAAAABWQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAACWQAAAAACWQAAAAACeQAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAWQAAAAADWQAAAAADeQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADBwAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADBwAAAAAGBwAAAAAABwAAAAAJHQAAAAADHQAAAAABeQAAAAAABwAAAAAABwAAAAAFBwAAAAAILwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAAABwAAAAAABwAAAAAJWQAAAAABWQAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAACKAAAAAABBwAAAAAAWQAAAAABWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADBwAAAAAEBwAAAAAABwAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAKAAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAEWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAHBwAAAAAABwAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAEBwAAAAAAWQAAAAACWQAAAAABaQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: WQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAWQAAAAAAaQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADHQAAAAAAdgAAAAADdgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACHQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAHQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAagAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAD
+ tiles: WQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAWQAAAAABaQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAABdgAAAAACdgAAAAABeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACHQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACHQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAHQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABWQAAAAACHQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACHQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAagAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAD
version: 6
4,1:
ind: 4,1
- tiles: aAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: aAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADVwAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAABHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABVwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: WQAAAAADWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYAAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAWQAAAAACWQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADWQAAAAADYAAAAAAAeQAAAAAAeAAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAABHQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABHQAAAAADHQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAACWQAAAAAAWQAAAAACHQAAAAADWQAAAAAAYAAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABTAAAAAABWQAAAAADHQAAAAADWQAAAAACYAAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYAAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAADHQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAABHQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAAAWQAAAAABWQAAAAADHQAAAAACWQAAAAABYAAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACTAAAAAABWQAAAAABHQAAAAADWQAAAAAAYAAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: WQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: WQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHgAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHgAAAAADHgAAAAACHgAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACHQAAAAAAZgAAAAAAZgAAAAACZgAAAAABHQAAAAACWQAAAAACWQAAAAABWQAAAAABHgAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAADZgAAAAADZgAAAAADZgAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADHQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAagAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAagAAAAADagAAAAABagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAAAaAAAAAAAagAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAagAAAAADagAAAAACagAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAAATAAAAAABTAAAAAADaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAATAAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAagAAAAAAagAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADTAAAAAABTAAAAAAA
+ tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACHgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHgAAAAACHgAAAAADHgAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACHQAAAAAAZgAAAAADZgAAAAADZgAAAAADHQAAAAADWQAAAAACWQAAAAADWQAAAAADHgAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAHQAAAAADZgAAAAAAZgAAAAAAZgAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAagAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAagAAAAADagAAAAACagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAAAaAAAAAAAagAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAagAAAAADagAAAAACagAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAACTAAAAAAATAAAAAADaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACTAAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAagAAAAAAagAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAADTAAAAAAATAAAAAAC
version: 6
3,-4:
ind: 3,-4
- tiles: AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAagAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACHQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACUAAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAaQAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAaQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAC
+ tiles: AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAagAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAADUAAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADUAAAAAAAaQAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADaQAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAC
version: 6
4,-4:
ind: 4,-4
- tiles: aQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAagAAAAACagAAAAADeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAJUAAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAALUAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAALaQAAAAAAUAAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAACBwAAAAAABwAAAAAAUAAAAAAAaQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAALeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAWQAAAAABWQAAAAABeQAAAAAAYAAAAAAAWQAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAABYAAAAAAAWQAAAAABYAAAAAAAeQAAAAAABwAAAAAAeAAAAAAAWQAAAAAAWQAAAAABHQAAAAADWQAAAAADYAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAAeAAAAAAA
+ tiles: aQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAagAAAAAAagAAAAACeQAAAAAAeQAAAAAABwAAAAALBwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAUAAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAHaQAAAAAAUAAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAIBwAAAAAAUAAAAAAAaQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAFeAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAWQAAAAABYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAABYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAABwAAAAAAeAAAAAAAWQAAAAAAWQAAAAACHQAAAAABWQAAAAABYAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAABYwAAAAADYAAAAAAAWQAAAAACWQAAAAAAeQAAAAAABwAAAAAAeAAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: HQAAAAADeQAAAAAAHQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAYAAAAAAAHQAAAAACeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAABeQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAZwAAAAABZwAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAYAAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAADeQAAAAAAZwAAAAACZwAAAAADeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACYAAAAAAAHQAAAAABZwAAAAADZwAAAAADHQAAAAADYAAAAAAAYAAAAAAAYwAAAAABYwAAAAACWQAAAAABWQAAAAABHQAAAAACWQAAAAADHQAAAAABeQAAAAAAHQAAAAACWQAAAAACHQAAAAACZwAAAAADZwAAAAAAHQAAAAAAWQAAAAABWQAAAAAAYwAAAAACYwAAAAADYAAAAAAAWQAAAAAAHQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACWQAAAAABeQAAAAAAZwAAAAACZwAAAAABeQAAAAAAWQAAAAACWQAAAAAAYwAAAAAAYwAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAABHQAAAAACHQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYwAAAAADYwAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAACZwAAAAABeQAAAAAAWQAAAAABWQAAAAACYwAAAAAAYwAAAAAAWQAAAAABWQAAAAAAeQAAAAAAVQAAAAAAZgAAAAAAZgAAAAACZgAAAAADZgAAAAADHQAAAAAAZwAAAAACZwAAAAACHQAAAAADWQAAAAADWQAAAAABYwAAAAACYwAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAZgAAAAADZgAAAAAAZgAAAAADZgAAAAABHQAAAAABZwAAAAADZwAAAAADHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAA
+ tiles: HQAAAAACeQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAACeQAAAAAAHQAAAAACWQAAAAADeQAAAAAAZwAAAAACZwAAAAABeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADeQAAAAAAYAAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAZwAAAAADZwAAAAACeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAYAAAAAAAHQAAAAADZwAAAAAAZwAAAAABHQAAAAADYAAAAAAAYAAAAAAAYwAAAAAAYwAAAAABWQAAAAABWQAAAAADHQAAAAAAWQAAAAADHQAAAAADeQAAAAAAHQAAAAADWQAAAAAAHQAAAAABZwAAAAAAZwAAAAAAHQAAAAADWQAAAAABWQAAAAACYwAAAAAAYwAAAAACYAAAAAAAWQAAAAABHQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAADWQAAAAADeQAAAAAAZwAAAAADZwAAAAABeQAAAAAAWQAAAAABWQAAAAADYwAAAAAAYwAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAADHQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADYwAAAAACYwAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAAAZwAAAAAAeQAAAAAAWQAAAAAAWQAAAAADYwAAAAAAYwAAAAADWQAAAAAAWQAAAAABeQAAAAAAVQAAAAAAZgAAAAAAZgAAAAABZgAAAAACZgAAAAACHQAAAAADZwAAAAAAZwAAAAABHQAAAAACWQAAAAADWQAAAAAAYwAAAAAAYwAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAZgAAAAAAZgAAAAABZgAAAAABZgAAAAABHQAAAAADZwAAAAADZwAAAAABHQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABHQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAC
version: 6
-3,-2:
ind: -3,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAADagAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAWQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAHQAAAAADaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAWQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABaAAAAAAAWQAAAAACaAAAAAAAWQAAAAABeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACHQAAAAACHQAAAAACHQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADHQAAAAADWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAHQAAAAACWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAAAagAAAAACaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAWQAAAAABaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAHQAAAAACaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAWQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAWQAAAAADaAAAAAAAWQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAWQAAAAACHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAHQAAAAABWQAAAAAB
version: 6
2,-6:
ind: 2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACHQAAAAABeQAAAAAAWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALwAAAAAALwAAAAAAWQAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALwAAAAAALwAAAAAAWQAAAAACLwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALwAAAAAALwAAAAAAWQAAAAABLwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALwAAAAAALwAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAACHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAADZAAAAAABeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAADeQAAAAAAWQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAKVwAAAAAAWQAAAAADVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAACVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAACHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACZAAAAAADeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAB
version: 6
3,-6:
ind: 3,-6
- tiles: HQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAABHQAAAAACHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACZAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADYAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADZAAAAAADHQAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-5:
ind: 3,-5
- tiles: ZAAAAAADWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAZAAAAAABWQAAAAADYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAZAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAagAAAAABaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAagAAAAABaQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: ZAAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAZAAAAAAAWQAAAAABYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAZAAAAAACYAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAagAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAagAAAAAAaQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAIBwAAAAAACQAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAABaAAAAAAAagAAAAAAYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAagAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJCQAAAAACBwAAAAAABwAAAAAH
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADeQAAAAAABwAAAAAABwAAAAABCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAABCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAaAAAAAAAagAAAAABYAAAAAAAeQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAagAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMCQAAAAAABwAAAAAHBwAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: eQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAABWQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAWQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACaQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAHQAAAAABWQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAYAAAAAAAWQAAAAABWQAAAAADHQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAAA
+ tiles: eQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACHQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAWQAAAAABHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABaQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAHQAAAAACWQAAAAACaQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAYAAAAAAAWQAAAAABWQAAAAAAHQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABHQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAC
version: 6
-3,-4:
ind: -3,-4
- tiles: eQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADCwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAA
+ tiles: eQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACCwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAADaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAHQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACaAAAAAAAHQAAAAABWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAHQAAAAACWQAAAAACWQAAAAAAYAAAAAAAWQAAAAADHQAAAAADWQAAAAADHQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAACaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAHQAAAAABWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABaAAAAAAAHQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAHQAAAAABWQAAAAACWQAAAAACYAAAAAAAWQAAAAAAHQAAAAABWQAAAAAAHQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACHQAAAAABHQAAAAADHQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACHQAAAAABHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: WQAAAAADWQAAAAABWQAAAAADHQAAAAACZAAAAAACZAAAAAADZAAAAAABZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAACZAAAAAACZAAAAAABWQAAAAAAWQAAAAABWQAAAAACHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACaQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAAAZwAAAAADLwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADaAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAADZwAAAAACLwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAACZwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAABZwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAdgAAAAADeQAAAAAAIgAAAAADIgAAAAACIgAAAAAAIgAAAAACIgAAAAABIgAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAABIgAAAAADIgAAAAADIgAAAAACeQAAAAAAIQAAAAADIQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAACIgAAAAABeQAAAAAAIQAAAAACIgAAAAAAWQAAAAADYAAAAAAAWQAAAAAAHQAAAAADdgAAAAAAdgAAAAADeQAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAABIgAAAAADeQAAAAAAIQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACIgAAAAAAIgAAAAADIgAAAAACIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAZAAAAAACeQAAAAAAIgAAAAAAIgAAAAABIgAAAAACIgAAAAACIgAAAAABIgAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAABaQAAAAAAZAAAAAAAeQAAAAAAIgAAAAABIgAAAAABIgAAAAABIgAAAAADIgAAAAACIgAAAAABHQAAAAABHQAAAAACHQAAAAACWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAACHQAAAAAAeQAAAAAA
+ tiles: WQAAAAACWQAAAAACWQAAAAABHQAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAABZAAAAAABZAAAAAAAWQAAAAACWQAAAAADWQAAAAADHQAAAAACWQAAAAABWQAAAAADWQAAAAABYAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAADZwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAAAZwAAAAADLwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAABZwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADaQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAZwAAAAABZwAAAAABLwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAIgAAAAABIgAAAAACIgAAAAAAIgAAAAABIgAAAAADIgAAAAACeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAACIgAAAAABIgAAAAABeQAAAAAAIQAAAAACIQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAACeQAAAAAAIQAAAAACIgAAAAABWQAAAAABYAAAAAAAWQAAAAACHQAAAAABdgAAAAABdgAAAAADeQAAAAAAIgAAAAAAIgAAAAADIgAAAAACIgAAAAAAIgAAAAABIgAAAAABeQAAAAAAIQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAABIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAATAAAAAABTAAAAAADIgAAAAAAIgAAAAADTAAAAAACTAAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAACaQAAAAAAZAAAAAADeQAAAAAATAAAAAABTAAAAAAAIgAAAAADIgAAAAADTAAAAAABTAAAAAAAHQAAAAADHQAAAAABHQAAAAACWQAAAAADYAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAZAAAAAACeQAAAAAATAAAAAACTAAAAAADIgAAAAADIgAAAAADTAAAAAACTAAAAAAAHQAAAAABHQAAAAAAeQAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: YAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAZAAAAAACeQAAAAAAIQAAAAADIQAAAAABIQAAAAADIQAAAAABIQAAAAACIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAACZAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABZAAAAAACIgAAAAAAIgAAAAACHQAAAAABIgAAAAAAIgAAAAADHQAAAAADIgAAAAAAIgAAAAACZAAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADXgAAAAACXgAAAAABZAAAAAAAIgAAAAADIgAAAAACHQAAAAACIgAAAAAAIgAAAAACHQAAAAABIgAAAAABIgAAAAAAZAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABXgAAAAADXgAAAAADZAAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADZAAAAAABHQAAAAAAYAAAAAAAWQAAAAACWQAAAAADXgAAAAAAXgAAAAAAZAAAAAAAIgAAAAAAIgAAAAACHQAAAAAAIgAAAAAAIgAAAAABHQAAAAAAIgAAAAADIgAAAAADZAAAAAACHQAAAAADYAAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABZAAAAAABIgAAAAAAIgAAAAADHQAAAAABIgAAAAACIgAAAAADHQAAAAACIgAAAAACIgAAAAADZAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAADZAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABHQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAABZAAAAAACIgAAAAABIgAAAAABIgAAAAADZAAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: YAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAZAAAAAACeQAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAACIQAAAAABIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAAAZAAAAAABZAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADZAAAAAAAIgAAAAACIgAAAAACHQAAAAADIgAAAAADIgAAAAADHQAAAAACIgAAAAAAIgAAAAABZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAXgAAAAABXgAAAAACZAAAAAAAIgAAAAACIgAAAAACHQAAAAADIgAAAAABIgAAAAABHQAAAAAAIgAAAAADIgAAAAAAZAAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAABXgAAAAABXgAAAAAAZAAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACZAAAAAADHQAAAAABYAAAAAAAWQAAAAADWQAAAAAAXgAAAAABXgAAAAABZAAAAAABIgAAAAACIgAAAAACHQAAAAADIgAAAAABIgAAAAABHQAAAAABIgAAAAAAIgAAAAADZAAAAAADHQAAAAABYAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAZAAAAAABIgAAAAABIgAAAAABHQAAAAACIgAAAAABIgAAAAACHQAAAAACIgAAAAADIgAAAAADZAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAABZAAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACZAAAAAADZAAAAAABZAAAAAABZAAAAAAAZAAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAABZAAAAAABIgAAAAACIgAAAAABIgAAAAABZAAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAagAAAAAAagAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAagAAAAACagAAAAACWQAAAAABAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAagAAAAAAagAAAAAAWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAZgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABHQAAAAACZgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAADHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAagAAAAABagAAAAAAWQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAagAAAAABagAAAAACWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAagAAAAAAagAAAAABWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACHQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAZgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAAAZgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAagAAAAACYAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAHQAAAAACYAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACYAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADWQAAAAABYAAAAAAAWQAAAAACWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACHQAAAAADWQAAAAADAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABYAAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAADWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAagAAAAABYAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADYAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAABYAAAAAAAWQAAAAADWQAAAAADWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADHQAAAAAAWQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAAAWQAAAAADWQAAAAADHQAAAAABWQAAAAAD
version: 6
-5,-1:
ind: -5,-1
@@ -383,67 +383,67 @@ entities:
version: 6
-5,-2:
ind: -5,-2
- tiles: eAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAADaQAAAAAAWQAAAAABaQAAAAAAWQAAAAABaQAAAAAAHQAAAAACHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAHQAAAAACaAAAAAAAHQAAAAABaAAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAYAAAAAAAHQAAAAABHQAAAAADHQAAAAABYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAADHQAAAAADHQAAAAADYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAYAAAAAAAHQAAAAABeQAAAAAAHQAAAAABYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACHQAAAAAAYAAAAAAAHQAAAAACHQAAAAABHQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACHQAAAAAAYAAAAAAAHQAAAAADHQAAAAADHQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAHQAAAAAAHQAAAAABHQAAAAACaQAAAAAAWQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAHQAAAAABHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAHQAAAAADeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABaQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAADaQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAYAAAAAAAHQAAAAACHQAAAAADHQAAAAADYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADYAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAHQAAAAABeQAAAAAAHQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABHQAAAAADYAAAAAAAHQAAAAADHQAAAAAAHQAAAAADYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACHQAAAAAAYAAAAAAAHQAAAAAAHQAAAAABHQAAAAADYAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-3:
ind: -5,-3
- tiles: eAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABaQAAAAAAWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACHQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAABeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAC
+ tiles: eAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABaQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeAAAAAAAeQAAAAAAWQAAAAADaQAAAAAAWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACaQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADaQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAB
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAACwAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAABeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAACwAAAAAAWQAAAAADWQAAAAAACwAAAAAACwAAAAAAaQAAAAAAaQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACagAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACHQAAAAABWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAKAAAAAABKAAAAAACKAAAAAAAKAAAAAABKAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAKAAAAAAAKAAAAAACKAAAAAACKAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAKAAAAAABKAAAAAACKAAAAAABKAAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAADWQAAAAACCwAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAACwAAAAAAWQAAAAACWQAAAAABCwAAAAAACwAAAAAAaQAAAAAAaQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADagAAAAACYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAAWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAKAAAAAABKAAAAAABKAAAAAADKAAAAAADKAAAAAABeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAKAAAAAABKAAAAAACKAAAAAABKAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAKAAAAAAAKAAAAAACKAAAAAABKAAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAA
version: 6
-4,-6:
ind: -4,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAHQAAAAAAIQAAAAABeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAHQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAHQAAAAABIQAAAAACeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAeQAAAAAACwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAACwAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAHQAAAAADIQAAAAABeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAHQAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAHQAAAAADIQAAAAABeQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAACwAAAAAAeQAAAAAACwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAACwAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAA
version: 6
-3,-6:
ind: -3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAagAAAAACeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAagAAAAACaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAagAAAAABYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAACwAAAAAAWQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAACwAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAADCwAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAACwAAAAAAWQAAAAABWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAACagAAAAAACwAAAAAAWQAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADCwAAAAAAeQAAAAAAWQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAagAAAAADaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAagAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAABCwAAAAAAWQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAACwAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAABCwAAAAAAWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAACwAAAAAAWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAACwAAAAAAWQAAAAABWQAAAAAAWQAAAAADagAAAAADCwAAAAAAWQAAAAADWQAAAAABYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACCwAAAAAAeQAAAAAAWQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACXgAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAXgAAAAAC
version: 6
-4,0:
ind: -4,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAACYAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAWQAAAAABYAAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAADaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAADHQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAagAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAagAAAAAAWQAAAAADdgAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABagAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADAAAAAAAAeQAAAAAAagAAAAADagAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAWQAAAAACWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACWQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAHQAAAAACWQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAagAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAABagAAAAACagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAagAAAAABWQAAAAADdgAAAAACeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAaQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAABYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABAAAAAAAAeQAAAAAAagAAAAABagAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAABdgAAAAACdgAAAAABWQAAAAAAWQAAAAADWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACWQAAAAABWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADWQAAAAACWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAagAAAAADagAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAagAAAAACagAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAACLwAAAAAALwAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAagAAAAACaAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADLwAAAAAALwAAAAAAeQAAAAAAWQAAAAACHQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADKAAAAAABLwAAAAAALwAAAAAAeQAAAAAAWQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAABLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAABKAAAAAACLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAADAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAACAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAACAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADHQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADHQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAAC
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAABLwAAAAAALwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAagAAAAABaAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADLwAAAAAALwAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAACKAAAAAADLwAAAAAALwAAAAAAeQAAAAAAWQAAAAABHQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAADKAAAAAABKAAAAAAAKAAAAAACKAAAAAABKAAAAAAAKAAAAAACLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKAAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAWQAAAAADAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAABHQAAAAACaQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAABHQAAAAACaQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADHQAAAAAA
version: 6
-3,2:
ind: -3,2
- tiles: XgAAAAAAXgAAAAACZAAAAAAAIgAAAAACIgAAAAAAIgAAAAABZAAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAACZAAAAAAAIgAAAAADIgAAAAABIgAAAAABZAAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAZAAAAAABZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAagAAAAABagAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XgAAAAACXgAAAAAAZAAAAAADIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAACZAAAAAABIgAAAAABIgAAAAADIgAAAAAAZAAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAYAAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAdgAAAAABeQAAAAAAeQAAAAAAagAAAAAAagAAAAACeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAWQAAAAABYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADWQAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAZAAAAAACZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAADWQAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAADZAAAAAADZAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAA
version: 6
-3,3:
ind: -3,3
- tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAACQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAHBwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAACBwAAAAACCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAEBwAAAAAKBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAICQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAKBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAA
version: 6
-3,4:
ind: -3,4
- tiles: BwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAACQAAAAAABwAAAAAHBwAAAAAABwAAAAAEBwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAALAAAAAAAAeAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAEBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,4:
ind: -4,4
- tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAECQAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAKBwAAAAAACQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-7:
ind: 1,-7
@@ -451,35 +451,35 @@ entities:
version: 6
3,2:
ind: 3,2
- tiles: YAAAAAAAagAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADagAAAAADYAAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAYAAAAAAAdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAagAAAAADaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAagAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAWQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAALAAAAAAAAeQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAWQAAAAADWQAAAAACaQAAAAAAagAAAAAAaQAAAAAAagAAAAAAaQAAAAAAagAAAAAAaQAAAAAAagAAAAADaQAAAAAAagAAAAACagAAAAAAegAAAAAABwAAAAAABwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAegAAAAAAegAAAAAABwAAAAAIWQAAAAACWQAAAAADaQAAAAAAagAAAAABaQAAAAAAagAAAAAAaQAAAAAAagAAAAABaQAAAAAAagAAAAAAaQAAAAAAagAAAAAAagAAAAABegAAAAAABwAAAAADCQAAAAAA
+ tiles: YAAAAAAAagAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADagAAAAAAYAAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADYAAAAAAAdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAagAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAagAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAaAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAABWQAAAAAAaQAAAAAAagAAAAACaQAAAAAAagAAAAACaQAAAAAAagAAAAADaQAAAAAAagAAAAAAaQAAAAAAagAAAAADagAAAAACegAAAAAABwAAAAAABwAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAegAAAAAAegAAAAAABwAAAAAAWQAAAAACWQAAAAABaQAAAAAAagAAAAADaQAAAAAAagAAAAACaQAAAAAAagAAAAAAaQAAAAAAagAAAAACaQAAAAAAagAAAAACagAAAAADegAAAAAABwAAAAAACQAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAADeQAAAAAAdgAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABdgAAAAADdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAABTAAAAAAATAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAABLQAAAAADLQAAAAADLQAAAAACTAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAAATAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAAALQAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAACTAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAABeQAAAAAAdgAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAABTAAAAAACTAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAABLQAAAAACLQAAAAAALQAAAAABTAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAADTAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAADLQAAAAACLQAAAAABLQAAAAACLQAAAAABLQAAAAAATAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: WQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAYAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAADYAAAAAAAagAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADaAAAAAAAeQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAagAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAHQAAAAACeQAAAAAAYAAAAAAAWQAAAAACagAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAagAAAAACeQAAAAAAagAAAAACWQAAAAABHQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAWQAAAAABWQAAAAABaAAAAAAAagAAAAADWQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABaAAAAAAAeQAAAAAABwAAAAAABwAAAAAGBwAAAAAIBwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAaAAAAAAAYAAAAAAAWQAAAAACaAAAAAAAaAAAAAAAWQAAAAACeQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAADYAAAAAAAagAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAeQAAAAAAeQAAAAAAagAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAHQAAAAACeQAAAAAAYAAAAAAAWQAAAAACagAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAagAAAAABeQAAAAAAagAAAAADWQAAAAADHQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAYAAAAAAAWQAAAAABWQAAAAABaAAAAAAAagAAAAAAWQAAAAABYAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,4:
ind: -2,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAYwAAAAABaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAYwAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,4:
ind: -1,4
- tiles: eQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAWQAAAAACHQAAAAACYwAAAAACHQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAAANgAAAAAAIAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADHQAAAAADNgAAAAAAIAAAAAACEQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAAANgAAAAAAIAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADNgAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADHQAAAAADeQAAAAAAHQAAAAABAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIQAAAAADIQAAAAABHQAAAAABWQAAAAABHQAAAAABYwAAAAAAHQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACNgAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAACHQAAAAABNgAAAAAAIAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAABHQAAAAACNgAAAAAAIAAAAAADEQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAADHQAAAAABNgAAAAAAIAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABNgAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAABeQAAAAAAHQAAAAADAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,3:
ind: 4,3
- tiles: BwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAACQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,2:
ind: 4,2
- tiles: eQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAHQAAAAACeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAFBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAACHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAADeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,4:
ind: 0,4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADIQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABNgAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADNgAAAAAAHQAAAAADWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABNgAAAAAAHQAAAAAAWQAAAAACHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACNgAAAAAAHQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABNgAAAAAAWQAAAAACWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACNgAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAANgAAAAAAHQAAAAADWQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADNgAAAAAAHQAAAAABWQAAAAACHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAANgAAAAAAHQAAAAABWQAAAAACHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACNgAAAAAAWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,2:
ind: 5,2
@@ -491,15 +491,15 @@ entities:
version: 6
-1,-7:
ind: -1,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADYAAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACYAAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA
version: 6
-2,-7:
ind: -2,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAagAAAAACYAAAAAAAWQAAAAADYAAAAAAAaAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAYAAAAAAAWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAagAAAAADYAAAAAAAWQAAAAAAYAAAAAAAaAAAAAAAeQAAAAAA
version: 6
-3,-7:
ind: -3,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAagAAAAABaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABagAAAAADaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA
version: 6
-5,-4:
ind: -5,-4
@@ -507,11 +507,11 @@ entities:
version: 6
5,-4:
ind: 5,-4
- tiles: BwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-5:
ind: 5,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-4:
ind: -6,-4
@@ -527,7 +527,7 @@ entities:
version: 6
2,4:
ind: 2,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAATAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAACLQAAAAABLQAAAAACLQAAAAACTAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAADTAAAAAABTAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAADLQAAAAACTAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAABLQAAAAACLQAAAAABLQAAAAADTAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATAAAAAACTAAAAAADTAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -549,23 +549,23 @@ entities:
color: '#FFFFFFFF'
id: Arrows
decals:
- 3618: 6,-71
- 3619: -14,-16
- 3866: -69,-45
- 3879: 1,-2
+ 3609: 6,-71
+ 3610: -14,-16
+ 3857: -69,-45
+ 3870: 1,-2
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 3911: -71,-45
+ 3902: -71,-45
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 3141: 67,-46
- 3142: 67,-47
+ 3140: 67,-46
+ 3141: 67,-47
- node:
color: '#FFFFFFFF'
id: Bot
@@ -642,71 +642,71 @@ entities:
563: -38,42
603: -36,-101
604: 67,-16
- 3030: 73,-37
- 3031: 73,-36
- 3032: 72,-36
- 3033: 73,-35
- 3099: -52,-59
- 3120: 68,-69
- 3135: 69,-46
- 3136: 69,-47
- 3137: 70,-46
- 3138: 70,-47
- 3312: -47,-41
- 3317: -12,-14
- 3455: 33,-83
- 3456: 33,-90
- 3457: 30,-95
- 3458: 48,-95
- 3459: 45,-90
- 3460: 45,-83
- 3568: -58,-19
- 3569: -18,69
- 3616: 6,-86
- 3628: -53,43
- 3629: -53,42
- 3630: -50,46
- 3669: 68,-29
- 3674: 68,-28
- 3675: 69,-29
- 3676: 67,-29
- 3677: 68,-30
- 3678: 51,-83
- 3679: 51,-90
- 3762: -77,-32
- 3767: -64,-46
- 3855: -67,-43
- 3873: -47,-40
- 3875: 1,-3
- 3876: 2,-3
- 3877: 3,-3
+ 3029: 73,-37
+ 3030: 73,-36
+ 3031: 72,-36
+ 3032: 73,-35
+ 3098: -52,-59
+ 3119: 68,-69
+ 3134: 69,-46
+ 3135: 69,-47
+ 3136: 70,-46
+ 3137: 70,-47
+ 3311: -47,-41
+ 3316: -12,-14
+ 3454: 33,-83
+ 3455: 33,-90
+ 3456: 30,-95
+ 3457: 48,-95
+ 3458: 45,-90
+ 3459: 45,-83
+ 3559: -58,-19
+ 3560: -18,69
+ 3607: 6,-86
+ 3619: -53,43
+ 3620: -53,42
+ 3621: -50,46
+ 3660: 68,-29
+ 3665: 68,-28
+ 3666: 69,-29
+ 3667: 67,-29
+ 3668: 68,-30
+ 3669: 51,-83
+ 3670: 51,-90
+ 3753: -77,-32
+ 3758: -64,-46
+ 3846: -67,-43
+ 3864: -47,-40
+ 3866: 1,-3
+ 3867: 2,-3
+ 3868: 3,-3
- node:
color: '#60A5D9D6'
id: BotGreyscale
decals:
- 3407: -25,-60
+ 3406: -25,-60
- node:
color: '#FFFFFFFF'
id: BotLeft
decals:
206: -19,3
207: -21,1
- 3028: 72,-37
- 3670: 67,-28
- 3671: 69,-30
- 3672: 67,-30
- 3673: 69,-28
- 3864: -69,-45
- 3909: -71,-45
+ 3027: 72,-37
+ 3661: 67,-28
+ 3662: 69,-30
+ 3663: 67,-30
+ 3664: 69,-28
+ 3855: -69,-45
+ 3900: -71,-45
- node:
color: '#FFFFFFFF'
id: BotRight
decals:
204: -21,3
205: -19,1
- 3029: 72,-35
- 3865: -69,-45
- 3910: -71,-45
+ 3028: 72,-35
+ 3856: -69,-45
+ 3901: -71,-45
- node:
color: '#FFFFFFFF'
id: Box
@@ -716,309 +716,309 @@ entities:
201: -21,2
202: -19,2
203: -20,1
- 3617: 7,-83
+ 3608: 7,-83
- node:
color: '#FFFFFFFF'
id: BoxGreyscale
decals:
- 3916: 10,23
- 3917: 11,23
+ 3907: 10,23
+ 3908: 11,23
- node:
color: '#D4D4D4D6'
id: BrickTileSteelCornerNe
decals:
- 3338: 30,4
+ 3337: 30,4
- node:
color: '#D4D4D4D6'
id: BrickTileSteelCornerNw
decals:
- 3337: 28,4
+ 3336: 28,4
- node:
color: '#D4D4D4D6'
id: BrickTileSteelCornerSe
decals:
- 3336: 30,-1
+ 3335: 30,-1
- node:
color: '#D4D4D4D6'
id: BrickTileSteelEndS
decals:
- 3333: 28,-3
+ 3332: 28,-3
- node:
color: '#D4D4D4D6'
id: BrickTileSteelInnerNe
decals:
- 3370: 20,-3
+ 3369: 20,-3
- node:
color: '#D4D4D4D6'
id: BrickTileSteelInnerNw
decals:
- 3372: 27,-3
+ 3371: 27,-3
- node:
color: '#D4D4D4D6'
id: BrickTileSteelInnerSe
decals:
- 3344: 28,-1
- 3371: 20,4
+ 3343: 28,-1
+ 3370: 20,4
- node:
color: '#D4D4D4D6'
id: BrickTileSteelInnerSw
decals:
- 3369: 27,4
+ 3368: 27,4
- node:
color: '#D4D4D4D6'
id: BrickTileSteelLineE
decals:
- 3334: 28,-2
- 3339: 30,3
- 3340: 30,2
- 3341: 30,1
- 3342: 30,0
- 3357: 20,3
- 3358: 20,2
- 3359: 20,1
- 3360: 20,0
- 3361: 20,-1
- 3362: 20,-2
+ 3333: 28,-2
+ 3338: 30,3
+ 3339: 30,2
+ 3340: 30,1
+ 3341: 30,0
+ 3356: 20,3
+ 3357: 20,2
+ 3358: 20,1
+ 3359: 20,0
+ 3360: 20,-1
+ 3361: 20,-2
- node:
color: '#D4D4D4D6'
id: BrickTileSteelLineN
decals:
- 3343: 29,4
- 3363: 21,-3
- 3364: 22,-3
- 3365: 23,-3
- 3366: 24,-3
- 3367: 25,-3
- 3368: 26,-3
+ 3342: 29,4
+ 3362: 21,-3
+ 3363: 22,-3
+ 3364: 23,-3
+ 3365: 24,-3
+ 3366: 25,-3
+ 3367: 26,-3
- node:
color: '#D4D4D4D6'
id: BrickTileSteelLineS
decals:
- 3335: 29,-1
- 3351: 26,4
- 3352: 25,4
- 3353: 24,4
- 3354: 23,4
- 3355: 22,4
- 3356: 21,4
+ 3334: 29,-1
+ 3350: 26,4
+ 3351: 25,4
+ 3352: 24,4
+ 3353: 23,4
+ 3354: 22,4
+ 3355: 21,4
- node:
color: '#D4D4D4D6'
id: BrickTileSteelLineW
decals:
- 3327: 28,-2
- 3328: 28,3
- 3329: 28,2
- 3330: 28,1
- 3331: 28,0
- 3332: 28,-1
- 3345: 27,3
- 3346: 27,2
- 3347: 27,1
- 3348: 27,0
- 3349: 27,-1
- 3350: 27,-2
+ 3326: 28,-2
+ 3327: 28,3
+ 3328: 28,2
+ 3329: 28,1
+ 3330: 28,0
+ 3331: 28,-1
+ 3344: 27,3
+ 3345: 27,2
+ 3346: 27,1
+ 3347: 27,0
+ 3348: 27,-1
+ 3349: 27,-2
- node:
color: '#334E6DC8'
id: BrickTileWhiteBox
decals:
- 3575: 9,-21
+ 3566: 9,-21
- node:
color: '#3AB3DAFF'
id: BrickTileWhiteBox
decals:
- 3437: -19,-47
+ 3436: -19,-47
- node:
color: '#3C44AAFF'
id: BrickTileWhiteBox
decals:
- 3434: -19,-49
+ 3433: -19,-49
- node:
color: '#52B4E996'
id: BrickTileWhiteBox
decals:
- 3571: 9,-23
+ 3562: 9,-23
- node:
color: '#80C71FFF'
id: BrickTileWhiteBox
decals:
- 3436: -19,-48
+ 3435: -19,-48
- node:
color: '#835432FF'
id: BrickTileWhiteBox
decals:
- 3432: -22,-47
+ 3431: -22,-47
- node:
color: '#9D9D97FF'
id: BrickTileWhiteBox
decals:
- 3435: -19,-46
+ 3434: -19,-46
- node:
color: '#9FED5896'
id: BrickTileWhiteBox
decals:
- 3573: 11,-23
+ 3564: 11,-23
- node:
color: '#A4610696'
id: BrickTileWhiteBox
decals:
- 3574: 8,-21
+ 3565: 8,-21
- node:
color: '#B02E26FF'
id: BrickTileWhiteBox
decals:
- 3433: -22,-49
+ 3432: -22,-49
- node:
color: '#C74EBDFF'
id: BrickTileWhiteBox
decals:
- 3431: -22,-46
+ 3430: -22,-46
- node:
color: '#D381C996'
id: BrickTileWhiteBox
decals:
- 3570: 8,-23
+ 3561: 8,-23
- node:
color: '#D4D4D496'
id: BrickTileWhiteBox
decals:
- 3576: 10,-21
+ 3567: 10,-21
- node:
color: '#DE3A3A96'
id: BrickTileWhiteBox
decals:
- 3572: 10,-23
+ 3563: 10,-23
- node:
color: '#EFB34196'
id: BrickTileWhiteBox
decals:
- 3577: 11,-21
+ 3568: 11,-21
- node:
color: '#FEAC3DFF'
id: BrickTileWhiteBox
decals:
- 3438: -22,-48
+ 3437: -22,-48
- node:
color: '#FFA5180C'
id: BrickTileWhiteBox
decals:
- 3786: -42,0
+ 3777: -42,0
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNe
decals:
- 3578: 12,-20
+ 3569: 12,-20
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteCornerNe
decals:
- 4030: 26,3
+ 4021: 26,3
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNw
decals:
- 3581: 7,-20
+ 3572: 7,-20
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteCornerNw
decals:
- 4031: 21,3
+ 4022: 21,3
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSe
decals:
- 3579: 12,-24
+ 3570: 12,-24
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteCornerSe
decals:
- 4028: 26,-2
+ 4019: 26,-2
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSw
decals:
- 3580: 7,-24
+ 3571: 7,-24
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteCornerSw
decals:
- 4029: 21,-2
+ 4020: 21,-2
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineE
decals:
- 3586: 12,-21
- 3587: 12,-22
- 3588: 12,-23
+ 3577: 12,-21
+ 3578: 12,-22
+ 3579: 12,-23
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteLineE
decals:
- 4032: 26,2
- 4033: 26,1
- 4034: 26,0
- 4035: 26,-1
+ 4023: 26,2
+ 4024: 26,1
+ 4025: 26,0
+ 4026: 26,-1
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineN
decals:
- 3582: 8,-20
- 3583: 9,-20
- 3584: 10,-20
- 3585: 11,-20
+ 3573: 8,-20
+ 3574: 9,-20
+ 3575: 10,-20
+ 3576: 11,-20
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteLineN
decals:
- 4024: 22,3
- 4025: 23,3
- 4026: 24,3
- 4027: 25,3
+ 4015: 22,3
+ 4016: 23,3
+ 4017: 24,3
+ 4018: 25,3
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineS
decals:
- 3592: 8,-24
- 3593: 9,-24
- 3594: 10,-24
- 3595: 11,-24
+ 3583: 8,-24
+ 3584: 9,-24
+ 3585: 10,-24
+ 3586: 11,-24
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteLineS
decals:
- 4040: 22,-2
- 4041: 23,-2
- 4042: 24,-2
- 4043: 25,-2
+ 4031: 22,-2
+ 4032: 23,-2
+ 4033: 24,-2
+ 4034: 25,-2
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineW
decals:
- 3589: 7,-21
- 3590: 7,-22
- 3591: 7,-23
+ 3580: 7,-21
+ 3581: 7,-22
+ 3582: 7,-23
- node:
cleanable: True
color: '#334E6DFF'
id: BrickTileWhiteLineW
decals:
- 4036: 21,2
- 4037: 21,1
- 4038: 21,0
- 4039: 21,-1
+ 4027: 21,2
+ 4028: 21,1
+ 4029: 21,0
+ 4030: 21,-1
- node:
color: '#FFFFFFFF'
id: Busha1
decals:
502: -8.396269,51.324306
503: -8.978583,51.511806
- 2939: 5.324413,-0.030564666
+ 2938: 5.324413,-0.030564666
- node:
color: '#FFFFFFFF'
id: Busha2
@@ -1054,8 +1054,8 @@ entities:
color: '#FFFFFFFF'
id: Bushe4
decals:
- 3026: -11.957823,6.4384537
- 3027: -4.0984473,3.9853287
+ 3025: -11.957823,6.4384537
+ 3026: -4.0984473,3.9853287
- node:
color: '#FFFFFFFF'
id: Bushi1
@@ -1064,11 +1064,6 @@ entities:
495: -5.541854,51.452797
496: -5.448104,50.905922
497: -6.7868943,51.465733
- - node:
- color: '#FFFFFFFF'
- id: Bushi2
- decals:
- 3461: 33.10084,-87.77701
- node:
color: '#FFFFFFFF'
id: Bushi3
@@ -1090,7 +1085,7 @@ entities:
color: '#FFFFFFFF'
id: Caution
decals:
- 3085: 16.006746,36.692352
+ 3084: 16.006746,36.692352
- node:
color: '#334E6DC8'
id: CheckerNESW
@@ -1137,7 +1132,7 @@ entities:
color: '#DE3A3A53'
id: CheckerNWSE
decals:
- 3111: 29,32
+ 3110: 29,32
- node:
color: '#DE3A3A5A'
id: CheckerNWSE
@@ -1171,8 +1166,8 @@ entities:
color: '#FFFFFFFF'
id: Delivery
decals:
- 3878: 4,-3
- 3908: -70,-45
+ 3869: 4,-3
+ 3899: -70,-45
- node:
cleanable: True
color: '#DE3A3A96'
@@ -1184,66 +1179,66 @@ entities:
color: '#0F267C34'
id: DiagonalCheckerBOverlay
decals:
- 3831: -25,-33
- 3832: -25,-34
- 3833: -24,-34
- 3834: -24,-33
- 3835: -26,-33
- 3836: -26,-34
- 3837: -26,-32
- 3838: -25,-32
- 3839: -24,-32
- 3840: -23,-32
- 3841: -23,-33
- 3842: -23,-34
- 3843: -23,-36
- 3844: -23,-35
- 3845: -24,-35
- 3846: -24,-36
- 3847: -24,-37
- 3848: -23,-37
- 3849: -25,-37
- 3850: -26,-37
- 3851: -26,-36
- 3852: -25,-36
- 3853: -25,-35
- 3854: -26,-35
+ 3822: -25,-33
+ 3823: -25,-34
+ 3824: -24,-34
+ 3825: -24,-33
+ 3826: -26,-33
+ 3827: -26,-34
+ 3828: -26,-32
+ 3829: -25,-32
+ 3830: -24,-32
+ 3831: -23,-32
+ 3832: -23,-33
+ 3833: -23,-34
+ 3834: -23,-36
+ 3835: -23,-35
+ 3836: -24,-35
+ 3837: -24,-36
+ 3838: -24,-37
+ 3839: -23,-37
+ 3840: -25,-37
+ 3841: -26,-37
+ 3842: -26,-36
+ 3843: -25,-36
+ 3844: -25,-35
+ 3845: -26,-35
- node:
color: '#923A3A93'
id: DiagonalCheckerBOverlay
decals:
- 3682: -1,17
- 3683: -1,18
- 3684: -2,18
- 3685: -2,19
- 3686: -2,20
- 3687: -1,21
- 3688: -1,20
- 3689: -1,19
- 3690: 0,21
- 3691: 0,20
- 3692: 0,18
- 3693: 0,19
- 3694: 0,17
- 3695: 0,16
- 3696: 2,16
- 3697: 1,16
- 3698: 1,17
- 3699: 2,17
- 3700: 2,18
- 3701: 1,18
- 3702: 1,20
- 3703: 1,19
- 3704: 2,19
- 3705: 2,20
- 3706: 2,21
- 3707: 1,21
+ 3673: -1,17
+ 3674: -1,18
+ 3675: -2,18
+ 3676: -2,19
+ 3677: -2,20
+ 3678: -1,21
+ 3679: -1,20
+ 3680: -1,19
+ 3681: 0,21
+ 3682: 0,20
+ 3683: 0,18
+ 3684: 0,19
+ 3685: 0,17
+ 3686: 0,16
+ 3687: 2,16
+ 3688: 1,16
+ 3689: 1,17
+ 3690: 2,17
+ 3691: 2,18
+ 3692: 1,18
+ 3693: 1,20
+ 3694: 1,19
+ 3695: 2,19
+ 3696: 2,20
+ 3697: 2,21
+ 3698: 1,21
- node:
color: '#983A3A93'
id: DiagonalCheckerBOverlay
decals:
- 3708: -1,16
- 3709: -2,21
+ 3699: -1,16
+ 3700: -2,21
- node:
cleanable: True
color: '#D4D4D496'
@@ -1378,8 +1373,8 @@ entities:
color: '#D4D4D4D6'
id: DirtLight
decals:
+ 3372: 29,3
3373: 29,3
- 3374: 29,3
- node:
color: '#FFFFFFFF'
id: DirtLight
@@ -1458,8 +1453,8 @@ entities:
color: '#D4D4D4D6'
id: DirtMedium
decals:
- 3375: 30,-1
- 3376: 27,-2
+ 3374: 30,-1
+ 3375: 27,-2
- node:
color: '#FFFFFFFF'
id: DirtMedium
@@ -1522,15 +1517,15 @@ entities:
color: '#FFFFFFFF'
id: FlowersBROne
decals:
- 3758: -4.2428155,17.233944
- 3759: -8.086565,18.640194
+ 3749: -4.2428155,17.233944
+ 3750: -8.086565,18.640194
- node:
color: '#FFFFFFFF'
id: Flowersbr1
decals:
19: 23,-20
- 3760: -8.649066,17.499569
- 3761: -5.2115655,18.499569
+ 3751: -8.649066,17.499569
+ 3752: -5.2115655,18.499569
- node:
color: '#FFFFFFFF'
id: Flowersbr2
@@ -1558,28 +1553,26 @@ entities:
color: '#FFFFFFFF'
id: Flowersbr3
decals:
- 3382: -40.519615,3.8355665
- 3383: -41.269615,3.0543165
- 3384: -40.25399,5.8355665
+ 3381: -40.519615,3.8355665
+ 3382: -41.269615,3.0543165
+ 3383: -40.25399,5.8355665
- node:
color: '#FFFFFFFF'
id: Flowerspv1
decals:
21: 26,-20
22: 29,-20
- 3393: -35.06649,3.0386915
- 3394: -36.59774,5.4761915
- 3395: -32.2259,5.128909
- 3396: -32.647774,3.019534
- 3397: -31.054026,2.972659
+ 3392: -35.06649,3.0386915
+ 3393: -36.59774,5.4761915
+ 3394: -32.2259,5.128909
+ 3395: -32.647774,3.019534
+ 3396: -31.054026,2.972659
- node:
color: '#FFFFFFFF'
id: Flowersy1
decals:
20: 21,-20
23: 28,-20
- 3467: 45.435932,-87.78455
- 3468: 45.123432,-85.4408
- node:
color: '#FFFFFFFF'
id: Flowersy2
@@ -1595,9 +1588,9 @@ entities:
color: '#2B3F4A22'
id: FullTileOverlayGreyscale
decals:
- 3827: -31,-4
- 3828: -29,-3
- 3829: -31,-7
+ 3818: -31,-4
+ 3819: -29,-3
+ 3820: -31,-7
- node:
color: '#D4D4D496'
id: FullTileOverlayGreyscale
@@ -1633,33 +1626,24 @@ entities:
color: '#FFFFFFFF'
id: Grassa1
decals:
- 3377: -40.269615,3.5386915
- 3378: -41.50399,4.0230665
- 3398: -30.3509,4.378909
- 3399: -29.50715,3.753909
- 3400: -30.429026,5.613284
- 3401: -31.5384,5.925784
- 3402: -32.3509,5.816409
- 3403: -29.6634,5.738284
- 3404: -32.710274,3.2350059
- 3740: -8.570941,18.515194
- 3741: -7.4146905,18.405819
- 3742: -7.0709405,17.405819
- 3743: -7.9771905,18.515194
- 3744: -8.649066,17.233944
- 3745: -5.2115655,17.890194
- 3746: -5.6959405,17.249569
- 3747: -4.1803155,17.265194
- 3748: -5.2115655,18.671444
- - node:
- color: '#FFFFFFFF'
- id: Grassa2
- decals:
- 3462: 32.48763,-86.22205
- 3463: 32.909504,-86.76893
- 3464: 44.967182,-87.42518
- 3465: 45.748432,-86.90955
- 3466: 44.967182,-86.36268
+ 3376: -40.269615,3.5386915
+ 3377: -41.50399,4.0230665
+ 3397: -30.3509,4.378909
+ 3398: -29.50715,3.753909
+ 3399: -30.429026,5.613284
+ 3400: -31.5384,5.925784
+ 3401: -32.3509,5.816409
+ 3402: -29.6634,5.738284
+ 3403: -32.710274,3.2350059
+ 3731: -8.570941,18.515194
+ 3732: -7.4146905,18.405819
+ 3733: -7.0709405,17.405819
+ 3734: -7.9771905,18.515194
+ 3735: -8.649066,17.233944
+ 3736: -5.2115655,17.890194
+ 3737: -5.6959405,17.249569
+ 3738: -4.1803155,17.265194
+ 3739: -5.2115655,18.671444
- node:
color: '#FFFFFFFF'
id: Grassa3
@@ -1682,29 +1666,29 @@ entities:
color: '#FFFFFFFF'
id: Grassa4
decals:
- 3385: -36.175865,3.0074415
- 3386: -35.144615,3.8199415
- 3387: -35.394615,4.5855665
- 3388: -34.94149,4.6636915
- 3389: -36.59774,5.5230665
+ 3384: -36.175865,3.0074415
+ 3385: -35.144615,3.8199415
+ 3386: -35.394615,4.5855665
+ 3387: -34.94149,4.6636915
+ 3388: -36.59774,5.5230665
- node:
color: '#FFFFFFFF'
id: Grassb2
decals:
- 3025: -11.879698,6.0478287
+ 3024: -11.879698,6.0478287
- node:
color: '#FFFFFFFF'
id: Grassb5
decals:
- 3749: -5.8053155,18.655819
- 3750: -7.0553155,18.890194
- 3751: -7.2584405,17.108944
- 3752: -7.2740655,17.937069
- 3753: -8.633441,18.968319
- 3754: -5.8834405,17.124569
- 3755: -5.9303155,19.077694
- 3756: -4.1021905,17.968319
- 3757: -4.9615655,17.671444
+ 3740: -5.8053155,18.655819
+ 3741: -7.0553155,18.890194
+ 3742: -7.2584405,17.108944
+ 3743: -7.2740655,17.937069
+ 3744: -8.633441,18.968319
+ 3745: -5.8834405,17.124569
+ 3746: -5.9303155,19.077694
+ 3747: -4.1021905,17.968319
+ 3748: -4.9615655,17.671444
- node:
color: '#FFFFFFFF'
id: Grassc1
@@ -1728,18 +1712,18 @@ entities:
439: 5.9810176,54.171776
440: 7.4810176,55.671776
441: 9.465392,55.265526
- 3379: -41.832115,3.1480665
- 3380: -42.082115,4.5074415
- 3381: -40.425865,5.7261915
- 3390: -36.44149,5.3668165
- 3391: -36.644615,3.3824415
- 3392: -35.37899,3.1168165
+ 3378: -41.832115,3.1480665
+ 3379: -42.082115,4.5074415
+ 3380: -40.425865,5.7261915
+ 3389: -36.44149,5.3668165
+ 3390: -36.644615,3.3824415
+ 3391: -35.37899,3.1168165
- node:
color: '#FFFFFFFF'
id: Grassc4
decals:
377: -5.001564,4.018616
- 3024: -12.004698,6.9072037
+ 3023: -12.004698,6.9072037
- node:
color: '#FFFFFFFF'
id: Grasse2
@@ -1782,14 +1766,14 @@ entities:
550: -8.928438,56.05247
551: -10.678438,55.30247
552: -10.850313,53.86497
- 3728: -8.633441,18.608944
- 3729: -8.617816,17.921444
- 3730: -7.9146905,18.593319
- 3731: -7.3209405,18.265194
- 3732: -4.5709405,18.452694
- 3733: -5.6178155,17.983944
- 3734: -5.7896905,17.421444
- 3735: -4.5084405,17.358944
+ 3719: -8.633441,18.608944
+ 3720: -8.617816,17.921444
+ 3721: -7.9146905,18.593319
+ 3722: -7.3209405,18.265194
+ 3723: -4.5709405,18.452694
+ 3724: -5.6178155,17.983944
+ 3725: -5.7896905,17.421444
+ 3726: -4.5084405,17.358944
- node:
color: '#FFFFFFFF'
id: Grasse3
@@ -1801,14 +1785,14 @@ entities:
446: 11.789851,52.392174
447: 12.117976,52.5328
448: 12.852351,53.9703
- 3736: -7.1178155,17.671444
- 3737: -4.1646905,18.749569
+ 3727: -7.1178155,17.671444
+ 3728: -4.1646905,18.749569
- node:
color: '#50AF7F6F'
id: HalfTileOverlayGreyscale
decals:
- 3680: -8,12
- 3681: -10,12
+ 3671: -8,12
+ 3672: -10,12
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale
@@ -1825,7 +1809,7 @@ entities:
color: '#EFB34150'
id: HalfTileOverlayGreyscale
decals:
- 3019: -16,-5
+ 3018: -16,-5
- node:
color: '#EFB3415A'
id: HalfTileOverlayGreyscale
@@ -1836,12 +1820,12 @@ entities:
color: '#EFB34160'
id: HalfTileOverlayGreyscale
decals:
- 2994: -24,-5
- 2995: -23,-5
- 2996: -21,-5
- 2997: -20,-5
- 2998: -18,-5
- 2999: -17,-5
+ 2993: -24,-5
+ 2994: -23,-5
+ 2995: -21,-5
+ 2996: -20,-5
+ 2997: -18,-5
+ 2998: -17,-5
- node:
color: '#FFFFFF79'
id: HalfTileOverlayGreyscale
@@ -1889,8 +1873,8 @@ entities:
color: '#D4D4D47C'
id: HalfTileOverlayGreyscale180
decals:
- 3310: 5,-60
- 3311: 6,-60
+ 3309: 5,-60
+ 3310: 6,-60
- node:
color: '#D4D4D496'
id: HalfTileOverlayGreyscale180
@@ -1904,22 +1888,22 @@ entities:
id: HalfTileOverlayGreyscale180
decals:
261: -16,6
- 2321: -21,6
- 2322: -24,6
+ 2320: -21,6
+ 2321: -24,6
- node:
color: '#EFB34160'
id: HalfTileOverlayGreyscale180
decals:
- 2984: -22,6
- 2985: -23,6
- 2986: -20,6
+ 2983: -22,6
+ 2984: -23,6
+ 2985: -20,6
- node:
color: '#EFB34163'
id: HalfTileOverlayGreyscale180
decals:
- 2944: -19,6
- 2945: -18,6
- 2946: -17,6
+ 2943: -19,6
+ 2944: -18,6
+ 2945: -17,6
- node:
color: '#FFFFFF79'
id: HalfTileOverlayGreyscale180
@@ -1947,7 +1931,7 @@ entities:
color: '#EFB34153'
id: HalfTileOverlayGreyscale270
decals:
- 3013: -15,5
+ 3012: -15,5
- node:
color: '#EFB3415A'
id: HalfTileOverlayGreyscale270
@@ -1964,7 +1948,7 @@ entities:
color: '#EFB34160'
id: HalfTileOverlayGreyscale270
decals:
- 2992: -15,-4
+ 2991: -15,-4
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale90
@@ -1991,15 +1975,15 @@ entities:
258: -25,1
259: -25,-3
260: -25,-4
- 2320: -25,-2
+ 2319: -25,-2
- node:
color: '#EFB34160'
id: HalfTileOverlayGreyscale90
decals:
- 2988: -25,5
- 2989: -25,4
- 2990: -25,0
- 2991: -25,-1
+ 2987: -25,5
+ 2988: -25,4
+ 2989: -25,0
+ 2990: -25,-1
- node:
color: '#FFFFFF79'
id: HalfTileOverlayGreyscale90
@@ -2009,7 +1993,7 @@ entities:
color: '#FFFFFFFF'
id: HatchSmall
decals:
- 3140: 51,-56
+ 3139: 51,-56
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -2023,69 +2007,69 @@ entities:
color: '#EFB34196'
id: MiniTileCheckerAOverlay
decals:
- 3239: -38,-9
- 3240: -37,-9
- 3241: -37,-10
- 3242: -38,-10
- 3243: -38,-11
- 3244: -37,-11
- 3245: -38,-12
- 3246: -37,-12
- 3247: -38,-8
- 3248: -37,-8
- 3249: -38,-7
- 3250: -37,-7
+ 3238: -38,-9
+ 3239: -37,-9
+ 3240: -37,-10
+ 3241: -38,-10
+ 3242: -38,-11
+ 3243: -37,-11
+ 3244: -38,-12
+ 3245: -37,-12
+ 3246: -38,-8
+ 3247: -37,-8
+ 3248: -38,-7
+ 3249: -37,-7
- node:
color: '#D4D4D406'
id: MiniTileOverlay
decals:
- 3936: -41,15
- 3937: -40,15
- 3938: -40,14
- 3939: -41,14
- 3940: -37,15
- 3941: -36,15
- 3942: -36,14
- 3943: -37,14
- 3944: -37,13
- 3945: -36,13
- 3946: -41,13
- 3947: -40,13
+ 3927: -41,15
+ 3928: -40,15
+ 3929: -40,14
+ 3930: -41,14
+ 3931: -37,15
+ 3932: -36,15
+ 3933: -36,14
+ 3934: -37,14
+ 3935: -37,13
+ 3936: -36,13
+ 3937: -41,13
+ 3938: -40,13
- node:
color: '#D4D4D4C7'
id: MiniTileSteelBox
decals:
- 3000: -20,-6
- 3001: -16,-6
- 3002: -20,7
+ 2999: -20,-6
+ 3000: -16,-6
+ 3001: -20,7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelBox
decals:
- 2283: -24,7
- 2284: -26,3
- 2285: -26,-2
- 2286: -24,-6
- 2287: -14,-2
- 2288: -14,3
- 2289: -16,7
- 2294: 6,-27
- 2295: 3,-27
- 2296: 4,-43
- 2297: 0,-43
- 2298: -10,-43
- 2299: -14,-43
- 2300: -5,-27
+ 2282: -24,7
+ 2283: -26,3
+ 2284: -26,-2
+ 2285: -24,-6
+ 2286: -14,-2
+ 2287: -14,3
+ 2288: -16,7
+ 2293: 6,-27
+ 2294: 3,-27
+ 2295: 4,-43
+ 2296: 0,-43
+ 2297: -10,-43
+ 2298: -14,-43
+ 2299: -5,-27
- node:
color: '#C8C8C8FF'
id: MiniTileSteelCornerNe
decals:
- 3933: -19,-10
+ 3924: -19,-10
- node:
color: '#D4D4D4CD'
id: MiniTileSteelCornerNe
decals:
- 3198: 18,7
+ 3197: 18,7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelCornerNe
@@ -2112,57 +2096,57 @@ entities:
1466: -29,1
1499: -46,1
1504: -45,8
- 1558: -15,47
- 1569: -17,51
- 1588: -22,67
- 1615: -4,-4
- 1675: 1,52
- 1705: 1,59
- 1737: -13,67
- 1802: 30,8
- 1837: 34,8
- 1879: 30,-5
- 1924: 54,2
- 1983: 65,-6
- 1990: 53,-5
- 2022: 16,-21
- 2080: 9,-26
- 2081: 36,-21
- 2130: -3,-41
- 2135: -4,-26
- 2208: 14,1
- 2209: 4,1
- 2210: -3,1
+ 1557: -15,47
+ 1568: -17,51
+ 1587: -22,67
+ 1614: -4,-4
+ 1674: 1,52
+ 1704: 1,59
+ 1736: -13,67
+ 1801: 30,8
+ 1836: 34,8
+ 1878: 30,-5
+ 1923: 54,2
+ 1982: 65,-6
+ 1989: 53,-5
+ 2021: 16,-21
+ 2079: 9,-26
+ 2080: 36,-21
+ 2129: -3,-41
+ 2134: -4,-26
+ 2207: 14,1
+ 2208: 4,1
+ 2209: -3,1
- node:
color: '#DE3A3A96'
id: MiniTileSteelCornerNe
decals:
- 2764: 18,23
+ 2763: 18,23
- node:
color: '#88EFB1D9'
id: MiniTileSteelCornerNw
decals:
- 3021: -28,-78
+ 3020: -28,-78
- node:
color: '#C8C8C8FF'
id: MiniTileSteelCornerNw
decals:
- 3932: -21,-10
+ 3923: -21,-10
- node:
color: '#D4D4D4AE'
id: MiniTileSteelCornerNw
decals:
- 3201: 33,-40
+ 3200: 33,-40
- node:
color: '#D4D4D4B4'
id: MiniTileSteelCornerNw
decals:
- 3307: -7,-41
+ 3306: -7,-41
- node:
color: '#D4D4D4CD'
id: MiniTileSteelCornerNw
decals:
- 3199: 16,7
+ 3198: 16,7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelCornerNw
@@ -2186,39 +2170,39 @@ entities:
1464: -44,1
1498: -48,1
1507: -50,8
- 1559: -19,47
- 1587: -23,67
- 1614: -6,-4
- 1676: -1,52
- 1694: -13,46
- 1717: -11,59
- 1735: -15,51
- 1736: -14,67
- 1793: 16,-6
- 1804: 20,8
- 1838: 32,8
- 1881: 20,-5
- 1906: 36,2
- 1988: 51,-5
- 1989: 49,-8
- 2020: 11,-26
- 2021: 14,-21
- 2079: 0,-26
- 2082: 34,-21
- 2134: -6,-26
- 2207: 13,1
- 2211: -1,1
- 2212: -11,1
+ 1558: -19,47
+ 1586: -23,67
+ 1613: -6,-4
+ 1675: -1,52
+ 1693: -13,46
+ 1716: -11,59
+ 1734: -15,51
+ 1735: -14,67
+ 1792: 16,-6
+ 1803: 20,8
+ 1837: 32,8
+ 1880: 20,-5
+ 1905: 36,2
+ 1987: 51,-5
+ 1988: 49,-8
+ 2019: 11,-26
+ 2020: 14,-21
+ 2078: 0,-26
+ 2081: 34,-21
+ 2133: -6,-26
+ 2206: 13,1
+ 2210: -1,1
+ 2211: -11,1
- node:
color: '#DE3A3A96'
id: MiniTileSteelCornerNw
decals:
- 2765: 14,23
+ 2764: 14,23
- node:
color: '#C8C8C8FF'
id: MiniTileSteelCornerSe
decals:
- 3928: -19,-23
+ 3919: -19,-23
- node:
color: '#D4D4D4D3'
id: MiniTileSteelCornerSe
@@ -2243,49 +2227,49 @@ entities:
1465: -29,-1
1501: -46,-1
1505: -45,3
- 1557: -15,29
- 1567: -17,49
- 1616: -4,-22
- 1667: 1,44
- 1699: 1,54
- 1733: -13,50
- 1771: 18,-7
- 1803: 30,6
- 1820: 34,-7
- 1859: 26,-15
- 1880: 30,-7
- 1928: 54,-2
- 1929: 53,-3
- 1982: 65,-14
- 1984: 59,-15
- 2026: 16,-38
- 2078: 9,-28
- 2089: 36,-38
- 2132: -3,-44
- 2133: -4,-28
- 2203: 4,0
- 2204: -3,0
- 2205: 14,0
+ 1556: -15,29
+ 1566: -17,49
+ 1615: -4,-22
+ 1666: 1,44
+ 1698: 1,54
+ 1732: -13,50
+ 1770: 18,-7
+ 1802: 30,6
+ 1819: 34,-7
+ 1858: 26,-15
+ 1879: 30,-7
+ 1927: 54,-2
+ 1928: 53,-3
+ 1981: 65,-14
+ 1983: 59,-15
+ 2025: 16,-38
+ 2077: 9,-28
+ 2088: 36,-38
+ 2131: -3,-44
+ 2132: -4,-28
+ 2202: 4,0
+ 2203: -3,0
+ 2204: 14,0
- node:
color: '#DE3A3A96'
id: MiniTileSteelCornerSe
decals:
- 2756: 18,19
+ 2755: 18,19
- node:
color: '#88EFB1D9'
id: MiniTileSteelCornerSw
decals:
- 3022: -28,-81
+ 3021: -28,-81
- node:
color: '#C8C8C8FF'
id: MiniTileSteelCornerSw
decals:
- 3929: -21,-23
+ 3920: -21,-23
- node:
color: '#D4D4D4C3'
id: MiniTileSteelCornerSw
decals:
- 3319: -27,-7
+ 3318: -27,-7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelCornerSw
@@ -2309,46 +2293,46 @@ entities:
1463: -44,-1
1503: -48,-1
1506: -50,3
- 1556: -17,29
- 1560: -19,40
- 1566: -19,49
- 1611: -23,50
- 1617: -6,-22
- 1695: -13,44
- 1700: -1,54
- 1718: -11,58
- 1734: -15,50
- 1794: 16,-7
- 1795: 16,-4
- 1805: 20,6
- 1821: 32,-7
- 1858: 24,-15
- 1882: 20,-7
- 1930: 50,-2
- 1931: 51,-3
- 1934: 36,0
- 1985: 54,-15
- 1986: 49,-10
- 1987: 51,-14
- 2023: 11,-28
- 2024: 14,-38
- 2077: 0,-28
- 2090: 34,-38
- 2131: -7,-44
- 2136: -6,-28
- 2206: 13,0
- 2213: -11,0
- 2214: -1,0
+ 1555: -17,29
+ 1559: -19,40
+ 1565: -19,49
+ 1610: -23,50
+ 1616: -6,-22
+ 1694: -13,44
+ 1699: -1,54
+ 1717: -11,58
+ 1733: -15,50
+ 1793: 16,-7
+ 1794: 16,-4
+ 1804: 20,6
+ 1820: 32,-7
+ 1857: 24,-15
+ 1881: 20,-7
+ 1929: 50,-2
+ 1930: 51,-3
+ 1933: 36,0
+ 1984: 54,-15
+ 1985: 49,-10
+ 1986: 51,-14
+ 2022: 11,-28
+ 2023: 14,-38
+ 2076: 0,-28
+ 2089: 34,-38
+ 2130: -7,-44
+ 2135: -6,-28
+ 2205: 13,0
+ 2212: -11,0
+ 2213: -1,0
- node:
color: '#DE3A3A96'
id: MiniTileSteelCornerSw
decals:
- 2757: 14,19
+ 2756: 14,19
- node:
color: '#D4D4D4C7'
id: MiniTileSteelInnerNe
decals:
- 3006: -19,7
+ 3005: -19,7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelInnerNe
@@ -2360,39 +2344,39 @@ entities:
1235: 36,-42
1261: -19,-42
1331: -4,-32
- 1612: -22,51
- 2013: 53,-6
- 2014: 52,-11
- 2120: 36,-26
+ 1611: -22,51
+ 2012: 53,-6
+ 2013: 52,-11
+ 2119: 36,-26
- node:
color: '#D4D4D4D6'
id: MiniTileSteelInnerNe
decals:
- 3015: -25.018312,-5.498596
- 3016: -25.283937,-5.498596
- 3017: -25.502687,-5.498596
+ 3014: -25.018312,-5.498596
+ 3015: -25.283937,-5.498596
+ 3016: -25.502687,-5.498596
- node:
color: '#D4D4D4FF'
id: MiniTileSteelInnerNe
decals:
- 3280: -39,-13
+ 3279: -39,-13
- node:
color: '#D4D4D4AE'
id: MiniTileSteelInnerNw
decals:
- 3206: 33,-42
+ 3205: 33,-42
- node:
color: '#D4D4D4C0'
id: MiniTileSteelInnerNw
decals:
- 2978: -14.760899,-5.480981
- 2979: -15.010899,-5.480981
- 2980: -14.526524,-5.480981
+ 2977: -14.760899,-5.480981
+ 2978: -15.010899,-5.480981
+ 2979: -14.526524,-5.480981
- node:
color: '#D4D4D4C7'
id: MiniTileSteelInnerNw
decals:
- 3007: -17,7
+ 3006: -17,7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelInnerNw
@@ -2401,29 +2385,29 @@ entities:
1233: 1,-42
1234: 14,-42
1425: -21,8
- 1697: -1,46
- 1769: -14,51
- 1798: 17,-6
- 2011: 62,-11
- 2012: 51,-8
- 2050: 14,-26
+ 1696: -1,46
+ 1768: -14,51
+ 1797: 17,-6
+ 2010: 62,-11
+ 2011: 51,-8
+ 2049: 14,-26
- node:
color: '#D4D4D4FF'
id: MiniTileSteelInnerNw
decals:
- 3278: -36,-13
+ 3277: -36,-13
- node:
color: '#D4D4D4C0'
id: MiniTileSteelInnerSe
decals:
- 2981: -25.008694,6.5088334
- 2982: -25.274319,6.5088334
- 2983: -25.508694,6.5088334
+ 2980: -25.008694,6.5088334
+ 2981: -25.274319,6.5088334
+ 2982: -25.508694,6.5088334
- node:
color: '#D4D4D4C7'
id: MiniTileSteelInnerSe
decals:
- 3005: -23,-6
+ 3004: -23,-6
- node:
color: '#D4D4D4D3'
id: MiniTileSteelInnerSe
@@ -2433,24 +2417,24 @@ entities:
1215: 40,-61
1300: -19,-28
1330: -4,-36
- 1891: 26,-7
- 1937: 53,-2
- 2009: 52,-7
- 2010: 59,-14
- 2119: 36,-27
+ 1890: 26,-7
+ 1936: 53,-2
+ 2008: 52,-7
+ 2009: 59,-14
+ 2118: 36,-27
- node:
color: '#D4D4D4FF'
id: MiniTileSteelInnerSe
decals:
- 3279: -39,-6
+ 3278: -39,-6
- node:
color: '#D4D4D4C7'
id: MiniTileSteelInnerSw
decals:
- 3004: -21,-6
- 3009: -14.7582035,6.5086117
- 3010: -14.5238285,6.5086117
- 3011: -15.0082035,6.5086117
+ 3003: -21,-6
+ 3008: -14.7582035,6.5086117
+ 3009: -14.5238285,6.5086117
+ 3010: -15.0082035,6.5086117
- node:
color: '#D4D4D4D3'
id: MiniTileSteelInnerSw
@@ -2460,43 +2444,48 @@ entities:
1184: 25,-57
1185: 25,-54
1214: 38,-61
- 1562: -17,40
- 1613: -19,50
- 1731: -1,58
- 1797: 17,-4
- 1890: 24,-7
- 1935: 50,0
- 1936: 51,-2
- 2007: 54,-14
- 2008: 62,-7
- 2015: 51,-10
- 2053: 14,-28
+ 1561: -17,40
+ 1612: -19,50
+ 1730: -1,58
+ 1796: 17,-4
+ 1889: 24,-7
+ 1934: 50,0
+ 1935: 51,-2
+ 2006: 54,-14
+ 2007: 62,-7
+ 2014: 51,-10
+ 2052: 14,-28
- node:
color: '#D4D4D4FF'
id: MiniTileSteelInnerSw
decals:
- 3277: -36,-6
+ 3276: -36,-6
- node:
color: '#C8C8C89E'
id: MiniTileSteelLineE
decals:
- 3623: 18,0
- 3624: 18,1
+ 3614: 18,0
+ 3615: 18,1
+ - node:
+ color: '#CACFD6C1'
+ id: MiniTileSteelLineE
+ decals:
+ 4039: -15,36
- node:
color: '#D4D4D4C0'
id: MiniTileSteelLineE
decals:
- 2967: -25.510418,5.5102654
- 2968: -25.510418,4.5102654
- 2969: -25.510418,3.5239472
- 2970: -25.510418,2.5239472
- 2971: -25.510418,1.5420241
- 2972: -25.510418,0.5198039
- 2973: -25.510418,-0.4823848
- 2974: -25.510418,-1.4980098
- 2975: -25.510418,-2.4674516
- 2976: -25.510418,-3.5051284
- 2977: -25.510418,-4.481826
+ 2966: -25.510418,5.5102654
+ 2967: -25.510418,4.5102654
+ 2968: -25.510418,3.5239472
+ 2969: -25.510418,2.5239472
+ 2970: -25.510418,1.5420241
+ 2971: -25.510418,0.5198039
+ 2972: -25.510418,-0.4823848
+ 2973: -25.510418,-1.4980098
+ 2974: -25.510418,-2.4674516
+ 2975: -25.510418,-3.5051284
+ 2976: -25.510418,-4.481826
- node:
color: '#D4D4D4D3'
id: MiniTileSteelLineE
@@ -2610,213 +2599,212 @@ entities:
1546: -15,39
1547: -15,38
1548: -15,37
- 1549: -15,36
- 1550: -15,35
- 1551: -15,34
- 1552: -15,33
- 1553: -15,32
- 1554: -15,31
- 1555: -15,30
- 1570: -17,50
- 1589: -22,66
- 1590: -22,65
- 1591: -22,64
- 1592: -22,63
- 1593: -22,62
- 1594: -22,61
- 1595: -22,60
- 1596: -22,58
- 1597: -22,59
- 1598: -22,57
- 1599: -22,56
- 1600: -22,55
- 1601: -22,54
- 1602: -22,53
- 1603: -22,52
- 1619: -4,-21
- 1620: -4,-20
- 1621: -4,-19
- 1622: -4,-18
- 1623: -4,-17
- 1624: -4,-16
- 1625: -4,-15
- 1626: -4,-14
- 1627: -4,-13
- 1628: -4,-12
- 1629: -4,-11
- 1630: -4,-10
- 1631: -4,-9
- 1632: -4,-8
- 1633: -4,-7
- 1634: -4,-6
- 1635: -4,-5
- 1668: 1,45
- 1669: 1,46
- 1670: 1,47
- 1671: 1,48
- 1672: 1,49
- 1673: 1,50
- 1674: 1,51
- 1701: 1,55
- 1702: 1,56
- 1703: 1,57
- 1704: 1,58
- 1738: -13,66
- 1739: -13,65
- 1740: -13,64
- 1741: -13,63
- 1742: -13,62
- 1743: -13,61
- 1744: -13,60
- 1745: -13,59
- 1746: -13,58
- 1747: -13,57
- 1748: -13,55
- 1749: -13,56
- 1750: -13,54
- 1751: -13,53
- 1752: -13,52
- 1753: -13,51
- 1772: 18,-6
- 1773: 18,-5
- 1774: 18,-3
- 1775: 18,-4
- 1776: 18,-1
- 1777: 18,-2
- 1778: 18,2
- 1779: 18,4
- 1780: 18,5
- 1781: 18,3
- 1782: 18,6
- 1806: 30,7
- 1823: 34,-6
- 1824: 34,-5
- 1825: 34,-4
- 1826: 34,-3
- 1827: 34,-2
- 1828: 34,-1
- 1829: 34,0
- 1830: 34,1
- 1831: 34,2
- 1832: 34,3
- 1833: 34,4
- 1834: 34,5
- 1835: 34,6
- 1836: 34,7
- 1861: 26,-14
- 1862: 26,-13
- 1863: 26,-12
- 1864: 26,-11
- 1865: 26,-10
- 1866: 26,-9
- 1867: 26,-8
- 1868: 30,-6
- 1925: 54,1
- 1926: 54,0
- 1927: 54,-1
- 1972: 52,-8
- 1973: 52,-9
- 1974: 52,-10
- 1975: 65,-8
- 1976: 65,-9
- 1977: 65,-10
- 1978: 65,-11
- 1979: 65,-12
- 1980: 65,-13
- 1981: 65,-7
- 2027: 16,-37
- 2028: 16,-36
- 2029: 16,-35
- 2030: 16,-34
- 2031: 16,-32
- 2032: 16,-33
- 2033: 16,-31
- 2034: 16,-30
- 2035: 16,-29
- 2036: 16,-28
- 2037: 16,-27
- 2038: 16,-24
- 2039: 16,-23
- 2040: 16,-22
- 2075: 9,-27
- 2091: 36,-37
- 2092: 36,-35
- 2093: 36,-36
- 2094: 36,-34
- 2095: 36,-33
- 2096: 36,-32
- 2097: 36,-31
- 2098: 36,-29
- 2099: 36,-28
- 2100: 36,-30
- 2101: 36,-25
- 2102: 36,-24
- 2103: 36,-23
- 2104: 36,-22
- 2121: -3,-42
- 2122: -3,-43
- 2138: -4,-27
+ 1549: -15,35
+ 1550: -15,34
+ 1551: -15,33
+ 1552: -15,32
+ 1553: -15,31
+ 1554: -15,30
+ 1569: -17,50
+ 1588: -22,66
+ 1589: -22,65
+ 1590: -22,64
+ 1591: -22,63
+ 1592: -22,62
+ 1593: -22,61
+ 1594: -22,60
+ 1595: -22,58
+ 1596: -22,59
+ 1597: -22,57
+ 1598: -22,56
+ 1599: -22,55
+ 1600: -22,54
+ 1601: -22,53
+ 1602: -22,52
+ 1618: -4,-21
+ 1619: -4,-20
+ 1620: -4,-19
+ 1621: -4,-18
+ 1622: -4,-17
+ 1623: -4,-16
+ 1624: -4,-15
+ 1625: -4,-14
+ 1626: -4,-13
+ 1627: -4,-12
+ 1628: -4,-11
+ 1629: -4,-10
+ 1630: -4,-9
+ 1631: -4,-8
+ 1632: -4,-7
+ 1633: -4,-6
+ 1634: -4,-5
+ 1667: 1,45
+ 1668: 1,46
+ 1669: 1,47
+ 1670: 1,48
+ 1671: 1,49
+ 1672: 1,50
+ 1673: 1,51
+ 1700: 1,55
+ 1701: 1,56
+ 1702: 1,57
+ 1703: 1,58
+ 1737: -13,66
+ 1738: -13,65
+ 1739: -13,64
+ 1740: -13,63
+ 1741: -13,62
+ 1742: -13,61
+ 1743: -13,60
+ 1744: -13,59
+ 1745: -13,58
+ 1746: -13,57
+ 1747: -13,55
+ 1748: -13,56
+ 1749: -13,54
+ 1750: -13,53
+ 1751: -13,52
+ 1752: -13,51
+ 1771: 18,-6
+ 1772: 18,-5
+ 1773: 18,-3
+ 1774: 18,-4
+ 1775: 18,-1
+ 1776: 18,-2
+ 1777: 18,2
+ 1778: 18,4
+ 1779: 18,5
+ 1780: 18,3
+ 1781: 18,6
+ 1805: 30,7
+ 1822: 34,-6
+ 1823: 34,-5
+ 1824: 34,-4
+ 1825: 34,-3
+ 1826: 34,-2
+ 1827: 34,-1
+ 1828: 34,0
+ 1829: 34,1
+ 1830: 34,2
+ 1831: 34,3
+ 1832: 34,4
+ 1833: 34,5
+ 1834: 34,6
+ 1835: 34,7
+ 1860: 26,-14
+ 1861: 26,-13
+ 1862: 26,-12
+ 1863: 26,-11
+ 1864: 26,-10
+ 1865: 26,-9
+ 1866: 26,-8
+ 1867: 30,-6
+ 1924: 54,1
+ 1925: 54,0
+ 1926: 54,-1
+ 1971: 52,-8
+ 1972: 52,-9
+ 1973: 52,-10
+ 1974: 65,-8
+ 1975: 65,-9
+ 1976: 65,-10
+ 1977: 65,-11
+ 1978: 65,-12
+ 1979: 65,-13
+ 1980: 65,-7
+ 2026: 16,-37
+ 2027: 16,-36
+ 2028: 16,-35
+ 2029: 16,-34
+ 2030: 16,-32
+ 2031: 16,-33
+ 2032: 16,-31
+ 2033: 16,-30
+ 2034: 16,-29
+ 2035: 16,-28
+ 2036: 16,-27
+ 2037: 16,-24
+ 2038: 16,-23
+ 2039: 16,-22
+ 2074: 9,-27
+ 2090: 36,-37
+ 2091: 36,-35
+ 2092: 36,-36
+ 2093: 36,-34
+ 2094: 36,-33
+ 2095: 36,-32
+ 2096: 36,-31
+ 2097: 36,-29
+ 2098: 36,-28
+ 2099: 36,-30
+ 2100: 36,-25
+ 2101: 36,-24
+ 2102: 36,-23
+ 2103: 36,-22
+ 2120: -3,-42
+ 2121: -3,-43
+ 2137: -4,-27
- node:
color: '#D4D4D4FF'
id: MiniTileSteelLineE
decals:
- 3263: -39,-7
- 3264: -39,-8
- 3265: -39,-9
- 3266: -39,-10
- 3267: -39,-11
- 3268: -39,-12
+ 3262: -39,-7
+ 3263: -39,-8
+ 3264: -39,-9
+ 3265: -39,-10
+ 3266: -39,-11
+ 3267: -39,-12
- node:
color: '#DE3A3A96'
id: MiniTileSteelLineE
decals:
- 2766: 18,22
- 2767: 18,21
- 2768: 18,20
+ 2765: 18,22
+ 2766: 18,21
+ 2767: 18,20
- node:
color: '#C8C8C8FF'
id: MiniTileSteelLineN
decals:
- 3931: -20,-10
+ 3922: -20,-10
- node:
color: '#D4D4D4AE'
id: MiniTileSteelLineN
decals:
- 3203: 32,-42
- 3204: 31,-42
- 3205: 30,-42
+ 3202: 32,-42
+ 3203: 31,-42
+ 3204: 30,-42
- node:
color: '#D4D4D4B4'
id: MiniTileSteelLineN
decals:
- 3308: -6,-41
+ 3307: -6,-41
- node:
color: '#D4D4D4C0'
id: MiniTileSteelLineN
decals:
- 2954: -18.018867,-5.48975
- 2955: -17.019917,-5.49304
- 2956: -19.00948,-5.49304
- 2957: -20.010675,-5.49304
- 2958: -21.010675,-5.49304
- 2959: -22.0263,-5.49304
- 2960: -23.028214,-5.497755
- 2961: -24.012589,-5.497755
+ 2953: -18.018867,-5.48975
+ 2954: -17.019917,-5.49304
+ 2955: -19.00948,-5.49304
+ 2956: -20.010675,-5.49304
+ 2957: -21.010675,-5.49304
+ 2958: -22.0263,-5.49304
+ 2959: -23.028214,-5.497755
+ 2960: -24.012589,-5.497755
- node:
color: '#D4D4D4C7'
id: MiniTileSteelLineN
decals:
- 3003: -18,7
+ 3002: -18,7
- node:
color: '#D4D4D4CA'
id: MiniTileSteelLineN
decals:
- 3014: -16.015686,-5.492559
+ 3013: -16.015686,-5.492559
- node:
color: '#D4D4D4CD'
id: MiniTileSteelLineN
decals:
- 3200: 17,7
+ 3199: 17,7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelLineN
@@ -2921,159 +2909,159 @@ entities:
1509: -47,8
1510: -48,8
1511: -49,8
- 1563: -16,47
- 1564: -17,47
- 1565: -18,47
- 1604: -18,51
- 1605: -19,51
- 1606: -20,51
- 1607: -21,51
- 1636: -5,-4
- 1677: 0,52
- 1683: -2,46
- 1684: -3,46
- 1685: -4,46
- 1686: -5,46
- 1687: -6,46
- 1688: -7,46
- 1689: -8,46
- 1690: -9,46
- 1691: -10,46
- 1692: -11,46
- 1693: -12,46
- 1706: 0,59
- 1707: -1,59
- 1708: -2,59
- 1709: -3,59
- 1710: -4,59
- 1711: -5,59
- 1712: -6,59
- 1713: -7,59
- 1714: -8,59
- 1715: -9,59
- 1716: -10,59
- 1799: 27,8
- 1800: 28,8
- 1801: 29,8
- 1817: 21,8
- 1818: 22,8
- 1819: 23,8
- 1839: 33,8
- 1870: 29,-5
- 1871: 28,-5
- 1872: 27,-5
- 1873: 26,-5
- 1874: 25,-5
- 1875: 24,-5
- 1876: 23,-5
- 1877: 22,-5
- 1878: 21,-5
- 1907: 53,2
- 1908: 52,2
- 1909: 50,2
- 1910: 51,2
- 1911: 49,2
- 1912: 48,2
- 1913: 47,2
- 1914: 46,2
- 1915: 45,2
- 1916: 44,2
- 1917: 43,2
- 1918: 41,2
- 1919: 42,2
- 1920: 40,2
- 1921: 39,2
- 1922: 38,2
- 1923: 37,2
- 1938: 64,-6
- 1939: 63,-6
- 1940: 62,-6
- 1941: 60,-6
- 1942: 59,-6
- 1943: 61,-6
- 1944: 58,-6
- 1945: 57,-6
- 1946: 56,-6
- 1947: 55,-6
- 1948: 54,-6
- 1949: 52,-5
- 1950: 50,-8
- 1996: 61,-11
- 1997: 60,-11
- 1998: 59,-11
- 1999: 58,-11
- 2000: 57,-11
- 2001: 56,-11
- 2002: 55,-11
- 2003: 54,-11
- 2004: 53,-11
- 2017: 15,-21
- 2018: 13,-26
- 2019: 12,-26
- 2067: 8,-26
- 2068: 7,-26
- 2069: 6,-26
- 2070: 5,-26
- 2071: 4,-26
- 2072: 3,-26
- 2073: 2,-26
- 2074: 1,-26
- 2083: 35,-21
- 2084: 37,-26
- 2085: 38,-26
- 2123: -5,-41
- 2124: -4,-41
- 2137: -5,-26
- 2215: 3,1
- 2216: 1,1
- 2217: 0,1
- 2218: 2,1
- 2219: -4,1
- 2220: -5,1
- 2221: -7,1
- 2222: -6,1
- 2223: -8,1
- 2224: -9,1
- 2225: -10,1
- 2292: -16,8
- 2293: -24,8
+ 1562: -16,47
+ 1563: -17,47
+ 1564: -18,47
+ 1603: -18,51
+ 1604: -19,51
+ 1605: -20,51
+ 1606: -21,51
+ 1635: -5,-4
+ 1676: 0,52
+ 1682: -2,46
+ 1683: -3,46
+ 1684: -4,46
+ 1685: -5,46
+ 1686: -6,46
+ 1687: -7,46
+ 1688: -8,46
+ 1689: -9,46
+ 1690: -10,46
+ 1691: -11,46
+ 1692: -12,46
+ 1705: 0,59
+ 1706: -1,59
+ 1707: -2,59
+ 1708: -3,59
+ 1709: -4,59
+ 1710: -5,59
+ 1711: -6,59
+ 1712: -7,59
+ 1713: -8,59
+ 1714: -9,59
+ 1715: -10,59
+ 1798: 27,8
+ 1799: 28,8
+ 1800: 29,8
+ 1816: 21,8
+ 1817: 22,8
+ 1818: 23,8
+ 1838: 33,8
+ 1869: 29,-5
+ 1870: 28,-5
+ 1871: 27,-5
+ 1872: 26,-5
+ 1873: 25,-5
+ 1874: 24,-5
+ 1875: 23,-5
+ 1876: 22,-5
+ 1877: 21,-5
+ 1906: 53,2
+ 1907: 52,2
+ 1908: 50,2
+ 1909: 51,2
+ 1910: 49,2
+ 1911: 48,2
+ 1912: 47,2
+ 1913: 46,2
+ 1914: 45,2
+ 1915: 44,2
+ 1916: 43,2
+ 1917: 41,2
+ 1918: 42,2
+ 1919: 40,2
+ 1920: 39,2
+ 1921: 38,2
+ 1922: 37,2
+ 1937: 64,-6
+ 1938: 63,-6
+ 1939: 62,-6
+ 1940: 60,-6
+ 1941: 59,-6
+ 1942: 61,-6
+ 1943: 58,-6
+ 1944: 57,-6
+ 1945: 56,-6
+ 1946: 55,-6
+ 1947: 54,-6
+ 1948: 52,-5
+ 1949: 50,-8
+ 1995: 61,-11
+ 1996: 60,-11
+ 1997: 59,-11
+ 1998: 58,-11
+ 1999: 57,-11
+ 2000: 56,-11
+ 2001: 55,-11
+ 2002: 54,-11
+ 2003: 53,-11
+ 2016: 15,-21
+ 2017: 13,-26
+ 2018: 12,-26
+ 2066: 8,-26
+ 2067: 7,-26
+ 2068: 6,-26
+ 2069: 5,-26
+ 2070: 4,-26
+ 2071: 3,-26
+ 2072: 2,-26
+ 2073: 1,-26
+ 2082: 35,-21
+ 2083: 37,-26
+ 2084: 38,-26
+ 2122: -5,-41
+ 2123: -4,-41
+ 2136: -5,-26
+ 2214: 3,1
+ 2215: 1,1
+ 2216: 0,1
+ 2217: 2,1
+ 2218: -4,1
+ 2219: -5,1
+ 2220: -7,1
+ 2221: -6,1
+ 2222: -8,1
+ 2223: -9,1
+ 2224: -10,1
+ 2291: -16,8
+ 2292: -24,8
- node:
color: '#D4D4D4FF'
id: MiniTileSteelLineN
decals:
- 3275: -38,-13
- 3276: -37,-13
+ 3274: -38,-13
+ 3275: -37,-13
- node:
color: '#DE3A3A96'
id: MiniTileSteelLineN
decals:
- 2758: 17,23
- 2759: 16,23
- 2760: 15,23
+ 2757: 17,23
+ 2758: 16,23
+ 2759: 15,23
- node:
color: '#C8C8C8FF'
id: MiniTileSteelLineS
decals:
- 3930: -20,-23
+ 3921: -20,-23
- node:
color: '#D4D4D4C0'
id: MiniTileSteelLineS
decals:
- 2962: -20.013802,6.514251
- 2963: -21.019838,6.510408
- 2964: -22.019838,6.510408
- 2965: -23.019838,6.510408
- 2966: -24.019838,6.510408
- 3313: -25,-7
+ 2961: -20.013802,6.514251
+ 2962: -21.019838,6.510408
+ 2963: -22.019838,6.510408
+ 2964: -23.019838,6.510408
+ 2965: -24.019838,6.510408
+ 3312: -25,-7
- node:
color: '#D4D4D4C3'
id: MiniTileSteelLineS
decals:
- 2940: -18.011988,6.5150476
- 2941: -19.02412,6.5150476
- 2942: -16.008495,6.503191
- 2943: -17.022287,6.5092306
- 3322: -26,-7
+ 2939: -18.011988,6.5150476
+ 2940: -19.02412,6.5150476
+ 2941: -16.008495,6.503191
+ 2942: -17.022287,6.5092306
+ 3321: -26,-7
- node:
color: '#D4D4D4D3'
id: MiniTileSteelLineS
@@ -3190,166 +3178,178 @@ entities:
1514: -48,3
1515: -49,3
1524: -16,29
- 1561: -18,40
- 1568: -18,49
- 1608: -20,50
- 1609: -21,50
- 1610: -22,50
- 1618: -5,-22
- 1654: -12,44
- 1655: -11,44
- 1656: -10,44
- 1657: -9,44
- 1658: -8,44
- 1659: -7,44
- 1660: -6,44
- 1661: -5,44
- 1662: -4,44
- 1663: -3,44
- 1664: -2,44
- 1665: -1,44
- 1666: 0,44
- 1698: 0,54
- 1719: -10,58
- 1720: -8,58
- 1721: -7,58
- 1722: -6,58
- 1723: -9,58
- 1724: -5,58
- 1725: -4,58
- 1726: -3,58
- 1727: -2,58
- 1732: -14,50
- 1770: 17,-7
- 1808: 21,6
- 1809: 24,6
- 1810: 23,6
- 1811: 22,6
- 1812: 25,6
- 1813: 26,6
- 1814: 27,6
- 1815: 28,6
- 1816: 29,6
- 1822: 33,-7
- 1852: 29,-7
- 1853: 27,-7
- 1854: 28,-7
- 1855: 23,-7
- 1856: 22,-7
- 1857: 21,-7
- 1860: 25,-15
- 1892: 52,-3
- 1893: 49,0
- 1894: 48,0
- 1895: 47,0
- 1896: 46,0
- 1897: 44,0
- 1898: 45,0
- 1899: 43,0
- 1900: 42,0
- 1901: 41,0
- 1902: 40,0
- 1903: 39,0
- 1904: 38,0
- 1905: 37,0
- 1951: 50,-10
- 1952: 52,-14
- 1953: 53,-14
- 1954: 55,-15
- 1955: 56,-15
- 1956: 57,-15
- 1957: 58,-15
- 1958: 60,-14
- 1959: 61,-14
- 1960: 62,-14
- 1961: 63,-14
- 1962: 64,-14
- 1963: 57,-7
- 1964: 58,-7
- 1965: 59,-7
- 1966: 60,-7
- 1967: 61,-7
- 1968: 56,-7
- 1969: 55,-7
- 1970: 54,-7
- 1971: 53,-7
- 2025: 15,-38
- 2041: 12,-28
- 2042: 13,-28
- 2059: 8,-28
- 2060: 7,-28
- 2061: 6,-28
- 2062: 5,-28
- 2063: 4,-28
- 2064: 3,-28
- 2065: 2,-28
- 2066: 1,-28
- 2086: 38,-27
- 2087: 37,-27
- 2088: 35,-38
- 2125: -4,-44
- 2126: -5,-44
- 2127: -6,-44
- 2140: -5,-28
- 2192: 3,0
- 2193: 2,0
- 2194: 1,0
- 2195: 0,0
- 2196: -4,0
- 2197: -5,0
- 2198: -6,0
- 2199: -7,0
- 2200: -8,0
- 2201: -9,0
- 2202: -10,0
+ 1560: -18,40
+ 1567: -18,49
+ 1607: -20,50
+ 1608: -21,50
+ 1609: -22,50
+ 1617: -5,-22
+ 1653: -12,44
+ 1654: -11,44
+ 1655: -10,44
+ 1656: -9,44
+ 1657: -8,44
+ 1658: -7,44
+ 1659: -6,44
+ 1660: -5,44
+ 1661: -4,44
+ 1662: -3,44
+ 1663: -2,44
+ 1664: -1,44
+ 1665: 0,44
+ 1697: 0,54
+ 1718: -10,58
+ 1719: -8,58
+ 1720: -7,58
+ 1721: -6,58
+ 1722: -9,58
+ 1723: -5,58
+ 1724: -4,58
+ 1725: -3,58
+ 1726: -2,58
+ 1731: -14,50
+ 1769: 17,-7
+ 1807: 21,6
+ 1808: 24,6
+ 1809: 23,6
+ 1810: 22,6
+ 1811: 25,6
+ 1812: 26,6
+ 1813: 27,6
+ 1814: 28,6
+ 1815: 29,6
+ 1821: 33,-7
+ 1851: 29,-7
+ 1852: 27,-7
+ 1853: 28,-7
+ 1854: 23,-7
+ 1855: 22,-7
+ 1856: 21,-7
+ 1859: 25,-15
+ 1891: 52,-3
+ 1892: 49,0
+ 1893: 48,0
+ 1894: 47,0
+ 1895: 46,0
+ 1896: 44,0
+ 1897: 45,0
+ 1898: 43,0
+ 1899: 42,0
+ 1900: 41,0
+ 1901: 40,0
+ 1902: 39,0
+ 1903: 38,0
+ 1904: 37,0
+ 1950: 50,-10
+ 1951: 52,-14
+ 1952: 53,-14
+ 1953: 55,-15
+ 1954: 56,-15
+ 1955: 57,-15
+ 1956: 58,-15
+ 1957: 60,-14
+ 1958: 61,-14
+ 1959: 62,-14
+ 1960: 63,-14
+ 1961: 64,-14
+ 1962: 57,-7
+ 1963: 58,-7
+ 1964: 59,-7
+ 1965: 60,-7
+ 1966: 61,-7
+ 1967: 56,-7
+ 1968: 55,-7
+ 1969: 54,-7
+ 1970: 53,-7
+ 2024: 15,-38
+ 2040: 12,-28
+ 2041: 13,-28
+ 2058: 8,-28
+ 2059: 7,-28
+ 2060: 6,-28
+ 2061: 5,-28
+ 2062: 4,-28
+ 2063: 3,-28
+ 2064: 2,-28
+ 2065: 1,-28
+ 2085: 38,-27
+ 2086: 37,-27
+ 2087: 35,-38
+ 2124: -4,-44
+ 2125: -5,-44
+ 2126: -6,-44
+ 2139: -5,-28
+ 2191: 3,0
+ 2192: 2,0
+ 2193: 1,0
+ 2194: 0,0
+ 2195: -4,0
+ 2196: -5,0
+ 2197: -6,0
+ 2198: -7,0
+ 2199: -8,0
+ 2200: -9,0
+ 2201: -10,0
- node:
color: '#D4D4D4FF'
id: MiniTileSteelLineS
decals:
- 3281: -38,-6
- 3282: -37,-6
+ 3280: -38,-6
+ 3281: -37,-6
- node:
color: '#DE3A3A96'
id: MiniTileSteelLineS
decals:
- 2761: 17,19
- 2762: 16,19
- 2763: 15,19
+ 2760: 17,19
+ 2761: 16,19
+ 2762: 15,19
- node:
color: '#C3C3C3BC'
id: MiniTileSteelLineW
decals:
- 3912: 32,-4
- 3913: 32,-5
+ 3903: 32,-4
+ 3904: 32,-5
+ - node:
+ color: '#D4D4D496'
+ id: MiniTileSteelLineW
+ decals:
+ 4036: -14.533487,-3.5022268
+ 4037: -14.517862,-2.4866018
+ 4038: -14.533487,0.5134914
- node:
color: '#D4D4D4AE'
id: MiniTileSteelLineW
decals:
- 3202: 33,-41
+ 3201: 33,-41
+ - node:
+ color: '#D4D4D4BA'
+ id: MiniTileSteelLineW
+ decals:
+ 4035: -27,7
- node:
color: '#D4D4D4C0'
id: MiniTileSteelLineW
decals:
- 2947: -14.526791,4.511916
- 2948: -14.526791,3.535493
- 2949: -14.526791,2.535493
- 2950: -14.526791,1.5321715
- 2951: -14.526791,-0.47854245
- 2952: -14.526791,-1.4661165
- 2953: -14.526791,-4.4806275
+ 2946: -14.526791,4.511916
+ 2947: -14.526791,3.535493
+ 2948: -14.526791,2.535493
+ 2949: -14.526791,1.5321715
+ 2950: -14.526791,-0.47854245
+ 2951: -14.526791,-1.4661165
+ 2952: -14.526791,-4.4806275
- node:
color: '#D4D4D4C3'
id: MiniTileSteelLineW
decals:
- 2888: -17,38
- 2889: -17,37
- 3320: -27,-5
- 3321: -27,-6
+ 2887: -17,38
+ 2888: -17,37
+ 3319: -27,-5
+ 3320: -27,-6
- node:
color: '#D4D4D4C7'
id: MiniTileSteelLineW
decals:
- 3008: -14.529805,5.530867
+ 3007: -14.529805,5.530867
- node:
color: '#D4D4D4D3'
id: MiniTileSteelLineW
@@ -3462,159 +3462,159 @@ entities:
1536: -19,44
1537: -19,45
1538: -19,46
- 1571: -23,51
- 1572: -23,52
- 1573: -23,53
- 1574: -23,55
- 1575: -23,54
- 1576: -23,56
- 1577: -23,57
- 1578: -23,58
- 1579: -23,59
- 1580: -23,60
- 1581: -23,61
- 1582: -23,62
- 1583: -23,63
- 1584: -23,64
- 1585: -23,65
- 1586: -23,66
- 1637: -6,-5
- 1638: -6,-6
- 1639: -6,-7
- 1640: -6,-8
- 1641: -6,-9
- 1642: -6,-10
- 1643: -6,-11
- 1644: -6,-12
- 1645: -6,-13
- 1646: -6,-14
- 1647: -6,-15
- 1648: -6,-16
- 1649: -6,-17
- 1650: -6,-18
- 1651: -6,-19
- 1652: -6,-20
- 1653: -6,-21
- 1678: -1,51
- 1679: -1,50
- 1680: -1,48
- 1681: -1,49
- 1682: -1,47
- 1696: -13,45
- 1728: -1,57
- 1729: -1,56
- 1730: -1,55
- 1754: -14,52
- 1755: -14,54
- 1756: -14,53
- 1757: -14,55
- 1758: -14,57
- 1759: -14,56
- 1760: -14,58
- 1761: -14,59
- 1762: -14,60
- 1763: -14,62
- 1764: -14,61
- 1765: -14,63
- 1766: -14,64
- 1767: -14,65
- 1768: -14,66
- 1783: 16,6
- 1784: 16,5
- 1785: 16,4
- 1786: 16,3
- 1787: 16,2
- 1788: 16,1
- 1789: 16,0
- 1790: 16,-1
- 1791: 16,-2
- 1792: 16,-3
- 1796: 17,-5
- 1807: 20,7
- 1840: 32,7
- 1841: 32,6
- 1842: 32,4
- 1843: 32,5
- 1844: 32,3
- 1845: 32,2
- 1846: 32,1
- 1847: 32,0
- 1848: 32,-1
- 1849: 32,-2
- 1850: 32,-3
- 1851: 32,-6
- 1869: 20,-6
- 1883: 24,-14
- 1884: 24,-13
- 1885: 24,-11
- 1886: 24,-10
- 1887: 24,-9
- 1888: 24,-8
- 1889: 24,-12
- 1932: 50,-1
- 1933: 36,1
- 1991: 51,-13
- 1992: 51,-12
- 1993: 51,-11
- 1994: 51,-7
- 1995: 51,-6
- 2005: 62,-9
- 2006: 62,-10
- 2016: 62,-8
- 2043: 14,-29
- 2044: 14,-30
- 2045: 14,-31
- 2046: 14,-37
- 2047: 14,-24
- 2048: 14,-22
- 2049: 14,-23
- 2051: 14,-25
- 2052: 11,-27
- 2054: 14,-32
- 2055: 14,-34
- 2056: 14,-33
- 2057: 14,-35
- 2058: 14,-36
- 2076: 0,-27
- 2105: 34,-22
+ 1570: -23,51
+ 1571: -23,52
+ 1572: -23,53
+ 1573: -23,55
+ 1574: -23,54
+ 1575: -23,56
+ 1576: -23,57
+ 1577: -23,58
+ 1578: -23,59
+ 1579: -23,60
+ 1580: -23,61
+ 1581: -23,62
+ 1582: -23,63
+ 1583: -23,64
+ 1584: -23,65
+ 1585: -23,66
+ 1636: -6,-5
+ 1637: -6,-6
+ 1638: -6,-7
+ 1639: -6,-8
+ 1640: -6,-9
+ 1641: -6,-10
+ 1642: -6,-11
+ 1643: -6,-12
+ 1644: -6,-13
+ 1645: -6,-14
+ 1646: -6,-15
+ 1647: -6,-16
+ 1648: -6,-17
+ 1649: -6,-18
+ 1650: -6,-19
+ 1651: -6,-20
+ 1652: -6,-21
+ 1677: -1,51
+ 1678: -1,50
+ 1679: -1,48
+ 1680: -1,49
+ 1681: -1,47
+ 1695: -13,45
+ 1727: -1,57
+ 1728: -1,56
+ 1729: -1,55
+ 1753: -14,52
+ 1754: -14,54
+ 1755: -14,53
+ 1756: -14,55
+ 1757: -14,57
+ 1758: -14,56
+ 1759: -14,58
+ 1760: -14,59
+ 1761: -14,60
+ 1762: -14,62
+ 1763: -14,61
+ 1764: -14,63
+ 1765: -14,64
+ 1766: -14,65
+ 1767: -14,66
+ 1782: 16,6
+ 1783: 16,5
+ 1784: 16,4
+ 1785: 16,3
+ 1786: 16,2
+ 1787: 16,1
+ 1788: 16,0
+ 1789: 16,-1
+ 1790: 16,-2
+ 1791: 16,-3
+ 1795: 17,-5
+ 1806: 20,7
+ 1839: 32,7
+ 1840: 32,6
+ 1841: 32,4
+ 1842: 32,5
+ 1843: 32,3
+ 1844: 32,2
+ 1845: 32,1
+ 1846: 32,0
+ 1847: 32,-1
+ 1848: 32,-2
+ 1849: 32,-3
+ 1850: 32,-6
+ 1868: 20,-6
+ 1882: 24,-14
+ 1883: 24,-13
+ 1884: 24,-11
+ 1885: 24,-10
+ 1886: 24,-9
+ 1887: 24,-8
+ 1888: 24,-12
+ 1931: 50,-1
+ 1932: 36,1
+ 1990: 51,-13
+ 1991: 51,-12
+ 1992: 51,-11
+ 1993: 51,-7
+ 1994: 51,-6
+ 2004: 62,-9
+ 2005: 62,-10
+ 2015: 62,-8
+ 2042: 14,-29
+ 2043: 14,-30
+ 2044: 14,-31
+ 2045: 14,-37
+ 2046: 14,-24
+ 2047: 14,-22
+ 2048: 14,-23
+ 2050: 14,-25
+ 2051: 11,-27
+ 2053: 14,-32
+ 2054: 14,-34
+ 2055: 14,-33
+ 2056: 14,-35
+ 2057: 14,-36
+ 2075: 0,-27
+ 2104: 34,-22
+ 2105: 34,-23
2106: 34,-23
- 2107: 34,-23
- 2108: 34,-24
- 2109: 34,-27
- 2110: 34,-28
- 2111: 34,-29
- 2112: 34,-30
- 2113: 34,-32
- 2114: 34,-33
- 2115: 34,-34
- 2116: 34,-35
- 2117: 34,-36
- 2118: 34,-37
- 2128: -7,-42
- 2129: -7,-43
- 2139: -6,-27
- 2290: -27,3
- 2291: -27,-1
- 3620: -21,-17
- 3621: -21,-18
- 3622: -21,-19
+ 2107: 34,-24
+ 2108: 34,-27
+ 2109: 34,-28
+ 2110: 34,-29
+ 2111: 34,-30
+ 2112: 34,-32
+ 2113: 34,-33
+ 2114: 34,-34
+ 2115: 34,-35
+ 2116: 34,-36
+ 2117: 34,-37
+ 2127: -7,-42
+ 2128: -7,-43
+ 2138: -6,-27
+ 2289: -27,3
+ 2290: -27,-1
+ 3611: -21,-17
+ 3612: -21,-18
+ 3613: -21,-19
- node:
color: '#D4D4D4FF'
id: MiniTileSteelLineW
decals:
- 3269: -36,-7
- 3270: -36,-8
- 3271: -36,-9
- 3272: -36,-10
- 3273: -36,-11
- 3274: -36,-12
+ 3268: -36,-7
+ 3269: -36,-8
+ 3270: -36,-9
+ 3271: -36,-10
+ 3272: -36,-11
+ 3273: -36,-12
- node:
color: '#DE3A3A96'
id: MiniTileSteelLineW
decals:
- 2769: 14,22
- 2770: 14,21
- 2771: 14,20
+ 2768: 14,22
+ 2769: 14,21
+ 2770: 14,20
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteBox
@@ -3625,14 +3625,14 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteCornerNe
decals:
- 3635: 7,-46
- 3663: -23,-58
+ 3626: 7,-46
+ 3654: -23,-58
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerNe
decals:
- 2920: 32,-21
- 2921: 19,-21
+ 2919: 32,-21
+ 2920: 19,-21
- node:
color: '#478C5DDC'
id: MiniTileWhiteCornerNe
@@ -3645,13 +3645,13 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteCornerNe
decals:
- 3181: 73,-48
+ 3180: 73,-48
- node:
color: '#52B4E9B7'
id: MiniTileWhiteCornerNe
decals:
- 3613: 47,7
- 3614: 46,8
+ 3604: 47,7
+ 3605: 46,8
- node:
color: '#52B4E9CD'
id: MiniTileWhiteCornerNe
@@ -3665,40 +3665,40 @@ entities:
color: '#707070B7'
id: MiniTileWhiteCornerNe
decals:
- 3439: 31,-72
- 3440: 28,-71
- 3441: 27,-70
+ 3438: 31,-72
+ 3439: 28,-71
+ 3440: 27,-70
- node:
color: '#73C2A496'
id: MiniTileWhiteCornerNe
decals:
- 2592: -23,-32
- 2600: -32,-32
- 2601: -31,-33
- 2621: -36,-33
- 2630: -32,-38
- 2671: -34,-44
+ 2591: -23,-32
+ 2599: -32,-32
+ 2600: -31,-33
+ 2620: -36,-33
+ 2629: -32,-38
+ 2670: -34,-44
- node:
color: '#787878B7'
id: MiniTileWhiteCornerNe
decals:
- 3482: 31,-78
- 3523: 50,-72
- 3535: 49,-78
+ 3473: 31,-78
+ 3514: 50,-72
+ 3526: 49,-78
- node:
color: '#88C598FF'
id: MiniTileWhiteCornerNe
decals:
- 3970: 17,-82
+ 3961: 17,-82
- node:
color: '#A4610696'
id: MiniTileWhiteCornerNe
decals:
- 2354: -31,26
- 2355: -23,25
- 2357: -28,19
- 2377: -47,22
- 2390: -47,33
+ 2353: -31,26
+ 2354: -23,25
+ 2356: -28,19
+ 2376: -47,22
+ 2389: -47,33
- node:
color: '#D381C996'
id: MiniTileWhiteCornerNe
@@ -3711,89 +3711,89 @@ entities:
966: 52,-51
967: 53,-52
995: 46,-46
- 3035: 74,-32
- 3039: 73,-38
- 3154: 73,-44
- 3163: 68,-48
- 3169: 77,-44
- 3409: 64,-32
- 3410: 65,-33
+ 3034: 74,-32
+ 3038: 73,-38
+ 3153: 73,-44
+ 3162: 68,-48
+ 3168: 77,-44
+ 3408: 64,-32
+ 3409: 65,-33
- node:
color: '#D381C9C0'
id: MiniTileWhiteCornerNe
decals:
- 3101: 65,-44
- 3108: 63,-43
+ 3100: 65,-44
+ 3107: 63,-43
- node:
color: '#D4D4D406'
id: MiniTileWhiteCornerNe
decals:
- 3950: -40,15
- 3951: -36,15
+ 3941: -40,15
+ 3942: -36,15
- node:
color: '#D4D4D40F'
id: MiniTileWhiteCornerNe
decals:
- 3115: 55,-35
+ 3114: 55,-35
- node:
color: '#D4D4D428'
id: MiniTileWhiteCornerNe
decals:
- 2454: -46,-9
+ 2453: -46,-9
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteCornerNe
decals:
- 2183: 14,3
- 2226: 14,-1
- 2248: 3,-1
- 2249: 9,-1
- 2272: -3,-1
- 2273: -3,3
+ 2182: 14,3
+ 2225: 14,-1
+ 2247: 3,-1
+ 2248: 9,-1
+ 2271: -3,-1
+ 2272: -3,3
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerNe
decals:
- 2703: 26,13
- 2707: 26,18
- 2726: 18,17
- 2730: 13,17
- 2740: 8,17
- 2774: 42,16
- 3062: -16,-21
- 3127: 22,-46
- 3290: -15,27
+ 2702: 26,13
+ 2706: 26,18
+ 2725: 18,17
+ 2729: 13,17
+ 2739: 8,17
+ 2773: 42,16
+ 3061: -16,-21
+ 3126: 22,-46
+ 3289: -15,27
- node:
color: '#DE3A3AA7'
id: MiniTileWhiteCornerNe
decals:
- 3915: 30,22
+ 3906: 30,22
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerNe
decals:
- 2411: -23,-9
- 2415: -28,-17
- 2443: -42,-10
- 2482: -45,-6
- 2506: -51,-6
- 2510: -51,-17
- 2511: -53,-13
- 2570: -71,-24
- 3226: -28,-10
- 3251: -35,-6
- 3284: -42,-6
- 3324: -32,-10
+ 2410: -23,-9
+ 2414: -28,-17
+ 2442: -42,-10
+ 2481: -45,-6
+ 2505: -51,-6
+ 2509: -51,-17
+ 2510: -53,-13
+ 2569: -71,-24
+ 3225: -28,-10
+ 3250: -35,-6
+ 3283: -42,-6
+ 3323: -32,-10
- node:
color: '#EFB341A7'
id: MiniTileWhiteCornerNe
decals:
- 3934: -32,-22
+ 3925: -32,-22
- node:
color: '#EFB341B1'
id: MiniTileWhiteCornerNe
decals:
- 3924: -51,-23
+ 3915: -51,-23
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerNe
@@ -3803,14 +3803,14 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteCornerNw
decals:
- 3636: 2,-46
- 3664: -27,-58
+ 3627: 2,-46
+ 3655: -27,-58
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerNw
decals:
- 2918: 18,-21
- 2919: 31,-21
+ 2917: 18,-21
+ 2918: 31,-21
- node:
color: '#478C5DDC'
id: MiniTileWhiteCornerNw
@@ -3823,12 +3823,12 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteCornerNw
decals:
- 3185: 69,-48
+ 3184: 69,-48
- node:
color: '#52B4E9B7'
id: MiniTileWhiteCornerNw
decals:
- 3612: 44,8
+ 3603: 44,8
- node:
color: '#52B4E9CD'
id: MiniTileWhiteCornerNw
@@ -3842,39 +3842,39 @@ entities:
color: '#707070B7'
id: MiniTileWhiteCornerNw
decals:
- 3443: 22,-72
- 3444: 23,-71
- 3445: 24,-70
+ 3442: 22,-72
+ 3443: 23,-71
+ 3444: 24,-70
- node:
color: '#73C2A496'
id: MiniTileWhiteCornerNw
decals:
- 2593: -26,-32
- 2602: -33,-32
- 2603: -34,-33
- 2622: -41,-33
- 2631: -33,-38
+ 2592: -26,-32
+ 2601: -33,-32
+ 2602: -34,-33
+ 2621: -41,-33
+ 2630: -33,-38
- node:
color: '#787878B7'
id: MiniTileWhiteCornerNw
decals:
- 3483: 29,-78
- 3517: 27,-81
- 3524: 47,-72
- 3534: 47,-78
+ 3474: 29,-78
+ 3508: 27,-81
+ 3515: 47,-72
+ 3525: 47,-78
- node:
color: '#88C598FF'
id: MiniTileWhiteCornerNw
decals:
- 3971: 13,-82
+ 3962: 13,-82
- node:
color: '#A4610696'
id: MiniTileWhiteCornerNw
decals:
- 2353: -35,26
- 2356: -26,25
- 2376: -49,22
- 2389: -49,33
+ 2352: -35,26
+ 2355: -26,25
+ 2375: -49,22
+ 2388: -49,33
- node:
color: '#D381C996'
id: MiniTileWhiteCornerNw
@@ -3885,80 +3885,80 @@ entities:
963: 48,-50
964: 45,-57
997: 41,-46
- 3034: 71,-32
- 3040: 70,-33
- 3153: 67,-44
- 3162: 67,-48
- 3167: 74,-48
- 3168: 76,-44
- 3408: 60,-32
+ 3033: 71,-32
+ 3039: 70,-33
+ 3152: 67,-44
+ 3161: 67,-48
+ 3166: 74,-48
+ 3167: 76,-44
+ 3407: 60,-32
- node:
color: '#D381C9C0'
id: MiniTileWhiteCornerNw
decals:
- 3100: 59,-44
- 3107: 61,-43
+ 3099: 59,-44
+ 3106: 61,-43
- node:
color: '#D4D4D406'
id: MiniTileWhiteCornerNw
decals:
- 3954: -41,15
- 3955: -37,15
+ 3945: -41,15
+ 3946: -37,15
- node:
color: '#D4D4D40F'
id: MiniTileWhiteCornerNw
decals:
- 3113: 53,-35
+ 3112: 53,-35
- node:
color: '#D4D4D428'
id: MiniTileWhiteCornerNw
decals:
- 2474: -48,-9
+ 2473: -48,-9
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteCornerNw
decals:
- 2186: -11,3
- 2187: -1,3
- 2233: -1,-1
- 2234: -11,-1
- 2246: 11,-1
- 2247: 5,-1
+ 2185: -11,3
+ 2186: -1,3
+ 2232: -1,-1
+ 2233: -11,-1
+ 2245: 11,-1
+ 2246: 5,-1
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerNw
decals:
- 2702: 24,13
- 2709: 20,18
- 2729: 15,17
- 2736: 10,17
- 2741: 4,17
- 2773: 28,22
- 3060: -17,-21
- 3126: 19,-46
- 3289: -17,27
- 3303: 28,16
+ 2701: 24,13
+ 2708: 20,18
+ 2728: 15,17
+ 2735: 10,17
+ 2740: 4,17
+ 2772: 28,22
+ 3059: -17,-21
+ 3125: 19,-46
+ 3288: -17,27
+ 3302: 28,16
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerNw
decals:
- 2414: -26,-9
- 2444: -43,-10
- 2483: -49,-6
- 2501: -56,-7
- 2502: -55,-6
- 2547: -55,-23
- 2549: -63,-24
- 2569: -75,-24
- 3225: -30,-10
- 3252: -40,-6
- 3285: -43,-6
- 3323: -33,-10
+ 2413: -26,-9
+ 2443: -43,-10
+ 2482: -49,-6
+ 2500: -56,-7
+ 2501: -55,-6
+ 2546: -55,-23
+ 2548: -63,-24
+ 2568: -75,-24
+ 3224: -30,-10
+ 3251: -40,-6
+ 3284: -43,-6
+ 3322: -33,-10
- node:
color: '#EFB341A7'
id: MiniTileWhiteCornerNw
decals:
- 3935: -33,-22
+ 3926: -33,-22
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerNw
@@ -3968,14 +3968,14 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteCornerSe
decals:
- 3637: 7,-51
- 3667: -23,-63
+ 3628: 7,-51
+ 3658: -23,-63
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerSe
decals:
- 2924: 32,-23
- 2925: 30,-26
+ 2923: 32,-23
+ 2924: 30,-26
- node:
color: '#478C5DDC'
id: MiniTileWhiteCornerSe
@@ -3987,12 +3987,12 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteCornerSe
decals:
- 3187: 73,-50
+ 3186: 73,-50
- node:
color: '#52B4E9B7'
id: MiniTileWhiteCornerSe
decals:
- 3611: 47,4
+ 3602: 47,4
- node:
color: '#52B4E9CD'
id: MiniTileWhiteCornerSe
@@ -4007,37 +4007,37 @@ entities:
color: '#73C2A496'
id: MiniTileWhiteCornerSe
decals:
- 2586: -23,-37
- 2606: -31,-36
- 2616: -36,-37
- 2632: -32,-42
- 2672: -34,-57
- 2673: -35,-58
+ 2585: -23,-37
+ 2605: -31,-36
+ 2615: -36,-37
+ 2631: -32,-42
+ 2671: -34,-57
+ 2672: -35,-58
- node:
color: '#787878AB'
id: MiniTileWhiteCornerSe
decals:
- 3472: 31,-76
+ 3463: 31,-76
- node:
color: '#787878B7'
id: MiniTileWhiteCornerSe
decals:
- 3506: 31,-93
- 3520: 49,-76
- 3521: 50,-74
- 3536: 49,-93
+ 3497: 31,-93
+ 3511: 49,-76
+ 3512: 50,-74
+ 3527: 49,-93
- node:
color: '#88C598FF'
id: MiniTileWhiteCornerSe
decals:
- 3975: 17,-86
+ 3966: 17,-86
- node:
color: '#A4610696'
id: MiniTileWhiteCornerSe
decals:
- 2358: -28,17
- 2378: -47,20
- 2387: -47,31
+ 2357: -28,17
+ 2377: -47,20
+ 2386: -47,31
- node:
color: '#D381C996'
id: MiniTileWhiteCornerSe
@@ -4051,76 +4051,76 @@ entities:
961: 52,-56
962: 53,-54
993: 46,-50
- 3037: 73,-34
- 3038: 73,-39
- 3152: 73,-45
- 3161: 68,-50
- 3170: 77,-48
- 3171: 76,-50
- 3411: 65,-36
- 3412: 64,-37
+ 3036: 73,-34
+ 3037: 73,-39
+ 3151: 73,-45
+ 3160: 68,-50
+ 3169: 77,-48
+ 3170: 76,-50
+ 3410: 65,-36
+ 3411: 64,-37
- node:
color: '#D4D4D406'
id: MiniTileWhiteCornerSe
decals:
- 3952: -40,13
- 3953: -36,13
+ 3943: -40,13
+ 3944: -36,13
- node:
color: '#D4D4D40F'
id: MiniTileWhiteCornerSe
decals:
- 3114: 55,-37
+ 3113: 55,-37
- node:
color: '#D4D4D428'
id: MiniTileWhiteCornerSe
decals:
- 2455: -46,-18
+ 2454: -46,-18
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteCornerSe
decals:
- 2184: 14,-2
- 2189: -3,-2
- 2235: -3,2
- 2236: 14,2
- 2238: 3,2
- 2241: 9,2
+ 2183: 14,-2
+ 2188: -3,-2
+ 2234: -3,2
+ 2235: 14,2
+ 2237: 3,2
+ 2240: 9,2
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerSe
decals:
- 2704: 26,9
- 2708: 26,16
- 2727: 18,16
- 2731: 13,16
- 2746: 8,12
- 2772: 42,4
- 3063: -16,-24
- 3128: 22,-48
- 3292: -15,23
- 3304: 42,14
+ 2703: 26,9
+ 2707: 26,16
+ 2726: 18,16
+ 2730: 13,16
+ 2745: 8,12
+ 2771: 42,4
+ 3062: -16,-24
+ 3127: 22,-48
+ 3291: -15,23
+ 3303: 42,14
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerSe
decals:
- 2409: -28,-15
- 2433: -35,-14
- 2446: -42,-14
- 2481: -45,-7
- 2485: -32,-30
- 2507: -51,-7
- 2538: -51,-21
- 2568: -71,-27
- 3221: -32,-19
- 3222: -24,-18
- 3223: -23,-16
- 3229: -28,-18
- 3283: -42,-8
+ 2408: -28,-15
+ 2432: -35,-14
+ 2445: -42,-14
+ 2480: -45,-7
+ 2484: -32,-30
+ 2506: -51,-7
+ 2537: -51,-21
+ 2567: -71,-27
+ 3220: -32,-19
+ 3221: -24,-18
+ 3222: -23,-16
+ 3228: -28,-18
+ 3282: -42,-8
- node:
color: '#EFB341B1'
id: MiniTileWhiteCornerSe
decals:
- 3918: -51,-26
+ 3909: -51,-26
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerSe
@@ -4130,15 +4130,15 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteCornerSw
decals:
- 3638: 2,-51
- 3665: -27,-62
- 3666: -26,-63
+ 3629: 2,-51
+ 3656: -27,-62
+ 3657: -26,-63
- node:
color: '#334E6DC8'
id: MiniTileWhiteCornerSw
decals:
- 2922: 20,-26
- 2923: 18,-23
+ 2921: 20,-26
+ 2922: 18,-23
- node:
color: '#478C5DDC'
id: MiniTileWhiteCornerSw
@@ -4149,12 +4149,12 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteCornerSw
decals:
- 3186: 69,-50
+ 3185: 69,-50
- node:
color: '#52B4E9B7'
id: MiniTileWhiteCornerSw
decals:
- 3610: 44,4
+ 3601: 44,4
- node:
color: '#52B4E9CD'
id: MiniTileWhiteCornerSw
@@ -4169,42 +4169,42 @@ entities:
color: '#707070B7'
id: MiniTileWhiteCornerSw
decals:
- 3442: 22,-74
+ 3441: 22,-74
- node:
color: '#73C2A496'
id: MiniTileWhiteCornerSw
decals:
- 2587: -26,-37
- 2607: -34,-36
- 2617: -41,-37
- 2633: -33,-42
+ 2586: -26,-37
+ 2606: -34,-36
+ 2616: -41,-37
+ 2632: -33,-42
- node:
color: '#787878AB'
id: MiniTileWhiteCornerSw
decals:
- 3473: 24,-75
- 3474: 29,-76
+ 3464: 24,-75
+ 3465: 29,-76
- node:
color: '#787878B7'
id: MiniTileWhiteCornerSw
decals:
- 3507: 29,-93
- 3516: 27,-87
- 3522: 47,-76
- 3537: 47,-93
+ 3498: 29,-93
+ 3507: 27,-87
+ 3513: 47,-76
+ 3528: 47,-93
- node:
color: '#88C598FF'
id: MiniTileWhiteCornerSw
decals:
- 3979: 13,-86
+ 3970: 13,-86
- node:
color: '#A4610696'
id: MiniTileWhiteCornerSw
decals:
- 2351: -26,17
- 2352: -35,17
- 2379: -49,20
- 2388: -49,31
+ 2350: -26,17
+ 2351: -35,17
+ 2378: -49,20
+ 2387: -49,31
- node:
color: '#D381C996'
id: MiniTileWhiteCornerSw
@@ -4215,71 +4215,71 @@ entities:
942: 59,-50
994: 42,-50
996: 41,-48
- 3143: 67,-45
- 3144: 67,-50
- 3145: 74,-50
- 3416: 60,-37
+ 3142: 67,-45
+ 3143: 67,-50
+ 3144: 74,-50
+ 3415: 60,-37
- node:
color: '#D381C9AB'
id: MiniTileWhiteCornerSw
decals:
- 3122: 70,-39
+ 3121: 70,-39
- node:
color: '#D4D4D406'
id: MiniTileWhiteCornerSw
decals:
- 3948: -41,13
- 3949: -37,13
+ 3939: -41,13
+ 3940: -37,13
- node:
color: '#D4D4D40F'
id: MiniTileWhiteCornerSw
decals:
- 3112: 53,-37
+ 3111: 53,-37
- node:
color: '#D4D4D428'
id: MiniTileWhiteCornerSw
decals:
- 2456: -48,-18
+ 2455: -48,-18
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteCornerSw
decals:
- 2185: -11,-2
- 2188: -1,-2
- 2237: -1,2
- 2239: 5,2
- 2240: 11,2
- 2274: -11,2
+ 2184: -11,-2
+ 2187: -1,-2
+ 2236: -1,2
+ 2238: 5,2
+ 2239: 11,2
+ 2273: -11,2
- node:
color: '#DE3A3A96'
id: MiniTileWhiteCornerSw
decals:
- 2705: 24,9
- 2706: 20,16
- 2728: 15,16
- 2737: 10,16
- 2744: 4,12
- 2796: 40,4
- 2818: 28,14
- 3061: -17,-24
- 3125: 19,-48
- 3291: -17,23
+ 2704: 24,9
+ 2705: 20,16
+ 2727: 15,16
+ 2736: 10,16
+ 2743: 4,12
+ 2795: 40,4
+ 2817: 28,14
+ 3060: -17,-24
+ 3124: 19,-48
+ 3290: -17,23
- node:
color: '#EFB34196'
id: MiniTileWhiteCornerSw
decals:
- 2410: -30,-15
- 2416: -33,-19
- 2434: -40,-14
- 2445: -43,-14
- 2484: -49,-7
- 2500: -33,-30
- 2508: -56,-19
- 2509: -55,-21
- 2548: -63,-26
- 2571: -75,-27
- 3224: -26,-18
- 3286: -43,-8
+ 2409: -30,-15
+ 2415: -33,-19
+ 2433: -40,-14
+ 2444: -43,-14
+ 2483: -49,-7
+ 2499: -33,-30
+ 2507: -56,-19
+ 2508: -55,-21
+ 2547: -63,-26
+ 2570: -75,-27
+ 3223: -26,-18
+ 3285: -43,-8
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteCornerSw
@@ -4289,7 +4289,7 @@ entities:
color: '#D381C996'
id: MiniTileWhiteEndE
decals:
- 3036: 75,-33
+ 3035: 75,-33
- node:
color: '#52B4E9CD'
id: MiniTileWhiteEndS
@@ -4303,7 +4303,7 @@ entities:
color: '#334E6DC8'
id: MiniTileWhiteInnerNe
decals:
- 2928: 19,-22
+ 2927: 19,-22
- node:
color: '#478C5DDC'
id: MiniTileWhiteInnerNe
@@ -4313,28 +4313,28 @@ entities:
color: '#52B4E9B7'
id: MiniTileWhiteInnerNe
decals:
- 3615: 46,7
+ 3606: 46,7
- node:
color: '#707070B7'
id: MiniTileWhiteInnerNe
decals:
- 3452: 27,-71
+ 3451: 27,-71
- node:
color: '#73C2A496'
id: MiniTileWhiteInnerNe
decals:
- 2611: -32,-33
- 2675: -35,-44
+ 2610: -32,-33
+ 2674: -35,-44
- node:
color: '#787878AB'
id: MiniTileWhiteInnerNe
decals:
- 3469: 28,-72
+ 3460: 28,-72
- node:
color: '#A4610696'
id: MiniTileWhiteInnerNe
decals:
- 2375: -31,19
+ 2374: -31,19
- node:
color: '#D381C996'
id: MiniTileWhiteInnerNe
@@ -4342,31 +4342,31 @@ entities:
927: 51,-40
979: 52,-52
989: 51,-51
- 3056: 74,-33
- 3430: 64,-33
+ 3055: 74,-33
+ 3429: 64,-33
- node:
color: '#D381C9AB'
id: MiniTileWhiteInnerNe
decals:
- 3124: 71,-38
+ 3123: 71,-38
- node:
color: '#D381C9C0'
id: MiniTileWhiteInnerNe
decals:
- 3109: 63,-44
+ 3108: 63,-44
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteInnerNe
decals:
- 2279: 9,-2
- 2280: 3,-2
+ 2278: 9,-2
+ 2279: 3,-2
- node:
color: '#EFB34196'
id: MiniTileWhiteInnerNe
decals:
- 2428: -32,-17
- 2543: -54,-13
- 2544: -53,-17
+ 2427: -32,-17
+ 2542: -54,-13
+ 2543: -53,-17
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteInnerNe
@@ -4377,7 +4377,7 @@ entities:
color: '#334E6DC8'
id: MiniTileWhiteInnerNw
decals:
- 2929: 31,-22
+ 2928: 31,-22
- node:
color: '#478C5DDC'
id: MiniTileWhiteInnerNw
@@ -4388,44 +4388,44 @@ entities:
color: '#707070B7'
id: MiniTileWhiteInnerNw
decals:
- 3453: 23,-72
- 3454: 24,-71
+ 3452: 23,-72
+ 3453: 24,-71
- node:
color: '#73C2A496'
id: MiniTileWhiteInnerNw
decals:
- 2610: -33,-33
- 2677: -36,-54
- 2678: -36,-42
+ 2609: -33,-33
+ 2676: -36,-54
+ 2677: -36,-42
- node:
color: '#787878B7'
id: MiniTileWhiteInnerNw
decals:
- 3518: 29,-81
+ 3509: 29,-81
- node:
color: '#D381C996'
id: MiniTileWhiteInnerNw
decals:
986: 48,-57
- 3057: 71,-33
- 3179: 76,-48
+ 3056: 71,-33
+ 3178: 76,-48
- node:
color: '#D381C9C0'
id: MiniTileWhiteInnerNw
decals:
- 3110: 61,-44
+ 3109: 61,-44
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteInnerNw
decals:
- 2281: 11,-2
- 2282: 5,-2
+ 2280: 11,-2
+ 2281: 5,-2
- node:
color: '#EFB34196'
id: MiniTileWhiteInnerNw
decals:
- 2546: -55,-7
- 2566: -55,-24
+ 2545: -55,-7
+ 2565: -55,-24
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteInnerNw
@@ -4437,7 +4437,7 @@ entities:
color: '#334E6DC8'
id: MiniTileWhiteInnerSe
decals:
- 2926: 30,-23
+ 2925: 30,-23
- node:
color: '#52B4E9CD'
id: MiniTileWhiteInnerSe
@@ -4452,12 +4452,12 @@ entities:
color: '#73C2A496'
id: MiniTileWhiteInnerSe
decals:
- 2674: -35,-57
+ 2673: -35,-57
- node:
color: '#787878B7'
id: MiniTileWhiteInnerSe
decals:
- 3533: 49,-74
+ 3524: 49,-74
- node:
color: '#D381C996'
id: MiniTileWhiteInnerSe
@@ -4465,23 +4465,23 @@ entities:
928: 51,-46
978: 52,-54
988: 51,-56
- 3054: 73,-33
- 3055: 71,-34
- 3180: 76,-48
- 3429: 64,-36
+ 3053: 73,-33
+ 3054: 71,-34
+ 3179: 76,-48
+ 3428: 64,-36
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteInnerSe
decals:
- 2277: 3,3
- 2278: 9,3
+ 2276: 3,3
+ 2277: 9,3
- node:
color: '#EFB34196'
id: MiniTileWhiteInnerSe
decals:
- 2542: -54,-7
- 3233: -32,-18
- 3238: -24,-16
+ 2541: -54,-7
+ 3232: -32,-18
+ 3237: -24,-16
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteInnerSe
@@ -4492,12 +4492,12 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteInnerSw
decals:
- 3668: -26,-62
+ 3659: -26,-62
- node:
color: '#334E6DC8'
id: MiniTileWhiteInnerSw
decals:
- 2927: 20,-23
+ 2926: 20,-23
- node:
color: '#52B4E9CD'
id: MiniTileWhiteInnerSw
@@ -4507,22 +4507,22 @@ entities:
742: -6,-55
743: -9,-55
744: -12,-55
- 3023: -2,-48
+ 3022: -2,-48
- node:
color: '#73C2A496'
id: MiniTileWhiteInnerSw
decals:
- 2676: -36,-47
+ 2675: -36,-47
- node:
color: '#787878AB'
id: MiniTileWhiteInnerSw
decals:
- 3481: 29,-75
+ 3472: 29,-75
- node:
color: '#787878B7'
id: MiniTileWhiteInnerSw
decals:
- 3519: 29,-87
+ 3510: 29,-87
- node:
color: '#D381C996'
id: MiniTileWhiteInnerSw
@@ -4532,13 +4532,13 @@ entities:
color: '#D4D4D4D3'
id: MiniTileWhiteInnerSw
decals:
- 2275: 11,3
- 2276: 5,3
+ 2274: 11,3
+ 2275: 5,3
- node:
color: '#EFB34196'
id: MiniTileWhiteInnerSw
decals:
- 2545: -55,-19
+ 2544: -55,-19
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteInnerSw
@@ -4549,23 +4549,23 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteLineE
decals:
- 3639: 7,-50
- 3640: 7,-49
- 3641: 7,-48
- 3642: 7,-47
- 3659: -23,-59
- 3660: -23,-60
- 3661: -23,-61
- 3662: -23,-62
+ 3630: 7,-50
+ 3631: 7,-49
+ 3632: 7,-48
+ 3633: 7,-47
+ 3650: -23,-59
+ 3651: -23,-60
+ 3652: -23,-61
+ 3653: -23,-62
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineE
decals:
- 2915: 32,-22
- 2916: 30,-25
- 2917: 30,-24
- 2932: 16,-26
- 2933: 16,-25
+ 2914: 32,-22
+ 2915: 30,-25
+ 2916: 30,-24
+ 2931: 16,-26
+ 2932: 16,-25
- node:
color: '#478C5DDC'
id: MiniTileWhiteLineE
@@ -4584,13 +4584,13 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteLineE
decals:
- 3192: 73,-49
+ 3191: 73,-49
- node:
color: '#52B4E9B7'
id: MiniTileWhiteLineE
decals:
- 3608: 47,6
- 3609: 47,5
+ 3599: 47,6
+ 3600: 47,5
- node:
color: '#52B4E9CD'
id: MiniTileWhiteLineE
@@ -4612,110 +4612,110 @@ entities:
color: '#646464C7'
id: MiniTileWhiteLineE
decals:
- 3787: -46,0
+ 3778: -46,0
- node:
color: '#707070B7'
id: MiniTileWhiteLineE
decals:
- 3446: 31,-73
+ 3445: 31,-73
- node:
color: '#73C2A496'
id: MiniTileWhiteLineE
decals:
- 2588: -23,-36
- 2589: -23,-35
- 2590: -23,-34
- 2591: -23,-33
- 2608: -31,-34
- 2609: -31,-35
- 2618: -36,-36
- 2619: -36,-35
- 2620: -36,-34
- 2634: -32,-39
- 2635: -32,-40
- 2636: -32,-41
- 2644: -35,-41
- 2646: -35,-42
- 2647: -35,-43
- 2648: -34,-45
- 2649: -34,-46
- 2650: -34,-47
- 2651: -34,-48
- 2652: -34,-49
- 2653: -34,-50
- 2654: -34,-51
- 2655: -34,-52
- 2656: -34,-53
- 2657: -34,-54
- 2658: -34,-55
- 2659: -34,-56
+ 2587: -23,-36
+ 2588: -23,-35
+ 2589: -23,-34
+ 2590: -23,-33
+ 2607: -31,-34
+ 2608: -31,-35
+ 2617: -36,-36
+ 2618: -36,-35
+ 2619: -36,-34
+ 2633: -32,-39
+ 2634: -32,-40
+ 2635: -32,-41
+ 2643: -35,-41
+ 2645: -35,-42
+ 2646: -35,-43
+ 2647: -34,-45
+ 2648: -34,-46
+ 2649: -34,-47
+ 2650: -34,-48
+ 2651: -34,-49
+ 2652: -34,-50
+ 2653: -34,-51
+ 2654: -34,-52
+ 2655: -34,-53
+ 2656: -34,-54
+ 2657: -34,-55
+ 2658: -34,-56
- node:
color: '#787878AB'
id: MiniTileWhiteLineE
decals:
- 3470: 31,-74
- 3471: 31,-75
+ 3461: 31,-74
+ 3462: 31,-75
- node:
color: '#787878B7'
id: MiniTileWhiteLineE
decals:
- 3487: 31,-79
- 3488: 31,-80
- 3489: 31,-81
- 3490: 31,-82
- 3491: 31,-83
- 3492: 31,-84
- 3493: 31,-85
- 3494: 31,-86
- 3495: 31,-87
- 3496: 31,-88
- 3497: 31,-89
- 3498: 31,-90
- 3499: 31,-91
- 3500: 31,-92
- 3529: 50,-73
- 3530: 49,-75
- 3538: 49,-92
- 3539: 49,-91
- 3540: 49,-90
- 3541: 49,-89
- 3542: 49,-88
- 3543: 49,-87
- 3544: 49,-86
- 3545: 49,-85
- 3546: 49,-84
- 3547: 49,-83
- 3548: 49,-82
- 3549: 49,-81
- 3550: 49,-80
- 3551: 49,-79
+ 3478: 31,-79
+ 3479: 31,-80
+ 3480: 31,-81
+ 3481: 31,-82
+ 3482: 31,-83
+ 3483: 31,-84
+ 3484: 31,-85
+ 3485: 31,-86
+ 3486: 31,-87
+ 3487: 31,-88
+ 3488: 31,-89
+ 3489: 31,-90
+ 3490: 31,-91
+ 3491: 31,-92
+ 3520: 50,-73
+ 3521: 49,-75
+ 3529: 49,-92
+ 3530: 49,-91
+ 3531: 49,-90
+ 3532: 49,-89
+ 3533: 49,-88
+ 3534: 49,-87
+ 3535: 49,-86
+ 3536: 49,-85
+ 3537: 49,-84
+ 3538: 49,-83
+ 3539: 49,-82
+ 3540: 49,-81
+ 3541: 49,-80
+ 3542: 49,-79
- node:
color: '#88C598FF'
id: MiniTileWhiteLineE
decals:
- 3980: 17,-84
- 3981: 17,-83
- 3982: 17,-85
+ 3971: 17,-84
+ 3972: 17,-83
+ 3973: 17,-85
- node:
color: '#A4610696'
id: MiniTileWhiteLineE
decals:
- 2331: -23,18
- 2332: -23,19
- 2333: -23,20
- 2334: -23,21
- 2335: -23,22
- 2336: -23,23
- 2337: -23,24
- 2338: -31,24
- 2339: -31,23
- 2340: -31,25
- 2341: -31,22
- 2342: -31,21
- 2343: -31,20
- 2359: -28,18
- 2381: -47,21
- 2385: -47,32
+ 2330: -23,18
+ 2331: -23,19
+ 2332: -23,20
+ 2333: -23,21
+ 2334: -23,22
+ 2335: -23,23
+ 2336: -23,24
+ 2337: -31,24
+ 2338: -31,23
+ 2339: -31,25
+ 2340: -31,22
+ 2341: -31,21
+ 2342: -31,20
+ 2358: -28,18
+ 2380: -47,21
+ 2384: -47,32
- node:
color: '#D381C996'
id: MiniTileWhiteLineE
@@ -4739,81 +4739,81 @@ entities:
1002: 46,-47
1003: 46,-48
1004: 46,-49
- 3045: 71,-37
- 3046: 71,-36
- 3047: 71,-35
- 3164: 68,-49
- 3172: 76,-49
- 3173: 77,-47
- 3174: 77,-46
- 3175: 77,-45
- 3417: 65,-34
- 3418: 65,-35
+ 3044: 71,-37
+ 3045: 71,-36
+ 3046: 71,-35
+ 3163: 68,-49
+ 3171: 76,-49
+ 3172: 77,-47
+ 3173: 77,-46
+ 3174: 77,-45
+ 3416: 65,-34
+ 3417: 65,-35
- node:
color: '#D381C9C0'
id: MiniTileWhiteLineE
decals:
- 3102: 65,-45
+ 3101: 65,-45
- node:
color: '#D4D4D406'
id: MiniTileWhiteLineE
decals:
- 3956: -40,14
- 3957: -36,14
+ 3947: -40,14
+ 3948: -36,14
- node:
color: '#D4D4D40F'
id: MiniTileWhiteLineE
decals:
- 3117: 55,-36
+ 3116: 55,-36
- node:
color: '#D4D4D428'
id: MiniTileWhiteLineE
decals:
- 2458: -46,-17
- 2459: -46,-16
- 2460: -46,-14
- 2461: -46,-15
- 2462: -46,-13
- 2463: -46,-10
- 2464: -46,-11
- 2465: -46,-12
+ 2457: -46,-17
+ 2458: -46,-16
+ 2459: -46,-14
+ 2460: -46,-15
+ 2461: -46,-13
+ 2462: -46,-10
+ 2463: -46,-11
+ 2464: -46,-12
- node:
color: '#DE3A3A96'
id: MiniTileWhiteLineE
decals:
- 2696: 26,12
- 2697: 26,11
- 2698: 26,10
- 2715: 26,17
- 2747: 8,13
- 2748: 8,14
- 2749: 8,15
- 2750: 8,16
- 2785: 42,15
- 2786: 42,13
- 2787: 42,11
- 2788: 42,12
- 2789: 42,10
- 2790: 42,9
- 2791: 42,8
- 2792: 42,7
- 2793: 42,6
- 2794: 42,5
- 2811: 30,20
- 2819: 30,19
- 2820: 30,18
- 2821: 30,17
- 3064: -16,-22
- 3065: -16,-23
- 3134: 22,-47
- 3298: -15,26
- 3299: -15,25
- 3300: -15,24
+ 2695: 26,12
+ 2696: 26,11
+ 2697: 26,10
+ 2714: 26,17
+ 2746: 8,13
+ 2747: 8,14
+ 2748: 8,15
+ 2749: 8,16
+ 2784: 42,15
+ 2785: 42,13
+ 2786: 42,11
+ 2787: 42,12
+ 2788: 42,10
+ 2789: 42,9
+ 2790: 42,8
+ 2791: 42,7
+ 2792: 42,6
+ 2793: 42,5
+ 2810: 30,20
+ 2818: 30,19
+ 2819: 30,18
+ 2820: 30,17
+ 3063: -16,-22
+ 3064: -16,-23
+ 3133: 22,-47
+ 3297: -15,26
+ 3298: -15,25
+ 3299: -15,24
- node:
color: '#DE3A3AA7'
id: MiniTileWhiteLineE
decals:
- 3914: 30,21
+ 3905: 30,21
- node:
color: '#DE3A3AD3'
id: MiniTileWhiteLineE
@@ -4826,78 +4826,78 @@ entities:
color: '#EFB34196'
id: MiniTileWhiteLineE
decals:
- 2392: -23,-14
- 2393: -23,-13
- 2394: -23,-12
- 2395: -23,-11
- 2396: -23,-10
- 2405: -28,-12
- 2406: -28,-13
- 2407: -28,-14
- 2417: -32,-16
- 2418: -32,-14
- 2419: -32,-13
- 2420: -32,-15
- 2435: -35,-13
- 2436: -35,-12
- 2437: -35,-11
- 2438: -35,-10
- 2447: -42,-11
- 2448: -42,-12
- 2449: -42,-13
- 2486: -32,-29
- 2487: -32,-28
- 2488: -32,-27
- 2489: -32,-26
- 2490: -32,-25
- 2491: -32,-23
- 2492: -32,-24
- 2512: -51,-20
- 2513: -51,-19
- 2514: -51,-18
- 2515: -53,-16
- 2516: -53,-15
- 2517: -53,-14
- 2518: -54,-12
- 2519: -54,-11
- 2520: -54,-10
- 2521: -54,-9
- 2522: -54,-8
- 2578: -71,-25
- 2579: -71,-26
- 3216: -32,-11
- 3217: -32,-12
- 3218: -28,-11
- 3219: -23,-15
- 3220: -24,-17
- 3260: -35,-7
- 3261: -35,-8
- 3262: -35,-9
- 3287: -42,-7
+ 2391: -23,-14
+ 2392: -23,-13
+ 2393: -23,-12
+ 2394: -23,-11
+ 2395: -23,-10
+ 2404: -28,-12
+ 2405: -28,-13
+ 2406: -28,-14
+ 2416: -32,-16
+ 2417: -32,-14
+ 2418: -32,-13
+ 2419: -32,-15
+ 2434: -35,-13
+ 2435: -35,-12
+ 2436: -35,-11
+ 2437: -35,-10
+ 2446: -42,-11
+ 2447: -42,-12
+ 2448: -42,-13
+ 2485: -32,-29
+ 2486: -32,-28
+ 2487: -32,-27
+ 2488: -32,-26
+ 2489: -32,-25
+ 2490: -32,-23
+ 2491: -32,-24
+ 2511: -51,-20
+ 2512: -51,-19
+ 2513: -51,-18
+ 2514: -53,-16
+ 2515: -53,-15
+ 2516: -53,-14
+ 2517: -54,-12
+ 2518: -54,-11
+ 2519: -54,-10
+ 2520: -54,-9
+ 2521: -54,-8
+ 2577: -71,-25
+ 2578: -71,-26
+ 3215: -32,-11
+ 3216: -32,-12
+ 3217: -28,-11
+ 3218: -23,-15
+ 3219: -24,-17
+ 3259: -35,-7
+ 3260: -35,-8
+ 3261: -35,-9
+ 3286: -42,-7
- node:
color: '#EFB341B1'
id: MiniTileWhiteLineE
decals:
- 3919: -51,-25
- 3920: -51,-24
+ 3910: -51,-25
+ 3911: -51,-24
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineE
decals:
653: -2,-54
661: 4,-65
- 3020: -10,-54
+ 3019: -10,-54
- node:
color: '#258CC0EA'
id: MiniTileWhiteLineN
decals:
- 3647: 3,-46
- 3648: 4,-46
- 3649: 5,-46
- 3650: 6,-46
- 3651: -25,-58
- 3652: -26,-58
- 3653: -24,-58
+ 3638: 3,-46
+ 3639: 4,-46
+ 3640: 5,-46
+ 3641: 6,-46
+ 3642: -25,-58
+ 3643: -26,-58
+ 3644: -24,-58
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineN
@@ -4907,19 +4907,19 @@ entities:
1010: 31,-59
1011: 30,-59
1012: 29,-59
- 2755: 6,17
- 2901: 30,-22
- 2902: 29,-22
- 2903: 28,-22
- 2904: 27,-22
- 2905: 26,-22
- 2906: 25,-22
- 2907: 24,-22
- 2908: 23,-22
- 2909: 22,-22
- 2910: 21,-22
- 2911: 20,-22
- 2936: 32,-17
+ 2754: 6,17
+ 2900: 30,-22
+ 2901: 29,-22
+ 2902: 28,-22
+ 2903: 27,-22
+ 2904: 26,-22
+ 2905: 25,-22
+ 2906: 24,-22
+ 2907: 23,-22
+ 2908: 22,-22
+ 2909: 21,-22
+ 2910: 20,-22
+ 2935: 32,-17
- node:
color: '#478C5DDC'
id: MiniTileWhiteLineN
@@ -4942,19 +4942,19 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteLineN
decals:
- 3182: 72,-48
- 3183: 71,-48
- 3184: 70,-48
+ 3181: 72,-48
+ 3182: 71,-48
+ 3183: 70,-48
- node:
color: '#52B4E996'
id: MiniTileWhiteLineN
decals:
- 2938: -9,-42
+ 2937: -9,-42
- node:
color: '#52B4E9B7'
id: MiniTileWhiteLineN
decals:
- 3602: 45,8
+ 3593: 45,8
- node:
color: '#52B4E9CD'
id: MiniTileWhiteLineN
@@ -4999,53 +4999,53 @@ entities:
color: '#5D9C7FC1'
id: MiniTileWhiteLineN
decals:
- 3626: -41,-42
+ 3617: -41,-42
- node:
color: '#60A5D9D6'
id: MiniTileWhiteLineN
decals:
- 3405: -13,-53
- 3406: -12,-53
+ 3404: -13,-53
+ 3405: -12,-53
- node:
color: '#707070B7'
id: MiniTileWhiteLineN
decals:
- 3447: 25,-70
- 3448: 26,-70
- 3450: 29,-72
- 3451: 30,-72
+ 3446: 25,-70
+ 3447: 26,-70
+ 3449: 29,-72
+ 3450: 30,-72
- node:
color: '#73C2A496'
id: MiniTileWhiteLineN
decals:
- 2582: -25,-32
- 2583: -24,-32
- 2623: -38,-33
- 2624: -39,-33
- 2625: -40,-33
- 2626: -37,-33
- 2640: -42,-42
- 2641: -40,-42
- 2642: -39,-42
- 2643: -38,-42
- 2662: -37,-54
- 2679: -37,-42
+ 2581: -25,-32
+ 2582: -24,-32
+ 2622: -38,-33
+ 2623: -39,-33
+ 2624: -40,-33
+ 2625: -37,-33
+ 2639: -42,-42
+ 2640: -40,-42
+ 2641: -39,-42
+ 2642: -38,-42
+ 2661: -37,-54
+ 2678: -37,-42
- node:
color: '#787878B7'
id: MiniTileWhiteLineN
decals:
- 3484: 30,-78
- 3510: 28,-81
- 3531: 48,-72
- 3532: 49,-72
- 3567: 48,-78
+ 3475: 30,-78
+ 3501: 28,-81
+ 3522: 48,-72
+ 3523: 49,-72
+ 3558: 48,-78
- node:
color: '#88C598FF'
id: MiniTileWhiteLineN
decals:
- 3967: 16,-82
- 3968: 15,-82
- 3969: 14,-82
+ 3958: 16,-82
+ 3959: 15,-82
+ 3960: 14,-82
- node:
color: '#9FED5896'
id: MiniTileWhiteLineN
@@ -5057,15 +5057,15 @@ entities:
color: '#A4610696'
id: MiniTileWhiteLineN
decals:
- 2344: -29,19
- 2345: -30,19
- 2346: -33,26
- 2347: -32,26
- 2348: -34,26
- 2349: -25,25
- 2350: -24,25
- 2380: -48,22
- 2391: -48,33
+ 2343: -29,19
+ 2344: -30,19
+ 2345: -33,26
+ 2346: -32,26
+ 2347: -34,26
+ 2348: -25,25
+ 2349: -24,25
+ 2379: -48,22
+ 2390: -48,33
- node:
color: '#D381C996'
id: MiniTileWhiteLineN
@@ -5086,152 +5086,152 @@ entities:
999: 44,-46
1000: 42,-46
1001: 43,-46
- 3051: 72,-38
- 3052: 72,-32
- 3053: 73,-32
- 3155: 68,-44
- 3156: 69,-44
- 3157: 70,-44
- 3158: 71,-44
- 3159: 72,-44
- 3160: 75,-48
- 3423: 61,-32
- 3424: 62,-32
- 3425: 63,-32
+ 3050: 72,-38
+ 3051: 72,-32
+ 3052: 73,-32
+ 3154: 68,-44
+ 3155: 69,-44
+ 3156: 70,-44
+ 3157: 71,-44
+ 3158: 72,-44
+ 3159: 75,-48
+ 3422: 61,-32
+ 3423: 62,-32
+ 3424: 63,-32
- node:
color: '#D381C9C0'
id: MiniTileWhiteLineN
decals:
- 3104: 60,-44
- 3105: 64,-44
- 3106: 62,-43
+ 3103: 60,-44
+ 3104: 64,-44
+ 3105: 62,-43
- node:
color: '#D4D4D40F'
id: MiniTileWhiteLineN
decals:
- 3116: 54,-35
+ 3115: 54,-35
- node:
color: '#D4D4D428'
id: MiniTileWhiteLineN
decals:
- 2453: -47,-9
+ 2452: -47,-9
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteLineN
decals:
- 2162: -10,3
- 2163: -9,3
- 2164: -8,3
- 2165: -6,3
- 2166: -7,3
- 2167: -5,3
- 2168: -4,3
- 2169: 0,3
- 2170: 1,3
- 2171: 2,3
- 2172: 3,3
- 2173: 4,3
- 2174: 5,3
- 2175: 6,3
- 2176: 7,3
- 2177: 8,3
- 2178: 9,3
- 2179: 10,3
- 2180: 11,3
- 2181: 12,3
- 2182: 13,3
- 2190: 13,-1
- 2191: 12,-1
- 2227: 8,-1
- 2228: 7,-1
- 2229: 6,-1
- 2230: 2,-1
- 2231: 0,-1
- 2232: 1,-1
- 2244: 10,-2
- 2245: 4,-2
- 2265: -4,-1
- 2266: -5,-1
- 2267: -7,-1
- 2268: -6,-1
- 2269: -8,-1
- 2270: -9,-1
- 2271: -10,-1
+ 2161: -10,3
+ 2162: -9,3
+ 2163: -8,3
+ 2164: -6,3
+ 2165: -7,3
+ 2166: -5,3
+ 2167: -4,3
+ 2168: 0,3
+ 2169: 1,3
+ 2170: 2,3
+ 2171: 3,3
+ 2172: 4,3
+ 2173: 5,3
+ 2174: 6,3
+ 2175: 7,3
+ 2176: 8,3
+ 2177: 9,3
+ 2178: 10,3
+ 2179: 11,3
+ 2180: 12,3
+ 2181: 13,3
+ 2189: 13,-1
+ 2190: 12,-1
+ 2226: 8,-1
+ 2227: 7,-1
+ 2228: 6,-1
+ 2229: 2,-1
+ 2230: 0,-1
+ 2231: 1,-1
+ 2243: 10,-2
+ 2244: 4,-2
+ 2264: -4,-1
+ 2265: -5,-1
+ 2266: -7,-1
+ 2267: -6,-1
+ 2268: -8,-1
+ 2269: -9,-1
+ 2270: -10,-1
- node:
color: '#DE3A3A96'
id: MiniTileWhiteLineN
decals:
- 2691: 26,8
- 2692: 25,8
- 2693: 24,8
- 2695: 25,13
- 2710: 21,18
- 2711: 22,18
- 2712: 23,18
- 2713: 24,18
- 2714: 25,18
- 2724: 17,17
- 2725: 16,17
- 2732: 12,17
- 2733: 11,17
- 2738: 7,17
- 2739: 5,17
- 2775: 29,22
- 2776: 33,16
- 2777: 34,16
- 2778: 35,16
- 2779: 36,16
- 2780: 37,16
- 2781: 38,16
- 2782: 39,16
- 2783: 40,16
- 2784: 41,16
- 2822: 32,16
- 2823: 31,16
- 2935: 20,-17
- 3131: 21,-46
- 3132: 20,-46
- 3293: -16,27
- 3301: 30,16
- 3302: 29,16
+ 2690: 26,8
+ 2691: 25,8
+ 2692: 24,8
+ 2694: 25,13
+ 2709: 21,18
+ 2710: 22,18
+ 2711: 23,18
+ 2712: 24,18
+ 2713: 25,18
+ 2723: 17,17
+ 2724: 16,17
+ 2731: 12,17
+ 2732: 11,17
+ 2737: 7,17
+ 2738: 5,17
+ 2774: 29,22
+ 2775: 33,16
+ 2776: 34,16
+ 2777: 35,16
+ 2778: 36,16
+ 2779: 37,16
+ 2780: 38,16
+ 2781: 39,16
+ 2782: 40,16
+ 2783: 41,16
+ 2821: 32,16
+ 2822: 31,16
+ 2934: 20,-17
+ 3130: 21,-46
+ 3131: 20,-46
+ 3292: -16,27
+ 3300: 30,16
+ 3301: 29,16
- node:
color: '#EFB34196'
id: MiniTileWhiteLineN
decals:
- 2412: -24,-9
- 2413: -25,-9
- 2425: -29,-17
- 2426: -30,-17
- 2427: -31,-17
- 2475: -46,-6
- 2476: -47,-6
- 2477: -48,-6
- 2503: -54,-6
- 2504: -53,-6
- 2505: -52,-6
- 2539: -52,-17
- 2550: -56,-24
- 2551: -57,-24
- 2552: -58,-24
- 2553: -59,-24
- 2554: -60,-24
- 2555: -61,-24
- 2556: -62,-24
- 2572: -72,-24
- 2573: -73,-24
- 2574: -74,-24
- 3227: -29,-10
- 3253: -39,-6
- 3254: -38,-6
- 3255: -37,-6
- 3256: -36,-6
+ 2411: -24,-9
+ 2412: -25,-9
+ 2424: -29,-17
+ 2425: -30,-17
+ 2426: -31,-17
+ 2474: -46,-6
+ 2475: -47,-6
+ 2476: -48,-6
+ 2502: -54,-6
+ 2503: -53,-6
+ 2504: -52,-6
+ 2538: -52,-17
+ 2549: -56,-24
+ 2550: -57,-24
+ 2551: -58,-24
+ 2552: -59,-24
+ 2553: -60,-24
+ 2554: -61,-24
+ 2555: -62,-24
+ 2571: -72,-24
+ 2572: -73,-24
+ 2573: -74,-24
+ 3226: -29,-10
+ 3252: -39,-6
+ 3253: -38,-6
+ 3254: -37,-6
+ 3255: -36,-6
- node:
color: '#EFB341B1'
id: MiniTileWhiteLineN
decals:
- 3921: -54,-23
- 3922: -53,-23
- 3923: -52,-23
+ 3912: -54,-23
+ 3913: -53,-23
+ 3914: -52,-23
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineN
@@ -5243,28 +5243,28 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteLineS
decals:
- 3631: 4,-51
- 3632: 5,-51
- 3633: 3,-51
- 3634: 6,-51
- 3654: -25,-63
- 3655: -24,-63
+ 3622: 4,-51
+ 3623: 5,-51
+ 3624: 3,-51
+ 3625: 6,-51
+ 3645: -25,-63
+ 3646: -24,-63
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineS
decals:
- 2890: 29,-26
- 2891: 28,-26
- 2892: 27,-26
- 2893: 26,-26
- 2894: 25,-26
- 2895: 24,-26
- 2896: 23,-26
- 2897: 22,-26
- 2898: 21,-26
- 2899: 31,-23
- 2900: 19,-23
- 2937: 20,-44
+ 2889: 29,-26
+ 2890: 28,-26
+ 2891: 27,-26
+ 2892: 26,-26
+ 2893: 25,-26
+ 2894: 24,-26
+ 2895: 23,-26
+ 2896: 22,-26
+ 2897: 21,-26
+ 2898: 31,-23
+ 2899: 19,-23
+ 2936: 20,-44
- node:
color: '#478C5DDC'
id: MiniTileWhiteLineS
@@ -5290,9 +5290,9 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteLineS
decals:
- 3188: 70,-50
- 3189: 71,-50
- 3190: 72,-50
+ 3187: 70,-50
+ 3188: 71,-50
+ 3189: 72,-50
- node:
color: '#52B4E9AE'
id: MiniTileWhiteLineS
@@ -5307,8 +5307,8 @@ entities:
color: '#52B4E9B7'
id: MiniTileWhiteLineS
decals:
- 3603: 45,4
- 3604: 46,4
+ 3594: 45,4
+ 3595: 46,4
- node:
color: '#52B4E9CD'
id: MiniTileWhiteLineS
@@ -5348,57 +5348,57 @@ entities:
color: '#73C2A496'
id: MiniTileWhiteLineS
decals:
- 2584: -25,-37
- 2585: -24,-37
- 2604: -33,-36
- 2605: -32,-36
- 2612: -37,-37
- 2613: -38,-37
- 2614: -39,-37
- 2615: -40,-37
- 2660: -36,-58
- 2661: -37,-58
- 2669: -37,-47
- 2670: -38,-47
+ 2583: -25,-37
+ 2584: -24,-37
+ 2603: -33,-36
+ 2604: -32,-36
+ 2611: -37,-37
+ 2612: -38,-37
+ 2613: -39,-37
+ 2614: -40,-37
+ 2659: -36,-58
+ 2660: -37,-58
+ 2668: -37,-47
+ 2669: -38,-47
- node:
color: '#787878AB'
id: MiniTileWhiteLineS
decals:
- 3475: 28,-75
- 3476: 26,-75
- 3477: 27,-75
- 3478: 25,-75
- 3479: 23,-74
- 3480: 30,-76
+ 3466: 28,-75
+ 3467: 26,-75
+ 3468: 27,-75
+ 3469: 25,-75
+ 3470: 23,-74
+ 3471: 30,-76
- node:
color: '#787878B7'
id: MiniTileWhiteLineS
decals:
- 3508: 30,-93
- 3509: 28,-87
- 3525: 48,-76
- 3566: 48,-93
+ 3499: 30,-93
+ 3500: 28,-87
+ 3516: 48,-76
+ 3557: 48,-93
- node:
color: '#88C598FF'
id: MiniTileWhiteLineS
decals:
- 3976: 15,-86
- 3977: 16,-86
- 3978: 14,-86
+ 3967: 15,-86
+ 3968: 16,-86
+ 3969: 14,-86
- node:
color: '#A4610696'
id: MiniTileWhiteLineS
decals:
- 2323: -25,17
- 2324: -24,17
- 2325: -29,17
- 2326: -30,17
- 2327: -31,17
- 2328: -34,17
- 2329: -33,17
- 2330: -32,17
- 2383: -48,20
- 2384: -48,31
+ 2322: -25,17
+ 2323: -24,17
+ 2324: -29,17
+ 2325: -30,17
+ 2326: -31,17
+ 2327: -34,17
+ 2328: -33,17
+ 2329: -32,17
+ 2382: -48,20
+ 2383: -48,31
- node:
color: '#D381C996'
id: MiniTileWhiteLineS
@@ -5423,149 +5423,149 @@ entities:
990: 45,-50
991: 44,-50
992: 43,-50
- 3048: 72,-34
- 3049: 72,-39
- 3050: 74,-33
- 3146: 75,-50
- 3147: 68,-45
- 3148: 69,-45
- 3149: 70,-45
- 3150: 71,-45
- 3151: 72,-45
- 3413: 63,-37
- 3414: 62,-37
- 3415: 61,-37
+ 3047: 72,-34
+ 3048: 72,-39
+ 3049: 74,-33
+ 3145: 75,-50
+ 3146: 68,-45
+ 3147: 69,-45
+ 3148: 70,-45
+ 3149: 71,-45
+ 3150: 72,-45
+ 3412: 63,-37
+ 3413: 62,-37
+ 3414: 61,-37
- node:
color: '#D381C9AB'
id: MiniTileWhiteLineS
decals:
- 3121: 71,-39
+ 3120: 71,-39
- node:
color: '#D4D4D40F'
id: MiniTileWhiteLineS
decals:
- 3119: 54,-37
+ 3118: 54,-37
- node:
color: '#D4D4D428'
id: MiniTileWhiteLineS
decals:
- 2457: -47,-18
+ 2456: -47,-18
- node:
color: '#D4D4D4D3'
id: MiniTileWhiteLineS
decals:
- 2141: 6,-2
- 2142: 7,-2
- 2143: 8,-2
- 2144: 9,-2
- 2145: 10,-2
- 2146: 11,-2
- 2147: 12,-2
- 2148: 13,-2
- 2149: 5,-2
- 2150: 4,-2
- 2151: 3,-2
- 2152: 2,-2
- 2153: 1,-2
- 2154: 0,-2
- 2155: -4,-2
- 2156: -5,-2
- 2157: -6,-2
- 2158: -7,-2
- 2159: -8,-2
- 2160: -9,-2
- 2161: -10,-2
- 2242: 10,3
- 2243: 4,3
- 2250: 12,2
- 2251: 13,2
- 2252: 8,2
- 2253: 7,2
- 2254: 6,2
- 2255: 2,2
- 2256: 1,2
- 2257: 0,2
- 2258: -4,2
- 2259: -5,2
- 2260: -6,2
- 2261: -7,2
- 2262: -8,2
- 2263: -9,2
- 2264: -10,2
+ 2140: 6,-2
+ 2141: 7,-2
+ 2142: 8,-2
+ 2143: 9,-2
+ 2144: 10,-2
+ 2145: 11,-2
+ 2146: 12,-2
+ 2147: 13,-2
+ 2148: 5,-2
+ 2149: 4,-2
+ 2150: 3,-2
+ 2151: 2,-2
+ 2152: 1,-2
+ 2153: 0,-2
+ 2154: -4,-2
+ 2155: -5,-2
+ 2156: -6,-2
+ 2157: -7,-2
+ 2158: -8,-2
+ 2159: -9,-2
+ 2160: -10,-2
+ 2241: 10,3
+ 2242: 4,3
+ 2249: 12,2
+ 2250: 13,2
+ 2251: 8,2
+ 2252: 7,2
+ 2253: 6,2
+ 2254: 2,2
+ 2255: 1,2
+ 2256: 0,2
+ 2257: -4,2
+ 2258: -5,2
+ 2259: -6,2
+ 2260: -7,2
+ 2261: -8,2
+ 2262: -9,2
+ 2263: -10,2
- node:
color: '#DE3A3A96'
id: MiniTileWhiteLineS
decals:
- 2694: 25,9
- 2716: 25,16
- 2717: 24,16
- 2718: 23,16
- 2719: 21,16
- 2720: 22,16
- 2722: 17,16
- 2723: 16,16
- 2734: 12,16
- 2735: 11,16
- 2742: 6,12
- 2743: 7,12
- 2745: 5,12
- 2795: 41,4
- 2800: 39,14
- 2801: 38,14
- 2802: 37,14
- 2803: 36,14
- 2804: 34,14
- 2805: 35,14
- 2806: 33,14
- 2807: 32,14
- 2808: 31,14
- 2809: 29,14
- 2810: 30,14
- 3129: 21,-48
- 3130: 20,-48
- 3294: -16,23
- 3305: 41,14
- 3306: 40,14
+ 2693: 25,9
+ 2715: 25,16
+ 2716: 24,16
+ 2717: 23,16
+ 2718: 21,16
+ 2719: 22,16
+ 2721: 17,16
+ 2722: 16,16
+ 2733: 12,16
+ 2734: 11,16
+ 2741: 6,12
+ 2742: 7,12
+ 2744: 5,12
+ 2794: 41,4
+ 2799: 39,14
+ 2800: 38,14
+ 2801: 37,14
+ 2802: 36,14
+ 2803: 34,14
+ 2804: 35,14
+ 2805: 33,14
+ 2806: 32,14
+ 2807: 31,14
+ 2808: 29,14
+ 2809: 30,14
+ 3128: 21,-48
+ 3129: 20,-48
+ 3293: -16,23
+ 3304: 41,14
+ 3305: 40,14
- node:
color: '#EFB34196'
id: MiniTileWhiteLineS
decals:
- 2408: -29,-15
- 2429: -37,-14
- 2430: -38,-14
- 2431: -39,-14
- 2432: -36,-14
- 2478: -46,-7
- 2479: -48,-7
- 2480: -47,-7
- 2535: -54,-21
- 2536: -53,-21
- 2537: -52,-21
- 2540: -52,-7
- 2541: -53,-7
- 2557: -62,-26
+ 2407: -29,-15
+ 2428: -37,-14
+ 2429: -38,-14
+ 2430: -39,-14
+ 2431: -36,-14
+ 2477: -46,-7
+ 2478: -48,-7
+ 2479: -47,-7
+ 2534: -54,-21
+ 2535: -53,-21
+ 2536: -52,-21
+ 2539: -52,-7
+ 2540: -53,-7
+ 2556: -62,-26
+ 2557: -61,-26
2558: -61,-26
- 2559: -61,-26
- 2560: -60,-26
- 2561: -59,-26
- 2562: -58,-26
- 2563: -57,-26
- 2564: -56,-26
- 2565: -55,-26
- 2575: -72,-27
- 2576: -73,-27
- 2577: -74,-27
- 3230: -29,-18
- 3231: -30,-18
- 3232: -31,-18
- 3234: -25,-18
+ 2559: -60,-26
+ 2560: -59,-26
+ 2561: -58,-26
+ 2562: -57,-26
+ 2563: -56,-26
+ 2564: -55,-26
+ 2574: -72,-27
+ 2575: -73,-27
+ 2576: -74,-27
+ 3229: -29,-18
+ 3230: -30,-18
+ 3231: -31,-18
+ 3233: -25,-18
- node:
color: '#EFB341B1'
id: MiniTileWhiteLineS
decals:
- 3925: -52,-26
- 3926: -53,-26
- 3927: -54,-26
+ 3916: -52,-26
+ 3917: -53,-26
+ 3918: -54,-26
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineS
@@ -5577,23 +5577,23 @@ entities:
color: '#258CC0EA'
id: MiniTileWhiteLineW
decals:
- 3643: 2,-50
- 3644: 2,-49
- 3645: 2,-48
- 3646: 2,-47
- 3656: -27,-59
- 3657: -27,-60
- 3658: -27,-61
+ 3634: 2,-50
+ 3635: 2,-49
+ 3636: 2,-48
+ 3637: 2,-47
+ 3647: -27,-59
+ 3648: -27,-60
+ 3649: -27,-61
- node:
color: '#334E6DC8'
id: MiniTileWhiteLineW
decals:
- 2912: 20,-25
- 2913: 20,-24
- 2914: 18,-22
- 2930: 34,-25
- 2931: 34,-26
- 2934: 34,-31
+ 2911: 20,-25
+ 2912: 20,-24
+ 2913: 18,-22
+ 2929: 34,-25
+ 2930: 34,-26
+ 2933: 34,-31
- node:
color: '#478C5DDC'
id: MiniTileWhiteLineW
@@ -5611,14 +5611,14 @@ entities:
color: '#52B4E963'
id: MiniTileWhiteLineW
decals:
- 3191: 69,-49
+ 3190: 69,-49
- node:
color: '#52B4E9B7'
id: MiniTileWhiteLineW
decals:
- 3605: 44,7
- 3606: 44,6
- 3607: 44,5
+ 3596: 44,7
+ 3597: 44,6
+ 3598: 44,5
- node:
color: '#52B4E9CD'
id: MiniTileWhiteLineW
@@ -5640,91 +5640,91 @@ entities:
color: '#707070B7'
id: MiniTileWhiteLineW
decals:
- 3449: 22,-73
+ 3448: 22,-73
- node:
color: '#73C2A496'
id: MiniTileWhiteLineW
decals:
- 2594: -26,-33
- 2595: -26,-34
- 2596: -26,-35
- 2597: -26,-36
- 2598: -34,-34
- 2599: -34,-35
- 2627: -41,-34
- 2628: -41,-35
- 2629: -41,-36
- 2637: -33,-39
- 2638: -33,-40
- 2639: -33,-41
- 2645: -36,-41
- 2663: -36,-53
- 2664: -36,-51
- 2665: -36,-50
- 2666: -36,-52
- 2667: -36,-49
- 2668: -36,-48
+ 2593: -26,-33
+ 2594: -26,-34
+ 2595: -26,-35
+ 2596: -26,-36
+ 2597: -34,-34
+ 2598: -34,-35
+ 2626: -41,-34
+ 2627: -41,-35
+ 2628: -41,-36
+ 2636: -33,-39
+ 2637: -33,-40
+ 2638: -33,-41
+ 2644: -36,-41
+ 2662: -36,-53
+ 2663: -36,-51
+ 2664: -36,-50
+ 2665: -36,-52
+ 2666: -36,-49
+ 2667: -36,-48
- node:
color: '#787878B7'
id: MiniTileWhiteLineW
decals:
- 3485: 29,-79
- 3486: 29,-80
- 3501: 29,-92
- 3502: 29,-91
- 3503: 29,-90
- 3504: 29,-89
- 3505: 29,-88
- 3511: 27,-82
- 3512: 27,-83
- 3513: 27,-84
- 3514: 27,-85
- 3515: 27,-86
- 3526: 47,-75
- 3527: 47,-74
- 3528: 47,-73
- 3552: 47,-79
- 3553: 47,-80
- 3554: 47,-82
- 3555: 47,-81
- 3556: 47,-83
- 3557: 47,-84
- 3558: 47,-85
- 3559: 47,-86
- 3560: 47,-88
- 3561: 47,-87
- 3562: 47,-89
- 3563: 47,-90
- 3564: 47,-91
- 3565: 47,-92
+ 3476: 29,-79
+ 3477: 29,-80
+ 3492: 29,-92
+ 3493: 29,-91
+ 3494: 29,-90
+ 3495: 29,-89
+ 3496: 29,-88
+ 3502: 27,-82
+ 3503: 27,-83
+ 3504: 27,-84
+ 3505: 27,-85
+ 3506: 27,-86
+ 3517: 47,-75
+ 3518: 47,-74
+ 3519: 47,-73
+ 3543: 47,-79
+ 3544: 47,-80
+ 3545: 47,-82
+ 3546: 47,-81
+ 3547: 47,-83
+ 3548: 47,-84
+ 3549: 47,-85
+ 3550: 47,-86
+ 3551: 47,-88
+ 3552: 47,-87
+ 3553: 47,-89
+ 3554: 47,-90
+ 3555: 47,-91
+ 3556: 47,-92
- node:
color: '#88C598FF'
id: MiniTileWhiteLineW
decals:
- 3972: 13,-83
- 3973: 13,-84
- 3974: 13,-85
+ 3963: 13,-83
+ 3964: 13,-84
+ 3965: 13,-85
- node:
color: '#A4610696'
id: MiniTileWhiteLineW
decals:
- 2360: -26,18
- 2361: -26,19
- 2362: -26,20
- 2363: -26,21
- 2364: -26,22
- 2365: -26,23
- 2366: -26,24
- 2367: -35,18
- 2368: -35,19
- 2369: -35,21
- 2370: -35,22
- 2371: -35,20
- 2372: -35,23
- 2373: -35,24
- 2374: -35,25
- 2382: -49,21
- 2386: -49,32
+ 2359: -26,18
+ 2360: -26,19
+ 2361: -26,20
+ 2362: -26,21
+ 2363: -26,22
+ 2364: -26,23
+ 2365: -26,24
+ 2366: -35,18
+ 2367: -35,19
+ 2368: -35,21
+ 2369: -35,22
+ 2370: -35,20
+ 2371: -35,23
+ 2372: -35,24
+ 2373: -35,25
+ 2381: -49,21
+ 2385: -49,32
- node:
color: '#D381C996'
id: MiniTileWhiteLineW
@@ -5748,142 +5748,142 @@ entities:
987: 48,-56
1005: 41,-47
1006: 42,-49
- 3041: 70,-34
- 3042: 70,-35
- 3043: 70,-36
- 3044: 70,-37
- 3165: 67,-49
- 3166: 74,-49
- 3176: 76,-47
- 3177: 76,-46
- 3178: 76,-45
- 3419: 60,-33
- 3420: 60,-34
- 3421: 60,-35
- 3422: 60,-36
+ 3040: 70,-34
+ 3041: 70,-35
+ 3042: 70,-36
+ 3043: 70,-37
+ 3164: 67,-49
+ 3165: 74,-49
+ 3175: 76,-47
+ 3176: 76,-46
+ 3177: 76,-45
+ 3418: 60,-33
+ 3419: 60,-34
+ 3420: 60,-35
+ 3421: 60,-36
- node:
color: '#D381C9AB'
id: MiniTileWhiteLineW
decals:
- 3123: 70,-38
+ 3122: 70,-38
- node:
color: '#D381C9C0'
id: MiniTileWhiteLineW
decals:
- 3103: 59,-45
+ 3102: 59,-45
- node:
color: '#D4D4D406'
id: MiniTileWhiteLineW
decals:
- 3958: -41,14
- 3959: -37,14
+ 3949: -41,14
+ 3950: -37,14
- node:
color: '#D4D4D40F'
id: MiniTileWhiteLineW
decals:
- 3118: 53,-36
+ 3117: 53,-36
- node:
color: '#D4D4D428'
id: MiniTileWhiteLineW
decals:
- 2466: -48,-10
- 2467: -48,-11
- 2468: -48,-12
- 2469: -48,-13
- 2470: -48,-14
- 2471: -48,-15
- 2472: -48,-16
- 2473: -48,-17
+ 2465: -48,-10
+ 2466: -48,-11
+ 2467: -48,-12
+ 2468: -48,-13
+ 2469: -48,-14
+ 2470: -48,-15
+ 2471: -48,-16
+ 2472: -48,-17
- node:
color: '#DE3A3A96'
id: MiniTileWhiteLineW
decals:
- 2699: 24,12
- 2700: 24,11
- 2701: 24,10
- 2721: 20,17
- 2751: 4,16
- 2752: 4,15
- 2753: 4,13
- 2754: 4,14
- 2797: 40,5
- 2798: 40,6
- 2799: 40,7
- 2812: 28,21
- 2813: 28,20
- 2814: 28,19
- 2815: 28,18
- 2816: 28,17
- 2817: 28,15
- 3066: -17,-22
- 3067: -17,-23
- 3133: 19,-47
- 3295: -17,24
- 3296: -17,25
- 3297: -17,26
- 3596: 40,13
- 3597: 40,12
- 3598: 40,11
- 3599: 40,10
- 3600: 40,9
- 3601: 40,8
+ 2698: 24,12
+ 2699: 24,11
+ 2700: 24,10
+ 2720: 20,17
+ 2750: 4,16
+ 2751: 4,15
+ 2752: 4,13
+ 2753: 4,14
+ 2796: 40,5
+ 2797: 40,6
+ 2798: 40,7
+ 2811: 28,21
+ 2812: 28,20
+ 2813: 28,19
+ 2814: 28,18
+ 2815: 28,17
+ 2816: 28,15
+ 3065: -17,-22
+ 3066: -17,-23
+ 3132: 19,-47
+ 3294: -17,24
+ 3295: -17,25
+ 3296: -17,26
+ 3587: 40,13
+ 3588: 40,12
+ 3589: 40,11
+ 3590: 40,10
+ 3591: 40,9
+ 3592: 40,8
- node:
color: '#EFB34196'
id: MiniTileWhiteLineW
decals:
- 2397: -26,-14
- 2398: -26,-13
- 2399: -26,-11
- 2400: -26,-12
- 2401: -26,-10
- 2402: -30,-12
- 2403: -30,-13
- 2404: -30,-14
- 2421: -33,-15
- 2422: -33,-17
- 2423: -33,-16
- 2424: -33,-18
- 2439: -40,-10
- 2440: -40,-11
- 2441: -40,-12
- 2442: -40,-13
- 2450: -43,-11
- 2451: -43,-12
- 2452: -43,-13
- 2493: -33,-23
- 2494: -33,-24
- 2495: -33,-25
- 2496: -33,-26
- 2497: -33,-27
- 2498: -33,-28
- 2499: -33,-29
- 2523: -56,-8
- 2524: -56,-9
- 2525: -56,-10
- 2526: -56,-11
- 2527: -56,-12
- 2528: -56,-14
- 2529: -56,-13
- 2530: -56,-15
- 2531: -56,-16
- 2532: -56,-17
- 2533: -56,-18
- 2534: -55,-20
- 2567: -63,-25
- 2580: -75,-25
- 2581: -75,-26
- 3214: -33,-12
- 3215: -33,-11
- 3228: -30,-11
- 3235: -26,-17
- 3236: -26,-16
- 3237: -26,-15
- 3257: -40,-7
- 3258: -40,-8
- 3259: -40,-9
- 3288: -43,-7
- 3825: -33,-14
- 3826: -33,-13
+ 2396: -26,-14
+ 2397: -26,-13
+ 2398: -26,-11
+ 2399: -26,-12
+ 2400: -26,-10
+ 2401: -30,-12
+ 2402: -30,-13
+ 2403: -30,-14
+ 2420: -33,-15
+ 2421: -33,-17
+ 2422: -33,-16
+ 2423: -33,-18
+ 2438: -40,-10
+ 2439: -40,-11
+ 2440: -40,-12
+ 2441: -40,-13
+ 2449: -43,-11
+ 2450: -43,-12
+ 2451: -43,-13
+ 2492: -33,-23
+ 2493: -33,-24
+ 2494: -33,-25
+ 2495: -33,-26
+ 2496: -33,-27
+ 2497: -33,-28
+ 2498: -33,-29
+ 2522: -56,-8
+ 2523: -56,-9
+ 2524: -56,-10
+ 2525: -56,-11
+ 2526: -56,-12
+ 2527: -56,-14
+ 2528: -56,-13
+ 2529: -56,-15
+ 2530: -56,-16
+ 2531: -56,-17
+ 2532: -56,-18
+ 2533: -55,-20
+ 2566: -63,-25
+ 2579: -75,-25
+ 2580: -75,-26
+ 3213: -33,-12
+ 3214: -33,-11
+ 3227: -30,-11
+ 3234: -26,-17
+ 3235: -26,-16
+ 3236: -26,-15
+ 3256: -40,-7
+ 3257: -40,-8
+ 3258: -40,-9
+ 3287: -43,-7
+ 3816: -33,-14
+ 3817: -33,-13
- node:
color: '#FFFFFFFF'
id: MiniTileWhiteLineW
@@ -5895,53 +5895,53 @@ entities:
color: '#646C6447'
id: MonoOverlay
decals:
- 3788: -20,-19
- 3789: -20,-23
- 3790: -20,-11
- 3791: -20,-28
- 3792: -16,-27
- 3793: -20,-35
- 3794: -10,-27
- 3795: -5,-33
- 3796: -5,-25
- 3797: 1,-27
- 3798: 8,-27
- 3799: -1,-43
- 3800: -12,-43
- 3801: -19,-43
- 3802: -20,-37
- 3803: 33,-3
- 3804: 43,1
- 3805: 52,-2
- 3806: 32,7
+ 3779: -20,-19
+ 3780: -20,-23
+ 3781: -20,-11
+ 3782: -20,-28
+ 3783: -16,-27
+ 3784: -20,-35
+ 3785: -10,-27
+ 3786: -5,-33
+ 3787: -5,-25
+ 3788: 1,-27
+ 3789: 8,-27
+ 3790: -1,-43
+ 3791: -12,-43
+ 3792: -19,-43
+ 3793: -20,-37
+ 3794: 33,-3
+ 3795: 43,1
+ 3796: 52,-2
+ 3797: 32,7
- node:
color: '#D4F8D406'
id: MonoOverlay
decals:
- 3960: -5,-11
- 3961: -5,-5
- 3962: -5,-20
- 3963: -20,-13
- 3964: -17,-27
+ 3951: -5,-11
+ 3952: -5,-5
+ 3953: -5,-20
+ 3954: -20,-13
+ 3955: -17,-27
- node:
color: '#646C6447'
id: OffsetCheckerAOverlay
decals:
- 3807: -4,-26
- 3808: -5,-28
+ 3798: -4,-26
+ 3799: -5,-28
- node:
color: '#8259640C'
id: OffsetCheckerBOverlay
decals:
- 3809: -32,9
- 3810: -33,9
- 3811: -34,9
- 3812: -34,10
- 3813: -31,10
- 3814: -31,9
- 3815: -31,8
- 3816: -30,10
- 3817: -30,9
+ 3800: -32,9
+ 3801: -33,9
+ 3802: -34,9
+ 3803: -34,10
+ 3804: -31,10
+ 3805: -31,9
+ 3806: -31,8
+ 3807: -30,10
+ 3808: -30,9
- node:
color: '#FFFFFFFF'
id: OriginStationSign1
@@ -6011,47 +6011,47 @@ entities:
color: '#3B000098'
id: PavementVerticalCheckerAOverlay
decals:
- 3770: -39,6
- 3771: -39,5
- 3772: -39,4
- 3773: -39,3
- 3774: -38,3
- 3775: -38,4
- 3776: -38,5
- 3777: -38,6
+ 3761: -39,6
+ 3762: -39,5
+ 3763: -39,4
+ 3764: -39,3
+ 3765: -38,3
+ 3766: -38,4
+ 3767: -38,5
+ 3768: -38,6
- node:
color: '#476F6433'
id: PavementVerticalCheckerAOverlay
decals:
- 3818: -42,-13
- 3819: -43,-11
- 3820: -42,-7
- 3821: -43,-8
- 3822: -39,-11
- 3823: -30,-13
- 3824: -29,-15
+ 3809: -42,-13
+ 3810: -43,-11
+ 3811: -42,-7
+ 3812: -43,-8
+ 3813: -39,-11
+ 3814: -30,-13
+ 3815: -29,-15
- node:
color: '#00000093'
id: PavementVerticalCheckerBOverlay
decals:
- 3778: -39,6
- 3779: -38,6
- 3780: -39,5
- 3781: -38,5
- 3782: -39,4
- 3783: -38,4
- 3784: -39,3
- 3785: -38,3
+ 3769: -39,6
+ 3770: -38,6
+ 3771: -39,5
+ 3772: -38,5
+ 3773: -39,4
+ 3774: -38,4
+ 3775: -39,3
+ 3776: -38,3
- node:
color: '#EFB34160'
id: QuarterTileOverlayGreyscale
decals:
- 2993: -15,-5
+ 2992: -15,-5
- node:
color: '#EFB34160'
id: QuarterTileOverlayGreyscale180
decals:
- 2987: -25,6
+ 2986: -25,6
- node:
color: '#FFFFFF79'
id: QuarterTileOverlayGreyscale180
@@ -6061,12 +6061,12 @@ entities:
color: '#EFB34153'
id: QuarterTileOverlayGreyscale270
decals:
- 3012: -15,6
+ 3011: -15,6
- node:
color: '#EFB34150'
id: QuarterTileOverlayGreyscale90
decals:
- 3018: -25,-5
+ 3017: -25,-5
- node:
color: '#FFFFFF79'
id: QuarterTileOverlayGreyscale90
@@ -6079,8 +6079,8 @@ entities:
482: -10.301918,53.89685
483: -9.380043,53.8031
484: -3.5987926,53.818726
- 3738: -8.789691,17.921444
- 3739: -4.6178155,17.827694
+ 3729: -8.789691,17.921444
+ 3730: -4.6178155,17.827694
- node:
color: '#FFFFFFFF'
id: Rock03
@@ -6099,36 +6099,36 @@ entities:
461: -4.0786057,48.216747
462: -7.6469474,55.2557
463: -6.2719474,53.567944
- 3210: -36,6
- 3211: -32,5
- 3212: -31,3
+ 3209: -36,6
+ 3210: -32,5
+ 3211: -31,3
- node:
color: '#FFFFFFFF'
id: Rock06
decals:
- 3207: -42,3
- 3209: -35,4
- 3213: -33,3
- 3965: 14.8844185,-83.7239
+ 3206: -42,3
+ 3208: -35,4
+ 3212: -33,3
+ 3956: 14.8844185,-83.7239
- node:
cleanable: True
color: '#FFFFFFFF'
id: Rock06
decals:
- 4021: 53.911736,-9.502742
+ 4012: 53.911736,-9.502742
- node:
color: '#FFFFFFFF'
id: Rock07
decals:
- 3208: -40,5
- 3966: 14.3531685,-84.333275
+ 3207: -40,5
+ 3957: 14.3531685,-84.333275
- node:
cleanable: True
color: '#FFFFFFFF'
id: Rock07
decals:
- 4022: 60.067986,-9.424617
- 4023: 66.06798,-9.408992
+ 4013: 60.067986,-9.424617
+ 4014: 66.06798,-9.408992
- node:
color: '#FFFFFFFF'
id: SpaceStationSign1
@@ -6170,10 +6170,10 @@ entities:
decals:
391: -9,-45
392: -1,-45
- 3093: 77.48695,-34.5492
- 3094: 77.50258,-37.51795
- 3325: -9,-52
- 3326: -1,-52
+ 3092: 77.48695,-34.5492
+ 3093: 77.50258,-37.51795
+ 3324: -9,-52
+ 3325: -1,-52
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale
@@ -6214,7 +6214,7 @@ entities:
color: '#D4D4D47C'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 3309: 4,-60
+ 3308: 4,-60
- node:
color: '#D4D4D496'
id: ThreeQuarterTileOverlayGreyscale270
@@ -6250,12 +6250,12 @@ entities:
color: '#FFFFFFFF'
id: VentSmall
decals:
- 3139: 62,-44
+ 3138: 62,-44
- node:
color: '#A46106FF'
id: WarnBox
decals:
- 3315: -13,-13
+ 3314: -13,-13
- node:
color: '#FFFFFFFF'
id: WarnBox
@@ -6264,79 +6264,79 @@ entities:
359: -52,20
375: -52,33
376: -52,31
- 3316: -11,-13
- 3318: -41,18
+ 3315: -11,-13
+ 3317: -41,18
- node:
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 3058: -40,-59
- 3088: 54,-62
- 3091: 78,-34
- 3092: 78,-37
- 3867: -50,-37
+ 3057: -40,-59
+ 3087: 54,-62
+ 3090: 78,-34
+ 3091: 78,-37
+ 3858: -50,-37
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
- 3059: -38,-59
- 3087: 56,-61
- 3089: 77,-34
- 3090: 77,-37
+ 3058: -38,-59
+ 3086: 56,-61
+ 3088: 77,-34
+ 3089: 77,-37
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
decals:
- 3095: 78,-38
- 3096: 78,-35
- 3763: -72,-40
+ 3094: 78,-38
+ 3095: 78,-35
+ 3754: -72,-40
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
decals:
- 3097: 77,-35
- 3098: 77,-38
+ 3096: 77,-35
+ 3097: 77,-38
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
- 3081: 17,36
- 3082: 15,37
- 3862: -78,-43
- 3872: -50,-40
+ 3080: 17,36
+ 3081: 15,37
+ 3853: -78,-43
+ 3863: -50,-40
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
decals:
- 3083: 15,36
- 3084: 17,37
- 3861: -76,-43
+ 3082: 15,36
+ 3083: 17,37
+ 3852: -76,-43
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 3079: 15,39
- 3080: 17,38
- 3860: -78,-41
+ 3078: 15,39
+ 3079: 17,38
+ 3851: -78,-41
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
decals:
328: 47,-58
- 2689: -38,-42
- 3077: 17,39
- 3078: 15,38
- 3863: -76,-41
+ 2688: -38,-42
+ 3076: 17,39
+ 3077: 15,38
+ 3854: -76,-41
- node:
color: '#FFFFFFFF'
id: WarnEndN
decals:
- 3768: -70,-46
+ 3759: -70,-46
- node:
color: '#FFFFFFFF'
id: WarnEndS
decals:
- 3769: -70,-47
+ 3760: -70,-47
- node:
color: '#FFFFFFFF'
id: WarnLineE
@@ -6344,15 +6344,15 @@ entities:
274: -39,-53
275: -39,-54
276: -39,-55
- 2318: 38,-26
- 2319: 38,-27
- 3071: 15,38
- 3075: 17,37
- 3764: -72,-39
- 3859: -78,-42
- 3870: -50,-38
- 3871: -50,-39
- 3874: -72,-38
+ 2317: 38,-26
+ 2318: 38,-27
+ 3070: 15,38
+ 3074: 17,37
+ 3755: -72,-39
+ 3850: -78,-42
+ 3861: -50,-38
+ 3862: -50,-39
+ 3865: -72,-38
- node:
color: '#DE3A3A96'
id: WarnLineGreyscaleE
@@ -6373,17 +6373,17 @@ entities:
277: -39,-42
278: -40,-42
985: 45,-58
- 3070: 14,38
- 3073: 16,39
- 3074: 18,38
- 3426: 63,-31
- 3427: 62,-31
- 3428: 61,-31
- 3625: -42,-42
- 3627: -41,-42
- 3765: -73,-40
- 3766: -74,-40
- 3858: -77,-41
+ 3069: 14,38
+ 3072: 16,39
+ 3073: 18,38
+ 3425: 63,-31
+ 3426: 62,-31
+ 3427: 61,-31
+ 3616: -42,-42
+ 3618: -41,-42
+ 3756: -73,-40
+ 3757: -74,-40
+ 3849: -77,-41
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -6400,17 +6400,17 @@ entities:
268: -40,-54
269: -40,-55
984: 47,-59
- 2682: -38,-43
- 2683: -38,-44
- 2684: -38,-45
- 2685: -38,-46
- 2686: -38,-47
- 2687: -37,-54
- 2688: -37,-58
- 2690: -42,-42
- 3068: 15,37
- 3072: 17,38
- 3857: -76,-42
+ 2681: -38,-43
+ 2682: -38,-44
+ 2683: -38,-45
+ 2684: -38,-46
+ 2685: -38,-47
+ 2686: -37,-54
+ 2687: -37,-58
+ 2689: -42,-42
+ 3067: 15,37
+ 3071: 17,38
+ 3848: -76,-42
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -6419,371 +6419,371 @@ entities:
235: 53,-62
272: -40,-53
273: -39,-53
- 2680: -36,-41
- 2681: -35,-41
- 3069: 14,36
- 3076: 18,36
- 3086: 16,37
- 3856: -77,-43
- 3868: -49,-40
- 3869: -51,-37
+ 2679: -36,-41
+ 2680: -35,-41
+ 3068: 14,36
+ 3075: 18,36
+ 3085: 16,37
+ 3847: -77,-43
+ 3859: -49,-40
+ 3860: -51,-37
- node:
color: '#A7A5FFFF'
id: WoodTrimThinCornerNe
decals:
- 3883: 29,-35
- 3884: 29,-39
+ 3874: 29,-35
+ 3875: 29,-39
- node:
color: '#AE8C69FF'
id: WoodTrimThinCornerNe
decals:
- 3988: 18,-81
- 3989: 19,-82
+ 3979: 18,-81
+ 3980: 19,-82
- node:
color: '#D4D4D4E3'
id: WoodTrimThinCornerNe
decals:
- 2827: 14,14
- 2853: 18,14
- 2864: 13,-11
- 2865: 12,-4
+ 2826: 14,14
+ 2852: 18,14
+ 2863: 13,-11
+ 2864: 12,-4
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
decals:
- 2309: 34,-54
- 3714: 2,21
+ 2308: 34,-54
+ 3705: 2,21
- node:
color: '#A7A5FFFF'
id: WoodTrimThinCornerNw
decals:
- 3880: 21,-35
+ 3871: 21,-35
- node:
color: '#AE8C69FF'
id: WoodTrimThinCornerNw
decals:
- 3993: 12,-81
+ 3984: 12,-81
- node:
color: '#D4D4D4E3'
id: WoodTrimThinCornerNw
decals:
- 2825: 8,10
- 2826: 10,14
- 2854: 16,14
- 2866: 10,-4
+ 2824: 8,10
+ 2825: 10,14
+ 2853: 16,14
+ 2865: 10,-4
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
- 2310: 28,-54
- 3712: -2,21
+ 2309: 28,-54
+ 3703: -2,21
- node:
color: '#A7A5FFFF'
id: WoodTrimThinCornerSe
decals:
- 3885: 29,-37
- 3886: 29,-40
+ 3876: 29,-37
+ 3877: 29,-40
- node:
color: '#AE8C69FF'
id: WoodTrimThinCornerSe
decals:
- 3990: 18,-87
- 3991: 19,-86
+ 3981: 18,-87
+ 3982: 19,-86
- node:
color: '#D4D4D4E3'
id: WoodTrimThinCornerSe
decals:
- 2824: 14,5
- 2862: 13,-13
+ 2823: 14,5
+ 2861: 13,-13
- node:
color: '#D4D4D4E9'
id: WoodTrimThinCornerSe
decals:
- 3193: 18,9
+ 3192: 18,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
decals:
- 2306: 34,-57
- 3713: 2,16
+ 2305: 34,-57
+ 3704: 2,16
- node:
color: '#A7A5FFFF'
id: WoodTrimThinCornerSw
decals:
- 3881: 21,-38
- 3882: 22,-40
+ 3872: 21,-38
+ 3873: 22,-40
- node:
color: '#AE8C69FF'
id: WoodTrimThinCornerSw
decals:
- 3992: 12,-87
+ 3983: 12,-87
- node:
color: '#D4D4D4E3'
id: WoodTrimThinCornerSw
decals:
- 2828: 8,5
- 2863: 8,-13
+ 2827: 8,5
+ 2862: 8,-13
- node:
color: '#D4D4D4E9'
id: WoodTrimThinCornerSw
decals:
- 3194: 16,9
+ 3193: 16,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
decals:
- 2305: 28,-57
- 3710: -1,16
- 3711: -2,17
+ 2304: 28,-57
+ 3701: -1,16
+ 3702: -2,17
- node:
color: '#A7A5FFFF'
id: WoodTrimThinInnerNe
decals:
- 3906: 28,-39
+ 3897: 28,-39
- node:
color: '#AE8C69FF'
id: WoodTrimThinInnerNe
decals:
- 4002: 18,-82
+ 3993: 18,-82
- node:
color: '#D4D4D4E3'
id: WoodTrimThinInnerNe
decals:
- 2884: 12,-11
+ 2883: 12,-11
- node:
color: '#D4D4D4E3'
id: WoodTrimThinInnerNw
decals:
- 2851: 10,10
- 2885: 10,-5
+ 2850: 10,10
+ 2884: 10,-5
- node:
color: '#A7A5FFFF'
id: WoodTrimThinInnerSe
decals:
- 3907: 28,-37
+ 3898: 28,-37
- node:
color: '#AE8C69FF'
id: WoodTrimThinInnerSe
decals:
- 4003: 18,-86
+ 3994: 18,-86
- node:
color: '#A7A5FFFF'
id: WoodTrimThinInnerSw
decals:
- 3905: 22,-38
+ 3896: 22,-38
- node:
color: '#D4D4D4E3'
id: WoodTrimThinInnerSw
decals:
- 2852: 10,13
- 2886: 8,-8
+ 2851: 10,13
+ 2885: 8,-8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSw
decals:
- 3727: -1,17
+ 3718: -1,17
- node:
color: '#A7A5FFFF'
id: WoodTrimThinLineE
decals:
- 3893: 29,-36
- 3894: 28,-38
+ 3884: 29,-36
+ 3885: 28,-38
- node:
color: '#AE8C69FF'
id: WoodTrimThinLineE
decals:
- 3994: 19,-83
- 3995: 19,-84
- 3996: 19,-85
+ 3985: 19,-83
+ 3986: 19,-84
+ 3987: 19,-85
- node:
color: '#D4D4D4E3'
id: WoodTrimThinLineE
decals:
- 2833: 14,6
- 2834: 14,7
- 2835: 14,10
- 2836: 14,11
- 2837: 14,12
- 2838: 14,13
- 2855: 18,11
- 2856: 18,12
- 2857: 18,13
- 2877: 12,-5
- 2878: 12,-6
- 2879: 12,-7
- 2880: 12,-8
- 2881: 12,-9
- 2882: 12,-10
- 2883: 13,-12
+ 2832: 14,6
+ 2833: 14,7
+ 2834: 14,10
+ 2835: 14,11
+ 2836: 14,12
+ 2837: 14,13
+ 2854: 18,11
+ 2855: 18,12
+ 2856: 18,13
+ 2876: 12,-5
+ 2877: 12,-6
+ 2878: 12,-7
+ 2879: 12,-8
+ 2880: 12,-9
+ 2881: 12,-10
+ 2882: 13,-12
- node:
color: '#D4D4D4E9'
id: WoodTrimThinLineE
decals:
- 3196: 14,8
- 3197: 14,9
+ 3195: 14,8
+ 3196: 14,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
decals:
- 2307: 34,-56
- 2308: 34,-55
- 3723: 2,17
- 3724: 2,18
- 3725: 2,19
- 3726: 2,20
+ 2306: 34,-56
+ 2307: 34,-55
+ 3714: 2,17
+ 3715: 2,18
+ 3716: 2,19
+ 3717: 2,20
- node:
color: '#A7A5FFFF'
id: WoodTrimThinLineN
decals:
- 3895: 22,-35
- 3896: 23,-35
- 3897: 24,-35
- 3898: 25,-35
- 3899: 26,-35
- 3900: 27,-35
- 3901: 28,-35
+ 3886: 22,-35
+ 3887: 23,-35
+ 3888: 24,-35
+ 3889: 25,-35
+ 3890: 26,-35
+ 3891: 27,-35
+ 3892: 28,-35
- node:
color: '#AE8C69FF'
id: WoodTrimThinLineN
decals:
- 4004: 13,-81
- 4005: 14,-81
- 4006: 15,-81
- 4007: 16,-81
- 4008: 17,-81
+ 3995: 13,-81
+ 3996: 14,-81
+ 3997: 15,-81
+ 3998: 16,-81
+ 3999: 17,-81
- node:
color: '#D4D4D4E3'
id: WoodTrimThinLineN
decals:
- 2829: 9,10
- 2830: 11,14
- 2831: 12,14
- 2832: 13,14
- 2861: 17,14
- 2874: 7,-5
- 2875: 8,-5
- 2876: 9,-5
- 2887: 11,-4
+ 2828: 9,10
+ 2829: 11,14
+ 2830: 12,14
+ 2831: 13,14
+ 2860: 17,14
+ 2873: 7,-5
+ 2874: 8,-5
+ 2875: 9,-5
+ 2886: 11,-4
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
decals:
- 2311: 33,-54
- 2312: 32,-54
- 2313: 31,-54
- 2314: 30,-54
- 2315: 29,-54
- 3715: -1,21
- 3716: 0,21
- 3717: 1,21
+ 2310: 33,-54
+ 2311: 32,-54
+ 2312: 31,-54
+ 2313: 30,-54
+ 2314: 29,-54
+ 3706: -1,21
+ 3707: 0,21
+ 3708: 1,21
- node:
color: '#A7A5FFFF'
id: WoodTrimThinLineS
decals:
- 3887: 23,-40
- 3888: 24,-40
- 3889: 25,-40
- 3890: 26,-40
- 3891: 27,-40
- 3892: 28,-40
+ 3878: 23,-40
+ 3879: 24,-40
+ 3880: 25,-40
+ 3881: 26,-40
+ 3882: 27,-40
+ 3883: 28,-40
- node:
color: '#AE8C69FF'
id: WoodTrimThinLineS
decals:
- 3983: 13,-87
- 3984: 14,-87
- 3985: 15,-87
- 3986: 16,-87
- 3987: 17,-87
+ 3974: 13,-87
+ 3975: 14,-87
+ 3976: 15,-87
+ 3977: 16,-87
+ 3978: 17,-87
- node:
color: '#D4D4D4E3'
id: WoodTrimThinLineS
decals:
- 2846: 13,5
- 2847: 12,5
- 2848: 11,5
- 2849: 10,5
- 2850: 9,5
- 2867: 9,-13
- 2868: 10,-13
- 2869: 11,-13
- 2870: 12,-13
+ 2845: 13,5
+ 2846: 12,5
+ 2847: 11,5
+ 2848: 10,5
+ 2849: 9,5
+ 2866: 9,-13
+ 2867: 10,-13
+ 2868: 11,-13
+ 2869: 12,-13
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
decals:
- 2301: 32,-57
- 2302: 33,-57
- 2303: 30,-57
- 2304: 29,-57
- 3721: 0,16
- 3722: 1,16
+ 2300: 32,-57
+ 2301: 33,-57
+ 2302: 30,-57
+ 2303: 29,-57
+ 3712: 0,16
+ 3713: 1,16
- node:
color: '#A7A5FFFF'
id: WoodTrimThinLineW
decals:
- 3902: 21,-36
- 3903: 21,-37
- 3904: 22,-39
+ 3893: 21,-36
+ 3894: 21,-37
+ 3895: 22,-39
- node:
color: '#AE8C69FF'
id: WoodTrimThinLineW
decals:
- 3997: 12,-82
- 3998: 12,-83
- 3999: 12,-84
- 4000: 12,-85
- 4001: 12,-86
+ 3988: 12,-82
+ 3989: 12,-83
+ 3990: 12,-84
+ 3991: 12,-85
+ 3992: 12,-86
- node:
color: '#D4D4D4E3'
id: WoodTrimThinLineW
decals:
- 2839: 10,13
- 2840: 10,12
- 2841: 10,11
- 2842: 8,9
- 2843: 8,8
- 2844: 8,7
- 2845: 8,6
- 2858: 16,13
- 2859: 16,12
- 2860: 16,11
- 2871: 8,-12
- 2872: 8,-11
- 2873: 8,-10
+ 2838: 10,13
+ 2839: 10,12
+ 2840: 10,11
+ 2841: 8,9
+ 2842: 8,8
+ 2843: 8,7
+ 2844: 8,6
+ 2857: 16,13
+ 2858: 16,12
+ 2859: 16,11
+ 2870: 8,-12
+ 2871: 8,-11
+ 2872: 8,-10
- node:
color: '#D4D4D4E9'
id: WoodTrimThinLineW
decals:
- 3195: 16,10
+ 3194: 16,10
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
decals:
- 2316: 28,-55
- 2317: 28,-56
- 3718: -2,18
- 3719: -2,19
- 3720: -2,20
+ 2315: 28,-55
+ 2316: 28,-56
+ 3709: -2,18
+ 3710: -2,19
+ 3711: -2,20
- node:
cleanable: True
color: '#DE3A3A96'
id: a
decals:
- 4010: 24.819998,-83.12425
- 4013: 26.179373,-83.13988
+ 4001: 24.819998,-83.12425
+ 4004: 26.179373,-83.13988
- node:
cleanable: True
color: '#D03F4A21'
id: corgi
decals:
- 3830: 27,-19
+ 3821: 27,-19
- node:
cleanable: True
color: '#DE3A3A96'
id: g
decals:
- 4015: 24.398123,-84.62425
+ 4006: 24.398123,-84.62425
- node:
color: '#FFFFFFFF'
id: grasssnowb2
@@ -6811,20 +6811,20 @@ entities:
color: '#DE3A3A96'
id: n
decals:
- 4011: 25.257498,-83.1555
+ 4002: 25.257498,-83.1555
- node:
cleanable: True
color: '#DE3A3A96'
id: o
decals:
- 4017: 25.398123,-84.60863
- 4020: 26.741873,-84.60863
+ 4008: 25.398123,-84.60863
+ 4011: 26.741873,-84.60863
- node:
cleanable: True
color: '#DE3A3A96'
id: r
decals:
- 4016: 24.898123,-84.62425
+ 4007: 24.898123,-84.62425
- node:
cleanable: True
color: '#DE3A3A96'
@@ -6836,13 +6836,13 @@ entities:
color: '#DE3A3A96'
id: s
decals:
- 4009: 24.382498,-83.13988
- 4014: 26.710623,-83.12425
+ 4000: 24.382498,-83.13988
+ 4005: 26.710623,-83.12425
- node:
color: '#EFB341F5'
id: shop
decals:
- 3314: -49,12
+ 3313: -49,12
- node:
cleanable: True
color: '#A4610696'
@@ -6873,9 +6873,9 @@ entities:
color: '#DE3A3A96'
id: t
decals:
- 4012: 25.757498,-83.1555
- 4018: 25.835623,-84.63988
- 4019: 26.241873,-84.60863
+ 4003: 25.757498,-83.1555
+ 4009: 25.835623,-84.63988
+ 4010: 26.241873,-84.60863
type: DecalGrid
- version: 2
data:
@@ -10134,41 +10134,45 @@ entities:
parent: 2
type: Transform
- devices:
- - 19813
+ - 19817
- 816
- - 19606
- - 14910
- - 14970
- - 14972
- - 14994
- - 14993
- - 14995
- - 14755
- - 14733
- - 14734
- - 14732
- - 14730
- - 14731
- - 14999
- - 14901
- - 14900
- - 14899
+ - 19609
+ - 14928
+ - 14988
+ - 14990
+ - 15012
+ - 15011
+ - 15013
+ - 14773
+ - 14751
+ - 14752
+ - 14750
+ - 14748
+ - 14749
+ - 15017
+ - 14919
+ - 14918
+ - 14917
type: DeviceList
- uid: 6
components:
- pos: -2.5,-13.5
parent: 2
type: Transform
+ - ShutdownSubscribers:
+ - 15231
+ type: DeviceNetwork
- devices:
- - 19844
- - 19574
+ - 19847
+ - 19577
- 840
- - 14920
- - 14965
- - 14919
- - 14990
- - 14957
- - 14951
+ - 14938
+ - 14983
+ - 14937
+ - 15008
+ - 14975
+ - 14969
+ - 15231
type: DeviceList
- uid: 7
components:
@@ -10176,22 +10180,22 @@ entities:
parent: 2
type: Transform
- devices:
- - 19863
+ - 19866
- 843
- - 19577
- - 19814
- - 14864
- - 14863
- - 14945
- - 14885
+ - 19580
+ - 19818
- 14882
- - 14916
- - 14938
- - 14958
- - 14889
- - 14923
- - 14895
- - 14932
+ - 14881
+ - 14963
+ - 14903
+ - 14900
+ - 14934
+ - 14956
+ - 14976
+ - 14907
+ - 14941
+ - 14913
+ - 14950
type: DeviceList
- uid: 8
components:
@@ -10200,24 +10204,24 @@ entities:
type: Transform
- devices:
- 856
- - 19871
- - 19641
+ - 19873
+ - 19644
+ - 19882
+ - 19645
+ - 19881
+ - 19636
- 19880
- - 19642
+ - 19638
+ - 19639
- 19879
- - 19633
+ - 19640
- 19878
- - 19635
- - 19636
+ - 19641
- 19877
- - 19637
+ - 19642
- 19876
- - 19638
+ - 19643
- 19875
- - 19639
- - 19874
- - 19640
- - 19873
type: DeviceList
- uid: 9
components:
@@ -10226,8 +10230,8 @@ entities:
type: Transform
- devices:
- 875
- - 19732
- - 19970
+ - 19735
+ - 19972
type: DeviceList
- uid: 10
components:
@@ -10236,23 +10240,23 @@ entities:
type: Transform
- devices:
- 841
- - 19803
- - 19562
- - 15101
- - 15102
- - 15099
- - 15100
- - 14765
- - 14920
- - 14965
- - 14919
- - 14940
- - 14942
- - 14904
- - 14890
- - 14939
- - 14903
- - 15110
+ - 19807
+ - 19565
+ - 15119
+ - 15120
+ - 15117
+ - 15118
+ - 14783
+ - 14938
+ - 14983
+ - 14937
+ - 14958
+ - 14960
+ - 14922
+ - 14908
+ - 14957
+ - 14921
+ - 15128
type: DeviceList
- uid: 11
components:
@@ -10261,18 +10265,18 @@ entities:
type: Transform
- devices:
- 845
- - 19573
- - 19851
- - 14996
+ - 19576
+ - 19854
+ - 15014
+ - 14974
+ - 15015
+ - 14984
- 14956
- - 14997
- - 14966
- - 14938
- - 14958
- - 14889
- - 14962
- - 14991
- - 14992
+ - 14976
+ - 14907
+ - 14980
+ - 15009
+ - 15010
type: DeviceList
- uid: 12
components:
@@ -10281,9 +10285,9 @@ entities:
type: Transform
- devices:
- 928
- - 19801
- - 19611
- - 14931
+ - 19805
+ - 19614
+ - 14949
type: DeviceList
- uid: 13
components:
@@ -10292,19 +10296,19 @@ entities:
type: Transform
- devices:
- 880
- - 19921
- - 19682
- - 15035
+ - 19923
+ - 19685
- 15053
- - 14953
- - 14877
- - 14989
- - 15095
- - 15096
- - 15097
- - 15032
- - 15059
- - 15060
+ - 15071
+ - 14971
+ - 14895
+ - 15007
+ - 15113
+ - 15114
+ - 15115
+ - 15050
+ - 15077
+ - 15078
type: DeviceList
- uid: 14
components:
@@ -10313,20 +10317,20 @@ entities:
parent: 2
type: Transform
- devices:
- - 19605
- - 19834
+ - 19608
+ - 19838
- 869
+ - 14949
+ - 14952
+ - 14977
+ - 15111
+ - 14948
- 14931
- - 14934
- - 14959
- - 15093
- - 14930
- - 14913
- - 14944
- - 14888
- - 14915
- - 14943
- - 14982
+ - 14962
+ - 14906
+ - 14933
+ - 14961
+ - 15000
type: DeviceList
- uid: 15
components:
@@ -10335,15 +10339,15 @@ entities:
type: Transform
- devices:
- 900
- - 19658
- - 19897
- - 15017
- - 14875
- - 14874
- - 14768
- - 15018
- - 15128
- - 15129
+ - 19661
+ - 19899
+ - 15035
+ - 14893
+ - 14892
+ - 14786
+ - 15036
+ - 15146
+ - 15147
type: DeviceList
- uid: 16
components:
@@ -10351,11 +10355,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 14770
- - 14769
+ - 14788
+ - 14787
- 898
- - 19892
- - 15013
+ - 19894
+ - 15031
type: DeviceList
- uid: 17
components:
@@ -10364,7 +10368,7 @@ entities:
type: Transform
- devices:
- 855
- - 19665
+ - 19668
type: DeviceList
- uid: 18
components:
@@ -10378,17 +10382,17 @@ entities:
type: Transform
- devices:
- 861
- - 19990
- - 19753
+ - 19992
+ - 19756
+ - 15176
+ - 15175
+ - 15169
+ - 15168
+ - 15167
+ - 15159
- 15158
- - 15157
- - 15151
- - 15150
- - 15149
- - 15141
- - 15140
- - 15154
- - 15153
+ - 15172
+ - 15171
type: DeviceList
- uid: 20
components:
@@ -10396,11 +10400,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19969
+ - 19971
- 864
- - 19728
- - 14802
- - 14799
+ - 19731
+ - 14819
+ - 14816
type: DeviceList
- uid: 21
components:
@@ -10408,30 +10412,30 @@ entities:
parent: 2
type: Transform
- devices:
- - 19973
- - 19570
+ - 19975
+ - 19573
- 820
- - 19735
- - 19804
- - 14911
- - 14985
- - 15109
- - 14910
- - 14970
- - 14972
- - 14742
- - 15022
- - 15021
- - 15020
- - 14977
- - 15012
- - 14949
- - 14974
- - 14896
- - 14918
- - 15000
- - 14998
- - 14843
+ - 19738
+ - 19808
+ - 14929
+ - 15003
+ - 15127
+ - 14928
+ - 14988
+ - 14990
+ - 14760
+ - 15040
+ - 15039
+ - 15038
+ - 14995
+ - 15030
+ - 14967
+ - 14992
+ - 14914
+ - 14936
+ - 15018
+ - 15016
+ - 14860
type: DeviceList
- uid: 22
components:
@@ -10439,24 +10443,24 @@ entities:
parent: 2
type: Transform
- devices:
- - 19597
- - 19849
+ - 19600
+ - 19852
- 842
- - 14904
- - 14942
- - 14940
- - 14996
- - 14956
- - 14997
- - 14962
- - 14916
- - 14882
- - 14881
- - 14912
- - 14905
- - 14891
- - 14883
- - 14948
+ - 14922
+ - 14960
+ - 14958
+ - 15014
+ - 14974
+ - 15015
+ - 14980
+ - 14934
+ - 14900
+ - 14899
+ - 14930
+ - 14923
+ - 14909
+ - 14901
+ - 14966
type: DeviceList
- uid: 23
components:
@@ -10464,25 +10468,25 @@ entities:
parent: 2
type: Transform
- devices:
- - 19690
+ - 19693
- 865
- - 19672
- - 19910
- - 15072
- - 15073
- - 15074
- - 15101
- - 15102
- - 15099
- - 15100
- - 15092
+ - 19675
+ - 19912
- 15090
- 15091
- - 15034
- - 15031
- - 14969
- - 15103
- - 14752
+ - 15092
+ - 15119
+ - 15120
+ - 15117
+ - 15118
+ - 15110
+ - 15108
+ - 15109
+ - 15052
+ - 15049
+ - 14987
+ - 15121
+ - 14770
type: DeviceList
- uid: 24
components:
@@ -10491,17 +10495,17 @@ entities:
type: Transform
- devices:
- 866
- - 19565
- - 19799
- - 14888
- - 14915
- - 14943
- - 14987
- - 14968
+ - 19568
+ - 19803
- 14906
- - 14880
- - 14976
- - 14902
+ - 14933
+ - 14961
+ - 15005
+ - 14986
+ - 14924
+ - 14898
+ - 14994
+ - 14920
type: DeviceList
- uid: 25
components:
@@ -10510,20 +10514,20 @@ entities:
type: Transform
- devices:
- 870
- - 19850
- - 19603
- - 15122
- - 15107
- - 15106
- - 15105
- - 14887
- - 14936
- - 14726
- - 14728
- - 14738
+ - 19853
+ - 19606
+ - 15140
+ - 15125
+ - 15124
+ - 15123
+ - 14905
+ - 14954
- 14744
- - 14758
- - 14886
+ - 14746
+ - 14756
+ - 14762
+ - 14776
+ - 14904
type: DeviceList
- uid: 26
components:
@@ -10532,26 +10536,26 @@ entities:
type: Transform
- devices:
- 818
- - 19826
- - 19590
- - 14973
- - 14978
- - 14986
- - 14984
- - 15121
- - 14925
- - 14926
- - 14971
- - 15045
- - 15044
- - 15046
- - 15052
- - 14980
- - 14961
- - 14893
- - 14898
- - 15082
- - 14853
+ - 19830
+ - 19593
+ - 14991
+ - 14996
+ - 15004
+ - 15002
+ - 15139
+ - 14943
+ - 14944
+ - 14989
+ - 15063
+ - 15062
+ - 15064
+ - 15070
+ - 14998
+ - 14979
+ - 14911
+ - 14916
+ - 15100
+ - 14870
type: DeviceList
- uid: 27
components:
@@ -10559,11 +10563,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19975
- - 19736
+ - 19977
+ - 19739
- 876
- - 15054
- - 15055
+ - 15072
+ - 15073
type: DeviceList
- uid: 28
components:
@@ -10572,16 +10576,16 @@ entities:
type: Transform
- devices:
- 878
- - 19941
- - 19700
- - 14775
- - 14776
- - 15028
- - 15029
- - 14780
- - 14779
- - 15054
- - 15055
+ - 19943
+ - 19703
+ - 14793
+ - 14794
+ - 15046
+ - 15047
+ - 14798
+ - 14797
+ - 15072
+ - 15073
type: DeviceList
- uid: 29
components:
@@ -10589,25 +10593,25 @@ entities:
parent: 2
type: Transform
- devices:
- - 19825
- - 19563
+ - 19829
+ - 19566
- 819
- - 14927
- - 14749
- - 14955
- - 15040
- - 15041
- - 14736
- - 14928
- - 15084
- - 15088
- - 15047
- - 15112
- - 14929
- - 15083
- - 15113
- - 15111
- - 15117
+ - 14945
+ - 14767
+ - 14973
+ - 15058
+ - 15059
+ - 14754
+ - 14946
+ - 15102
+ - 15106
+ - 15065
+ - 15130
+ - 14947
+ - 15101
+ - 15131
+ - 15129
+ - 15135
type: DeviceList
- uid: 30
components:
@@ -10615,14 +10619,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 14719
- - 14723
- - 14724
- - 14722
- - 14756
- - 14751
- - 19855
- - 19618
+ - 14737
+ - 14741
+ - 14742
+ - 14740
+ - 14774
+ - 14769
+ - 19858
+ - 19621
- 881
type: DeviceList
- uid: 31
@@ -10632,14 +10636,14 @@ entities:
type: Transform
- devices:
- 857
- - 19683
- - 19925
- - 15189
- - 15190
- - 15191
- - 15186
- - 15187
- - 15188
+ - 19686
+ - 19927
+ - 15207
+ - 15208
+ - 15209
+ - 15204
+ - 15205
+ - 15206
type: DeviceList
- uid: 32
components:
@@ -10647,13 +10651,13 @@ entities:
parent: 2
type: Transform
- devices:
+ - 15045
- 15027
- - 15009
- - 15008
- - 15007
+ - 15026
+ - 15025
- 854
- - 19653
- - 19890
+ - 19656
+ - 19892
type: DeviceList
- uid: 33
components:
@@ -10661,22 +10665,22 @@ entities:
parent: 2
type: Transform
- devices:
- - 19972
- - 19734
+ - 19974
+ - 19737
- 839
- - 15095
- - 15096
- - 15097
- - 14922
- - 14952
- - 14988
- - 14951
- - 14957
- - 14990
- - 14993
- - 14994
- - 14995
- - 14741
+ - 15113
+ - 15114
+ - 15115
+ - 14940
+ - 14970
+ - 15006
+ - 14969
+ - 14975
+ - 15008
+ - 15011
+ - 15012
+ - 15013
+ - 14759
type: DeviceList
- uid: 34
components:
@@ -10684,19 +10688,19 @@ entities:
parent: 2
type: Transform
- devices:
- - 14880
- - 14976
- - 14902
- - 14979
- - 14937
- - 14924
- - 14963
- - 14941
- - 14908
- - 14909
- - 19818
+ - 14898
+ - 14994
+ - 14920
+ - 14997
+ - 14955
+ - 14942
+ - 14981
+ - 14959
+ - 14926
+ - 14927
+ - 19822
- 882
- - 19615
+ - 19618
type: DeviceList
- uid: 35
components:
@@ -10706,19 +10710,19 @@ entities:
type: Transform
- devices:
- 867
- - 19581
- - 19833
- - 14881
- - 14912
- - 14905
- - 14891
- - 14885
- - 14945
- - 14946
+ - 19584
+ - 19837
+ - 14899
+ - 14930
+ - 14923
+ - 14909
+ - 14903
+ - 14963
- 14964
- - 14987
- - 14968
- - 14906
+ - 14982
+ - 15005
+ - 14986
+ - 14924
type: DeviceList
- uid: 36
components:
@@ -10727,8 +10731,8 @@ entities:
type: Transform
- devices:
- 837
- - 19843
- - 19613
+ - 19846
+ - 19616
type: DeviceList
- uid: 37
components:
@@ -10737,8 +10741,8 @@ entities:
type: Transform
- devices:
- 837
- - 19843
- - 19613
+ - 19846
+ - 19616
type: DeviceList
- uid: 38
components:
@@ -10746,13 +10750,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19857
- - 19622
+ - 19860
+ - 19625
- 884
- - 19847
- - 19610
- - 19578
- - 19846
+ - 19850
+ - 19613
+ - 19581
+ - 19849
type: DeviceList
- uid: 39
components:
@@ -10760,19 +10764,19 @@ entities:
parent: 2
type: Transform
- devices:
- - 19626
+ - 19629
- 823
- - 19862
- - 14724
- - 14722
- - 14941
- - 14908
- - 14909
- - 14718
- - 14717
- - 14974
- - 14896
- - 14918
+ - 19865
+ - 14742
+ - 14740
+ - 14959
+ - 14926
+ - 14927
+ - 14736
+ - 14735
+ - 14992
+ - 14914
+ - 14936
type: DeviceList
- uid: 40
components:
@@ -10780,9 +10784,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 19626
+ - 19629
- 823
- - 19862
+ - 19865
type: DeviceList
- uid: 41
components:
@@ -10790,15 +10794,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 19806
+ - 19810
- 847
- - 19612
- - 14966
- - 14774
- - 15110
- - 14903
- - 14939
- - 14890
+ - 19615
+ - 14984
+ - 14792
+ - 15128
+ - 14921
+ - 14957
+ - 14908
type: DeviceList
- uid: 42
components:
@@ -10807,18 +10811,18 @@ entities:
type: Transform
- devices:
- 852
- - 19645
- - 19887
- - 14959
- - 14934
- - 15093
- - 14975
- - 15007
- - 15008
- - 15009
- - 15163
- - 15164
- - 15197
+ - 19648
+ - 19889
+ - 14977
+ - 14952
+ - 15111
+ - 14993
+ - 15025
+ - 15026
+ - 15027
+ - 15181
+ - 15182
+ - 15215
type: DeviceList
- uid: 43
components:
@@ -10826,17 +10830,17 @@ entities:
parent: 2
type: Transform
- devices:
- - 15077
- - 15076
- - 15078
- - 15079
- - 15086
- - 14969
- - 15031
- - 15034
+ - 15095
+ - 15094
+ - 15096
+ - 15097
+ - 15104
+ - 14987
+ - 15049
+ - 15052
- 885
- - 19723
- - 19958
+ - 19726
+ - 19960
type: DeviceList
- uid: 44
components:
@@ -10845,13 +10849,13 @@ entities:
type: Transform
- devices:
- 886
- - 19725
- - 19967
- - 15089
- - 15085
- - 15078
- - 15079
- - 15086
+ - 19728
+ - 19969
+ - 15107
+ - 15103
+ - 15096
+ - 15097
+ - 15104
type: DeviceList
- uid: 45
components:
@@ -10859,8 +10863,8 @@ entities:
parent: 2
type: Transform
- devices:
- - 19964
- - 19730
+ - 19966
+ - 19733
- 887
type: DeviceList
- uid: 46
@@ -10869,12 +10873,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 19711
- - 19953
+ - 19714
+ - 19955
- 888
- - 15177
- - 15179
- - 14933
+ - 15195
+ - 15197
+ - 14951
type: DeviceList
- uid: 47
components:
@@ -10882,11 +10886,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19715
+ - 19718
- 889
- - 15177
- - 15179
- - 14933
+ - 15195
+ - 15197
+ - 14951
type: DeviceList
- uid: 48
components:
@@ -10894,9 +10898,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 19709
+ - 19712
- 890
- - 19952
+ - 19954
type: DeviceList
- uid: 49
components:
@@ -10904,18 +10908,18 @@ entities:
parent: 2
type: Transform
- devices:
- - 19707
- - 19949
+ - 19710
+ - 19951
- 892
- - 15071
- - 15070
- - 15010
- - 15135
- - 15136
- - 15072
- - 15073
- - 15074
- - 15075
+ - 15089
+ - 15088
+ - 15028
+ - 15153
+ - 15154
+ - 15090
+ - 15091
+ - 15092
+ - 15093
type: DeviceList
- uid: 50
components:
@@ -10924,15 +10928,15 @@ entities:
type: Transform
- devices:
- 874
- - 19927
- - 15061
- - 15062
- - 15049
- - 15048
- - 15064
- - 15063
- - 14809
- - 15033
+ - 19929
+ - 15079
+ - 15080
+ - 15067
+ - 15066
+ - 15082
+ - 15081
+ - 14826
+ - 15051
type: DeviceList
- uid: 51
components:
@@ -10941,13 +10945,13 @@ entities:
type: Transform
- devices:
- 896
- - 15051
- - 15050
- - 19688
- - 14810
- - 19930
- - 15067
- - 15118
+ - 15069
+ - 15068
+ - 19691
+ - 14827
+ - 19932
+ - 15085
+ - 15136
type: DeviceList
- uid: 52
components:
@@ -10956,12 +10960,12 @@ entities:
type: Transform
- devices:
- 895
- - 19935
- - 19693
- - 14785
- - 14786
- - 15057
- - 15056
+ - 19937
+ - 19696
+ - 14803
+ - 14804
+ - 15075
+ - 15074
type: DeviceList
- uid: 53
components:
@@ -10969,14 +10973,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 19937
+ - 19939
- 894
- - 19696
- - 15056
- - 15057
- - 15068
- - 15098
- - 14781
+ - 19699
+ - 15074
+ - 15075
+ - 15086
+ - 15116
+ - 14799
type: DeviceList
- uid: 54
components:
@@ -10985,9 +10989,9 @@ entities:
type: Transform
- devices:
- 893
- - 14836
- - 15058
- - 14876
+ - 14853
+ - 15076
+ - 14894
type: DeviceList
- uid: 55
components:
@@ -10996,8 +11000,8 @@ entities:
type: Transform
- devices:
- 897
- - 19928
- - 19686
+ - 19930
+ - 19689
type: DeviceList
- uid: 56
components:
@@ -11006,18 +11010,18 @@ entities:
type: Transform
- devices:
- 860
- - 19893
- - 19654
- - 15013
- - 15016
- - 15025
- - 15014
- - 15015
- - 15019
- - 15023
- - 15024
- - 15126
- - 15127
+ - 19895
+ - 19657
+ - 15031
+ - 15034
+ - 15043
+ - 15032
+ - 15033
+ - 15037
+ - 15041
+ - 15042
+ - 15144
+ - 15145
type: DeviceList
- uid: 57
components:
@@ -11025,12 +11029,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 19664
- - 19902
- - 19903
+ - 19667
+ - 19904
+ - 19905
- 859
- - 15023
- - 15024
+ - 15041
+ - 15042
type: DeviceList
- uid: 58
components:
@@ -11038,9 +11042,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 15027
- - 19899
- - 19661
+ - 15045
+ - 19901
+ - 19664
- 911
type: DeviceList
- uid: 59
@@ -11050,9 +11054,9 @@ entities:
type: Transform
- devices:
- 901
- - 19900
- - 19662
- - 15018
+ - 19902
+ - 19665
+ - 15036
type: DeviceList
- uid: 60
components:
@@ -11061,10 +11065,10 @@ entities:
type: Transform
- devices:
- 905
- - 19704
- - 19948
- - 15165
- - 15166
+ - 19707
+ - 19950
+ - 15183
+ - 15184
type: DeviceList
- uid: 61
components:
@@ -11072,8 +11076,8 @@ entities:
parent: 2
type: Transform
- devices:
- - 19971
- - 19733
+ - 19973
+ - 19736
- 904
type: DeviceList
- uid: 62
@@ -11082,21 +11086,21 @@ entities:
parent: 2
type: Transform
- devices:
- - 19886
- - 19650
- - 19805
- - 19649
+ - 19888
+ - 19653
+ - 19809
+ - 19652
- 853
- - 14759
- - 14748
- - 14729
- - 15001
- - 14887
- - 14936
- - 15005
- - 14914
- - 15164
- - 15163
+ - 14777
+ - 14766
+ - 14747
+ - 15019
+ - 14905
+ - 14954
+ - 15023
+ - 14932
+ - 15182
+ - 15181
type: DeviceList
- uid: 63
components:
@@ -11104,14 +11108,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 19841
+ - 19844
- 851
- - 19584
- - 15122
- - 15107
- - 15106
- - 15105
- - 15001
+ - 19587
+ - 15140
+ - 15125
+ - 15124
+ - 15123
+ - 15019
type: DeviceList
- uid: 64
components:
@@ -11120,17 +11124,17 @@ entities:
type: Transform
- devices:
- 868
- - 19816
- - 19572
- - 14738
- - 14728
- - 14726
- - 14930
- - 14913
- - 14944
- - 14946
+ - 19820
+ - 19575
+ - 14756
+ - 14746
+ - 14744
+ - 14948
+ - 14931
+ - 14962
- 14964
- - 14806
+ - 14982
+ - 14823
type: DeviceList
- uid: 65
components:
@@ -11139,11 +11143,11 @@ entities:
type: Transform
- devices:
- 828
- - 19830
- - 19568
- - 14935
- - 14983
- - 15125
+ - 19834
+ - 19571
+ - 14953
+ - 15001
+ - 15143
type: DeviceList
- uid: 66
components:
@@ -11151,12 +11155,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 19831
- - 19601
+ - 19835
+ - 19604
- 826
- - 15116
- - 14983
- - 14935
+ - 15134
+ - 15001
+ - 14953
type: DeviceList
- uid: 67
components:
@@ -11165,8 +11169,8 @@ entities:
type: Transform
- devices:
- 858
- - 19919
- - 19679
+ - 19921
+ - 19682
type: DeviceList
- uid: 68
components:
@@ -11174,10 +11178,10 @@ entities:
parent: 2
type: Transform
- devices:
- - 19945
- - 19703
+ - 19947
+ - 19706
- 907
- - 15069
+ - 15087
type: DeviceList
- uid: 69
components:
@@ -11191,10 +11195,10 @@ entities:
type: Transform
- devices:
- 910
- - 19770
- - 20022
- - 15196
- - 15195
+ - 19773
+ - 20024
+ - 15214
+ - 15213
type: DeviceList
- uid: 71
components:
@@ -11207,26 +11211,26 @@ entities:
parent: 2
type: Transform
- devices:
- - 19981
+ - 19983
- 912
- - 19743
- - 14830
- - 14827
- - 14829
- - 14828
- - 15135
- - 15136
- - 15143
- - 15144
- - 15145
- - 15151
+ - 19746
+ - 14847
+ - 14844
+ - 14846
+ - 14845
+ - 15153
+ - 15154
+ - 15161
+ - 15162
+ - 15163
+ - 15169
+ - 15168
+ - 15167
+ - 14843
- 15150
- - 15149
- - 14826
- - 15132
- - 15133
- - 15134
- - 14807
+ - 15151
+ - 15152
+ - 14824
type: DeviceList
- uid: 73
components:
@@ -11235,17 +11239,17 @@ entities:
type: Transform
- devices:
- 913
- - 19748
- - 19989
- - 15143
- - 15144
- - 15145
- - 15138
- - 15139
- - 15159
- - 15147
- - 15148
- - 15146
+ - 19751
+ - 19991
+ - 15161
+ - 15162
+ - 15163
+ - 15156
+ - 15157
+ - 15177
+ - 15165
+ - 15166
+ - 15164
type: DeviceList
- uid: 74
components:
@@ -11254,30 +11258,30 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 19994
- - 19749
+ - 19996
+ - 19752
- 862
- - 15155
- - 15156
- - 15160
- - 15157
- - 15158
- - 15195
- - 15152
- - 15130
+ - 15173
+ - 15174
+ - 15178
+ - 15175
+ - 15176
+ - 15213
+ - 15170
+ - 15148
type: DeviceNetwork
- devices:
- - 19994
- - 19749
+ - 19996
+ - 19752
- 862
- - 15155
- - 15156
- - 15160
- - 15157
- - 15158
- - 15195
- - 15152
- - 15130
+ - 15173
+ - 15174
+ - 15178
+ - 15175
+ - 15176
+ - 15213
+ - 15170
+ - 15148
type: DeviceList
- uid: 75
components:
@@ -11286,14 +11290,14 @@ entities:
type: Transform
- devices:
- 863
- - 19754
- - 19995
- - 15148
- - 15147
- - 15146
- - 15161
- - 15155
- - 15156
+ - 19757
+ - 19997
+ - 15166
+ - 15165
+ - 15164
+ - 15179
+ - 15173
+ - 15174
type: DeviceList
- uid: 76
components:
@@ -11301,8 +11305,8 @@ entities:
parent: 2
type: Transform
- devices:
- - 19761
- - 20002
+ - 19764
+ - 20004
- 915
type: DeviceList
- uid: 77
@@ -11312,24 +11316,24 @@ entities:
type: Transform
- devices:
- 815
- - 19827
- - 19591
- - 14732
- - 14731
- - 14730
- - 14755
- - 14733
- - 14734
- - 15080
- - 15081
- - 15046
- - 15044
- - 15045
- - 14926
- - 14925
- - 14971
- - 14819
- - 14853
+ - 19831
+ - 19594
+ - 14750
+ - 14749
+ - 14748
+ - 14773
+ - 14751
+ - 14752
+ - 15098
+ - 15099
+ - 15064
+ - 15062
+ - 15063
+ - 14944
+ - 14943
+ - 14989
+ - 14836
+ - 14870
type: DeviceList
- uid: 78
components:
@@ -11337,13 +11341,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19859
+ - 19862
- 825
- - 19623
- - 15124
- - 15116
- - 14878
- - 14821
+ - 19626
+ - 15142
+ - 15134
+ - 14896
+ - 14838
type: DeviceList
- uid: 79
components:
@@ -11351,19 +11355,19 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 15209
- - 15210
- - 15212
- - 19788
- - 20032
+ - 15227
+ - 15228
+ - 15230
+ - 19791
+ - 20034
- 938
type: DeviceNetwork
- devices:
- - 15209
- - 15210
- - 15212
- - 19788
- - 20032
+ - 15227
+ - 15228
+ - 15230
+ - 19791
+ - 20034
- 938
type: DeviceList
- uid: 80
@@ -11372,11 +11376,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 19853
+ - 19856
- 883
- - 19614
- - 14979
- - 14762
+ - 19617
+ - 14997
+ - 14780
type: DeviceList
- uid: 81
components:
@@ -11384,14 +11388,14 @@ entities:
parent: 2
type: Transform
- devices:
- - 19762
- - 20003
+ - 19765
+ - 20005
- 902
- - 14838
- - 14839
+ - 14855
+ - 14856
- 919
- - 14771
- - 14837
+ - 14789
+ - 14854
type: DeviceList
- uid: 82
components:
@@ -11399,12 +11403,12 @@ entities:
parent: 2
type: Transform
- devices:
- - 14840
- - 14841
- - 15169
- - 15170
+ - 14857
+ - 14858
+ - 15187
+ - 15188
- 918
- - 20005
+ - 20007
type: DeviceList
- uid: 83
components:
@@ -11412,13 +11416,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19765
+ - 19768
- 903
- - 14875
- - 14874
- - 14768
- - 15171
- - 15172
+ - 14893
+ - 14892
+ - 14786
+ - 15189
+ - 15190
type: DeviceList
- uid: 84
components:
@@ -11426,15 +11430,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 15176
- - 14922
- - 14952
- - 14988
- - 14960
- - 14879
- - 14954
- - 19802
- - 19569
+ - 15194
+ - 14940
+ - 14970
+ - 15006
+ - 14978
+ - 14897
+ - 14972
+ - 19806
+ - 19572
- 838
type: DeviceList
- uid: 85
@@ -11443,15 +11447,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 19912
+ - 19914
- 872
- - 19674
- - 15108
- - 14917
- - 14921
- - 15061
- - 15062
- - 14808
+ - 19677
+ - 15126
+ - 14935
+ - 14939
+ - 15079
+ - 15080
+ - 14825
type: DeviceList
- uid: 86
components:
@@ -11460,20 +11464,20 @@ entities:
type: Transform
- devices:
- 873
- - 19914
- - 19676
- - 14921
- - 14917
- - 15092
- - 15090
- - 15091
- - 15030
- - 15059
- - 15032
- - 15060
- - 15173
- - 15174
- - 14842
+ - 19916
+ - 19679
+ - 14939
+ - 14935
+ - 15110
+ - 15108
+ - 15109
+ - 15048
+ - 15077
+ - 15050
+ - 15078
+ - 15191
+ - 15192
+ - 14859
type: DeviceList
- uid: 87
components:
@@ -11481,15 +11485,15 @@ entities:
parent: 2
type: Transform
- devices:
- - 20020
+ - 20022
- 926
- - 19779
- - 15186
- - 15187
- - 15188
- - 15185
- - 15184
- - 15183
+ - 19782
+ - 15204
+ - 15205
+ - 15206
+ - 15203
+ - 15202
+ - 15201
type: DeviceList
- uid: 88
components:
@@ -11497,9 +11501,9 @@ entities:
parent: 2
type: Transform
- devices:
- - 15182
- - 19780
- - 20019
+ - 15200
+ - 19783
+ - 20021
- 927
type: DeviceList
- uid: 89
@@ -11509,13 +11513,13 @@ entities:
parent: 2
type: Transform
- devices:
- - 19777
+ - 19780
- 909
- - 19923
- - 15181
- - 15183
- - 15184
- - 15185
+ - 19925
+ - 15199
+ - 15201
+ - 15202
+ - 15203
type: DeviceList
- uid: 90
components:
@@ -11525,11 +11529,11 @@ entities:
type: Transform
- devices:
- 916
- - 20021
- - 19781
- - 15192
- - 15193
- - 15194
+ - 20023
+ - 19784
+ - 15210
+ - 15211
+ - 15212
type: DeviceList
- uid: 91
components:
@@ -11539,11 +11543,11 @@ entities:
type: Transform
- devices:
- 813
- - 15002
- - 15197
- - 15104
- - 19783
- - 20024
+ - 15020
+ - 15215
+ - 15122
+ - 19786
+ - 20026
type: DeviceList
- uid: 92
components:
@@ -11552,23 +11556,23 @@ entities:
parent: 2
type: Transform
- devices:
- - 15005
- - 14914
- - 19889
- - 19649
+ - 15023
+ - 14932
+ - 19891
+ - 19652
- 853
- - 19805
- - 19650
- - 19886
- - 15104
- - 15163
- - 15164
- - 14887
- - 14936
- - 15001
- - 14759
- - 14748
- - 14729
+ - 19809
+ - 19653
+ - 19888
+ - 15122
+ - 15181
+ - 15182
+ - 14905
+ - 14954
+ - 15019
+ - 14777
+ - 14766
+ - 14747
type: DeviceList
- uid: 93
components:
@@ -11577,9 +11581,9 @@ entities:
type: Transform
- devices:
- 833
- - 15082
- - 15081
- - 15080
+ - 15100
+ - 15099
+ - 15098
type: DeviceList
- uid: 94
components:
@@ -11588,11 +11592,11 @@ entities:
parent: 2
type: Transform
- devices:
- - 20026
- - 19784
+ - 20028
+ - 19787
- 930
- - 15199
- - 15200
+ - 15217
+ - 15218
type: DeviceList
- uid: 95
components:
@@ -11601,21 +11605,21 @@ entities:
type: Transform
- ShutdownSubscribers:
- 931
- - 20028
- - 19786
- - 14855
- - 14774
- - 14801
- - 14854
+ - 20030
+ - 19789
+ - 14872
+ - 14792
+ - 14818
+ - 14871
type: DeviceNetwork
- devices:
- 931
- - 20028
- - 19786
- - 14855
- - 14774
- - 14801
- - 14854
+ - 20030
+ - 19789
+ - 14872
+ - 14792
+ - 14818
+ - 14871
type: DeviceList
- uid: 96
components:
@@ -11623,17 +11627,17 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14856
- - 14860
+ - 14873
+ - 14877
type: DeviceNetwork
- devices:
- 932
- - 19560
- - 19796
- - 15201
- - 15202
- - 14856
- - 14860
+ - 19563
+ - 19800
+ - 15219
+ - 15220
+ - 14873
+ - 14877
type: DeviceList
- uid: 97
components:
@@ -11642,11 +11646,11 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 20029
+ - 20031
- 933
type: DeviceNetwork
- devices:
- - 20029
+ - 20031
- 933
type: DeviceList
- uid: 98
@@ -11657,11 +11661,11 @@ entities:
type: Transform
- ShutdownSubscribers:
- 934
- - 19944
+ - 19946
type: DeviceNetwork
- devices:
- 934
- - 19944
+ - 19946
type: DeviceList
- uid: 99
components:
@@ -11670,19 +11674,19 @@ entities:
type: Transform
- ShutdownSubscribers:
- 936
- - 19794
- - 19558
- - 15203
- - 15205
- - 15206
+ - 19798
+ - 19561
+ - 15221
+ - 15223
+ - 15224
type: DeviceNetwork
- devices:
- 936
- - 19794
- - 19558
- - 15203
- - 15205
- - 15206
+ - 19798
+ - 19561
+ - 15221
+ - 15223
+ - 15224
type: DeviceList
- uid: 100
components:
@@ -11692,17 +11696,17 @@ entities:
type: Transform
- ShutdownSubscribers:
- 935
- - 20030
- - 19557
- - 15205
- - 15204
+ - 20032
+ - 19560
+ - 15223
+ - 15222
type: DeviceNetwork
- devices:
- 935
- - 20030
- - 19557
- - 15205
- - 15204
+ - 20032
+ - 19560
+ - 15223
+ - 15222
type: DeviceList
- uid: 101
components:
@@ -11711,17 +11715,17 @@ entities:
type: Transform
- ShutdownSubscribers:
- 937
- - 19787
- - 20031
- - 15207
- - 15208
+ - 19790
+ - 20033
+ - 15225
+ - 15226
type: DeviceNetwork
- devices:
- 937
- - 19787
- - 20031
- - 15207
- - 15208
+ - 19790
+ - 20033
+ - 15225
+ - 15226
type: DeviceList
- proto: AirCanister
entities:
@@ -11779,7 +11783,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24150
+ - 24191
type: DeviceLinkSink
- uid: 112
components:
@@ -11787,7 +11791,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24148
+ - 24189
type: DeviceLinkSink
- uid: 113
components:
@@ -11796,7 +11800,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24149
+ - 24190
type: DeviceLinkSink
- uid: 114
components:
@@ -11806,7 +11810,7 @@ entities:
type: Transform
- invokeCounter: 1
links:
- - 24152
+ - 24193
type: DeviceLinkSink
- uid: 115
components:
@@ -11815,7 +11819,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24153
+ - 24194
type: DeviceLinkSink
- uid: 116
components:
@@ -11824,7 +11828,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24155
+ - 24196
type: DeviceLinkSink
- uid: 117
components:
@@ -12580,37 +12584,32 @@ entities:
parent: 2
type: Transform
- uid: 237
- components:
- - pos: -6.5,-19.5
- parent: 2
- type: Transform
- - uid: 238
components:
- name: virology substation
type: MetaData
- pos: -11.5,-70.5
parent: 2
type: Transform
- - uid: 239
+ - uid: 238
components:
- pos: 30.5,-3.5
parent: 2
type: Transform
- - uid: 240
+ - uid: 239
components:
- name: gravity generator
type: MetaData
- pos: -19.5,-3.5
parent: 2
type: Transform
- - uid: 241
+ - uid: 240
components:
- name: south solar
type: MetaData
- pos: -1.5,-76.5
parent: 2
type: Transform
- - uid: 242
+ - uid: 241
components:
- name: medical substation
type: MetaData
@@ -12618,31 +12617,31 @@ entities:
pos: 13.5,-57.5
parent: 2
type: Transform
- - uid: 243
+ - uid: 242
components:
- name: substation
type: MetaData
- pos: 32.5,23.5
parent: 2
type: Transform
- - uid: 244
+ - uid: 243
components:
- pos: 46.5,-0.5
parent: 2
type: Transform
- - uid: 245
+ - uid: 244
components:
- pos: 63.5,27.5
parent: 2
type: Transform
- - uid: 246
+ - uid: 245
components:
- name: evac substation
type: MetaData
- pos: 47.5,-6.5
parent: 2
type: Transform
- - uid: 247
+ - uid: 246
components:
- name: science substation
type: MetaData
@@ -12650,42 +12649,42 @@ entities:
pos: 38.5,-44.5
parent: 2
type: Transform
- - uid: 248
+ - uid: 247
components:
- name: engineering substation
type: MetaData
- pos: -27.5,-22.5
parent: 2
type: Transform
- - uid: 249
+ - uid: 248
components:
- name: engineering substation
type: MetaData
- pos: -30.5,-23.5
parent: 2
type: Transform
- - uid: 250
+ - uid: 249
components:
- name: arrivals substation
type: MetaData
- pos: 42.5,-59.5
parent: 2
type: Transform
- - uid: 251
+ - uid: 250
components:
- name: storage
type: MetaData
- pos: -41.5,-14.5
parent: 2
type: Transform
- - uid: 252
+ - uid: 251
components:
- name: ame
type: MetaData
- pos: -43.5,-10.5
parent: 2
type: Transform
- - uid: 253
+ - uid: 252
components:
- name: ame
type: MetaData
@@ -12693,54 +12692,54 @@ entities:
pos: -43.5,-11.5
parent: 2
type: Transform
- - uid: 254
+ - uid: 253
components:
- name: singularity
type: MetaData
- pos: -49.5,-6.5
parent: 2
type: Transform
- - uid: 255
+ - uid: 254
components:
- name: singularity
type: MetaData
- pos: -49.5,-5.5
parent: 2
type: Transform
- - uid: 256
+ - uid: 255
components:
- name: atmos substation
type: MetaData
- pos: -27.5,-35.5
parent: 2
type: Transform
- - uid: 257
+ - uid: 256
components:
- pos: -72.5,-27.5
parent: 2
type: Transform
- - uid: 258
+ - uid: 257
components:
- name: singularity substation
type: MetaData
- pos: -52.5,-8.5
parent: 2
type: Transform
- - uid: 259
+ - uid: 258
components:
- name: maints bar substation
type: MetaData
- pos: -29.5,-55.5
parent: 2
type: Transform
- - uid: 260
+ - uid: 259
components:
- name: cargo substation
type: MetaData
- pos: -21.5,15.5
parent: 2
type: Transform
- - uid: 261
+ - uid: 260
components:
- name: substation
type: MetaData
@@ -12748,7 +12747,7 @@ entities:
pos: 14.5,-59.5
parent: 2
type: Transform
- - uid: 262
+ - uid: 261
components:
- name: chapel substation
type: MetaData
@@ -12756,7 +12755,7 @@ entities:
pos: -35.5,-2.5
parent: 2
type: Transform
- - uid: 263
+ - uid: 262
components:
- name: maints substation
type: MetaData
@@ -12764,33 +12763,33 @@ entities:
pos: 49.5,28.5
parent: 2
type: Transform
- - uid: 264
+ - uid: 263
components:
- name: north maints substation
type: MetaData
- pos: -8.5,33.5
parent: 2
type: Transform
- - uid: 265
+ - uid: 264
components:
- name: ai substation
type: MetaData
- pos: -10.5,60.5
parent: 2
type: Transform
- - uid: 266
+ - uid: 265
components:
- name: robotics substation
type: MetaData
- pos: 68.5,-60.5
parent: 2
type: Transform
- - uid: 267
+ - uid: 266
components:
- pos: -21.5,0.5
parent: 2
type: Transform
- - uid: 268
+ - uid: 267
components:
- name: telecoms substation
type: MetaData
@@ -12798,12 +12797,12 @@ entities:
pos: 6.5,-21.5
parent: 2
type: Transform
- - uid: 269
+ - uid: 268
components:
- pos: -41.5,-19.5
parent: 2
type: Transform
- - uid: 270
+ - uid: 269
components:
- name: teg substation
type: MetaData
@@ -12811,193 +12810,198 @@ entities:
pos: -71.5,-35.5
parent: 2
type: Transform
- - uid: 271
+ - uid: 270
components:
- pos: -49.5,-16.5
parent: 2
type: Transform
- - uid: 272
+ - uid: 271
components:
- pos: -49.5,-17.5
parent: 2
type: Transform
- - uid: 273
+ - uid: 272
components:
- name: substation
type: MetaData
- pos: 15.5,-44.5
parent: 2
type: Transform
- - uid: 274
+ - uid: 273
components:
- name: substation
type: MetaData
- pos: 14.5,-48.5
parent: 2
type: Transform
+ - uid: 274
+ components:
+ - pos: -2.5,-14.5
+ parent: 2
+ type: Transform
- proto: AirlockExternalGlass
entities:
- - uid: 276
+ - uid: 275
components:
- pos: -57.5,-71.5
parent: 2
type: Transform
- - uid: 277
+ - uid: 276
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-5.5
parent: 2
type: Transform
- - uid: 279
+ - uid: 277
components:
- pos: 76.5,-34.5
parent: 2
type: Transform
- - uid: 280
+ - uid: 278
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-89.5
parent: 2
type: Transform
- - uid: 281
+ - uid: 279
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-93.5
parent: 2
type: Transform
- - uid: 282
+ - uid: 280
components:
- pos: -57.5,-81.5
parent: 2
type: Transform
- - uid: 283
+ - uid: 281
components:
- pos: -57.5,-79.5
parent: 2
type: Transform
- - uid: 284
+ - uid: 282
components:
- pos: -57.5,-73.5
parent: 2
type: Transform
- - uid: 285
+ - uid: 283
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-3.5
parent: 2
type: Transform
- - uid: 286
+ - uid: 284
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-11.5
parent: 2
type: Transform
- - uid: 287
+ - uid: 285
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-13.5
parent: 2
type: Transform
- - uid: 288
+ - uid: 286
components:
- pos: 27.5,45.5
parent: 2
type: Transform
- - uid: 289
+ - uid: 287
components:
- pos: 21.5,45.5
parent: 2
type: Transform
- - uid: 290
+ - uid: 288
components:
- rot: 3.141592653589793 rad
pos: -17.5,68.5
parent: 2
type: Transform
- - uid: 291
+ - uid: 289
components:
- pos: 16.5,41.5
parent: 2
type: Transform
- - uid: 295
+ - uid: 290
components:
- pos: 76.5,-36.5
parent: 2
type: Transform
- - uid: 296
+ - uid: 291
components:
- pos: 76.5,-37.5
parent: 2
type: Transform
- - uid: 297
+ - uid: 292
components:
- pos: 76.5,-33.5
parent: 2
type: Transform
- - uid: 298
+ - uid: 293
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-82.5
parent: 2
type: Transform
- - uid: 300
+ - uid: 294
components:
- pos: 48.5,-93.5
parent: 2
type: Transform
- - uid: 301
+ - uid: 295
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-82.5
parent: 2
type: Transform
- - uid: 302
+ - uid: 296
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-89.5
parent: 2
type: Transform
- - uid: 306
+ - uid: 297
components:
- pos: 50.5,-82.5
parent: 2
type: Transform
- - uid: 307
+ - uid: 298
components:
- pos: 50.5,-89.5
parent: 2
type: Transform
- - uid: 308
+ - uid: 299
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-90.5
parent: 2
type: Transform
- - uid: 309
+ - uid: 300
components:
- rot: 3.141592653589793 rad
pos: 45.5,-81.5
parent: 2
type: Transform
- - uid: 310
+ - uid: 301
components:
- rot: 3.141592653589793 rad
pos: 33.5,-81.5
parent: 2
type: Transform
- - uid: 311
+ - uid: 302
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-90.5
parent: 2
type: Transform
- - uid: 317
+ - uid: 303
components:
- rot: 3.141592653589793 rad
pos: 68.5,-69.5
parent: 2
type: Transform
- - uid: 318
+ - uid: 304
components:
- rot: 3.141592653589793 rad
pos: 68.5,-67.5
@@ -13005,256 +13009,256 @@ entities:
type: Transform
- proto: AirlockExternalGlassCargoLocked
entities:
- - uid: 319
+ - uid: 305
components:
- pos: -52.5,33.5
parent: 2
type: Transform
- - uid: 320
+ - uid: 306
components:
- pos: -49.5,33.5
parent: 2
type: Transform
- - uid: 321
+ - uid: 307
components:
- pos: -52.5,31.5
parent: 2
type: Transform
- - uid: 322
+ - uid: 308
components:
- pos: -49.5,31.5
parent: 2
type: Transform
- - uid: 323
+ - uid: 309
components:
- pos: -51.5,43.5
parent: 2
type: Transform
- - uid: 324
+ - uid: 310
components:
- pos: -51.5,42.5
parent: 2
type: Transform
- - uid: 325
+ - uid: 311
components:
- pos: -49.5,20.5
parent: 2
type: Transform
- - uid: 326
+ - uid: 312
components:
- pos: -49.5,22.5
parent: 2
type: Transform
- - uid: 327
+ - uid: 313
components:
- pos: -49.5,47.5
parent: 2
type: Transform
- - uid: 328
+ - uid: 314
components:
- pos: -49.5,45.5
parent: 2
type: Transform
- proto: AirlockExternalGlassEngineeringLocked
entities:
- - uid: 330
+ - uid: 315
components:
- pos: -58.5,-18.5
parent: 2
type: Transform
- - uid: 331
+ - uid: 316
components:
- pos: -56.5,-18.5
parent: 2
type: Transform
- proto: AirlockExternalGlassLocked
entities:
- - uid: 275
+ - uid: 317
components:
- pos: -1.5,-80.5
parent: 2
type: Transform
- - uid: 278
+ - uid: 318
components:
- pos: 52.5,-14.5
parent: 2
type: Transform
- - uid: 292
+ - uid: 319
components:
- pos: -7.5,-89.5
parent: 2
type: Transform
- - uid: 293
+ - uid: 320
components:
- pos: -7.5,-94.5
parent: 2
type: Transform
- - uid: 294
+ - uid: 321
components:
- pos: 67.5,-14.5
parent: 2
type: Transform
- - uid: 303
+ - uid: 322
components:
- pos: 6.5,-86.5
parent: 2
type: Transform
- - uid: 304
+ - uid: 323
components:
- pos: -37.5,43.5
parent: 2
type: Transform
- - uid: 305
+ - uid: 324
components:
- pos: 6.5,-84.5
parent: 2
type: Transform
- - uid: 312
+ - uid: 325
components:
- pos: -58.5,-54.5
parent: 2
type: Transform
- - uid: 313
+ - uid: 326
components:
- pos: -60.5,-54.5
parent: 2
type: Transform
- - uid: 314
+ - uid: 327
components:
- pos: -55.5,-1.5
parent: 2
type: Transform
- - uid: 315
+ - uid: 328
components:
- pos: -37.5,41.5
parent: 2
type: Transform
- - uid: 316
+ - uid: 329
components:
- pos: -1.5,-84.5
parent: 2
type: Transform
- - uid: 329
+ - uid: 330
components:
- pos: 52.5,-16.5
parent: 2
type: Transform
- - uid: 332
+ - uid: 331
components:
- pos: -46.5,-41.5
parent: 2
type: Transform
- - uid: 333
+ - uid: 332
components:
- rot: -1.5707963267948966 rad
pos: 63.5,30.5
parent: 2
type: Transform
- - uid: 334
+ - uid: 333
components:
- pos: 69.5,36.5
parent: 2
type: Transform
- - uid: 335
+ - uid: 334
components:
- pos: 75.5,36.5
parent: 2
type: Transform
- - uid: 336
+ - uid: 335
components:
- pos: 77.5,36.5
parent: 2
type: Transform
- - uid: 337
+ - uid: 336
components:
- pos: 67.5,36.5
parent: 2
type: Transform
- - uid: 338
+ - uid: 337
components:
- pos: 63.5,32.5
parent: 2
type: Transform
- - uid: 339
+ - uid: 338
components:
- pos: 29.5,41.5
parent: 2
type: Transform
- - uid: 340
+ - uid: 339
components:
- pos: 29.5,43.5
parent: 2
type: Transform
- - uid: 341
+ - uid: 340
components:
- pos: -12.5,71.5
parent: 2
type: Transform
- - uid: 342
+ - uid: 341
components:
- pos: -13.5,71.5
parent: 2
type: Transform
- - uid: 343
+ - uid: 342
components:
- pos: -21.5,71.5
parent: 2
type: Transform
- - uid: 344
+ - uid: 343
components:
- pos: -22.5,71.5
parent: 2
type: Transform
- - uid: 345
+ - uid: 344
components:
- pos: 67.5,-16.5
parent: 2
type: Transform
- - uid: 346
+ - uid: 345
components:
- pos: -35.5,-99.5
parent: 2
type: Transform
- - uid: 347
+ - uid: 346
components:
- pos: -35.5,-101.5
parent: 2
type: Transform
- - uid: 348
+ - uid: 347
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-58.5
parent: 2
type: Transform
- - uid: 349
+ - uid: 348
components:
- pos: -75.5,-31.5
parent: 2
type: Transform
- - uid: 350
+ - uid: 349
components:
- pos: -77.5,-31.5
parent: 2
type: Transform
- - uid: 351
+ - uid: 350
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-45.5
parent: 2
type: Transform
- - uid: 352
+ - uid: 351
components:
- rot: 3.141592653589793 rad
pos: -63.5,-44.5
parent: 2
type: Transform
- - uid: 353
+ - uid: 352
components:
- rot: -1.5707963267948966 rad
pos: 39.5,59.5
parent: 2
type: Transform
- - uid: 364
+ - uid: 353
components:
- pos: -57.5,-1.5
parent: 2
@@ -13313,18 +13317,18 @@ entities:
type: Transform
- proto: AirlockExternalGlassShuttleEscape
entities:
- - uid: 299
+ - uid: 362
components:
- pos: 30.5,-95.5
parent: 2
type: Transform
- - uid: 362
+ - uid: 363
components:
- rot: 3.141592653589793 rad
pos: -17.5,70.5
parent: 2
type: Transform
- - uid: 363
+ - uid: 364
components:
- pos: 48.5,-95.5
parent: 2
@@ -13462,11 +13466,17 @@ entities:
- pos: 26.5,15.5
parent: 2
type: Transform
+ - links:
+ - 24256
+ type: DeviceLinkSink
- uid: 386
components:
- pos: 24.5,15.5
parent: 2
type: Transform
+ - links:
+ - 24256
+ type: DeviceLinkSink
- uid: 387
components:
- pos: -1.5,7.5
@@ -13500,6 +13510,9 @@ entities:
- pos: 25.5,15.5
parent: 2
type: Transform
+ - links:
+ - 24256
+ type: DeviceLinkSink
- uid: 393
components:
- rot: -1.5707963267948966 rad
@@ -13552,11 +13565,17 @@ entities:
- pos: 0.5,-50.5
parent: 2
type: Transform
+ - links:
+ - 24271
+ type: DeviceLinkSink
- uid: 402
components:
- pos: -0.5,-50.5
parent: 2
type: Transform
+ - links:
+ - 24271
+ type: DeviceLinkSink
- uid: 403
components:
- pos: 31.5,1.5
@@ -13581,6 +13600,9 @@ entities:
- pos: -1.5,-50.5
parent: 2
type: Transform
+ - links:
+ - 24271
+ type: DeviceLinkSink
- uid: 407
components:
- rot: 3.141592653589793 rad
@@ -13759,16 +13781,25 @@ entities:
- pos: 40.5,-41.5
parent: 2
type: Transform
+ - links:
+ - 24270
+ type: DeviceLinkSink
- uid: 439
components:
- pos: 40.5,-42.5
parent: 2
type: Transform
+ - links:
+ - 24270
+ type: DeviceLinkSink
- uid: 440
components:
- pos: 40.5,-43.5
parent: 2
type: Transform
+ - links:
+ - 24270
+ type: DeviceLinkSink
- uid: 441
components:
- pos: 7.5,-43.5
@@ -13973,16 +14004,25 @@ entities:
- pos: -7.5,-50.5
parent: 2
type: Transform
+ - links:
+ - 24271
+ type: DeviceLinkSink
- uid: 476
components:
- pos: -8.5,-50.5
parent: 2
type: Transform
+ - links:
+ - 24271
+ type: DeviceLinkSink
- uid: 477
components:
- pos: -9.5,-50.5
parent: 2
type: Transform
+ - links:
+ - 24271
+ type: DeviceLinkSink
- uid: 478
components:
- pos: -19.5,14.5
@@ -14041,16 +14081,25 @@ entities:
- pos: -21.5,-12.5
parent: 2
type: Transform
+ - links:
+ - 24268
+ type: DeviceLinkSink
- uid: 489
components:
- pos: -21.5,-11.5
parent: 2
type: Transform
+ - links:
+ - 24268
+ type: DeviceLinkSink
- uid: 490
components:
- pos: -21.5,20.5
parent: 2
type: Transform
+ - links:
+ - 24257
+ type: DeviceLinkSink
- uid: 491
components:
- rot: -1.5707963267948966 rad
@@ -14128,6 +14177,9 @@ entities:
- pos: -21.5,21.5
parent: 2
type: Transform
+ - links:
+ - 24257
+ type: DeviceLinkSink
- uid: 506
components:
- pos: -46.5,2.5
@@ -14428,7 +14480,7 @@ entities:
parent: 2
type: Transform
- links:
- - 23945
+ - 23969
type: DeviceLinkSink
- uid: 558
components:
@@ -14438,7 +14490,7 @@ entities:
parent: 2
type: Transform
- links:
- - 23945
+ - 23969
type: DeviceLinkSink
- uid: 559
components:
@@ -14486,12 +14538,13 @@ entities:
type: Transform
- uid: 565
components:
- - pos: -3.5,13.5
+ - pos: -6.5,13.5
parent: 2
type: Transform
- uid: 566
components:
- - pos: -6.5,13.5
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,13.5
parent: 2
type: Transform
- proto: AirlockJanitorLocked
@@ -14882,7 +14935,7 @@ entities:
parent: 2
type: Transform
- links:
- - 23945
+ - 23969
type: DeviceLinkSink
- proto: AirlockMaintJanitorLocked
entities:
@@ -15162,7 +15215,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24153
+ - 24194
type: DeviceLinkSink
- uid: 678
components:
@@ -15964,7 +16017,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24154
+ - 24195
type: DeviceLinkSink
- uid: 797
components:
@@ -15974,7 +16027,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24151
+ - 24192
type: DeviceLinkSink
- proto: AirlockVirologyGlass
entities:
@@ -16257,7 +16310,7 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14720
type: DeviceNetwork
- uid: 848
components:
@@ -16708,7 +16761,7 @@ entities:
type: Transform
- ShutdownSubscribers:
- 95
- - 14701
+ - 14719
type: DeviceNetwork
- uid: 932
components:
@@ -16741,7 +16794,7 @@ entities:
type: Transform
- ShutdownSubscribers:
- 100
- - 14705
+ - 14723
type: DeviceNetwork
- uid: 936
components:
@@ -16749,7 +16802,7 @@ entities:
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14704
+ - 14722
- 99
type: DeviceNetwork
- uid: 937
@@ -16760,7 +16813,7 @@ entities:
type: Transform
- ShutdownSubscribers:
- 101
- - 14706
+ - 14724
type: DeviceNetwork
- uid: 938
components:
@@ -16769,7 +16822,7 @@ entities:
type: Transform
- ShutdownSubscribers:
- 79
- - 14707
+ - 14725
type: DeviceNetwork
- proto: AltarConvertRed
entities:
@@ -22557,7 +22610,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24212
+ - 24253
type: DeviceLinkSink
- uid: 2059
components:
@@ -22565,7 +22618,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24212
+ - 24253
type: DeviceLinkSink
- uid: 2060
components:
@@ -22573,7 +22626,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24212
+ - 24253
type: DeviceLinkSink
- uid: 2061
components:
@@ -22581,7 +22634,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24211
+ - 24252
type: DeviceLinkSink
- uid: 2062
components:
@@ -22589,7 +22642,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24211
+ - 24252
type: DeviceLinkSink
- uid: 2063
components:
@@ -22597,7 +22650,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24211
+ - 24252
type: DeviceLinkSink
- proto: BlastDoorBridge
entities:
@@ -22607,7 +22660,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24192
+ - 24233
type: DeviceLinkSink
- uid: 2065
components:
@@ -22615,7 +22668,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24192
+ - 24233
type: DeviceLinkSink
- uid: 2066
components:
@@ -22623,7 +22676,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24192
+ - 24233
type: DeviceLinkSink
- proto: BlastDoorExterior1
entities:
@@ -22633,7 +22686,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24168
+ - 24209
type: DeviceLinkSink
- uid: 2068
components:
@@ -22641,7 +22694,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24164
+ - 24205
type: DeviceLinkSink
- uid: 2069
components:
@@ -22649,7 +22702,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24164
+ - 24205
type: DeviceLinkSink
- uid: 2070
components:
@@ -22657,7 +22710,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24164
+ - 24205
type: DeviceLinkSink
- uid: 2071
components:
@@ -22665,7 +22718,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24164
+ - 24205
type: DeviceLinkSink
- uid: 2072
components:
@@ -22673,7 +22726,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24165
+ - 24206
type: DeviceLinkSink
- uid: 2073
components:
@@ -22681,7 +22734,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24198
+ - 24239
type: DeviceLinkSink
- uid: 2074
components:
@@ -22690,7 +22743,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24167
+ - 24208
type: DeviceLinkSink
- uid: 2075
components:
@@ -22699,7 +22752,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24167
+ - 24208
type: DeviceLinkSink
- uid: 2076
components:
@@ -22707,7 +22760,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24213
+ - 24254
type: DeviceLinkSink
- uid: 2077
components:
@@ -22716,7 +22769,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24171
+ - 24212
type: DeviceLinkSink
- uid: 2078
components:
@@ -22725,7 +22778,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24171
+ - 24212
type: DeviceLinkSink
- uid: 2079
components:
@@ -22734,7 +22787,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24171
+ - 24212
type: DeviceLinkSink
- uid: 2080
components:
@@ -22743,7 +22796,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24171
+ - 24212
type: DeviceLinkSink
- uid: 2081
components:
@@ -22751,7 +22804,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24173
+ - 24214
type: DeviceLinkSink
- uid: 2082
components:
@@ -22759,7 +22812,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24173
+ - 24214
type: DeviceLinkSink
- uid: 2083
components:
@@ -22767,9 +22820,9 @@ entities:
parent: 2
type: Transform
- links:
- - 24181
- - 24183
- - 24188
+ - 24222
+ - 24224
+ - 24229
type: DeviceLinkSink
- uid: 2084
components:
@@ -22777,8 +22830,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24179
- - 24181
+ - 24220
+ - 24222
type: DeviceLinkSink
- uid: 2085
components:
@@ -22786,7 +22839,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24203
+ - 24244
type: DeviceLinkSink
- uid: 2086
components:
@@ -22794,7 +22847,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24166
+ - 24207
type: DeviceLinkSink
- uid: 2087
components:
@@ -22802,7 +22855,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24172
+ - 24213
type: DeviceLinkSink
- uid: 2088
components:
@@ -22810,7 +22863,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24172
+ - 24213
type: DeviceLinkSink
- uid: 2089
components:
@@ -22818,9 +22871,9 @@ entities:
parent: 2
type: Transform
- links:
- - 24175
- - 24184
- - 24191
+ - 24216
+ - 24225
+ - 24232
type: DeviceLinkSink
- uid: 2090
components:
@@ -22828,8 +22881,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24179
- - 24182
+ - 24220
+ - 24223
type: DeviceLinkSink
- uid: 2091
components:
@@ -22837,7 +22890,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24177
+ - 24218
type: DeviceLinkSink
- uid: 2092
components:
@@ -22845,7 +22898,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24183
+ - 24224
type: DeviceLinkSink
- uid: 2093
components:
@@ -22853,7 +22906,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24174
+ - 24215
type: DeviceLinkSink
- uid: 2094
components:
@@ -22866,9 +22919,9 @@ entities:
parent: 2
type: Transform
- links:
- - 24174
- - 24189
- - 24191
+ - 24215
+ - 24230
+ - 24232
type: DeviceLinkSink
- uid: 2096
components:
@@ -22876,7 +22929,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24189
+ - 24230
type: DeviceLinkSink
- uid: 2097
components:
@@ -22884,7 +22937,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24175
+ - 24216
type: DeviceLinkSink
- uid: 2098
components:
@@ -22892,8 +22945,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24178
- - 24187
+ - 24219
+ - 24228
type: DeviceLinkSink
- uid: 2099
components:
@@ -22901,8 +22954,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24185
- - 24191
+ - 24226
+ - 24232
type: DeviceLinkSink
- uid: 2100
components:
@@ -22910,8 +22963,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24185
- - 24188
+ - 24226
+ - 24229
type: DeviceLinkSink
- uid: 2101
components:
@@ -22919,7 +22972,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24186
+ - 24227
type: DeviceLinkSink
- uid: 2102
components:
@@ -22927,9 +22980,9 @@ entities:
parent: 2
type: Transform
- links:
- - 24178
- - 24180
- - 24189
+ - 24219
+ - 24221
+ - 24230
type: DeviceLinkSink
- uid: 2103
components:
@@ -22942,7 +22995,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24182
+ - 24223
type: DeviceLinkSink
- uid: 2105
components:
@@ -22950,7 +23003,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24184
+ - 24225
type: DeviceLinkSink
- uid: 2106
components:
@@ -22958,8 +23011,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24188
- - 24189
+ - 24229
+ - 24230
type: DeviceLinkSink
- uid: 2107
components:
@@ -22967,8 +23020,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24180
- - 24186
+ - 24221
+ - 24227
type: DeviceLinkSink
- uid: 2108
components:
@@ -22976,8 +23029,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24177
- - 24187
+ - 24218
+ - 24228
type: DeviceLinkSink
- uid: 2109
components:
@@ -22985,7 +23038,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24194
+ - 24235
type: DeviceLinkSink
- uid: 2110
components:
@@ -22993,7 +23046,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24194
+ - 24235
type: DeviceLinkSink
- uid: 2111
components:
@@ -23001,7 +23054,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24195
+ - 24236
type: DeviceLinkSink
- uid: 2112
components:
@@ -23009,7 +23062,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24195
+ - 24236
type: DeviceLinkSink
- uid: 2113
components:
@@ -23017,7 +23070,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24163
+ - 24204
type: DeviceLinkSink
- uid: 2114
components:
@@ -23026,7 +23079,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24199
+ - 24240
type: DeviceLinkSink
- uid: 2115
components:
@@ -23034,7 +23087,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24213
+ - 24254
type: DeviceLinkSink
- proto: BlastDoorExterior1Open
entities:
@@ -23045,7 +23098,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2117
components:
@@ -23054,7 +23107,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2118
components:
@@ -23063,7 +23116,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2119
components:
@@ -23072,7 +23125,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2120
components:
@@ -23081,7 +23134,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2121
components:
@@ -23090,7 +23143,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2122
components:
@@ -23099,7 +23152,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2123
components:
@@ -23108,7 +23161,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2124
components:
@@ -23117,7 +23170,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2125
components:
@@ -23126,7 +23179,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24193
+ - 24234
type: DeviceLinkSink
- uid: 2126
components:
@@ -23134,8 +23187,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- uid: 2127
components:
@@ -23143,8 +23196,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- uid: 2128
components:
@@ -23152,8 +23205,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- uid: 2129
components:
@@ -23161,8 +23214,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- uid: 2130
components:
@@ -23170,8 +23223,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- uid: 2131
components:
@@ -23179,8 +23232,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- uid: 2132
components:
@@ -23188,8 +23241,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- uid: 2133
components:
@@ -23197,8 +23250,8 @@ entities:
parent: 2
type: Transform
- links:
- - 24196
- - 24197
+ - 24237
+ - 24238
type: DeviceLinkSink
- proto: BlastDoorExterior2
entities:
@@ -23208,7 +23261,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24160
+ - 24201
type: DeviceLinkSink
- proto: BlastDoorOpen
entities:
@@ -23218,7 +23271,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24170
+ - 24211
type: DeviceLinkSink
- uid: 2136
components:
@@ -23226,7 +23279,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24170
+ - 24211
type: DeviceLinkSink
- uid: 2137
components:
@@ -23234,7 +23287,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24170
+ - 24211
type: DeviceLinkSink
- uid: 2138
components:
@@ -23242,7 +23295,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24170
+ - 24211
type: DeviceLinkSink
- uid: 2139
components:
@@ -23250,7 +23303,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24170
+ - 24211
type: DeviceLinkSink
- uid: 2140
components:
@@ -23259,7 +23312,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24169
+ - 24210
type: DeviceLinkSink
- uid: 2141
components:
@@ -23268,7 +23321,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24169
+ - 24210
type: DeviceLinkSink
- uid: 2142
components:
@@ -23277,7 +23330,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24169
+ - 24210
type: DeviceLinkSink
- uid: 2143
components:
@@ -23286,7 +23339,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24169
+ - 24210
type: DeviceLinkSink
- uid: 2144
components:
@@ -23295,7 +23348,7 @@ entities:
parent: 2
type: Transform
- links:
- - 24169
+ - 24210
type: DeviceLinkSink
- proto: BlockGameArcadeComputerCircuitboard
entities:
@@ -23792,7 +23845,7 @@ entities:
type: Transform
- uid: 2226
components:
- - pos: 2.3209906,11.720218
+ - pos: 2.2602339,11.636776
parent: 2
type: Transform
- proto: BoxMouthSwab
@@ -23853,107 +23906,112 @@ entities:
- pos: 27.052765,32.658382
parent: 2
type: Transform
+ - uid: 2237
+ components:
+ - pos: 27.017645,32.73731
+ parent: 2
+ type: Transform
- proto: BoxSterileMask
entities:
- - uid: 2237
+ - uid: 2238
components:
- pos: -0.45298922,-61.30278
parent: 2
type: Transform
- - uid: 2238
+ - uid: 2239
components:
- pos: -22.622793,-78.244446
parent: 2
type: Transform
- - uid: 2239
+ - uid: 2240
components:
- pos: -20.619028,-78.321075
parent: 2
type: Transform
- proto: BoxSyringe
entities:
- - uid: 2240
+ - uid: 2241
components:
- pos: 9.300846,-45.47143
parent: 2
type: Transform
- - uid: 2241
+ - uid: 2242
components:
- pos: 8.848293,-62.473377
parent: 2
type: Transform
- - uid: 2242
+ - uid: 2243
components:
- pos: -22.337778,-78.539825
parent: 2
type: Transform
- - uid: 2243
+ - uid: 2244
components:
- pos: -20.634653,-77.352325
parent: 2
type: Transform
- - uid: 2244
+ - uid: 2245
components:
- pos: -26.571459,-84.31156
parent: 2
type: Transform
- - uid: 2245
+ - uid: 2246
components:
- pos: -8.384587,-32.982723
parent: 2
type: Transform
- proto: BoxZiptie
entities:
- - uid: 2246
+ - uid: 2247
components:
- pos: 15.609102,22.64932
parent: 2
type: Transform
- proto: BrbSign
entities:
- - uid: 2247
+ - uid: 2248
components:
- pos: -28.403494,21.398111
parent: 2
type: Transform
- - uid: 2248
+ - uid: 2249
components:
- pos: 4.567957,-7.561912
parent: 2
type: Transform
- proto: BriefcaseBrown
entities:
- - uid: 2249
+ - uid: 2250
components:
- pos: 62.36704,-10.4423
parent: 2
type: Transform
- - uid: 2250
+ - uid: 2251
components:
- rot: 1.5707963267948966 rad
pos: -22.463455,11.6035385
parent: 2
type: Transform
- - uid: 2251
+ - uid: 2252
components:
- pos: -43.482876,-88.91509
parent: 2
type: Transform
- proto: BriefcaseBrownFilled
entities:
- - uid: 2252
+ - uid: 2253
components:
- pos: 43.51077,-2.4121785
parent: 2
type: Transform
- - uid: 2253
+ - uid: 2254
components:
- pos: 32.38076,-48.30607
parent: 2
type: Transform
- proto: BrigTimer
entities:
- - uid: 2254
+ - uid: 2255
components:
- name: cell 3 brig timer
type: MetaData
@@ -23962,12 +24020,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31052:
+ 31113:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2255
+ - uid: 2256
components:
- name: cell 1 brig timer
type: MetaData
@@ -23976,12 +24034,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31044:
+ 31105:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2256
+ - uid: 2257
components:
- name: cell 2 brig timer
type: MetaData
@@ -23990,12 +24048,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31049:
+ 31110:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2257
+ - uid: 2258
components:
- name: cell 4 brig timer
type: MetaData
@@ -24004,12 +24062,12 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31045:
+ 31106:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- - uid: 2258
+ - uid: 2259
components:
- name: cell 5 brig timer
type: MetaData
@@ -24018,14 +24076,14 @@ entities:
parent: 2
type: Transform
- linkedPorts:
- 31050:
+ 31111:
- Start: Close
- Timer: AutoClose
- Timer: Open
type: DeviceLinkSource
- proto: BrokenBottle
entities:
- - uid: 2259
+ - uid: 2260
components:
- rot: -1.5707963267948966 rad
pos: -6.571364,-73.41078
@@ -24033,57 +24091,57 @@ entities:
type: Transform
- proto: Brutepack
entities:
- - uid: 2260
+ - uid: 2261
components:
- pos: -9.633343,-56.47309
parent: 2
type: Transform
- - uid: 2261
+ - uid: 2262
components:
- pos: -10.641302,-3.848185
parent: 2
type: Transform
- - uid: 2262
+ - uid: 2263
components:
- pos: -10.266302,-3.785685
parent: 2
type: Transform
- - uid: 2263
+ - uid: 2264
components:
- pos: -0.6646667,-56.50434
parent: 2
type: Transform
- - uid: 2264
+ - uid: 2265
components:
- pos: -3.5865417,-56.488716
parent: 2
type: Transform
- - uid: 2265
+ - uid: 2266
components:
- pos: -6.5713716,-56.519966
parent: 2
type: Transform
- - uid: 2266
+ - uid: 2267
components:
- pos: -12.617692,-56.44184
parent: 2
type: Transform
- - uid: 2267
+ - uid: 2268
components:
- pos: 30.05692,4.5786
parent: 2
type: Transform
- - uid: 2268
+ - uid: 2269
components:
- pos: -6.3699856,-49.096176
parent: 2
type: Transform
- - uid: 2269
+ - uid: 2270
components:
- pos: -6.6512356,-49.408676
parent: 2
type: Transform
- - uid: 2270
+ - uid: 2271
components:
- rot: -1.5707963267948966 rad
pos: 47.410034,4.616682
@@ -24091,60 +24149,65 @@ entities:
type: Transform
- proto: Bucket
entities:
- - uid: 2271
+ - uid: 2272
components:
- pos: -7.4822392,14.606249
parent: 2
type: Transform
- - uid: 2272
+ - uid: 2273
components:
- pos: 2.6959906,11.392093
parent: 2
type: Transform
- - uid: 2273
+ - uid: 2274
components:
- pos: 55.336075,17.733736
parent: 2
type: Transform
- - uid: 2274
+ - uid: 2275
components:
- pos: -29.554869,3.5549593
parent: 2
type: Transform
- - uid: 2275
+ - uid: 2276
components:
- pos: 13.468333,-66.41357
parent: 2
type: Transform
- - uid: 2276
+ - uid: 2277
components:
- pos: 55.53834,27.595942
parent: 2
type: Transform
- - uid: 2277
+ - uid: 2278
components:
- pos: -4.262462,56.45376
parent: 2
type: Transform
- - uid: 2278
+ - uid: 2279
components:
- pos: -4.167221,5.7952065
parent: 2
type: Transform
- - uid: 2279
+ - uid: 2280
components:
- pos: -4.417221,5.4827065
parent: 2
type: Transform
+ - uid: 2281
+ components:
+ - pos: -7.3575215,-19.475973
+ parent: 2
+ type: Transform
- proto: BulletFoam
entities:
- - uid: 2280
+ - uid: 2282
components:
- rot: -1.5707963267948966 rad
pos: -11.707516,41.19452
parent: 2
type: Transform
- - uid: 2281
+ - uid: 2283
components:
- rot: 3.141592653589793 rad
pos: -11.879391,41.47577
@@ -24152,15501 +24215,15491 @@ entities:
type: Transform
- proto: BungoSeeds
entities:
- - uid: 2282
+ - uid: 2284
components:
- pos: -50.533592,-27.38226
parent: 2
type: Transform
- proto: CableApcExtension
entities:
- - uid: 2283
+ - uid: 2285
components:
- pos: 10.5,-46.5
parent: 2
type: Transform
- - uid: 2284
+ - uid: 2286
components:
- pos: 4.5,-11.5
parent: 2
type: Transform
- - uid: 2285
+ - uid: 2287
components:
- pos: 21.5,-39.5
parent: 2
type: Transform
- - uid: 2286
+ - uid: 2288
components:
- pos: 4.5,-6.5
parent: 2
type: Transform
- - uid: 2287
+ - uid: 2289
components:
- pos: -16.5,11.5
parent: 2
type: Transform
- - uid: 2288
+ - uid: 2290
components:
- pos: -66.5,-35.5
parent: 2
type: Transform
- - uid: 2289
+ - uid: 2291
components:
- pos: -65.5,-38.5
parent: 2
type: Transform
- - uid: 2290
+ - uid: 2292
components:
- pos: -7.5,8.5
parent: 2
type: Transform
- - uid: 2291
+ - uid: 2293
components:
- pos: -12.5,-33.5
parent: 2
type: Transform
- - uid: 2292
+ - uid: 2294
components:
- pos: 18.5,-52.5
parent: 2
type: Transform
- - uid: 2293
+ - uid: 2295
components:
- pos: -5.5,1.5
parent: 2
type: Transform
- - uid: 2294
+ - uid: 2296
components:
- pos: -7.5,-26.5
parent: 2
type: Transform
- - uid: 2295
+ - uid: 2297
components:
- pos: 33.5,-17.5
parent: 2
type: Transform
- - uid: 2296
+ - uid: 2298
components:
- pos: 15.5,-32.5
parent: 2
type: Transform
- - uid: 2297
+ - uid: 2299
components:
- pos: -10.5,-26.5
parent: 2
type: Transform
- - uid: 2298
+ - uid: 2300
components:
- pos: 14.5,-51.5
parent: 2
type: Transform
- - uid: 2299
+ - uid: 2301
components:
- pos: 27.5,-60.5
parent: 2
type: Transform
- - uid: 2300
+ - uid: 2302
components:
- pos: 7.5,-8.5
parent: 2
type: Transform
- - uid: 2301
+ - uid: 2303
components:
- pos: 7.5,-8.5
parent: 2
type: Transform
- - uid: 2302
+ - uid: 2304
components:
- pos: 15.5,-18.5
parent: 2
type: Transform
- - uid: 2303
+ - uid: 2305
components:
- pos: -47.5,38.5
parent: 2
type: Transform
- - uid: 2304
+ - uid: 2306
components:
- pos: 0.5,-41.5
parent: 2
type: Transform
- - uid: 2305
+ - uid: 2307
components:
- pos: -1.5,-41.5
parent: 2
type: Transform
- - uid: 2306
+ - uid: 2308
components:
- pos: 15.5,-10.5
parent: 2
type: Transform
- - uid: 2307
+ - uid: 2309
components:
- pos: -4.5,-41.5
parent: 2
type: Transform
- - uid: 2308
+ - uid: 2310
components:
- pos: 32.5,-11.5
parent: 2
type: Transform
- - uid: 2309
+ - uid: 2311
components:
- pos: -6.5,-75.5
parent: 2
type: Transform
- - uid: 2310
+ - uid: 2312
components:
- pos: 32.5,-13.5
parent: 2
type: Transform
- - uid: 2311
+ - uid: 2313
components:
- pos: 14.5,-47.5
parent: 2
type: Transform
- - uid: 2312
+ - uid: 2314
components:
- pos: 6.5,-65.5
parent: 2
type: Transform
- - uid: 2313
+ - uid: 2315
components:
- pos: -4.5,-37.5
parent: 2
type: Transform
- - uid: 2314
+ - uid: 2316
components:
- pos: 8.5,-17.5
parent: 2
type: Transform
- - uid: 2315
+ - uid: 2317
components:
- pos: -12.5,-45.5
parent: 2
type: Transform
- - uid: 2316
+ - uid: 2318
components:
- pos: 14.5,-50.5
parent: 2
type: Transform
- - uid: 2317
+ - uid: 2319
components:
- pos: 15.5,-52.5
parent: 2
type: Transform
- - uid: 2318
+ - uid: 2320
components:
- pos: 27.5,-47.5
parent: 2
type: Transform
- - uid: 2319
+ - uid: 2321
components:
- pos: 31.5,-16.5
parent: 2
type: Transform
- - uid: 2320
+ - uid: 2322
components:
- pos: 20.5,-52.5
parent: 2
type: Transform
- - uid: 2321
+ - uid: 2323
components:
- pos: 21.5,-17.5
parent: 2
type: Transform
- - uid: 2322
+ - uid: 2324
components:
- pos: 15.5,-17.5
parent: 2
type: Transform
- - uid: 2323
+ - uid: 2325
components:
- pos: 16.5,-17.5
parent: 2
type: Transform
- - uid: 2324
+ - uid: 2326
components:
- pos: -8.5,3.5
parent: 2
type: Transform
- - uid: 2325
+ - uid: 2327
components:
- pos: -5.5,4.5
parent: 2
type: Transform
- - uid: 2326
+ - uid: 2328
components:
- pos: 30.5,-62.5
parent: 2
type: Transform
- - uid: 2327
+ - uid: 2329
components:
- pos: 15.5,-33.5
parent: 2
type: Transform
- - uid: 2328
+ - uid: 2330
components:
- pos: 18.5,-17.5
parent: 2
type: Transform
- - uid: 2329
+ - uid: 2331
components:
- pos: 20.5,-53.5
parent: 2
type: Transform
- - uid: 2330
+ - uid: 2332
components:
- pos: 6.5,-71.5
parent: 2
type: Transform
- - uid: 2331
+ - uid: 2333
components:
- pos: 19.5,-52.5
parent: 2
type: Transform
- - uid: 2332
+ - uid: 2334
components:
- pos: 21.5,-8.5
parent: 2
type: Transform
- - uid: 2333
+ - uid: 2335
components:
- pos: 25.5,-57.5
parent: 2
type: Transform
- - uid: 2334
+ - uid: 2336
components:
- pos: 15.5,-34.5
parent: 2
type: Transform
- - uid: 2335
+ - uid: 2337
components:
- pos: -0.5,-54.5
parent: 2
type: Transform
- - uid: 2336
+ - uid: 2338
components:
- pos: 0.5,10.5
parent: 2
type: Transform
- - uid: 2337
+ - uid: 2339
components:
- pos: 5.5,14.5
parent: 2
type: Transform
- - uid: 2338
+ - uid: 2340
components:
- pos: -1.5,14.5
parent: 2
type: Transform
- - uid: 2339
+ - uid: 2341
components:
- pos: 32.5,0.5
parent: 2
type: Transform
- - uid: 2340
+ - uid: 2342
components:
- pos: 33.5,2.5
parent: 2
type: Transform
- - uid: 2341
+ - uid: 2343
components:
- pos: 5.5,-10.5
parent: 2
type: Transform
- - uid: 2342
+ - uid: 2344
components:
- pos: 0.5,-10.5
parent: 2
type: Transform
- - uid: 2343
+ - uid: 2345
components:
- pos: 10.5,-6.5
parent: 2
type: Transform
- - uid: 2344
+ - uid: 2346
components:
- pos: -3.5,11.5
parent: 2
type: Transform
- - uid: 2345
+ - uid: 2347
components:
- pos: -4.5,6.5
parent: 2
type: Transform
- - uid: 2346
+ - uid: 2348
components:
- pos: -8.5,9.5
parent: 2
type: Transform
- - uid: 2347
+ - uid: 2349
components:
- pos: -4.5,-47.5
parent: 2
type: Transform
- - uid: 2348
+ - uid: 2350
components:
- pos: 1.5,-48.5
parent: 2
type: Transform
- - uid: 2349
+ - uid: 2351
components:
- pos: -1.5,-48.5
parent: 2
type: Transform
- - uid: 2350
+ - uid: 2352
components:
- pos: -1.5,-50.5
parent: 2
type: Transform
- - uid: 2351
+ - uid: 2353
components:
- pos: 4.5,-54.5
parent: 2
type: Transform
- - uid: 2352
+ - uid: 2354
components:
- pos: 0.5,-54.5
parent: 2
type: Transform
- - uid: 2353
+ - uid: 2355
components:
- pos: -15.5,-61.5
parent: 2
type: Transform
- - uid: 2354
+ - uid: 2356
components:
- pos: -6.5,-62.5
parent: 2
type: Transform
- - uid: 2355
+ - uid: 2357
components:
- pos: -8.5,6.5
parent: 2
type: Transform
- - uid: 2356
+ - uid: 2358
components:
- pos: -0.5,14.5
parent: 2
type: Transform
- - uid: 2357
+ - uid: 2359
components:
- pos: -5.5,-42.5
parent: 2
type: Transform
- - uid: 2358
+ - uid: 2360
components:
- pos: 36.5,18.5
parent: 2
type: Transform
- - uid: 2359
+ - uid: 2361
components:
- pos: 29.5,32.5
parent: 2
type: Transform
- - uid: 2360
+ - uid: 2362
components:
- pos: 62.5,-6.5
parent: 2
type: Transform
- - uid: 2361
+ - uid: 2363
components:
- pos: -1.5,-51.5
parent: 2
type: Transform
- - uid: 2362
+ - uid: 2364
components:
- pos: 6.5,-48.5
parent: 2
type: Transform
- - uid: 2363
+ - uid: 2365
components:
- pos: -1.5,-45.5
parent: 2
type: Transform
- - uid: 2364
+ - uid: 2366
components:
- pos: -3.5,-52.5
parent: 2
type: Transform
- - uid: 2365
+ - uid: 2367
components:
- pos: -4.5,-54.5
parent: 2
type: Transform
- - uid: 2366
+ - uid: 2368
components:
- pos: -7.5,-54.5
parent: 2
type: Transform
- - uid: 2367
+ - uid: 2369
components:
- pos: -9.5,-54.5
parent: 2
type: Transform
- - uid: 2368
+ - uid: 2370
components:
- pos: 1.5,-54.5
parent: 2
type: Transform
- - uid: 2369
+ - uid: 2371
components:
- pos: 2.5,-60.5
parent: 2
type: Transform
- - uid: 2370
+ - uid: 2372
components:
- pos: -13.5,-62.5
parent: 2
type: Transform
- - uid: 2371
+ - uid: 2373
components:
- pos: -14.5,-66.5
parent: 2
type: Transform
- - uid: 2372
+ - uid: 2374
components:
- pos: -15.5,-65.5
parent: 2
type: Transform
- - uid: 2373
+ - uid: 2375
components:
- pos: -15.5,-54.5
parent: 2
type: Transform
- - uid: 2374
+ - uid: 2376
components:
- pos: 2.5,-70.5
parent: 2
type: Transform
- - uid: 2375
+ - uid: 2377
components:
- pos: 16.5,-29.5
parent: 2
type: Transform
- - uid: 2376
+ - uid: 2378
components:
- pos: 1.5,-10.5
parent: 2
type: Transform
- - uid: 2377
+ - uid: 2379
components:
- pos: 4.5,-10.5
parent: 2
type: Transform
- - uid: 2378
+ - uid: 2380
components:
- pos: 11.5,-17.5
parent: 2
type: Transform
- - uid: 2379
+ - uid: 2381
components:
- pos: 2.5,-26.5
parent: 2
type: Transform
- - uid: 2380
+ - uid: 2382
components:
- pos: -10.5,-21.5
parent: 2
type: Transform
- - uid: 2381
+ - uid: 2383
components:
- pos: -8.5,-45.5
parent: 2
type: Transform
- - uid: 2382
+ - uid: 2384
components:
- pos: 3.5,-62.5
parent: 2
type: Transform
- - uid: 2383
+ - uid: 2385
components:
- pos: -5.5,-60.5
parent: 2
type: Transform
- - uid: 2384
+ - uid: 2386
components:
- pos: -1.5,-46.5
parent: 2
type: Transform
- - uid: 2385
+ - uid: 2387
components:
- pos: -2.5,-45.5
parent: 2
type: Transform
- - uid: 2386
+ - uid: 2388
components:
- pos: 12.5,2.5
parent: 2
type: Transform
- - uid: 2387
+ - uid: 2389
components:
- pos: 8.5,2.5
parent: 2
type: Transform
- - uid: 2388
+ - uid: 2390
components:
- pos: 4.5,0.5
parent: 2
type: Transform
- - uid: 2389
+ - uid: 2391
components:
- pos: -12.5,-22.5
parent: 2
type: Transform
- - uid: 2390
+ - uid: 2392
components:
- pos: -13.5,-22.5
parent: 2
type: Transform
- - uid: 2391
+ - uid: 2393
components:
- pos: 30.5,-32.5
parent: 2
type: Transform
- - uid: 2392
+ - uid: 2394
components:
- pos: 22.5,-29.5
parent: 2
type: Transform
- - uid: 2393
+ - uid: 2395
components:
- pos: 20.5,-23.5
parent: 2
type: Transform
- - uid: 2394
+ - uid: 2396
components:
- pos: 29.5,-28.5
parent: 2
type: Transform
- - uid: 2395
+ - uid: 2397
components:
- pos: 25.5,-23.5
parent: 2
type: Transform
- - uid: 2396
+ - uid: 2398
components:
- pos: 9.5,-6.5
parent: 2
type: Transform
- - uid: 2397
+ - uid: 2399
components:
- pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 2398
+ - uid: 2400
components:
- pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 2399
+ - uid: 2401
components:
- pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 2400
+ - uid: 2402
components:
- pos: 7.5,-8.5
parent: 2
type: Transform
- - uid: 2401
+ - uid: 2403
components:
- pos: 7.5,-7.5
parent: 2
type: Transform
- - uid: 2402
+ - uid: 2404
components:
- pos: 4.5,-41.5
parent: 2
type: Transform
- - uid: 2403
+ - uid: 2405
components:
- pos: -6.5,-74.5
parent: 2
type: Transform
- - uid: 2404
+ - uid: 2406
components:
- pos: -8.5,-75.5
parent: 2
type: Transform
- - uid: 2405
+ - uid: 2407
components:
- pos: -10.5,-75.5
parent: 2
type: Transform
- - uid: 2406
+ - uid: 2408
components:
- pos: 10.5,-50.5
parent: 2
type: Transform
- - uid: 2407
+ - uid: 2409
components:
- pos: 20.5,-46.5
parent: 2
type: Transform
- - uid: 2408
+ - uid: 2410
components:
- pos: 18.5,-48.5
parent: 2
type: Transform
- - uid: 2409
+ - uid: 2411
components:
- pos: 21.5,-46.5
parent: 2
type: Transform
- - uid: 2410
+ - uid: 2412
components:
- pos: 21.5,-50.5
parent: 2
type: Transform
- - uid: 2411
+ - uid: 2413
components:
- pos: 21.5,-53.5
parent: 2
type: Transform
- - uid: 2412
+ - uid: 2414
components:
- pos: 23.5,-53.5
parent: 2
type: Transform
- - uid: 2413
+ - uid: 2415
components:
- pos: 25.5,-52.5
parent: 2
type: Transform
- - uid: 2414
+ - uid: 2416
components:
- pos: -4.5,-16.5
parent: 2
type: Transform
- - uid: 2415
+ - uid: 2417
components:
- pos: 6.5,8.5
parent: 2
type: Transform
- - uid: 2416
+ - uid: 2418
components:
- pos: 46.5,-22.5
parent: 2
type: Transform
- - uid: 2417
+ - uid: 2419
components:
- pos: 0.5,14.5
parent: 2
type: Transform
- - uid: 2418
+ - uid: 2420
components:
- pos: 9.5,-26.5
parent: 2
type: Transform
- - uid: 2419
+ - uid: 2421
components:
- pos: 18.5,-29.5
parent: 2
type: Transform
- - uid: 2420
+ - uid: 2422
components:
- pos: -8.5,-6.5
parent: 2
type: Transform
- - uid: 2421
+ - uid: 2423
components:
- pos: -4.5,14.5
parent: 2
type: Transform
- - uid: 2422
+ - uid: 2424
components:
- pos: -5.5,14.5
parent: 2
type: Transform
- - uid: 2423
+ - uid: 2425
components:
- pos: 3.5,-46.5
parent: 2
type: Transform
- - uid: 2424
+ - uid: 2426
components:
- pos: -33.5,-70.5
parent: 2
type: Transform
- - uid: 2425
+ - uid: 2427
components:
- pos: -34.5,-70.5
parent: 2
type: Transform
- - uid: 2426
+ - uid: 2428
components:
- pos: -12.5,-26.5
parent: 2
type: Transform
- - uid: 2427
+ - uid: 2429
components:
- pos: 31.5,-32.5
parent: 2
type: Transform
- - uid: 2428
+ - uid: 2430
components:
- pos: 24.5,4.5
parent: 2
type: Transform
- - uid: 2429
+ - uid: 2431
components:
- pos: -3.5,-74.5
parent: 2
type: Transform
- - uid: 2430
+ - uid: 2432
components:
- pos: 8.5,-42.5
parent: 2
type: Transform
- - uid: 2431
+ - uid: 2433
components:
- pos: 8.5,-65.5
parent: 2
type: Transform
- - uid: 2432
+ - uid: 2434
components:
- pos: -8.5,-66.5
parent: 2
type: Transform
- - uid: 2433
+ - uid: 2435
components:
- pos: -9.5,-4.5
parent: 2
type: Transform
- - uid: 2434
+ - uid: 2436
components:
- pos: -7.5,-71.5
parent: 2
type: Transform
- - uid: 2435
+ - uid: 2437
components:
- pos: -12.5,-75.5
parent: 2
type: Transform
- - uid: 2436
+ - uid: 2438
components:
- pos: -8.5,-71.5
parent: 2
type: Transform
- - uid: 2437
+ - uid: 2439
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- - uid: 2438
+ - uid: 2440
components:
- pos: -14.5,-61.5
parent: 2
type: Transform
- - uid: 2439
+ - uid: 2441
components:
- pos: -14.5,-55.5
parent: 2
type: Transform
- - uid: 2440
+ - uid: 2442
components:
- pos: 12.5,-17.5
parent: 2
type: Transform
- - uid: 2441
+ - uid: 2443
components:
- pos: 46.5,-27.5
parent: 2
type: Transform
- - uid: 2442
+ - uid: 2444
components:
- pos: 50.5,8.5
parent: 2
type: Transform
- - uid: 2443
+ - uid: 2445
components:
- pos: 50.5,7.5
parent: 2
type: Transform
- - uid: 2444
+ - uid: 2446
components:
- pos: -16.5,-16.5
parent: 2
type: Transform
- - uid: 2445
+ - uid: 2447
components:
- pos: -4.5,-40.5
parent: 2
type: Transform
- - uid: 2446
+ - uid: 2448
components:
- pos: 30.5,-72.5
parent: 2
type: Transform
- - uid: 2447
+ - uid: 2449
components:
- pos: -9.5,-61.5
parent: 2
type: Transform
- - uid: 2448
+ - uid: 2450
components:
- pos: -13.5,-64.5
parent: 2
type: Transform
- - uid: 2449
+ - uid: 2451
components:
- pos: -16.5,-54.5
parent: 2
type: Transform
- - uid: 2450
+ - uid: 2452
components:
- pos: -17.5,-54.5
parent: 2
type: Transform
- - uid: 2451
+ - uid: 2453
components:
- pos: -17.5,-55.5
parent: 2
type: Transform
- - uid: 2452
+ - uid: 2454
components:
- pos: -18.5,-55.5
parent: 2
type: Transform
- - uid: 2453
+ - uid: 2455
components:
- pos: -6.5,-64.5
parent: 2
type: Transform
- - uid: 2454
+ - uid: 2456
components:
- pos: -6.5,-65.5
parent: 2
type: Transform
- - uid: 2455
+ - uid: 2457
components:
- pos: -1.5,-54.5
parent: 2
type: Transform
- - uid: 2456
+ - uid: 2458
components:
- pos: -4.5,-48.5
parent: 2
type: Transform
- - uid: 2457
+ - uid: 2459
components:
- pos: 25.5,-14.5
parent: 2
type: Transform
- - uid: 2458
+ - uid: 2460
components:
- pos: 25.5,-7.5
parent: 2
type: Transform
- - uid: 2459
+ - uid: 2461
components:
- pos: 24.5,-6.5
parent: 2
type: Transform
- - uid: 2460
+ - uid: 2462
components:
- pos: 18.5,-12.5
parent: 2
type: Transform
- - uid: 2461
+ - uid: 2463
components:
- pos: 35.5,-40.5
parent: 2
type: Transform
- - uid: 2462
+ - uid: 2464
components:
- pos: 17.5,-53.5
parent: 2
type: Transform
- - uid: 2463
+ - uid: 2465
components:
- pos: 9.5,-17.5
parent: 2
type: Transform
- - uid: 2464
+ - uid: 2466
components:
- pos: 15.5,-28.5
parent: 2
type: Transform
- - uid: 2465
+ - uid: 2467
components:
- pos: 14.5,-28.5
parent: 2
type: Transform
- - uid: 2466
+ - uid: 2468
components:
- pos: 14.5,-27.5
parent: 2
type: Transform
- - uid: 2467
+ - uid: 2469
components:
- pos: 13.5,-26.5
parent: 2
type: Transform
- - uid: 2468
+ - uid: 2470
components:
- pos: -5.5,-73.5
parent: 2
type: Transform
- - uid: 2469
+ - uid: 2471
components:
- pos: 8.5,-26.5
parent: 2
type: Transform
- - uid: 2470
+ - uid: 2472
components:
- pos: -2.5,-74.5
parent: 2
type: Transform
- - uid: 2471
+ - uid: 2473
components:
- pos: 11.5,-26.5
parent: 2
type: Transform
- - uid: 2472
+ - uid: 2474
components:
- pos: 3.5,-26.5
parent: 2
type: Transform
- - uid: 2473
+ - uid: 2475
components:
- pos: -7.5,1.5
parent: 2
type: Transform
- - uid: 2474
+ - uid: 2476
components:
- pos: -8.5,1.5
parent: 2
type: Transform
- - uid: 2475
+ - uid: 2477
components:
- pos: -1.5,-75.5
parent: 2
type: Transform
- - uid: 2476
+ - uid: 2478
components:
- pos: -3.5,8.5
parent: 2
type: Transform
- - uid: 2477
+ - uid: 2479
components:
- pos: -3.5,10.5
parent: 2
type: Transform
- - uid: 2478
+ - uid: 2480
components:
- pos: 28.5,2.5
parent: 2
type: Transform
- - uid: 2479
+ - uid: 2481
components:
- pos: 32.5,1.5
parent: 2
type: Transform
- - uid: 2480
+ - uid: 2482
components:
- pos: 32.5,2.5
parent: 2
type: Transform
- - uid: 2481
+ - uid: 2483
components:
- pos: 1.5,-9.5
parent: 2
type: Transform
- - uid: 2482
+ - uid: 2484
components:
- pos: 2.5,8.5
parent: 2
type: Transform
- - uid: 2483
+ - uid: 2485
components:
- pos: 61.5,-11.5
parent: 2
type: Transform
- - uid: 2484
+ - uid: 2486
components:
- pos: 21.5,-10.5
parent: 2
type: Transform
- - uid: 2485
+ - uid: 2487
components:
- pos: 20.5,-13.5
parent: 2
type: Transform
- - uid: 2486
+ - uid: 2488
components:
- pos: -0.5,0.5
parent: 2
type: Transform
- - uid: 2487
+ - uid: 2489
components:
- pos: 20.5,-5.5
parent: 2
type: Transform
- - uid: 2488
+ - uid: 2490
components:
- pos: 22.5,-6.5
parent: 2
type: Transform
- - uid: 2489
+ - uid: 2491
components:
- pos: 23.5,-6.5
parent: 2
type: Transform
- - uid: 2490
+ - uid: 2492
components:
- pos: 25.5,-6.5
parent: 2
type: Transform
- - uid: 2491
+ - uid: 2493
components:
- pos: 25.5,-13.5
parent: 2
type: Transform
- - uid: 2492
+ - uid: 2494
components:
- pos: 25.5,-12.5
parent: 2
type: Transform
- - uid: 2493
+ - uid: 2495
components:
- pos: 25.5,-8.5
parent: 2
type: Transform
- - uid: 2494
+ - uid: 2496
components:
- pos: 24.5,-11.5
parent: 2
type: Transform
- - uid: 2495
+ - uid: 2497
components:
- pos: 5.5,-60.5
parent: 2
type: Transform
- - uid: 2496
+ - uid: 2498
components:
- pos: 5.5,-54.5
parent: 2
type: Transform
- - uid: 2497
+ - uid: 2499
components:
- pos: 2.5,-54.5
parent: 2
type: Transform
- - uid: 2498
+ - uid: 2500
components:
- pos: -14.5,-60.5
parent: 2
type: Transform
- - uid: 2499
+ - uid: 2501
components:
- pos: -8.5,-65.5
parent: 2
type: Transform
- - uid: 2500
+ - uid: 2502
components:
- pos: -7.5,-65.5
parent: 2
type: Transform
- - uid: 2501
+ - uid: 2503
components:
- pos: -6.5,-60.5
parent: 2
type: Transform
- - uid: 2502
+ - uid: 2504
components:
- pos: -3.5,-60.5
parent: 2
type: Transform
- - uid: 2503
+ - uid: 2505
components:
- pos: -2.5,-60.5
parent: 2
type: Transform
- - uid: 2504
+ - uid: 2506
components:
- pos: -0.5,-60.5
parent: 2
type: Transform
- - uid: 2505
+ - uid: 2507
components:
- pos: 3.5,-63.5
parent: 2
type: Transform
- - uid: 2506
+ - uid: 2508
components:
- pos: 3.5,-61.5
parent: 2
type: Transform
- - uid: 2507
+ - uid: 2509
components:
- pos: 10.5,-17.5
parent: 2
type: Transform
- - uid: 2508
+ - uid: 2510
components:
- pos: 10.5,-14.5
parent: 2
type: Transform
- - uid: 2509
+ - uid: 2511
components:
- pos: 11.5,-14.5
parent: 2
type: Transform
- - uid: 2510
+ - uid: 2512
components:
- pos: 13.5,-14.5
parent: 2
type: Transform
- - uid: 2511
+ - uid: 2513
components:
- pos: 14.5,-14.5
parent: 2
type: Transform
- - uid: 2512
+ - uid: 2514
components:
- pos: 15.5,-14.5
parent: 2
type: Transform
- - uid: 2513
+ - uid: 2515
components:
- pos: 15.5,-13.5
parent: 2
type: Transform
- - uid: 2514
+ - uid: 2516
components:
- pos: 15.5,-11.5
parent: 2
type: Transform
- - uid: 2515
+ - uid: 2517
components:
- pos: 14.5,-2.5
parent: 2
type: Transform
- - uid: 2516
+ - uid: 2518
components:
- pos: -19.5,-56.5
parent: 2
type: Transform
- - uid: 2517
+ - uid: 2519
components:
- pos: -19.5,-55.5
parent: 2
type: Transform
- - uid: 2518
+ - uid: 2520
components:
- pos: 14.5,-3.5
parent: 2
type: Transform
- - uid: 2519
+ - uid: 2521
components:
- pos: 14.5,-6.5
parent: 2
type: Transform
- - uid: 2520
+ - uid: 2522
components:
- pos: 20.5,-45.5
parent: 2
type: Transform
- - uid: 2521
+ - uid: 2523
components:
- pos: -41.5,25.5
parent: 2
type: Transform
- - uid: 2522
+ - uid: 2524
components:
- pos: 32.5,-8.5
parent: 2
type: Transform
- - uid: 2523
+ - uid: 2525
components:
- pos: 14.5,-5.5
parent: 2
type: Transform
- - uid: 2524
+ - uid: 2526
components:
- pos: 12.5,-14.5
parent: 2
type: Transform
- - uid: 2525
+ - uid: 2527
components:
- pos: -3.5,-69.5
parent: 2
type: Transform
- - uid: 2526
+ - uid: 2528
components:
- pos: -4.5,-69.5
parent: 2
type: Transform
- - uid: 2527
+ - uid: 2529
components:
- pos: -5.5,-70.5
parent: 2
type: Transform
- - uid: 2528
+ - uid: 2530
components:
- pos: -1.5,-77.5
parent: 2
type: Transform
- - uid: 2529
+ - uid: 2531
components:
- pos: -0.5,-69.5
parent: 2
type: Transform
- - uid: 2530
+ - uid: 2532
components:
- pos: 10.5,2.5
parent: 2
type: Transform
- - uid: 2531
+ - uid: 2533
components:
- pos: -5.5,-47.5
parent: 2
type: Transform
- - uid: 2532
+ - uid: 2534
components:
- pos: -14.5,-54.5
parent: 2
type: Transform
- - uid: 2533
+ - uid: 2535
components:
- pos: -13.5,-59.5
parent: 2
type: Transform
- - uid: 2534
+ - uid: 2536
components:
- pos: -10.5,-61.5
parent: 2
type: Transform
- - uid: 2535
+ - uid: 2537
components:
- pos: -4.5,-11.5
parent: 2
type: Transform
- - uid: 2536
+ - uid: 2538
components:
- pos: 62.5,-9.5
parent: 2
type: Transform
- - uid: 2537
+ - uid: 2539
components:
- pos: 62.5,-7.5
parent: 2
type: Transform
- - uid: 2538
+ - uid: 2540
components:
- pos: 8.5,-8.5
parent: 2
type: Transform
- - uid: 2539
+ - uid: 2541
components:
- pos: 8.5,-10.5
parent: 2
type: Transform
- - uid: 2540
+ - uid: 2542
components:
- pos: 1.5,9.5
parent: 2
type: Transform
- - uid: 2541
+ - uid: 2543
components:
- pos: 2.5,-71.5
parent: 2
type: Transform
- - uid: 2542
+ - uid: 2544
components:
- pos: 22.5,-32.5
parent: 2
type: Transform
- - uid: 2543
+ - uid: 2545
components:
- pos: -15.5,-21.5
parent: 2
type: Transform
- - uid: 2544
+ - uid: 2546
components:
- pos: -2.5,-69.5
parent: 2
type: Transform
- - uid: 2545
+ - uid: 2547
components:
- pos: -9.5,10.5
parent: 2
type: Transform
- - uid: 2546
+ - uid: 2548
components:
- pos: 18.5,-13.5
parent: 2
type: Transform
- - uid: 2547
+ - uid: 2549
components:
- pos: 21.5,-11.5
parent: 2
type: Transform
- - uid: 2548
+ - uid: 2550
components:
- pos: -4.5,-28.5
parent: 2
type: Transform
- - uid: 2549
+ - uid: 2551
components:
- pos: 27.5,2.5
parent: 2
type: Transform
- - uid: 2550
+ - uid: 2552
components:
- pos: 6.5,15.5
parent: 2
type: Transform
- - uid: 2551
+ - uid: 2553
components:
- pos: 5.5,15.5
parent: 2
type: Transform
- - uid: 2552
+ - uid: 2554
components:
- pos: 0.5,12.5
parent: 2
type: Transform
- - uid: 2553
+ - uid: 2555
components:
- pos: 5.5,12.5
parent: 2
type: Transform
- - uid: 2554
+ - uid: 2556
components:
- pos: 5.5,13.5
parent: 2
type: Transform
- - uid: 2555
+ - uid: 2557
components:
- pos: 32.5,18.5
parent: 2
type: Transform
- - uid: 2556
+ - uid: 2558
components:
- pos: 1.5,0.5
parent: 2
type: Transform
- - uid: 2557
+ - uid: 2559
components:
- pos: 13.5,2.5
parent: 2
type: Transform
- - uid: 2558
+ - uid: 2560
components:
- pos: 13.5,0.5
parent: 2
type: Transform
- - uid: 2559
+ - uid: 2561
components:
- pos: 12.5,-0.5
parent: 2
type: Transform
- - uid: 2560
+ - uid: 2562
components:
- pos: -13.5,-54.5
parent: 2
type: Transform
- - uid: 2561
+ - uid: 2563
components:
- pos: -14.5,-59.5
parent: 2
type: Transform
- - uid: 2562
+ - uid: 2564
components:
- pos: -2.5,-54.5
parent: 2
type: Transform
- - uid: 2563
+ - uid: 2565
components:
- pos: 27.5,1.5
parent: 2
type: Transform
- - uid: 2564
+ - uid: 2566
components:
- pos: -2.5,-41.5
parent: 2
type: Transform
- - uid: 2565
+ - uid: 2567
components:
- pos: -3.5,-0.5
parent: 2
type: Transform
- - uid: 2566
+ - uid: 2568
components:
- pos: 29.5,-47.5
parent: 2
type: Transform
- - uid: 2567
+ - uid: 2569
components:
- pos: 15.5,-40.5
parent: 2
type: Transform
- - uid: 2568
+ - uid: 2570
components:
- pos: 11.5,-42.5
parent: 2
type: Transform
- - uid: 2569
+ - uid: 2571
components:
- pos: 9.5,-41.5
parent: 2
type: Transform
- - uid: 2570
+ - uid: 2572
components:
- pos: 13.5,-42.5
parent: 2
type: Transform
- - uid: 2571
+ - uid: 2573
components:
- pos: 17.5,-54.5
parent: 2
type: Transform
- - uid: 2572
+ - uid: 2574
components:
- pos: 34.5,-41.5
parent: 2
type: Transform
- - uid: 2573
+ - uid: 2575
components:
- pos: 36.5,-40.5
parent: 2
type: Transform
- - uid: 2574
+ - uid: 2576
components:
- pos: 34.5,-40.5
parent: 2
type: Transform
- - uid: 2575
+ - uid: 2577
components:
- pos: 12.5,-6.5
parent: 2
type: Transform
- - uid: 2576
+ - uid: 2578
components:
- pos: 11.5,-6.5
parent: 2
type: Transform
- - uid: 2577
+ - uid: 2579
components:
- pos: 4.5,5.5
parent: 2
type: Transform
- - uid: 2578
+ - uid: 2580
components:
- pos: 7.5,-17.5
parent: 2
type: Transform
- - uid: 2579
+ - uid: 2581
components:
- pos: 1.5,7.5
parent: 2
type: Transform
- - uid: 2580
+ - uid: 2582
components:
- pos: 1.5,8.5
parent: 2
type: Transform
- - uid: 2581
+ - uid: 2583
components:
- pos: 3.5,8.5
parent: 2
type: Transform
- - uid: 2582
+ - uid: 2584
components:
- pos: -3.5,7.5
parent: 2
type: Transform
- - uid: 2583
+ - uid: 2585
components:
- pos: -1.5,7.5
parent: 2
type: Transform
- - uid: 2584
+ - uid: 2586
components:
- pos: -2.5,7.5
parent: 2
type: Transform
- - uid: 2585
+ - uid: 2587
components:
- pos: -0.5,6.5
parent: 2
type: Transform
- - uid: 2586
+ - uid: 2588
components:
- pos: -0.5,7.5
parent: 2
type: Transform
- - uid: 2587
+ - uid: 2589
components:
- pos: 0.5,6.5
parent: 2
type: Transform
- - uid: 2588
+ - uid: 2590
components:
- pos: 0.5,11.5
parent: 2
type: Transform
- - uid: 2589
+ - uid: 2591
components:
- pos: 0.5,13.5
parent: 2
type: Transform
- - uid: 2590
+ - uid: 2592
components:
- pos: 0.5,9.5
parent: 2
type: Transform
- - uid: 2591
+ - uid: 2593
components:
- pos: -8.5,7.5
parent: 2
type: Transform
- - uid: 2592
+ - uid: 2594
components:
- pos: -7.5,7.5
parent: 2
type: Transform
- - uid: 2593
+ - uid: 2595
components:
- pos: -6.5,7.5
parent: 2
type: Transform
- - uid: 2594
+ - uid: 2596
components:
- pos: -5.5,7.5
parent: 2
type: Transform
- - uid: 2595
+ - uid: 2597
components:
- pos: 10.5,-11.5
parent: 2
type: Transform
- - uid: 2596
+ - uid: 2598
components:
- pos: 7.5,-6.5
parent: 2
type: Transform
- - uid: 2597
+ - uid: 2599
components:
- pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 2598
+ - uid: 2600
components:
- pos: 4.5,-13.5
parent: 2
type: Transform
- - uid: 2599
+ - uid: 2601
components:
- pos: 10.5,-10.5
parent: 2
type: Transform
- - uid: 2600
+ - uid: 2602
components:
- pos: 42.5,-26.5
parent: 2
type: Transform
- - uid: 2601
+ - uid: 2603
components:
- pos: -8.5,-50.5
parent: 2
type: Transform
- - uid: 2602
+ - uid: 2604
components:
- pos: 5.5,8.5
parent: 2
type: Transform
- - uid: 2603
+ - uid: 2605
components:
- pos: -8.5,-51.5
parent: 2
type: Transform
- - uid: 2604
+ - uid: 2606
components:
- pos: -8.5,-52.5
parent: 2
type: Transform
- - uid: 2605
+ - uid: 2607
components:
- pos: -7.5,-52.5
parent: 2
type: Transform
- - uid: 2606
+ - uid: 2608
components:
- pos: -7.5,-53.5
parent: 2
type: Transform
- - uid: 2607
+ - uid: 2609
components:
- pos: 6.5,7.5
parent: 2
type: Transform
- - uid: 2608
+ - uid: 2610
components:
- pos: 31.5,-14.5
parent: 2
type: Transform
- - uid: 2609
+ - uid: 2611
components:
- pos: 32.5,-9.5
parent: 2
type: Transform
- - uid: 2610
+ - uid: 2612
components:
- pos: -4.5,-20.5
parent: 2
type: Transform
- - uid: 2611
+ - uid: 2613
components:
- pos: 5.5,11.5
parent: 2
type: Transform
- - uid: 2612
+ - uid: 2614
components:
- pos: 5.5,7.5
parent: 2
type: Transform
- - uid: 2613
+ - uid: 2615
components:
- pos: 32.5,-41.5
parent: 2
type: Transform
- - uid: 2614
+ - uid: 2616
components:
- pos: 33.5,-40.5
parent: 2
type: Transform
- - uid: 2615
+ - uid: 2617
components:
- pos: 34.5,-42.5
parent: 2
type: Transform
- - uid: 2616
+ - uid: 2618
components:
- pos: 23.5,-42.5
parent: 2
type: Transform
- - uid: 2617
+ - uid: 2619
components:
- pos: 21.5,-42.5
parent: 2
type: Transform
- - uid: 2618
+ - uid: 2620
components:
- pos: 8.5,-9.5
parent: 2
type: Transform
- - uid: 2619
+ - uid: 2621
components:
- pos: -20.5,-87.5
parent: 2
type: Transform
- - uid: 2620
+ - uid: 2622
components:
- pos: -2.5,14.5
parent: 2
type: Transform
- - uid: 2621
+ - uid: 2623
components:
- pos: -3.5,14.5
parent: 2
type: Transform
- - uid: 2622
+ - uid: 2624
components:
- pos: 32.5,17.5
parent: 2
type: Transform
- - uid: 2623
+ - uid: 2625
components:
- pos: 27.5,0.5
parent: 2
type: Transform
- - uid: 2624
+ - uid: 2626
components:
- pos: 26.5,-32.5
parent: 2
type: Transform
- - uid: 2625
+ - uid: 2627
components:
- pos: 25.5,-42.5
parent: 2
type: Transform
- - uid: 2626
+ - uid: 2628
components:
- pos: 27.5,-42.5
parent: 2
type: Transform
- - uid: 2627
+ - uid: 2629
components:
- pos: 35.5,-38.5
parent: 2
type: Transform
- - uid: 2628
+ - uid: 2630
components:
- pos: 35.5,-39.5
parent: 2
type: Transform
- - uid: 2629
+ - uid: 2631
components:
- pos: 23.5,-32.5
parent: 2
type: Transform
- - uid: 2630
+ - uid: 2632
components:
- pos: 20.5,-32.5
parent: 2
type: Transform
- - uid: 2631
+ - uid: 2633
components:
- pos: -7.5,-7.5
parent: 2
type: Transform
- - uid: 2632
+ - uid: 2634
components:
- pos: 16.5,-32.5
parent: 2
type: Transform
- - uid: 2633
+ - uid: 2635
components:
- pos: 1.5,10.5
parent: 2
type: Transform
- - uid: 2634
+ - uid: 2636
components:
- pos: -15.5,25.5
parent: 2
type: Transform
- - uid: 2635
+ - uid: 2637
components:
- pos: 7.5,-49.5
parent: 2
type: Transform
- - uid: 2636
+ - uid: 2638
components:
- pos: 55.5,-32.5
parent: 2
type: Transform
- - uid: 2637
+ - uid: 2639
components:
- pos: 32.5,-4.5
parent: 2
type: Transform
- - uid: 2638
+ - uid: 2640
components:
- pos: 26.5,-25.5
parent: 2
type: Transform
- - uid: 2639
+ - uid: 2641
components:
- pos: 25.5,-25.5
parent: 2
type: Transform
- - uid: 2640
+ - uid: 2642
components:
- pos: 24.5,-22.5
parent: 2
type: Transform
- - uid: 2641
+ - uid: 2643
components:
- pos: 23.5,-22.5
parent: 2
type: Transform
- - uid: 2642
+ - uid: 2644
components:
- pos: 21.5,-24.5
parent: 2
type: Transform
- - uid: 2643
+ - uid: 2645
components:
- pos: 21.5,-23.5
parent: 2
type: Transform
- - uid: 2644
+ - uid: 2646
components:
- pos: 21.5,-22.5
parent: 2
type: Transform
- - uid: 2645
+ - uid: 2647
components:
- pos: 26.5,-23.5
parent: 2
type: Transform
- - uid: 2646
+ - uid: 2648
components:
- pos: 27.5,-23.5
parent: 2
type: Transform
- - uid: 2647
+ - uid: 2649
components:
- pos: 28.5,-29.5
parent: 2
type: Transform
- - uid: 2648
+ - uid: 2650
components:
- pos: 27.5,-29.5
parent: 2
type: Transform
- - uid: 2649
+ - uid: 2651
components:
- pos: 27.5,-30.5
parent: 2
type: Transform
- - uid: 2650
+ - uid: 2652
components:
- pos: 27.5,-33.5
parent: 2
type: Transform
- - uid: 2651
+ - uid: 2653
components:
- pos: 26.5,-30.5
parent: 2
type: Transform
- - uid: 2652
+ - uid: 2654
components:
- pos: 25.5,-30.5
parent: 2
type: Transform
- - uid: 2653
+ - uid: 2655
components:
- pos: 24.5,-30.5
parent: 2
type: Transform
- - uid: 2654
+ - uid: 2656
components:
- pos: 23.5,-30.5
parent: 2
type: Transform
- - uid: 2655
+ - uid: 2657
components:
- pos: 22.5,-30.5
parent: 2
type: Transform
- - uid: 2656
+ - uid: 2658
components:
- pos: 22.5,-28.5
parent: 2
type: Transform
- - uid: 2657
+ - uid: 2659
components:
- pos: 6.5,-3.5
parent: 2
type: Transform
- - uid: 2658
+ - uid: 2660
components:
- pos: 5.5,-3.5
parent: 2
type: Transform
- - uid: 2659
+ - uid: 2661
components:
- pos: 8.5,-4.5
parent: 2
type: Transform
- - uid: 2660
+ - uid: 2662
components:
- pos: 12.5,-5.5
parent: 2
type: Transform
- - uid: 2661
+ - uid: 2663
components:
- pos: 12.5,-9.5
parent: 2
type: Transform
- - uid: 2662
+ - uid: 2664
components:
- pos: -10.5,-22.5
parent: 2
type: Transform
- - uid: 2663
+ - uid: 2665
components:
- pos: -15.5,-22.5
parent: 2
type: Transform
- - uid: 2664
+ - uid: 2666
components:
- pos: -24.5,-16.5
parent: 2
type: Transform
- - uid: 2665
+ - uid: 2667
components:
- pos: -24.5,-15.5
parent: 2
type: Transform
- - uid: 2666
+ - uid: 2668
components:
- pos: 23.5,-11.5
parent: 2
type: Transform
- - uid: 2667
+ - uid: 2669
components:
- pos: 25.5,-11.5
parent: 2
type: Transform
- - uid: 2668
+ - uid: 2670
components:
- pos: 25.5,-10.5
parent: 2
type: Transform
- - uid: 2669
+ - uid: 2671
components:
- pos: 25.5,-9.5
parent: 2
type: Transform
- - uid: 2670
+ - uid: 2672
components:
- pos: 21.5,-6.5
parent: 2
type: Transform
- - uid: 2671
+ - uid: 2673
components:
- pos: 20.5,-6.5
parent: 2
type: Transform
- - uid: 2672
+ - uid: 2674
components:
- pos: 26.5,-6.5
parent: 2
type: Transform
- - uid: 2673
+ - uid: 2675
components:
- pos: 27.5,-6.5
parent: 2
type: Transform
- - uid: 2674
+ - uid: 2676
components:
- pos: 28.5,-6.5
parent: 2
type: Transform
- - uid: 2675
+ - uid: 2677
components:
- pos: 29.5,-6.5
parent: 2
type: Transform
- - uid: 2676
+ - uid: 2678
components:
- pos: 30.5,-6.5
parent: 2
type: Transform
- - uid: 2677
+ - uid: 2679
components:
- pos: 30.5,-5.5
parent: 2
type: Transform
- - uid: 2678
+ - uid: 2680
components:
- pos: 29.5,-32.5
parent: 2
type: Transform
- - uid: 2679
+ - uid: 2681
components:
- pos: 8.5,-3.5
parent: 2
type: Transform
- - uid: 2680
+ - uid: 2682
components:
- pos: 8.5,-2.5
parent: 2
type: Transform
- - uid: 2681
+ - uid: 2683
components:
- pos: 8.5,-1.5
parent: 2
type: Transform
- - uid: 2682
+ - uid: 2684
components:
- pos: 7.5,-1.5
parent: 2
type: Transform
- - uid: 2683
+ - uid: 2685
components:
- pos: 6.5,-1.5
parent: 2
type: Transform
- - uid: 2684
+ - uid: 2686
components:
- pos: 5.5,-1.5
parent: 2
type: Transform
- - uid: 2685
+ - uid: 2687
components:
- pos: 4.5,-1.5
parent: 2
type: Transform
- - uid: 2686
+ - uid: 2688
components:
- pos: 4.5,-0.5
parent: 2
type: Transform
- - uid: 2687
+ - uid: 2689
components:
- pos: 2.5,0.5
parent: 2
type: Transform
- - uid: 2688
+ - uid: 2690
components:
- pos: 0.5,0.5
parent: 2
type: Transform
- - uid: 2689
+ - uid: 2691
components:
- pos: -0.5,1.5
parent: 2
type: Transform
- - uid: 2690
+ - uid: 2692
components:
- pos: -0.5,2.5
parent: 2
type: Transform
- - uid: 2691
+ - uid: 2693
components:
- pos: 0.5,2.5
parent: 2
type: Transform
- - uid: 2692
+ - uid: 2694
components:
- pos: 1.5,2.5
parent: 2
type: Transform
- - uid: 2693
+ - uid: 2695
components:
- pos: 3.5,2.5
parent: 2
type: Transform
- - uid: 2694
+ - uid: 2696
components:
- pos: 4.5,2.5
parent: 2
type: Transform
- - uid: 2695
+ - uid: 2697
components:
- pos: 5.5,2.5
parent: 2
type: Transform
- - uid: 2696
+ - uid: 2698
components:
- pos: 6.5,2.5
parent: 2
type: Transform
- - uid: 2697
+ - uid: 2699
components:
- pos: 7.5,2.5
parent: 2
type: Transform
- - uid: 2698
+ - uid: 2700
components:
- pos: 11.5,-0.5
parent: 2
type: Transform
- - uid: 2699
+ - uid: 2701
components:
- pos: -2.5,-51.5
parent: 2
type: Transform
- - uid: 2700
+ - uid: 2702
components:
- pos: -1.5,-49.5
parent: 2
type: Transform
- - uid: 2701
+ - uid: 2703
components:
- pos: -0.5,-48.5
parent: 2
type: Transform
- - uid: 2702
+ - uid: 2704
components:
- pos: 2.5,-48.5
parent: 2
type: Transform
- - uid: 2703
+ - uid: 2705
components:
- pos: 4.5,-48.5
parent: 2
type: Transform
- - uid: 2704
+ - uid: 2706
components:
- pos: -1.5,-47.5
parent: 2
type: Transform
- - uid: 2705
+ - uid: 2707
components:
- pos: -6.5,-47.5
parent: 2
type: Transform
- - uid: 2706
+ - uid: 2708
components:
- pos: -3.5,-54.5
parent: 2
type: Transform
- - uid: 2707
+ - uid: 2709
components:
- pos: -5.5,-54.5
parent: 2
type: Transform
- - uid: 2708
+ - uid: 2710
components:
- pos: -6.5,-54.5
parent: 2
type: Transform
- - uid: 2709
+ - uid: 2711
components:
- pos: -8.5,-54.5
parent: 2
type: Transform
- - uid: 2710
+ - uid: 2712
components:
- pos: -10.5,-54.5
parent: 2
type: Transform
- - uid: 2711
+ - uid: 2713
components:
- pos: -11.5,-54.5
parent: 2
type: Transform
- - uid: 2712
+ - uid: 2714
components:
- pos: 3.5,-54.5
parent: 2
type: Transform
- - uid: 2713
+ - uid: 2715
components:
- pos: 5.5,-55.5
parent: 2
type: Transform
- - uid: 2714
+ - uid: 2716
components:
- pos: 5.5,-57.5
parent: 2
type: Transform
- - uid: 2715
+ - uid: 2717
components:
- pos: 5.5,-58.5
parent: 2
type: Transform
- - uid: 2716
+ - uid: 2718
components:
- pos: 5.5,-59.5
parent: 2
type: Transform
- - uid: 2717
+ - uid: 2719
components:
- pos: 6.5,-60.5
parent: 2
type: Transform
- - uid: 2718
+ - uid: 2720
components:
- pos: 7.5,-60.5
parent: 2
type: Transform
- - uid: 2719
+ - uid: 2721
components:
- pos: 4.5,-60.5
parent: 2
type: Transform
- - uid: 2720
+ - uid: 2722
components:
- pos: 1.5,-60.5
parent: 2
type: Transform
- - uid: 2721
+ - uid: 2723
components:
- pos: 0.5,-60.5
parent: 2
type: Transform
- - uid: 2722
+ - uid: 2724
components:
- pos: -1.5,-61.5
parent: 2
type: Transform
- - uid: 2723
+ - uid: 2725
components:
- pos: -1.5,-62.5
parent: 2
type: Transform
- - uid: 2724
+ - uid: 2726
components:
- pos: -1.5,-64.5
parent: 2
type: Transform
- - uid: 2725
+ - uid: 2727
components:
- pos: -7.5,-61.5
parent: 2
type: Transform
- - uid: 2726
+ - uid: 2728
components:
- pos: -6.5,-61.5
parent: 2
type: Transform
- - uid: 2727
+ - uid: 2729
components:
- pos: -11.5,-75.5
parent: 2
type: Transform
- - uid: 2728
+ - uid: 2730
components:
- pos: -11.5,-61.5
parent: 2
type: Transform
- - uid: 2729
+ - uid: 2731
components:
- pos: -12.5,-61.5
parent: 2
type: Transform
- - uid: 2730
+ - uid: 2732
components:
- pos: -13.5,-61.5
parent: 2
type: Transform
- - uid: 2731
+ - uid: 2733
components:
- pos: -13.5,-63.5
parent: 2
type: Transform
- - uid: 2732
+ - uid: 2734
components:
- pos: -13.5,-65.5
parent: 2
type: Transform
- - uid: 2733
+ - uid: 2735
components:
- pos: -13.5,-66.5
parent: 2
type: Transform
- - uid: 2734
+ - uid: 2736
components:
- pos: -15.5,-64.5
parent: 2
type: Transform
- - uid: 2735
+ - uid: 2737
components:
- pos: -21.5,-68.5
parent: 2
type: Transform
- - uid: 2736
+ - uid: 2738
components:
- pos: -21.5,-69.5
parent: 2
type: Transform
- - uid: 2737
+ - uid: 2739
components:
- pos: -21.5,-70.5
parent: 2
type: Transform
- - uid: 2738
+ - uid: 2740
components:
- pos: -20.5,-70.5
parent: 2
type: Transform
- - uid: 2739
+ - uid: 2741
components:
- pos: -19.5,-70.5
parent: 2
type: Transform
- - uid: 2740
+ - uid: 2742
components:
- pos: -19.5,-69.5
parent: 2
type: Transform
- - uid: 2741
+ - uid: 2743
components:
- pos: -19.5,-68.5
parent: 2
type: Transform
- - uid: 2742
+ - uid: 2744
components:
- pos: -19.5,-72.5
parent: 2
type: Transform
- - uid: 2743
+ - uid: 2745
components:
- pos: -19.5,-73.5
parent: 2
type: Transform
- - uid: 2744
+ - uid: 2746
components:
- pos: -18.5,-74.5
parent: 2
type: Transform
- - uid: 2745
+ - uid: 2747
components:
- pos: -18.5,-76.5
parent: 2
type: Transform
- - uid: 2746
+ - uid: 2748
components:
- pos: -18.5,-77.5
parent: 2
type: Transform
- - uid: 2747
+ - uid: 2749
components:
- pos: -17.5,-77.5
parent: 2
type: Transform
- - uid: 2748
+ - uid: 2750
components:
- pos: -19.5,-77.5
parent: 2
type: Transform
- - uid: 2749
+ - uid: 2751
components:
- pos: -20.5,-85.5
parent: 2
type: Transform
- - uid: 2750
+ - uid: 2752
components:
- pos: -25.5,-87.5
parent: 2
type: Transform
- - uid: 2751
+ - uid: 2753
components:
- pos: -25.5,-88.5
parent: 2
type: Transform
- - uid: 2752
+ - uid: 2754
components:
- pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 2753
+ - uid: 2755
components:
- pos: -7.5,-75.5
parent: 2
type: Transform
- - uid: 2754
+ - uid: 2756
components:
- pos: 17.5,-32.5
parent: 2
type: Transform
- - uid: 2755
+ - uid: 2757
components:
- pos: -8.5,8.5
parent: 2
type: Transform
- - uid: 2756
+ - uid: 2758
components:
- pos: -8.5,10.5
parent: 2
type: Transform
- - uid: 2757
+ - uid: 2759
components:
- pos: -8.5,5.5
parent: 2
type: Transform
- - uid: 2758
+ - uid: 2760
components:
- pos: -3.5,9.5
parent: 2
type: Transform
- - uid: 2759
+ - uid: 2761
components:
- pos: 5.5,9.5
parent: 2
type: Transform
- - uid: 2760
+ - uid: 2762
components:
- pos: 9.5,-10.5
parent: 2
type: Transform
- - uid: 2761
+ - uid: 2763
components:
- pos: 32.5,16.5
parent: 2
type: Transform
- - uid: 2762
+ - uid: 2764
components:
- pos: 0.5,8.5
parent: 2
type: Transform
- - uid: 2763
+ - uid: 2765
components:
- pos: 0.5,-26.5
parent: 2
type: Transform
- - uid: 2764
+ - uid: 2766
components:
- pos: -0.5,-26.5
parent: 2
type: Transform
- - uid: 2765
+ - uid: 2767
components:
- pos: -8.5,2.5
parent: 2
type: Transform
- - uid: 2766
+ - uid: 2768
components:
- pos: 1.5,-26.5
parent: 2
type: Transform
- - uid: 2767
+ - uid: 2769
components:
- pos: 6.5,-26.5
parent: 2
type: Transform
- - uid: 2768
+ - uid: 2770
components:
- pos: 7.5,-26.5
parent: 2
type: Transform
- - uid: 2769
+ - uid: 2771
components:
- pos: 12.5,-26.5
parent: 2
type: Transform
- - uid: 2770
+ - uid: 2772
components:
- pos: 14.5,-26.5
parent: 2
type: Transform
- - uid: 2771
+ - uid: 2773
components:
- pos: 17.5,-48.5
parent: 2
type: Transform
- - uid: 2772
+ - uid: 2774
components:
- pos: 27.5,4.5
parent: 2
type: Transform
- - uid: 2773
+ - uid: 2775
components:
- pos: 27.5,-0.5
parent: 2
type: Transform
- - uid: 2774
+ - uid: 2776
components:
- pos: 25.5,4.5
parent: 2
type: Transform
- - uid: 2775
+ - uid: 2777
components:
- pos: 26.5,4.5
parent: 2
type: Transform
- - uid: 2776
+ - uid: 2778
components:
- pos: -4.5,-13.5
parent: 2
type: Transform
- - uid: 2777
+ - uid: 2779
components:
- pos: -20.5,-86.5
parent: 2
type: Transform
- - uid: 2778
+ - uid: 2780
components:
- pos: 20.5,-42.5
parent: 2
type: Transform
- - uid: 2779
+ - uid: 2781
components:
- pos: -18.5,-60.5
parent: 2
type: Transform
- - uid: 2780
+ - uid: 2782
components:
- pos: 8.5,-56.5
parent: 2
type: Transform
- - uid: 2781
+ - uid: 2783
components:
- pos: -4.5,-60.5
parent: 2
type: Transform
- - uid: 2782
+ - uid: 2784
components:
- pos: -1.5,-65.5
parent: 2
type: Transform
- - uid: 2783
+ - uid: 2785
components:
- pos: -1.5,-60.5
parent: 2
type: Transform
- - uid: 2784
+ - uid: 2786
components:
- pos: 3.5,-60.5
parent: 2
type: Transform
- - uid: 2785
+ - uid: 2787
components:
- pos: -3.5,-51.5
parent: 2
type: Transform
- - uid: 2786
+ - uid: 2788
components:
- pos: 3.5,-48.5
parent: 2
type: Transform
- - uid: 2787
+ - uid: 2789
components:
- pos: 5.5,-48.5
parent: 2
type: Transform
- - uid: 2788
+ - uid: 2790
components:
- pos: 6.5,-47.5
parent: 2
type: Transform
- - uid: 2789
+ - uid: 2791
components:
- pos: -4.5,-50.5
parent: 2
type: Transform
- - uid: 2790
+ - uid: 2792
components:
- pos: -4.5,-49.5
parent: 2
type: Transform
- - uid: 2791
+ - uid: 2793
components:
- pos: -6.5,-45.5
parent: 2
type: Transform
- - uid: 2792
+ - uid: 2794
components:
- pos: 22.5,-24.5
parent: 2
type: Transform
- - uid: 2793
+ - uid: 2795
components:
- pos: -6.5,-71.5
parent: 2
type: Transform
- - uid: 2794
+ - uid: 2796
components:
- pos: -9.5,-71.5
parent: 2
type: Transform
- - uid: 2795
+ - uid: 2797
components:
- pos: 10.5,-51.5
parent: 2
type: Transform
- - uid: 2796
+ - uid: 2798
components:
- pos: 16.5,-52.5
parent: 2
type: Transform
- - uid: 2797
+ - uid: 2799
components:
- pos: 14.5,-52.5
parent: 2
type: Transform
- - uid: 2798
+ - uid: 2800
components:
- pos: 25.5,-50.5
parent: 2
type: Transform
- - uid: 2799
+ - uid: 2801
components:
- pos: 25.5,-54.5
parent: 2
type: Transform
- - uid: 2800
+ - uid: 2802
components:
- pos: 25.5,-55.5
parent: 2
type: Transform
- - uid: 2801
+ - uid: 2803
components:
- pos: 25.5,-56.5
parent: 2
type: Transform
- - uid: 2802
+ - uid: 2804
components:
- pos: -4.5,-14.5
parent: 2
type: Transform
- - uid: 2803
+ - uid: 2805
components:
- pos: -4.5,-18.5
parent: 2
type: Transform
- - uid: 2804
+ - uid: 2806
components:
- pos: 59.5,-4.5
parent: 2
type: Transform
- - uid: 2805
+ - uid: 2807
components:
- pos: 46.5,-25.5
parent: 2
type: Transform
- - uid: 2806
+ - uid: 2808
components:
- pos: 46.5,-24.5
parent: 2
type: Transform
- - uid: 2807
+ - uid: 2809
components:
- pos: 46.5,-29.5
parent: 2
type: Transform
- - uid: 2808
+ - uid: 2810
components:
- pos: 46.5,-28.5
parent: 2
type: Transform
- - uid: 2809
+ - uid: 2811
components:
- pos: 45.5,-27.5
parent: 2
type: Transform
- - uid: 2810
+ - uid: 2812
components:
- pos: 43.5,-27.5
parent: 2
type: Transform
- - uid: 2811
+ - uid: 2813
components:
- pos: 44.5,-27.5
parent: 2
type: Transform
- - uid: 2812
+ - uid: 2814
components:
- pos: 43.5,-26.5
parent: 2
type: Transform
- - uid: 2813
+ - uid: 2815
components:
- pos: 5.5,10.5
parent: 2
type: Transform
- - uid: 2814
+ - uid: 2816
components:
- pos: 5.5,8.5
parent: 2
type: Transform
- - uid: 2815
+ - uid: 2817
components:
- pos: 10.5,-26.5
parent: 2
type: Transform
- - uid: 2816
+ - uid: 2818
components:
- pos: -18.5,-52.5
parent: 2
type: Transform
- - uid: 2817
+ - uid: 2819
components:
- pos: -4.5,-21.5
parent: 2
type: Transform
- - uid: 2818
+ - uid: 2820
components:
- pos: 17.5,-29.5
parent: 2
type: Transform
- - uid: 2819
+ - uid: 2821
components:
- pos: -6.5,14.5
parent: 2
type: Transform
- - uid: 2820
+ - uid: 2822
components:
- pos: -6.5,13.5
parent: 2
type: Transform
- - uid: 2821
+ - uid: 2823
components:
- pos: 24.5,-32.5
parent: 2
type: Transform
- - uid: 2822
+ - uid: 2824
components:
- pos: 27.5,-25.5
parent: 2
type: Transform
- - uid: 2823
+ - uid: 2825
components:
- pos: 25.5,-22.5
parent: 2
type: Transform
- - uid: 2824
+ - uid: 2826
components:
- pos: 28.5,-23.5
parent: 2
type: Transform
- - uid: 2825
+ - uid: 2827
components:
- pos: 29.5,-23.5
parent: 2
type: Transform
- - uid: 2826
+ - uid: 2828
components:
- pos: 30.5,-23.5
parent: 2
type: Transform
- - uid: 2827
+ - uid: 2829
components:
- pos: 28.5,-28.5
parent: 2
type: Transform
- - uid: 2828
+ - uid: 2830
components:
- pos: 7.5,-3.5
parent: 2
type: Transform
- - uid: 2829
+ - uid: 2831
components:
- pos: 25.5,-32.5
parent: 2
type: Transform
- - uid: 2830
+ - uid: 2832
components:
- pos: -16.5,-22.5
parent: 2
type: Transform
- - uid: 2831
+ - uid: 2833
components:
- pos: -13.5,-53.5
parent: 2
type: Transform
- - uid: 2832
+ - uid: 2834
components:
- pos: 7.5,-65.5
parent: 2
type: Transform
- - uid: 2833
+ - uid: 2835
components:
- pos: -13.5,-73.5
parent: 2
type: Transform
- - uid: 2834
+ - uid: 2836
components:
- pos: -7.5,-6.5
parent: 2
type: Transform
- - uid: 2835
+ - uid: 2837
components:
- pos: -29.5,1.5
parent: 2
type: Transform
- - uid: 2836
+ - uid: 2838
components:
- pos: 18.5,-40.5
parent: 2
type: Transform
- - uid: 2837
+ - uid: 2839
components:
- pos: -39.5,-68.5
parent: 2
type: Transform
- - uid: 2838
+ - uid: 2840
components:
- pos: -36.5,-70.5
parent: 2
type: Transform
- - uid: 2839
+ - uid: 2841
components:
- pos: 41.5,-26.5
parent: 2
type: Transform
- - uid: 2840
+ - uid: 2842
components:
- pos: -35.5,-70.5
parent: 2
type: Transform
- - uid: 2841
+ - uid: 2843
components:
- pos: -37.5,-69.5
parent: 2
type: Transform
- - uid: 2842
+ - uid: 2844
components:
- pos: -9.5,-22.5
parent: 2
type: Transform
- - uid: 2843
+ - uid: 2845
components:
- pos: 12.5,-8.5
parent: 2
type: Transform
- - uid: 2844
+ - uid: 2846
components:
- pos: 8.5,-5.5
parent: 2
type: Transform
- - uid: 2845
+ - uid: 2847
components:
- pos: -8.5,-22.5
parent: 2
type: Transform
- - uid: 2846
+ - uid: 2848
components:
- pos: -11.5,-22.5
parent: 2
type: Transform
- - uid: 2847
+ - uid: 2849
components:
- pos: -15.5,-66.5
parent: 2
type: Transform
- - uid: 2848
+ - uid: 2850
components:
- pos: -4.5,-12.5
parent: 2
type: Transform
- - uid: 2849
+ - uid: 2851
components:
- pos: 2.5,-69.5
parent: 2
type: Transform
- - uid: 2850
+ - uid: 2852
components:
- pos: 22.5,-32.5
parent: 2
type: Transform
- - uid: 2851
+ - uid: 2853
components:
- pos: -47.5,37.5
parent: 2
type: Transform
- - uid: 2852
+ - uid: 2854
components:
- pos: -10.5,-19.5
parent: 2
type: Transform
- - uid: 2853
+ - uid: 2855
components:
- pos: 29.5,-42.5
parent: 2
type: Transform
- - uid: 2854
+ - uid: 2856
components:
- pos: 67.5,-13.5
parent: 2
type: Transform
- - uid: 2855
+ - uid: 2857
components:
- pos: 25.5,-46.5
parent: 2
type: Transform
- - uid: 2856
+ - uid: 2858
components:
- pos: -5.5,-72.5
parent: 2
type: Transform
- - uid: 2857
+ - uid: 2859
components:
- pos: -7.5,10.5
parent: 2
type: Transform
- - uid: 2858
+ - uid: 2860
components:
- pos: 15.5,-42.5
parent: 2
type: Transform
- - uid: 2859
+ - uid: 2861
components:
- pos: 2.5,-68.5
parent: 2
type: Transform
- - uid: 2860
+ - uid: 2862
components:
- pos: 7.5,-70.5
parent: 2
type: Transform
- - uid: 2861
+ - uid: 2863
components:
- pos: -2.5,-26.5
parent: 2
type: Transform
- - uid: 2862
+ - uid: 2864
components:
- pos: 12.5,-7.5
parent: 2
type: Transform
- - uid: 2863
+ - uid: 2865
components:
- pos: 15.5,-39.5
parent: 2
type: Transform
- - uid: 2864
+ - uid: 2866
components:
- pos: 29.5,-60.5
parent: 2
type: Transform
- - uid: 2865
+ - uid: 2867
components:
- pos: 30.5,-13.5
parent: 2
type: Transform
- - uid: 2866
+ - uid: 2868
components:
- pos: 3.5,-67.5
parent: 2
type: Transform
- - uid: 2867
+ - uid: 2869
components:
- pos: 15.5,-45.5
parent: 2
type: Transform
- - uid: 2868
+ - uid: 2870
components:
- pos: 17.5,-45.5
parent: 2
type: Transform
- - uid: 2869
+ - uid: 2871
components:
- pos: -3.5,-26.5
parent: 2
type: Transform
- - uid: 2870
+ - uid: 2872
components:
- pos: 1.5,-71.5
parent: 2
type: Transform
- - uid: 2871
+ - uid: 2873
components:
- pos: -8.5,-26.5
parent: 2
type: Transform
- - uid: 2872
+ - uid: 2874
components:
- pos: -4.5,1.5
parent: 2
type: Transform
- - uid: 2873
+ - uid: 2875
components:
- pos: 8.5,-70.5
parent: 2
type: Transform
- - uid: 2874
+ - uid: 2876
components:
- pos: 30.5,-61.5
parent: 2
type: Transform
- - uid: 2875
+ - uid: 2877
components:
- pos: -16.5,-21.5
parent: 2
type: Transform
- - uid: 2876
+ - uid: 2878
components:
- pos: -4.5,-24.5
parent: 2
type: Transform
- - uid: 2877
+ - uid: 2879
components:
- pos: -4.5,-23.5
parent: 2
type: Transform
- - uid: 2878
+ - uid: 2880
components:
- pos: -4.5,-30.5
parent: 2
type: Transform
- - uid: 2879
+ - uid: 2881
components:
- pos: -4.5,-29.5
parent: 2
type: Transform
- - uid: 2880
+ - uid: 2882
components:
- pos: -4.5,-31.5
parent: 2
type: Transform
- - uid: 2881
+ - uid: 2883
components:
- pos: -9.5,-26.5
parent: 2
type: Transform
- - uid: 2882
+ - uid: 2884
components:
- pos: -11.5,-26.5
parent: 2
type: Transform
- - uid: 2883
+ - uid: 2885
components:
- pos: -15.5,-20.5
parent: 2
type: Transform
- - uid: 2884
+ - uid: 2886
components:
- pos: -15.5,-19.5
parent: 2
type: Transform
- - uid: 2885
+ - uid: 2887
components:
- pos: -15.5,-16.5
parent: 2
type: Transform
- - uid: 2886
+ - uid: 2888
components:
- pos: 46.5,-23.5
parent: 2
type: Transform
- - uid: 2887
+ - uid: 2889
components:
- pos: 1.5,-69.5
parent: 2
type: Transform
- - uid: 2888
+ - uid: 2890
components:
- pos: 30.5,-60.5
parent: 2
type: Transform
- - uid: 2889
+ - uid: 2891
components:
- pos: 9.5,-65.5
parent: 2
type: Transform
- - uid: 2890
+ - uid: 2892
components:
- pos: 38.5,-25.5
parent: 2
type: Transform
- - uid: 2891
+ - uid: 2893
components:
- pos: 41.5,-25.5
parent: 2
type: Transform
- - uid: 2892
+ - uid: 2894
components:
- pos: 14.5,-49.5
parent: 2
type: Transform
- - uid: 2893
+ - uid: 2895
components:
- pos: 24.5,-53.5
parent: 2
type: Transform
- - uid: 2894
+ - uid: 2896
components:
- pos: 25.5,-51.5
parent: 2
type: Transform
- - uid: 2895
+ - uid: 2897
components:
- pos: -3.5,2.5
parent: 2
type: Transform
- - uid: 2896
+ - uid: 2898
components:
- pos: -9.5,-75.5
parent: 2
type: Transform
- - uid: 2897
+ - uid: 2899
components:
- pos: 2.5,-67.5
parent: 2
type: Transform
- - uid: 2898
+ - uid: 2900
components:
- pos: -5.5,-26.5
parent: 2
type: Transform
- - uid: 2899
+ - uid: 2901
components:
- pos: 25.5,-58.5
parent: 2
type: Transform
- - uid: 2900
+ - uid: 2902
components:
- pos: 25.5,-59.5
parent: 2
type: Transform
- - uid: 2901
+ - uid: 2903
components:
- pos: 26.5,-60.5
parent: 2
type: Transform
- - uid: 2902
+ - uid: 2904
components:
- pos: 28.5,-42.5
parent: 2
type: Transform
- - uid: 2903
+ - uid: 2905
components:
- pos: 8.5,-69.5
parent: 2
type: Transform
- - uid: 2904
+ - uid: 2906
components:
- pos: 19.5,-47.5
parent: 2
type: Transform
- - uid: 2905
+ - uid: 2907
components:
- pos: -1.5,-74.5
parent: 2
type: Transform
- - uid: 2906
+ - uid: 2908
components:
- pos: 30.5,1.5
parent: 2
type: Transform
- - uid: 2907
+ - uid: 2909
components:
- pos: -1.5,-76.5
parent: 2
type: Transform
- - uid: 2908
+ - uid: 2910
components:
- pos: -5.5,-74.5
parent: 2
type: Transform
- - uid: 2909
+ - uid: 2911
components:
- pos: -5.5,-71.5
parent: 2
type: Transform
- - uid: 2910
+ - uid: 2912
components:
- pos: 31.5,2.5
parent: 2
type: Transform
- - uid: 2911
+ - uid: 2913
components:
- pos: 19.5,-42.5
parent: 2
type: Transform
- - uid: 2912
+ - uid: 2914
components:
- pos: 44.5,7.5
parent: 2
type: Transform
- - uid: 2913
+ - uid: 2915
components:
- pos: 4.5,-71.5
parent: 2
type: Transform
- - uid: 2914
+ - uid: 2916
components:
- pos: -17.5,-52.5
parent: 2
type: Transform
- - uid: 2915
+ - uid: 2917
components:
- pos: 10.5,-42.5
parent: 2
type: Transform
- - uid: 2916
+ - uid: 2918
components:
- pos: -14.5,-47.5
parent: 2
type: Transform
- - uid: 2917
+ - uid: 2919
components:
- pos: -12.5,-49.5
parent: 2
type: Transform
- - uid: 2918
+ - uid: 2920
components:
- pos: -13.5,-49.5
parent: 2
type: Transform
- - uid: 2919
+ - uid: 2921
components:
- pos: -13.5,-48.5
parent: 2
type: Transform
- - uid: 2920
+ - uid: 2922
components:
- pos: -13.5,-47.5
parent: 2
type: Transform
- - uid: 2921
+ - uid: 2923
components:
- pos: -12.5,-47.5
parent: 2
type: Transform
- - uid: 2922
+ - uid: 2924
components:
- pos: -10.5,-18.5
parent: 2
type: Transform
- - uid: 2923
+ - uid: 2925
components:
- pos: 21.5,-9.5
parent: 2
type: Transform
- - uid: 2924
+ - uid: 2926
components:
- pos: 20.5,-11.5
parent: 2
type: Transform
- - uid: 2925
+ - uid: 2927
components:
- pos: 20.5,-12.5
parent: 2
type: Transform
- - uid: 2926
+ - uid: 2928
components:
- pos: 22.5,-41.5
parent: 2
type: Transform
- - uid: 2927
+ - uid: 2929
components:
- pos: 19.5,-13.5
parent: 2
type: Transform
- - uid: 2928
+ - uid: 2930
components:
- pos: 22.5,-11.5
parent: 2
type: Transform
- - uid: 2929
+ - uid: 2931
components:
- pos: 62.5,-8.5
parent: 2
type: Transform
- - uid: 2930
+ - uid: 2932
components:
- pos: -3.5,-53.5
parent: 2
type: Transform
- - uid: 2931
+ - uid: 2933
components:
- pos: -14.5,-58.5
parent: 2
type: Transform
- - uid: 2932
+ - uid: 2934
components:
- pos: 8.5,-60.5
parent: 2
type: Transform
- - uid: 2933
+ - uid: 2935
components:
- pos: -8.5,-61.5
parent: 2
type: Transform
- - uid: 2934
+ - uid: 2936
components:
- pos: -20.5,-88.5
parent: 2
type: Transform
- - uid: 2935
+ - uid: 2937
components:
- pos: 28.5,-60.5
parent: 2
type: Transform
- - uid: 2936
+ - uid: 2938
components:
- pos: -8.5,-24.5
parent: 2
type: Transform
- - uid: 2937
+ - uid: 2939
components:
- pos: -4.5,-25.5
parent: 2
type: Transform
- - uid: 2938
+ - uid: 2940
components:
- pos: 8.5,-54.5
parent: 2
type: Transform
- - uid: 2939
+ - uid: 2941
components:
- pos: 8.5,-55.5
parent: 2
type: Transform
- - uid: 2940
+ - uid: 2942
components:
- pos: -17.5,-61.5
parent: 2
type: Transform
- - uid: 2941
+ - uid: 2943
components:
- pos: -18.5,-61.5
parent: 2
type: Transform
- - uid: 2942
+ - uid: 2944
components:
- pos: 20.5,0.5
parent: 2
type: Transform
- - uid: 2943
+ - uid: 2945
components:
- pos: -12.5,-74.5
parent: 2
type: Transform
- - uid: 2944
+ - uid: 2946
components:
- pos: 40.5,-25.5
parent: 2
type: Transform
- - uid: 2945
+ - uid: 2947
components:
- pos: 31.5,-62.5
parent: 2
type: Transform
- - uid: 2946
+ - uid: 2948
components:
- pos: 22.5,-53.5
parent: 2
type: Transform
- - uid: 2947
+ - uid: 2949
components:
- pos: 25.5,-47.5
parent: 2
type: Transform
- - uid: 2948
+ - uid: 2950
components:
- pos: 5.5,-70.5
parent: 2
type: Transform
- - uid: 2949
+ - uid: 2951
components:
- pos: 4.5,8.5
parent: 2
type: Transform
- - uid: 2950
+ - uid: 2952
components:
- pos: -31.5,30.5
parent: 2
type: Transform
- - uid: 2951
+ - uid: 2953
components:
- pos: 15.5,-41.5
parent: 2
type: Transform
- - uid: 2952
+ - uid: 2954
components:
- pos: 20.5,1.5
parent: 2
type: Transform
- - uid: 2953
+ - uid: 2955
components:
- pos: -8.5,-23.5
parent: 2
type: Transform
- - uid: 2954
+ - uid: 2956
components:
- pos: 25.5,-60.5
parent: 2
type: Transform
- - uid: 2955
+ - uid: 2957
components:
- pos: -1.5,-69.5
parent: 2
type: Transform
- - uid: 2956
+ - uid: 2958
components:
- pos: 18.5,-32.5
parent: 2
type: Transform
- - uid: 2957
+ - uid: 2959
components:
- pos: -1.5,-26.5
parent: 2
type: Transform
- - uid: 2958
+ - uid: 2960
components:
- pos: -41.5,28.5
parent: 2
type: Transform
- - uid: 2959
+ - uid: 2961
components:
- pos: -37.5,-68.5
parent: 2
type: Transform
- - uid: 2960
+ - uid: 2962
components:
- pos: 1.5,6.5
parent: 2
type: Transform
- - uid: 2961
+ - uid: 2963
components:
- pos: 0.5,-71.5
parent: 2
type: Transform
- - uid: 2962
+ - uid: 2964
components:
- pos: -10.5,-20.5
parent: 2
type: Transform
- - uid: 2963
+ - uid: 2965
components:
- pos: 4.5,-46.5
parent: 2
type: Transform
- - uid: 2964
+ - uid: 2966
components:
- pos: -8.5,-46.5
parent: 2
type: Transform
- - uid: 2965
+ - uid: 2967
components:
- pos: 17.5,-55.5
parent: 2
type: Transform
- - uid: 2966
+ - uid: 2968
components:
- pos: 18.5,-55.5
parent: 2
type: Transform
- - uid: 2967
+ - uid: 2969
components:
- pos: -6.5,-26.5
parent: 2
type: Transform
- - uid: 2968
+ - uid: 2970
components:
- pos: 24.5,-42.5
parent: 2
type: Transform
- - uid: 2969
+ - uid: 2971
components:
- pos: 14.5,-42.5
parent: 2
type: Transform
- - uid: 2970
+ - uid: 2972
components:
- pos: 17.5,-47.5
parent: 2
type: Transform
- - uid: 2971
+ - uid: 2973
components:
- pos: 17.5,-52.5
parent: 2
type: Transform
- - uid: 2972
+ - uid: 2974
components:
- pos: 14.5,-48.5
parent: 2
type: Transform
- - uid: 2973
+ - uid: 2975
components:
- pos: 4.5,-70.5
parent: 2
type: Transform
- - uid: 2974
+ - uid: 2976
components:
- pos: 28.5,-47.5
parent: 2
type: Transform
- - uid: 2975
+ - uid: 2977
components:
- pos: 25.5,-49.5
parent: 2
type: Transform
- - uid: 2976
+ - uid: 2978
components:
- pos: -1.5,-71.5
parent: 2
type: Transform
- - uid: 2977
+ - uid: 2979
components:
- pos: -6.5,1.5
parent: 2
type: Transform
- - uid: 2978
+ - uid: 2980
components:
- pos: 15.5,-49.5
parent: 2
type: Transform
- - uid: 2979
+ - uid: 2981
components:
- pos: -2.5,11.5
parent: 2
type: Transform
- - uid: 2980
+ - uid: 2982
components:
- pos: 4.5,6.5
parent: 2
type: Transform
- - uid: 2981
+ - uid: 2983
components:
- pos: 46.5,-26.5
parent: 2
type: Transform
- - uid: 2982
+ - uid: 2984
components:
- pos: 15.5,-35.5
parent: 2
type: Transform
- - uid: 2983
+ - uid: 2985
components:
- pos: 15.5,-36.5
parent: 2
type: Transform
- - uid: 2984
+ - uid: 2986
components:
- pos: 20.5,-14.5
parent: 2
type: Transform
- - uid: 2985
+ - uid: 2987
components:
- pos: 20.5,-15.5
parent: 2
type: Transform
- - uid: 2986
+ - uid: 2988
components:
- pos: 20.5,-16.5
parent: 2
type: Transform
- - uid: 2987
+ - uid: 2989
components:
- pos: 20.5,-17.5
parent: 2
type: Transform
- - uid: 2988
+ - uid: 2990
components:
- pos: 19.5,-17.5
parent: 2
type: Transform
- - uid: 2989
+ - uid: 2991
components:
- pos: 17.5,-17.5
parent: 2
type: Transform
- - uid: 2990
+ - uid: 2992
components:
- pos: 23.5,-17.5
parent: 2
type: Transform
- - uid: 2991
+ - uid: 2993
components:
- pos: 25.5,-18.5
parent: 2
type: Transform
- - uid: 2992
+ - uid: 2994
components:
- pos: 27.5,-17.5
parent: 2
type: Transform
- - uid: 2993
+ - uid: 2995
components:
- pos: 27.5,-18.5
parent: 2
type: Transform
- - uid: 2994
+ - uid: 2996
components:
- pos: 23.5,-18.5
parent: 2
type: Transform
- - uid: 2995
+ - uid: 2997
components:
- pos: 28.5,-17.5
parent: 2
type: Transform
- - uid: 2996
+ - uid: 2998
components:
- pos: 29.5,-17.5
parent: 2
type: Transform
- - uid: 2997
+ - uid: 2999
components:
- pos: 30.5,-17.5
parent: 2
type: Transform
- - uid: 2998
+ - uid: 3000
components:
- pos: 30.5,-16.5
parent: 2
type: Transform
- - uid: 2999
+ - uid: 3001
components:
- pos: 32.5,-16.5
parent: 2
type: Transform
- - uid: 3000
+ - uid: 3002
components:
- pos: 32.5,-15.5
parent: 2
type: Transform
- - uid: 3001
+ - uid: 3003
components:
- pos: 32.5,-14.5
parent: 2
type: Transform
- - uid: 3002
+ - uid: 3004
components:
- pos: 32.5,-12.5
parent: 2
type: Transform
- - uid: 3003
+ - uid: 3005
components:
- pos: 32.5,-17.5
parent: 2
type: Transform
- - uid: 3004
+ - uid: 3006
components:
- pos: 34.5,-18.5
parent: 2
type: Transform
- - uid: 3005
+ - uid: 3007
components:
- pos: 20.5,-8.5
parent: 2
type: Transform
- - uid: 3006
+ - uid: 3008
components:
- pos: 19.5,-8.5
parent: 2
type: Transform
- - uid: 3007
+ - uid: 3009
components:
- pos: 17.5,-8.5
parent: 2
type: Transform
- - uid: 3008
+ - uid: 3010
components:
- pos: 15.5,-8.5
parent: 2
type: Transform
- - uid: 3009
+ - uid: 3011
components:
- pos: 14.5,-7.5
parent: 2
type: Transform
- - uid: 3010
+ - uid: 3012
components:
- pos: 9.5,-14.5
parent: 2
type: Transform
- - uid: 3011
+ - uid: 3013
components:
- pos: 26.5,-14.5
parent: 2
type: Transform
- - uid: 3012
+ - uid: 3014
components:
- pos: 29.5,-8.5
parent: 2
type: Transform
- - uid: 3013
+ - uid: 3015
components:
- pos: 27.5,-14.5
parent: 2
type: Transform
- - uid: 3014
+ - uid: 3016
components:
- pos: 30.5,-8.5
parent: 2
type: Transform
- - uid: 3015
+ - uid: 3017
components:
- pos: 31.5,-8.5
parent: 2
type: Transform
- - uid: 3016
+ - uid: 3018
components:
- pos: -4.5,-15.5
parent: 2
type: Transform
- - uid: 3017
+ - uid: 3019
components:
- pos: -15.5,-17.5
parent: 2
type: Transform
- - uid: 3018
+ - uid: 3020
components:
- pos: -12.5,-73.5
parent: 2
type: Transform
- - uid: 3019
+ - uid: 3021
components:
- pos: -4.5,-19.5
parent: 2
type: Transform
- - uid: 3020
+ - uid: 3022
components:
- pos: -1.5,-63.5
parent: 2
type: Transform
- - uid: 3021
+ - uid: 3023
components:
- pos: -7.5,-47.5
parent: 2
type: Transform
- - uid: 3022
+ - uid: 3024
components:
- pos: 25.5,-24.5
parent: 2
type: Transform
- - uid: 3023
+ - uid: 3025
components:
- pos: 23.5,-23.5
parent: 2
type: Transform
- - uid: 3024
+ - uid: 3026
components:
- pos: 20.5,-22.5
parent: 2
type: Transform
- - uid: 3025
+ - uid: 3027
components:
- pos: 30.5,-24.5
parent: 2
type: Transform
- - uid: 3026
+ - uid: 3028
components:
- pos: -8.5,-47.5
parent: 2
type: Transform
- - uid: 3027
+ - uid: 3029
components:
- pos: 27.5,-31.5
parent: 2
type: Transform
- - uid: 3028
+ - uid: 3030
components:
- pos: 22.5,-33.5
parent: 2
type: Transform
- - uid: 3029
+ - uid: 3031
components:
- pos: 22.5,-31.5
parent: 2
type: Transform
- - uid: 3030
+ - uid: 3032
components:
- pos: -7.5,-45.5
parent: 2
type: Transform
- - uid: 3031
+ - uid: 3033
components:
- pos: -5.5,-45.5
parent: 2
type: Transform
- - uid: 3032
+ - uid: 3034
components:
- pos: -4.5,-45.5
parent: 2
type: Transform
- - uid: 3033
+ - uid: 3035
components:
- pos: -3.5,-45.5
parent: 2
type: Transform
- - uid: 3034
+ - uid: 3036
components:
- pos: 5.5,-46.5
parent: 2
type: Transform
- - uid: 3035
+ - uid: 3037
components:
- pos: 6.5,-46.5
parent: 2
type: Transform
- - uid: 3036
+ - uid: 3038
components:
- pos: -12.5,-54.5
parent: 2
type: Transform
- - uid: 3037
+ - uid: 3039
components:
- pos: 19.5,-50.5
parent: 2
type: Transform
- - uid: 3038
+ - uid: 3040
components:
- pos: -2.5,-42.5
parent: 2
type: Transform
- - uid: 3039
+ - uid: 3041
components:
- pos: -4.5,-42.5
parent: 2
type: Transform
- - uid: 3040
+ - uid: 3042
components:
- pos: -6.5,-42.5
parent: 2
type: Transform
- - uid: 3041
+ - uid: 3043
components:
- pos: -7.5,-42.5
parent: 2
type: Transform
- - uid: 3042
+ - uid: 3044
components:
- pos: -8.5,-42.5
parent: 2
type: Transform
- - uid: 3043
+ - uid: 3045
components:
- pos: -9.5,-42.5
parent: 2
type: Transform
- - uid: 3044
+ - uid: 3046
components:
- pos: -10.5,-42.5
parent: 2
type: Transform
- - uid: 3045
+ - uid: 3047
components:
- pos: -11.5,-42.5
parent: 2
type: Transform
- - uid: 3046
+ - uid: 3048
components:
- pos: -12.5,-42.5
parent: 2
type: Transform
- - uid: 3047
+ - uid: 3049
components:
- pos: 1.5,-41.5
parent: 2
type: Transform
- - uid: 3048
+ - uid: 3050
components:
- pos: 2.5,-41.5
parent: 2
type: Transform
- - uid: 3049
+ - uid: 3051
components:
- pos: 3.5,-41.5
parent: 2
type: Transform
- - uid: 3050
+ - uid: 3052
components:
- pos: 5.5,-41.5
parent: 2
type: Transform
- - uid: 3051
+ - uid: 3053
components:
- pos: 5.5,-42.5
parent: 2
type: Transform
- - uid: 3052
+ - uid: 3054
components:
- pos: -4.5,-38.5
parent: 2
type: Transform
- - uid: 3053
+ - uid: 3055
components:
- pos: -4.5,-36.5
parent: 2
type: Transform
- - uid: 3054
+ - uid: 3056
components:
- pos: -4.5,-35.5
parent: 2
type: Transform
- - uid: 3055
+ - uid: 3057
components:
- pos: -4.5,-34.5
parent: 2
type: Transform
- - uid: 3056
+ - uid: 3058
components:
- pos: -12.5,-43.5
parent: 2
type: Transform
- - uid: 3057
+ - uid: 3059
components:
- pos: -12.5,-44.5
parent: 2
type: Transform
- - uid: 3058
+ - uid: 3060
components:
- pos: -12.5,-46.5
parent: 2
type: Transform
- - uid: 3059
+ - uid: 3061
components:
- pos: -5.5,-69.5
parent: 2
type: Transform
- - uid: 3060
+ - uid: 3062
components:
- pos: 26.5,-42.5
parent: 2
type: Transform
- - uid: 3061
+ - uid: 3063
components:
- pos: 30.5,2.5
parent: 2
type: Transform
- - uid: 3062
+ - uid: 3064
components:
- pos: 18.5,-41.5
parent: 2
type: Transform
- - uid: 3063
+ - uid: 3065
components:
- pos: 8.5,-68.5
parent: 2
type: Transform
- - uid: 3064
+ - uid: 3066
components:
- pos: 26.5,-47.5
parent: 2
type: Transform
- - uid: 3065
+ - uid: 3067
components:
- pos: -4.5,-27.5
parent: 2
type: Transform
- - uid: 3066
+ - uid: 3068
components:
- pos: 29.5,2.5
parent: 2
type: Transform
- - uid: 3067
+ - uid: 3069
components:
- pos: 25.5,-48.5
parent: 2
type: Transform
- - uid: 3068
+ - uid: 3070
components:
- pos: -4.5,7.5
parent: 2
type: Transform
- - uid: 3069
+ - uid: 3071
components:
- pos: 28.5,-32.5
parent: 2
type: Transform
- - uid: 3070
+ - uid: 3072
components:
- pos: 30.5,-30.5
parent: 2
type: Transform
- - uid: 3071
+ - uid: 3073
components:
- pos: 30.5,-29.5
parent: 2
type: Transform
- - uid: 3072
+ - uid: 3074
components:
- pos: 30.5,-28.5
parent: 2
type: Transform
- - uid: 3073
+ - uid: 3075
components:
- pos: 62.5,-10.5
parent: 2
type: Transform
- - uid: 3074
+ - uid: 3076
components:
- pos: 9.5,2.5
parent: 2
type: Transform
- - uid: 3075
+ - uid: 3077
components:
- pos: 2.5,2.5
parent: 2
type: Transform
- - uid: 3076
+ - uid: 3078
components:
- pos: 27.5,-32.5
parent: 2
type: Transform
- - uid: 3077
+ - uid: 3079
components:
- pos: 62.5,-12.5
parent: 2
type: Transform
- - uid: 3078
+ - uid: 3080
components:
- pos: -4.5,-22.5
parent: 2
type: Transform
- - uid: 3079
+ - uid: 3081
components:
- pos: -4.5,-3.5
parent: 2
type: Transform
- - uid: 3080
+ - uid: 3082
components:
- pos: -4.5,-2.5
parent: 2
type: Transform
- - uid: 3081
+ - uid: 3083
components:
- pos: -4.5,-0.5
parent: 2
type: Transform
- - uid: 3082
+ - uid: 3084
components:
- pos: -4.5,-1.5
parent: 2
type: Transform
- - uid: 3083
+ - uid: 3085
components:
- pos: -8.5,-0.5
parent: 2
type: Transform
- - uid: 3084
+ - uid: 3086
components:
- pos: -8.5,0.5
parent: 2
type: Transform
- - uid: 3085
+ - uid: 3087
components:
- pos: -3.5,-42.5
parent: 2
type: Transform
- - uid: 3086
+ - uid: 3088
components:
- pos: -0.5,-41.5
parent: 2
type: Transform
- - uid: 3087
+ - uid: 3089
components:
- pos: -4.5,-32.5
parent: 2
type: Transform
- - uid: 3088
+ - uid: 3090
components:
- pos: -6.5,-63.5
parent: 2
type: Transform
- - uid: 3089
+ - uid: 3091
components:
- pos: 22.5,-42.5
parent: 2
type: Transform
- - uid: 3090
+ - uid: 3092
components:
- pos: -1.5,-78.5
parent: 2
type: Transform
- - uid: 3091
+ - uid: 3093
components:
- pos: -4.5,-74.5
parent: 2
type: Transform
- - uid: 3092
+ - uid: 3094
components:
- pos: 13.5,1.5
parent: 2
type: Transform
- - uid: 3093
+ - uid: 3095
components:
- pos: 3.5,0.5
parent: 2
type: Transform
- - uid: 3094
+ - uid: 3096
components:
- pos: 11.5,2.5
parent: 2
type: Transform
- - uid: 3095
+ - uid: 3097
components:
- pos: 5.5,6.5
parent: 2
type: Transform
- - uid: 3096
+ - uid: 3098
components:
- pos: 20.5,-0.5
parent: 2
type: Transform
- - uid: 3097
+ - uid: 3099
components:
- pos: 35.5,-37.5
parent: 2
type: Transform
- - uid: 3098
+ - uid: 3100
components:
- pos: 9.5,-42.5
parent: 2
type: Transform
- - uid: 3099
+ - uid: 3101
components:
- pos: 37.5,13.5
parent: 2
type: Transform
- - uid: 3100
+ - uid: 3102
components:
- pos: -33.5,-55.5
parent: 2
type: Transform
- - uid: 3101
+ - uid: 3103
components:
- pos: -38.5,-68.5
parent: 2
type: Transform
- - uid: 3102
+ - uid: 3104
components:
- pos: -8.5,-5.5
parent: 2
type: Transform
- - uid: 3103
+ - uid: 3105
components:
- pos: -9.5,-5.5
parent: 2
type: Transform
- - uid: 3104
+ - uid: 3106
components:
- pos: -9.5,-3.5
parent: 2
type: Transform
- - uid: 3105
+ - uid: 3107
components:
- pos: -4.5,-39.5
parent: 2
type: Transform
- - uid: 3106
+ - uid: 3108
components:
- pos: 0.5,-40.5
parent: 2
type: Transform
- - uid: 3107
+ - uid: 3109
components:
- pos: 21.5,-32.5
parent: 2
type: Transform
- - uid: 3108
+ - uid: 3110
components:
- pos: 0.5,-69.5
parent: 2
type: Transform
- - uid: 3109
+ - uid: 3111
components:
- pos: -19.5,-65.5
parent: 2
type: Transform
- - uid: 3110
+ - uid: 3112
components:
- pos: -19.5,-67.5
parent: 2
type: Transform
- - uid: 3111
+ - uid: 3113
components:
- pos: -19.5,-71.5
parent: 2
type: Transform
- - uid: 3112
+ - uid: 3114
components:
- pos: -18.5,-73.5
parent: 2
type: Transform
- - uid: 3113
+ - uid: 3115
components:
- pos: -18.5,-75.5
parent: 2
type: Transform
- - uid: 3114
+ - uid: 3116
components:
- pos: -16.5,-77.5
parent: 2
type: Transform
- - uid: 3115
+ - uid: 3117
components:
- pos: -24.5,-14.5
parent: 2
type: Transform
- - uid: 3116
+ - uid: 3118
components:
- pos: 23.5,-24.5
parent: 2
type: Transform
- - uid: 3117
+ - uid: 3119
components:
- pos: 45.5,-24.5
parent: 2
type: Transform
- - uid: 3118
+ - uid: 3120
components:
- pos: -47.5,36.5
parent: 2
type: Transform
- - uid: 3119
+ - uid: 3121
components:
- pos: 12.5,-15.5
parent: 2
type: Transform
- - uid: 3120
+ - uid: 3122
components:
- pos: -14.5,-57.5
parent: 2
type: Transform
- - uid: 3121
+ - uid: 3123
components:
- pos: 0.5,-48.5
parent: 2
type: Transform
- - uid: 3122
+ - uid: 3124
components:
- pos: 13.5,-0.5
parent: 2
type: Transform
- - uid: 3123
+ - uid: 3125
components:
- pos: 20.5,2.5
parent: 2
type: Transform
- - uid: 3124
+ - uid: 3126
components:
- pos: 20.5,-1.5
parent: 2
type: Transform
- - uid: 3125
+ - uid: 3127
components:
- pos: 17.5,-13.5
parent: 2
type: Transform
- - uid: 3126
+ - uid: 3128
components:
- pos: 62.5,-11.5
parent: 2
type: Transform
- - uid: 3127
+ - uid: 3129
components:
- pos: -8.5,-25.5
parent: 2
type: Transform
- - uid: 3128
+ - uid: 3130
components:
- pos: -36.5,-69.5
parent: 2
type: Transform
- - uid: 3129
+ - uid: 3131
components:
- pos: 19.5,-32.5
parent: 2
type: Transform
- - uid: 3130
+ - uid: 3132
components:
- pos: 1.5,11.5
parent: 2
type: Transform
- - uid: 3131
+ - uid: 3133
components:
- pos: 22.5,-17.5
parent: 2
type: Transform
- - uid: 3132
+ - uid: 3134
components:
- pos: 24.5,-17.5
parent: 2
type: Transform
- - uid: 3133
+ - uid: 3135
components:
- pos: 25.5,-17.5
parent: 2
type: Transform
- - uid: 3134
+ - uid: 3136
components:
- pos: 26.5,-17.5
parent: 2
type: Transform
- - uid: 3135
+ - uid: 3137
components:
- pos: 17.5,-40.5
parent: 2
type: Transform
- - uid: 3136
+ - uid: 3138
components:
- pos: -4.5,-17.5
parent: 2
type: Transform
- - uid: 3137
+ - uid: 3139
components:
- pos: 20.5,-47.5
parent: 2
type: Transform
- - uid: 3138
+ - uid: 3140
components:
- pos: -3.5,-68.5
parent: 2
type: Transform
- - uid: 3139
+ - uid: 3141
components:
- pos: 6.5,-66.5
parent: 2
type: Transform
- - uid: 3140
+ - uid: 3142
components:
- pos: 6.5,-67.5
parent: 2
type: Transform
- - uid: 3141
+ - uid: 3143
components:
- pos: 5.5,-67.5
parent: 2
type: Transform
- - uid: 3142
+ - uid: 3144
components:
- pos: 4.5,-67.5
parent: 2
type: Transform
- - uid: 3143
+ - uid: 3145
components:
- pos: 6.5,-72.5
parent: 2
type: Transform
- - uid: 3144
+ - uid: 3146
components:
- pos: 3.5,-71.5
parent: 2
type: Transform
- - uid: 3145
+ - uid: 3147
components:
- pos: 6.5,-70.5
parent: 2
type: Transform
- - uid: 3146
+ - uid: 3148
components:
- pos: -0.5,-71.5
parent: 2
type: Transform
- - uid: 3147
+ - uid: 3149
components:
- pos: -3.5,0.5
parent: 2
type: Transform
- - uid: 3148
+ - uid: 3150
components:
- pos: -3.5,1.5
parent: 2
type: Transform
- - uid: 3149
+ - uid: 3151
components:
- pos: 15.5,-46.5
parent: 2
type: Transform
- - uid: 3150
+ - uid: 3152
components:
- pos: 17.5,-46.5
parent: 2
type: Transform
- - uid: 3151
+ - uid: 3153
components:
- pos: 19.5,-48.5
parent: 2
type: Transform
- - uid: 3152
+ - uid: 3154
components:
- pos: 25.5,-53.5
parent: 2
type: Transform
- - uid: 3153
+ - uid: 3155
components:
- pos: 18.5,-42.5
parent: 2
type: Transform
- - uid: 3154
+ - uid: 3156
components:
- pos: 16.5,-40.5
parent: 2
type: Transform
- - uid: 3155
+ - uid: 3157
components:
- pos: -4.5,-26.5
parent: 2
type: Transform
- - uid: 3156
+ - uid: 3158
components:
- pos: 33.5,-32.5
parent: 2
type: Transform
- - uid: 3157
+ - uid: 3159
components:
- pos: 34.5,-32.5
parent: 2
type: Transform
- - uid: 3158
+ - uid: 3160
components:
- pos: 15.5,-31.5
parent: 2
type: Transform
- - uid: 3159
+ - uid: 3161
components:
- pos: 15.5,-30.5
parent: 2
type: Transform
- - uid: 3160
+ - uid: 3162
components:
- pos: 15.5,-29.5
parent: 2
type: Transform
- - uid: 3161
+ - uid: 3163
components:
- pos: 15.5,-21.5
parent: 2
type: Transform
- - uid: 3162
+ - uid: 3164
components:
- pos: 15.5,-22.5
parent: 2
type: Transform
- - uid: 3163
+ - uid: 3165
components:
- pos: 15.5,-23.5
parent: 2
type: Transform
- - uid: 3164
+ - uid: 3166
components:
- pos: 15.5,-24.5
parent: 2
type: Transform
- - uid: 3165
+ - uid: 3167
components:
- pos: 15.5,-25.5
parent: 2
type: Transform
- - uid: 3166
+ - uid: 3168
components:
- pos: 15.5,-26.5
parent: 2
type: Transform
- - uid: 3167
+ - uid: 3169
components:
- pos: 34.5,-17.5
parent: 2
type: Transform
- - uid: 3168
+ - uid: 3170
components:
- pos: 35.5,-18.5
parent: 2
type: Transform
- - uid: 3169
+ - uid: 3171
components:
- pos: 18.5,-8.5
parent: 2
type: Transform
- - uid: 3170
+ - uid: 3172
components:
- pos: 16.5,-8.5
parent: 2
type: Transform
- - uid: 3171
+ - uid: 3173
components:
- pos: 14.5,-8.5
parent: 2
type: Transform
- - uid: 3172
+ - uid: 3174
components:
- pos: 14.5,-4.5
parent: 2
type: Transform
- - uid: 3173
+ - uid: 3175
components:
- pos: 14.5,-1.5
parent: 2
type: Transform
- - uid: 3174
+ - uid: 3176
components:
- pos: 15.5,-9.5
parent: 2
type: Transform
- - uid: 3175
+ - uid: 3177
components:
- pos: 15.5,-12.5
parent: 2
type: Transform
- - uid: 3176
+ - uid: 3178
components:
- pos: 39.5,-25.5
parent: 2
type: Transform
- - uid: 3177
+ - uid: 3179
components:
- pos: 39.5,-26.5
parent: 2
type: Transform
- - uid: 3178
+ - uid: 3180
components:
- pos: -25.5,-86.5
parent: 2
type: Transform
- - uid: 3179
+ - uid: 3181
components:
- pos: -25.5,-85.5
parent: 2
type: Transform
- - uid: 3180
+ - uid: 3182
components:
- pos: 5.5,-53.5
parent: 2
type: Transform
- - uid: 3181
+ - uid: 3183
components:
- pos: 6.5,-53.5
parent: 2
type: Transform
- - uid: 3182
+ - uid: 3184
components:
- pos: 7.5,-53.5
parent: 2
type: Transform
- - uid: 3183
+ - uid: 3185
components:
- pos: 8.5,-53.5
parent: 2
type: Transform
- - uid: 3184
+ - uid: 3186
components:
- pos: 8.5,-52.5
parent: 2
type: Transform
- - uid: 3185
+ - uid: 3187
components:
- pos: 9.5,-52.5
parent: 2
type: Transform
- - uid: 3186
+ - uid: 3188
components:
- pos: 10.5,-52.5
parent: 2
type: Transform
- - uid: 3187
+ - uid: 3189
components:
- pos: 10.5,-49.5
parent: 2
type: Transform
- - uid: 3188
+ - uid: 3190
components:
- pos: 15.5,-43.5
parent: 2
type: Transform
- - uid: 3189
+ - uid: 3191
components:
- pos: -16.5,-61.5
parent: 2
type: Transform
- - uid: 3190
+ - uid: 3192
components:
- pos: -19.5,-64.5
parent: 2
type: Transform
- - uid: 3191
+ - uid: 3193
components:
- pos: -19.5,-66.5
parent: 2
type: Transform
- - uid: 3192
+ - uid: 3194
components:
- pos: -14.5,-67.5
parent: 2
type: Transform
- - uid: 3193
+ - uid: 3195
components:
- pos: -28.5,-79.5
parent: 2
type: Transform
- - uid: 3194
+ - uid: 3196
components:
- pos: -28.5,-78.5
parent: 2
type: Transform
- - uid: 3195
+ - uid: 3197
components:
- pos: -27.5,-78.5
parent: 2
type: Transform
- - uid: 3196
+ - uid: 3198
components:
- pos: -26.5,-78.5
parent: 2
type: Transform
- - uid: 3197
+ - uid: 3199
components:
- pos: -26.5,-77.5
parent: 2
type: Transform
- - uid: 3198
+ - uid: 3200
components:
- pos: -25.5,-77.5
parent: 2
type: Transform
- - uid: 3199
+ - uid: 3201
components:
- pos: -22.5,-86.5
parent: 2
type: Transform
- - uid: 3200
+ - uid: 3202
components:
- pos: -20.5,-85.5
parent: 2
type: Transform
- - uid: 3201
+ - uid: 3203
components:
- pos: -21.5,-85.5
parent: 2
type: Transform
- - uid: 3202
+ - uid: 3204
components:
- pos: -24.5,-85.5
parent: 2
type: Transform
- - uid: 3203
+ - uid: 3205
components:
- pos: -23.5,-85.5
parent: 2
type: Transform
- - uid: 3204
+ - uid: 3206
components:
- pos: -22.5,-85.5
parent: 2
type: Transform
- - uid: 3205
+ - uid: 3207
components:
- pos: -22.5,-84.5
parent: 2
type: Transform
- - uid: 3206
+ - uid: 3208
components:
- pos: -22.5,-81.5
parent: 2
type: Transform
- - uid: 3207
+ - uid: 3209
components:
- pos: -22.5,-83.5
parent: 2
type: Transform
- - uid: 3208
+ - uid: 3210
components:
- pos: -22.5,-82.5
parent: 2
type: Transform
- - uid: 3209
+ - uid: 3211
components:
- pos: -22.5,-80.5
parent: 2
type: Transform
- - uid: 3210
+ - uid: 3212
components:
- pos: -23.5,-80.5
parent: 2
type: Transform
- - uid: 3211
+ - uid: 3213
components:
- pos: -23.5,-79.5
parent: 2
type: Transform
- - uid: 3212
+ - uid: 3214
components:
- pos: -23.5,-78.5
parent: 2
type: Transform
- - uid: 3213
+ - uid: 3215
components:
- pos: -23.5,-77.5
parent: 2
type: Transform
- - uid: 3214
+ - uid: 3216
components:
- pos: -24.5,-77.5
parent: 2
type: Transform
- - uid: 3215
+ - uid: 3217
components:
- pos: -24.5,-76.5
parent: 2
type: Transform
- - uid: 3216
+ - uid: 3218
components:
- pos: -24.5,-75.5
parent: 2
type: Transform
- - uid: 3217
+ - uid: 3219
components:
- pos: -24.5,-74.5
parent: 2
type: Transform
- - uid: 3218
+ - uid: 3220
components:
- pos: -24.5,-73.5
parent: 2
type: Transform
- - uid: 3219
+ - uid: 3221
components:
- pos: -24.5,-72.5
parent: 2
type: Transform
- - uid: 3220
+ - uid: 3222
components:
- pos: -23.5,-72.5
parent: 2
type: Transform
- - uid: 3221
+ - uid: 3223
components:
- pos: -22.5,-72.5
parent: 2
type: Transform
- - uid: 3222
+ - uid: 3224
components:
- pos: -21.5,-72.5
parent: 2
type: Transform
- - uid: 3223
+ - uid: 3225
components:
- pos: -21.5,-71.5
parent: 2
type: Transform
- - uid: 3224
+ - uid: 3226
components:
- pos: -20.5,-79.5
parent: 2
type: Transform
- - uid: 3225
+ - uid: 3227
components:
- pos: -19.5,-79.5
parent: 2
type: Transform
- - uid: 3226
+ - uid: 3228
components:
- pos: -19.5,-78.5
parent: 2
type: Transform
- - uid: 3227
+ - uid: 3229
components:
- pos: 33.5,3.5
parent: 2
type: Transform
- - uid: 3228
+ - uid: 3230
components:
- pos: 33.5,4.5
parent: 2
type: Transform
- - uid: 3229
+ - uid: 3231
components:
- pos: 33.5,7.5
parent: 2
type: Transform
- - uid: 3230
+ - uid: 3232
components:
- pos: 33.5,6.5
parent: 2
type: Transform
- - uid: 3231
+ - uid: 3233
components:
- pos: 33.5,5.5
parent: 2
type: Transform
- - uid: 3232
+ - uid: 3234
components:
- pos: 26.5,7.5
parent: 2
type: Transform
- - uid: 3233
+ - uid: 3235
components:
- pos: 33.5,0.5
parent: 2
type: Transform
- - uid: 3234
+ - uid: 3236
components:
- pos: 33.5,-0.5
parent: 2
type: Transform
- - uid: 3235
+ - uid: 3237
components:
- pos: 33.5,-1.5
parent: 2
type: Transform
- - uid: 3236
+ - uid: 3238
components:
- pos: 33.5,-2.5
parent: 2
type: Transform
- - uid: 3237
+ - uid: 3239
components:
- pos: 33.5,-3.5
parent: 2
type: Transform
- - uid: 3238
+ - uid: 3240
components:
- pos: 33.5,-4.5
parent: 2
type: Transform
- - uid: 3239
+ - uid: 3241
components:
- pos: 33.5,-5.5
parent: 2
type: Transform
- - uid: 3240
+ - uid: 3242
components:
- pos: 27.5,7.5
parent: 2
type: Transform
- - uid: 3241
+ - uid: 3243
components:
- pos: 28.5,7.5
parent: 2
type: Transform
- - uid: 3242
+ - uid: 3244
components:
- pos: 29.5,7.5
parent: 2
type: Transform
- - uid: 3243
+ - uid: 3245
components:
- pos: 30.5,7.5
parent: 2
type: Transform
- - uid: 3244
+ - uid: 3246
components:
- pos: 31.5,7.5
parent: 2
type: Transform
- - uid: 3245
+ - uid: 3247
components:
- pos: 32.5,7.5
parent: 2
type: Transform
- - uid: 3246
+ - uid: 3248
components:
- pos: 26.5,8.5
parent: 2
type: Transform
- - uid: 3247
+ - uid: 3249
components:
- pos: 26.5,9.5
parent: 2
type: Transform
- - uid: 3248
+ - uid: 3250
components:
- pos: 26.5,10.5
parent: 2
type: Transform
- - uid: 3249
+ - uid: 3251
components:
- pos: 26.5,11.5
parent: 2
type: Transform
- - uid: 3250
+ - uid: 3252
components:
- pos: 26.5,12.5
parent: 2
type: Transform
- - uid: 3251
+ - uid: 3253
components:
- pos: 26.5,13.5
parent: 2
type: Transform
- - uid: 3252
+ - uid: 3254
components:
- pos: 25.5,7.5
parent: 2
type: Transform
- - uid: 3253
+ - uid: 3255
components:
- pos: 24.5,7.5
parent: 2
type: Transform
- - uid: 3254
+ - uid: 3256
components:
- pos: 23.5,7.5
parent: 2
type: Transform
- - uid: 3255
+ - uid: 3257
components:
- pos: 22.5,7.5
parent: 2
type: Transform
- - uid: 3256
+ - uid: 3258
components:
- pos: 21.5,7.5
parent: 2
type: Transform
- - uid: 3257
+ - uid: 3259
components:
- pos: 34.5,0.5
parent: 2
type: Transform
- - uid: 3258
+ - uid: 3260
components:
- pos: 37.5,-25.5
parent: 2
type: Transform
- - uid: 3259
+ - uid: 3261
components:
- pos: 36.5,-25.5
parent: 2
type: Transform
- - uid: 3260
+ - uid: 3262
components:
- pos: 36.5,-24.5
parent: 2
type: Transform
- - uid: 3261
+ - uid: 3263
components:
- pos: 36.5,-23.5
parent: 2
type: Transform
- - uid: 3262
+ - uid: 3264
components:
- pos: 36.5,-22.5
parent: 2
type: Transform
- - uid: 3263
+ - uid: 3265
components:
- pos: 35.5,-22.5
parent: 2
type: Transform
- - uid: 3264
+ - uid: 3266
components:
- pos: 35.5,-21.5
parent: 2
type: Transform
- - uid: 3265
+ - uid: 3267
components:
- pos: 35.5,-25.5
parent: 2
type: Transform
- - uid: 3266
+ - uid: 3268
components:
- pos: 34.5,-25.5
parent: 2
type: Transform
- - uid: 3267
+ - uid: 3269
components:
- pos: 35.5,-26.5
parent: 2
type: Transform
- - uid: 3268
+ - uid: 3270
components:
- pos: 35.5,-27.5
parent: 2
type: Transform
- - uid: 3269
+ - uid: 3271
components:
- pos: 35.5,-28.5
parent: 2
type: Transform
- - uid: 3270
+ - uid: 3272
components:
- pos: 35.5,-29.5
parent: 2
type: Transform
- - uid: 3271
+ - uid: 3273
components:
- pos: 35.5,-30.5
parent: 2
type: Transform
- - uid: 3272
+ - uid: 3274
components:
- pos: 35.5,-31.5
parent: 2
type: Transform
- - uid: 3273
+ - uid: 3275
components:
- pos: 35.5,-32.5
parent: 2
type: Transform
- - uid: 3274
+ - uid: 3276
components:
- pos: 35.5,-33.5
parent: 2
type: Transform
- - uid: 3275
+ - uid: 3277
components:
- pos: 35.5,-34.5
parent: 2
type: Transform
- - uid: 3276
+ - uid: 3278
components:
- pos: 35.5,-35.5
parent: 2
type: Transform
- - uid: 3277
+ - uid: 3279
components:
- pos: 35.5,-36.5
parent: 2
type: Transform
- - uid: 3278
+ - uid: 3280
components:
- pos: 36.5,-30.5
parent: 2
type: Transform
- - uid: 3279
+ - uid: 3281
components:
- pos: 37.5,-30.5
parent: 2
type: Transform
- - uid: 3280
+ - uid: 3282
components:
- pos: 38.5,-30.5
parent: 2
type: Transform
- - uid: 3281
+ - uid: 3283
components:
- pos: 39.5,-30.5
parent: 2
type: Transform
- - uid: 3282
+ - uid: 3284
components:
- pos: 31.5,-4.5
parent: 2
type: Transform
- - uid: 3283
+ - uid: 3285
components:
- pos: -4.5,-10.5
parent: 2
type: Transform
- - uid: 3284
+ - uid: 3286
components:
- pos: -4.5,-9.5
parent: 2
type: Transform
- - uid: 3285
+ - uid: 3287
components:
- pos: -4.5,-8.5
parent: 2
type: Transform
- - uid: 3286
+ - uid: 3288
components:
- pos: -4.5,-7.5
parent: 2
type: Transform
- - uid: 3287
+ - uid: 3289
components:
- pos: -4.5,-6.5
parent: 2
type: Transform
- - uid: 3288
+ - uid: 3290
components:
- pos: -4.5,-5.5
parent: 2
type: Transform
- - uid: 3289
+ - uid: 3291
components:
- pos: 63.5,-5.5
parent: 2
type: Transform
- - uid: 3290
+ - uid: 3292
components:
- pos: 62.5,-5.5
parent: 2
type: Transform
- - uid: 3291
+ - uid: 3293
components:
- pos: 21.5,15.5
parent: 2
type: Transform
- - uid: 3292
+ - uid: 3294
components:
- pos: 21.5,14.5
parent: 2
type: Transform
- - uid: 3293
+ - uid: 3295
components:
- pos: 21.5,13.5
parent: 2
type: Transform
- - uid: 3294
+ - uid: 3296
components:
- pos: 21.5,12.5
parent: 2
type: Transform
- - uid: 3295
+ - uid: 3297
components:
- pos: 21.5,11.5
parent: 2
type: Transform
- - uid: 3296
+ - uid: 3298
components:
- pos: 21.5,10.5
parent: 2
type: Transform
- - uid: 3297
+ - uid: 3299
components:
- pos: 20.5,14.5
parent: 2
type: Transform
- - uid: 3298
+ - uid: 3300
components:
- pos: 19.5,14.5
parent: 2
type: Transform
- - uid: 3299
+ - uid: 3301
components:
- pos: 18.5,14.5
parent: 2
type: Transform
- - uid: 3300
+ - uid: 3302
components:
- pos: 17.5,14.5
parent: 2
type: Transform
- - uid: 3301
+ - uid: 3303
components:
- pos: 17.5,13.5
parent: 2
type: Transform
- - uid: 3302
+ - uid: 3304
components:
- pos: 17.5,12.5
parent: 2
type: Transform
- - uid: 3303
+ - uid: 3305
components:
- pos: 17.5,11.5
parent: 2
type: Transform
- - uid: 3304
+ - uid: 3306
components:
- pos: 16.5,11.5
parent: 2
type: Transform
- - uid: 3305
+ - uid: 3307
components:
- pos: 15.5,11.5
parent: 2
type: Transform
- - uid: 3306
+ - uid: 3308
components:
- pos: 14.5,11.5
parent: 2
type: Transform
- - uid: 3307
+ - uid: 3309
components:
- pos: 13.5,11.5
parent: 2
type: Transform
- - uid: 3308
+ - uid: 3310
components:
- pos: 13.5,12.5
parent: 2
type: Transform
- - uid: 3309
+ - uid: 3311
components:
- pos: 13.5,13.5
parent: 2
type: Transform
- - uid: 3310
+ - uid: 3312
components:
- pos: 12.5,13.5
parent: 2
type: Transform
- - uid: 3311
+ - uid: 3313
components:
- pos: 11.5,13.5
parent: 2
type: Transform
- - uid: 3312
+ - uid: 3314
components:
- pos: 11.5,12.5
parent: 2
type: Transform
- - uid: 3313
+ - uid: 3315
components:
- pos: 11.5,11.5
parent: 2
type: Transform
- - uid: 3314
+ - uid: 3316
components:
- pos: 11.5,10.5
parent: 2
type: Transform
- - uid: 3315
+ - uid: 3317
components:
- pos: 11.5,9.5
parent: 2
type: Transform
- - uid: 3316
+ - uid: 3318
components:
- pos: 11.5,8.5
parent: 2
type: Transform
- - uid: 3317
+ - uid: 3319
components:
- pos: 11.5,7.5
parent: 2
type: Transform
- - uid: 3318
+ - uid: 3320
components:
- pos: 11.5,6.5
parent: 2
type: Transform
- - uid: 3319
+ - uid: 3321
components:
- pos: 12.5,8.5
parent: 2
type: Transform
- - uid: 3320
+ - uid: 3322
components:
- pos: 13.5,8.5
parent: 2
type: Transform
- - uid: 3321
+ - uid: 3323
components:
- pos: 13.5,7.5
parent: 2
type: Transform
- - uid: 3322
+ - uid: 3324
components:
- pos: 14.5,7.5
parent: 2
type: Transform
- - uid: 3323
+ - uid: 3325
components:
- pos: 15.5,7.5
parent: 2
type: Transform
- - uid: 3324
+ - uid: 3326
components:
- pos: 16.5,7.5
parent: 2
type: Transform
- - uid: 3325
+ - uid: 3327
components:
- pos: 17.5,7.5
parent: 2
type: Transform
- - uid: 3326
+ - uid: 3328
components:
- pos: 17.5,6.5
parent: 2
type: Transform
- - uid: 3327
+ - uid: 3329
components:
- pos: 17.5,5.5
parent: 2
type: Transform
- - uid: 3328
+ - uid: 3330
components:
- pos: 17.5,4.5
parent: 2
type: Transform
- - uid: 3329
+ - uid: 3331
components:
- pos: 17.5,3.5
parent: 2
type: Transform
- - uid: 3330
+ - uid: 3332
components:
- pos: 17.5,2.5
parent: 2
type: Transform
- - uid: 3331
+ - uid: 3333
components:
- pos: 17.5,1.5
parent: 2
type: Transform
- - uid: 3332
+ - uid: 3334
components:
- pos: 17.5,0.5
parent: 2
type: Transform
- - uid: 3333
+ - uid: 3335
components:
- pos: 17.5,-0.5
parent: 2
type: Transform
- - uid: 3334
+ - uid: 3336
components:
- pos: 17.5,-1.5
parent: 2
type: Transform
- - uid: 3335
+ - uid: 3337
components:
- pos: 17.5,-2.5
parent: 2
type: Transform
- - uid: 3336
+ - uid: 3338
components:
- pos: 17.5,-3.5
parent: 2
type: Transform
- - uid: 3337
+ - uid: 3339
components:
- pos: 17.5,-4.5
parent: 2
type: Transform
- - uid: 3338
+ - uid: 3340
components:
- pos: 17.5,-5.5
parent: 2
type: Transform
- - uid: 3339
+ - uid: 3341
components:
- pos: 18.5,4.5
parent: 2
type: Transform
- - uid: 3340
+ - uid: 3342
components:
- pos: 16.5,-2.5
parent: 2
type: Transform
- - uid: 3341
+ - uid: 3343
components:
- pos: 10.5,8.5
parent: 2
type: Transform
- - uid: 3342
+ - uid: 3344
components:
- pos: 24.5,24.5
parent: 2
type: Transform
- - uid: 3343
+ - uid: 3345
components:
- pos: 24.5,23.5
parent: 2
type: Transform
- - uid: 3344
+ - uid: 3346
components:
- pos: 24.5,22.5
parent: 2
type: Transform
- - uid: 3345
+ - uid: 3347
components:
- pos: 23.5,22.5
parent: 2
type: Transform
- - uid: 3346
+ - uid: 3348
components:
- pos: 22.5,22.5
parent: 2
type: Transform
- - uid: 3347
+ - uid: 3349
components:
- pos: 22.5,21.5
parent: 2
type: Transform
- - uid: 3348
+ - uid: 3350
components:
- pos: 22.5,20.5
parent: 2
type: Transform
- - uid: 3349
+ - uid: 3351
components:
- pos: 22.5,19.5
parent: 2
type: Transform
- - uid: 3350
+ - uid: 3352
components:
- pos: 22.5,18.5
parent: 2
type: Transform
- - uid: 3351
+ - uid: 3353
components:
- pos: 22.5,17.5
parent: 2
type: Transform
- - uid: 3352
+ - uid: 3354
components:
- pos: 21.5,17.5
parent: 2
type: Transform
- - uid: 3353
+ - uid: 3355
components:
- pos: 20.5,17.5
parent: 2
type: Transform
- - uid: 3354
+ - uid: 3356
components:
- pos: 19.5,17.5
parent: 2
type: Transform
- - uid: 3355
+ - uid: 3357
components:
- pos: 18.5,17.5
parent: 2
type: Transform
- - uid: 3356
+ - uid: 3358
components:
- pos: 17.5,17.5
parent: 2
type: Transform
- - uid: 3357
+ - uid: 3359
components:
- pos: 16.5,17.5
parent: 2
type: Transform
- - uid: 3358
+ - uid: 3360
components:
- pos: 15.5,17.5
parent: 2
type: Transform
- - uid: 3359
+ - uid: 3361
components:
- pos: 14.5,17.5
parent: 2
type: Transform
- - uid: 3360
+ - uid: 3362
components:
- pos: 13.5,17.5
parent: 2
type: Transform
- - uid: 3361
+ - uid: 3363
components:
- pos: 12.5,17.5
parent: 2
type: Transform
- - uid: 3362
+ - uid: 3364
components:
- pos: 11.5,17.5
parent: 2
type: Transform
- - uid: 3363
+ - uid: 3365
components:
- pos: 10.5,17.5
parent: 2
type: Transform
- - uid: 3364
+ - uid: 3366
components:
- pos: 9.5,17.5
parent: 2
type: Transform
- - uid: 3365
+ - uid: 3367
components:
- pos: 8.5,17.5
parent: 2
type: Transform
- - uid: 3366
+ - uid: 3368
components:
- pos: 7.5,17.5
parent: 2
type: Transform
- - uid: 3367
+ - uid: 3369
components:
- pos: 11.5,18.5
parent: 2
type: Transform
- - uid: 3368
+ - uid: 3370
components:
- pos: 11.5,19.5
parent: 2
type: Transform
- - uid: 3369
+ - uid: 3371
components:
- pos: 11.5,20.5
parent: 2
type: Transform
- - uid: 3370
+ - uid: 3372
components:
- pos: 11.5,21.5
parent: 2
type: Transform
- - uid: 3371
+ - uid: 3373
components:
- pos: 16.5,18.5
parent: 2
type: Transform
- - uid: 3372
+ - uid: 3374
components:
- pos: 16.5,19.5
parent: 2
type: Transform
- - uid: 3373
+ - uid: 3375
components:
- pos: 16.5,20.5
parent: 2
type: Transform
- - uid: 3374
+ - uid: 3376
components:
- pos: 16.5,21.5
parent: 2
type: Transform
- - uid: 3375
+ - uid: 3377
components:
- pos: 17.5,21.5
parent: 2
type: Transform
- - uid: 3376
+ - uid: 3378
components:
- pos: 15.5,21.5
parent: 2
type: Transform
- - uid: 3377
+ - uid: 3379
components:
- pos: 6.5,17.5
parent: 2
type: Transform
- - uid: 3378
+ - uid: 3380
components:
- pos: 6.5,18.5
parent: 2
type: Transform
- - uid: 3379
+ - uid: 3381
components:
- pos: 6.5,19.5
parent: 2
type: Transform
- - uid: 3380
+ - uid: 3382
components:
- pos: 6.5,20.5
parent: 2
type: Transform
- - uid: 3381
+ - uid: 3383
components:
- pos: 6.5,21.5
parent: 2
type: Transform
- - uid: 3382
+ - uid: 3384
components:
- pos: 7.5,21.5
parent: 2
type: Transform
- - uid: 3383
+ - uid: 3385
components:
- pos: 5.5,21.5
parent: 2
type: Transform
- - uid: 3384
+ - uid: 3386
components:
- pos: 5.5,17.5
parent: 2
type: Transform
- - uid: 3385
+ - uid: 3387
components:
- pos: 4.5,17.5
parent: 2
type: Transform
- - uid: 3386
+ - uid: 3388
components:
- pos: 2.5,17.5
parent: 2
type: Transform
- - uid: 3387
+ - uid: 3389
components:
- pos: 3.5,17.5
parent: 2
type: Transform
- - uid: 3388
+ - uid: 3390
components:
- pos: 1.5,17.5
parent: 2
type: Transform
- - uid: 3389
+ - uid: 3391
components:
- pos: 0.5,17.5
parent: 2
type: Transform
- - uid: 3390
+ - uid: 3392
components:
- pos: 0.5,18.5
parent: 2
type: Transform
- - uid: 3391
+ - uid: 3393
components:
- pos: -0.5,18.5
parent: 2
type: Transform
- - uid: 3392
+ - uid: 3394
components:
- pos: -0.5,19.5
parent: 2
type: Transform
- - uid: 3393
+ - uid: 3395
components:
- pos: -0.5,20.5
parent: 2
type: Transform
- - uid: 3394
+ - uid: 3396
components:
- pos: 0.5,20.5
parent: 2
type: Transform
- - uid: 3395
+ - uid: 3397
components:
- pos: 1.5,20.5
parent: 2
type: Transform
- - uid: 3396
+ - uid: 3398
components:
- pos: 24.5,21.5
parent: 2
type: Transform
- - uid: 3397
+ - uid: 3399
components:
- pos: 25.5,21.5
parent: 2
type: Transform
- - uid: 3398
+ - uid: 3400
components:
- pos: 26.5,21.5
parent: 2
type: Transform
- - uid: 3399
+ - uid: 3401
components:
- pos: 27.5,21.5
parent: 2
type: Transform
- - uid: 3400
+ - uid: 3402
components:
- pos: 28.5,21.5
parent: 2
type: Transform
- - uid: 3401
+ - uid: 3403
components:
- pos: 23.5,17.5
parent: 2
type: Transform
- - uid: 3402
+ - uid: 3404
components:
- pos: 24.5,17.5
parent: 2
type: Transform
- - uid: 3403
+ - uid: 3405
components:
- pos: 25.5,17.5
parent: 2
type: Transform
- - uid: 3404
+ - uid: 3406
components:
- pos: 25.5,16.5
parent: 2
type: Transform
- - uid: 3405
+ - uid: 3407
components:
- pos: 26.5,17.5
parent: 2
type: Transform
- - uid: 3406
+ - uid: 3408
components:
- pos: 27.5,17.5
parent: 2
type: Transform
- - uid: 3407
+ - uid: 3409
components:
- pos: 28.5,17.5
parent: 2
type: Transform
- - uid: 3408
+ - uid: 3410
components:
- pos: 29.5,17.5
parent: 2
type: Transform
- - uid: 3409
+ - uid: 3411
components:
- pos: 40.5,7.5
parent: 2
type: Transform
- - uid: 3410
+ - uid: 3412
components:
- pos: 29.5,15.5
parent: 2
type: Transform
- - uid: 3411
+ - uid: 3413
components:
- pos: 29.5,21.5
parent: 2
type: Transform
- - uid: 3412
+ - uid: 3414
components:
- pos: 30.5,21.5
parent: 2
type: Transform
- - uid: 3413
+ - uid: 3415
components:
- pos: 31.5,21.5
parent: 2
type: Transform
- - uid: 3414
+ - uid: 3416
components:
- pos: 32.5,21.5
parent: 2
type: Transform
- - uid: 3415
+ - uid: 3417
components:
- pos: 32.5,22.5
parent: 2
type: Transform
- - uid: 3416
+ - uid: 3418
components:
- pos: 32.5,23.5
parent: 2
type: Transform
- - uid: 3417
+ - uid: 3419
components:
- pos: 29.5,22.5
parent: 2
type: Transform
- - uid: 3418
+ - uid: 3420
components:
- pos: 29.5,23.5
parent: 2
type: Transform
- - uid: 3419
+ - uid: 3421
components:
- pos: 29.5,24.5
parent: 2
type: Transform
- - uid: 3420
+ - uid: 3422
components:
- pos: 29.5,25.5
parent: 2
type: Transform
- - uid: 3421
+ - uid: 3423
components:
- pos: 29.5,26.5
parent: 2
type: Transform
- - uid: 3422
+ - uid: 3424
components:
- pos: 29.5,27.5
parent: 2
type: Transform
- - uid: 3423
+ - uid: 3425
components:
- pos: 29.5,28.5
parent: 2
type: Transform
- - uid: 3424
+ - uid: 3426
components:
- pos: 29.5,29.5
parent: 2
type: Transform
- - uid: 3425
+ - uid: 3427
components:
- pos: 29.5,30.5
parent: 2
type: Transform
- - uid: 3426
+ - uid: 3428
components:
- pos: 29.5,31.5
parent: 2
type: Transform
- - uid: 3427
+ - uid: 3429
components:
- pos: 30.5,31.5
parent: 2
type: Transform
- - uid: 3428
+ - uid: 3430
components:
- pos: 32.5,31.5
parent: 2
type: Transform
- - uid: 3429
+ - uid: 3431
components:
- pos: 31.5,31.5
parent: 2
type: Transform
- - uid: 3430
+ - uid: 3432
components:
- pos: 28.5,31.5
parent: 2
type: Transform
- - uid: 3431
+ - uid: 3433
components:
- pos: 27.5,31.5
parent: 2
type: Transform
- - uid: 3432
+ - uid: 3434
components:
- pos: 27.5,30.5
parent: 2
type: Transform
- - uid: 3433
+ - uid: 3435
components:
- pos: 27.5,29.5
parent: 2
type: Transform
- - uid: 3434
+ - uid: 3436
components:
- pos: 32.5,30.5
parent: 2
type: Transform
- - uid: 3435
+ - uid: 3437
components:
- pos: 32.5,29.5
parent: 2
type: Transform
- - uid: 3436
+ - uid: 3438
components:
- pos: 27.5,28.5
parent: 2
type: Transform
- - uid: 3437
+ - uid: 3439
components:
- pos: 32.5,28.5
parent: 2
type: Transform
- - uid: 3438
+ - uid: 3440
components:
- pos: -8.5,-41.5
parent: 2
type: Transform
- - uid: 3439
+ - uid: 3441
components:
- pos: -8.5,-40.5
parent: 2
type: Transform
- - uid: 3440
+ - uid: 3442
components:
- pos: -8.5,-39.5
parent: 2
type: Transform
- - uid: 3441
+ - uid: 3443
components:
- pos: -8.5,-38.5
parent: 2
type: Transform
- - uid: 3442
+ - uid: 3444
components:
- pos: -8.5,-37.5
parent: 2
type: Transform
- - uid: 3443
+ - uid: 3445
components:
- pos: -8.5,-36.5
parent: 2
type: Transform
- - uid: 3444
+ - uid: 3446
components:
- pos: -9.5,-36.5
parent: 2
type: Transform
- - uid: 3445
+ - uid: 3447
components:
- pos: -10.5,-36.5
parent: 2
type: Transform
- - uid: 3446
+ - uid: 3448
components:
- pos: -11.5,-36.5
parent: 2
type: Transform
- - uid: 3447
+ - uid: 3449
components:
- pos: -12.5,-36.5
parent: 2
type: Transform
- - uid: 3448
+ - uid: 3450
components:
- pos: -12.5,-37.5
parent: 2
type: Transform
- - uid: 3449
+ - uid: 3451
components:
- pos: -12.5,-38.5
parent: 2
type: Transform
- - uid: 3450
+ - uid: 3452
components:
- pos: -13.5,-38.5
parent: 2
type: Transform
- - uid: 3451
+ - uid: 3453
components:
- pos: -14.5,-38.5
parent: 2
type: Transform
- - uid: 3452
+ - uid: 3454
components:
- pos: -15.5,-38.5
parent: 2
type: Transform
- - uid: 3453
+ - uid: 3455
components:
- pos: -11.5,-35.5
parent: 2
type: Transform
- - uid: 3454
+ - uid: 3456
components:
- pos: -11.5,-34.5
parent: 2
type: Transform
- - uid: 3455
+ - uid: 3457
components:
- pos: -11.5,-33.5
parent: 2
type: Transform
- - uid: 3456
+ - uid: 3458
components:
- pos: -10.5,-33.5
parent: 2
type: Transform
- - uid: 3457
+ - uid: 3459
components:
- pos: -9.5,-33.5
parent: 2
type: Transform
- - uid: 3458
+ - uid: 3460
components:
- pos: -12.5,-39.5
parent: 2
type: Transform
- - uid: 3459
+ - uid: 3461
components:
- pos: -11.5,-39.5
parent: 2
type: Transform
- - uid: 3460
+ - uid: 3462
components:
- pos: 21.5,-47.5
parent: 2
type: Transform
- - uid: 3461
+ - uid: 3463
components:
- pos: -55.5,-27.5
parent: 2
type: Transform
- - uid: 3462
+ - uid: 3464
components:
- pos: -54.5,-27.5
parent: 2
type: Transform
- - uid: 3463
+ - uid: 3465
components:
- pos: -53.5,-27.5
parent: 2
type: Transform
- - uid: 3464
+ - uid: 3466
components:
- pos: 17.5,-49.5
parent: 2
type: Transform
- - uid: 3465
+ - uid: 3467
components:
- pos: 18.5,-51.5
parent: 2
type: Transform
- - uid: 3466
+ - uid: 3468
components:
- pos: 21.5,-48.5
parent: 2
type: Transform
- - uid: 3467
+ - uid: 3469
components:
- pos: 21.5,-49.5
parent: 2
type: Transform
- - uid: 3468
+ - uid: 3470
components:
- pos: 20.5,-50.5
parent: 2
type: Transform
- - uid: 3469
+ - uid: 3471
components:
- pos: 27.5,3.5
parent: 2
type: Transform
- - uid: 3470
+ - uid: 3472
components:
- pos: 18.5,-50.5
parent: 2
type: Transform
- - uid: 3471
+ - uid: 3473
components:
- pos: 17.5,-50.5
parent: 2
type: Transform
- - uid: 3472
+ - uid: 3474
components:
- pos: -13.5,42.5
parent: 2
type: Transform
- - uid: 3473
+ - uid: 3475
components:
- pos: -7.5,-8.5
parent: 2
type: Transform
- - uid: 3474
+ - uid: 3476
components:
- pos: 34.5,18.5
parent: 2
type: Transform
- - uid: 3475
+ - uid: 3477
components:
- pos: 35.5,18.5
parent: 2
type: Transform
- - uid: 3476
+ - uid: 3478
components:
- pos: 46.5,5.5
parent: 2
type: Transform
- - uid: 3477
+ - uid: 3479
components:
- pos: 44.5,5.5
parent: 2
type: Transform
- - uid: 3478
+ - uid: 3480
components:
- pos: 45.5,5.5
parent: 2
type: Transform
- - uid: 3479
+ - uid: 3481
components:
- pos: 59.5,-5.5
parent: 2
type: Transform
- - uid: 3480
+ - uid: 3482
components:
- pos: 61.5,-5.5
parent: 2
type: Transform
- - uid: 3481
+ - uid: 3483
components:
- pos: 58.5,11.5
parent: 2
type: Transform
- - uid: 3482
+ - uid: 3484
components:
- pos: 58.5,12.5
parent: 2
type: Transform
- - uid: 3483
+ - uid: 3485
components:
- pos: 58.5,13.5
parent: 2
type: Transform
- - uid: 3484
+ - uid: 3486
components:
- pos: 58.5,14.5
parent: 2
type: Transform
- - uid: 3485
+ - uid: 3487
components:
- pos: 58.5,15.5
parent: 2
type: Transform
- - uid: 3486
+ - uid: 3488
components:
- pos: 58.5,16.5
parent: 2
type: Transform
- - uid: 3487
+ - uid: 3489
components:
- pos: 57.5,16.5
parent: 2
type: Transform
- - uid: 3488
+ - uid: 3490
components:
- pos: 57.5,17.5
parent: 2
type: Transform
- - uid: 3489
+ - uid: 3491
components:
- pos: 57.5,18.5
parent: 2
type: Transform
- - uid: 3490
+ - uid: 3492
components:
- pos: 56.5,18.5
parent: 2
type: Transform
- - uid: 3491
+ - uid: 3493
components:
- pos: 56.5,19.5
parent: 2
type: Transform
- - uid: 3492
+ - uid: 3494
components:
- pos: 56.5,20.5
parent: 2
type: Transform
- - uid: 3493
+ - uid: 3495
components:
- pos: 55.5,20.5
parent: 2
type: Transform
- - uid: 3494
+ - uid: 3496
components:
- pos: 54.5,20.5
parent: 2
type: Transform
- - uid: 3495
+ - uid: 3497
components:
- pos: 56.5,21.5
parent: 2
type: Transform
- - uid: 3496
+ - uid: 3498
components:
- pos: 58.5,21.5
parent: 2
type: Transform
- - uid: 3497
+ - uid: 3499
components:
- pos: 57.5,21.5
parent: 2
type: Transform
- - uid: 3498
+ - uid: 3500
components:
- pos: 58.5,21.5
parent: 2
type: Transform
- - uid: 3499
+ - uid: 3501
components:
- pos: 53.5,20.5
parent: 2
type: Transform
- - uid: 3500
+ - uid: 3502
components:
- pos: 52.5,20.5
parent: 2
type: Transform
- - uid: 3501
+ - uid: 3503
components:
- pos: 51.5,20.5
parent: 2
type: Transform
- - uid: 3502
+ - uid: 3504
components:
- pos: 50.5,20.5
parent: 2
type: Transform
- - uid: 3503
+ - uid: 3505
components:
- pos: 49.5,20.5
parent: 2
type: Transform
- - uid: 3504
+ - uid: 3506
components:
- pos: 48.5,20.5
parent: 2
type: Transform
- - uid: 3505
+ - uid: 3507
components:
- pos: 47.5,20.5
parent: 2
type: Transform
- - uid: 3506
+ - uid: 3508
components:
- pos: 46.5,20.5
parent: 2
type: Transform
- - uid: 3507
+ - uid: 3509
components:
- pos: 46.5,21.5
parent: 2
type: Transform
- - uid: 3508
+ - uid: 3510
components:
- pos: 49.5,21.5
parent: 2
type: Transform
- - uid: 3509
+ - uid: 3511
components:
- pos: 52.5,21.5
parent: 2
type: Transform
- - uid: 3510
+ - uid: 3512
components:
- pos: 54.5,21.5
parent: 2
type: Transform
- - uid: 3511
+ - uid: 3513
components:
- pos: 59.5,18.5
parent: 2
type: Transform
- - uid: 3512
+ - uid: 3514
components:
- pos: 58.5,18.5
parent: 2
type: Transform
- - uid: 3513
+ - uid: 3515
components:
- pos: 59.5,15.5
parent: 2
type: Transform
- - uid: 3514
+ - uid: 3516
components:
- pos: 60.5,13.5
parent: 2
type: Transform
- - uid: 3515
+ - uid: 3517
components:
- pos: 59.5,13.5
parent: 2
type: Transform
- - uid: 3516
+ - uid: 3518
components:
- pos: 61.5,13.5
parent: 2
type: Transform
- - uid: 3517
+ - uid: 3519
components:
- pos: 57.5,11.5
parent: 2
type: Transform
- - uid: 3518
+ - uid: 3520
components:
- pos: 56.5,11.5
parent: 2
type: Transform
- - uid: 3519
+ - uid: 3521
components:
- pos: 56.5,10.5
parent: 2
type: Transform
- - uid: 3520
+ - uid: 3522
components:
- pos: 56.5,9.5
parent: 2
type: Transform
- - uid: 3521
+ - uid: 3523
components:
- pos: 56.5,8.5
parent: 2
type: Transform
- - uid: 3522
+ - uid: 3524
components:
- pos: 56.5,7.5
parent: 2
type: Transform
- - uid: 3523
+ - uid: 3525
components:
- pos: 56.5,6.5
parent: 2
type: Transform
- - uid: 3524
+ - uid: 3526
components:
- pos: 55.5,6.5
parent: 2
type: Transform
- - uid: 3525
+ - uid: 3527
components:
- pos: 54.5,6.5
parent: 2
type: Transform
- - uid: 3526
+ - uid: 3528
components:
- pos: 53.5,6.5
parent: 2
type: Transform
- - uid: 3527
+ - uid: 3529
components:
- pos: 52.5,6.5
parent: 2
type: Transform
- - uid: 3528
+ - uid: 3530
components:
- pos: 51.5,6.5
parent: 2
type: Transform
- - uid: 3529
+ - uid: 3531
components:
- pos: 50.5,6.5
parent: 2
type: Transform
- - uid: 3530
+ - uid: 3532
components:
- pos: 49.5,6.5
parent: 2
type: Transform
- - uid: 3531
+ - uid: 3533
components:
- pos: 48.5,6.5
parent: 2
type: Transform
- - uid: 3532
+ - uid: 3534
components:
- pos: 47.5,6.5
parent: 2
type: Transform
- - uid: 3533
+ - uid: 3535
components:
- pos: 47.5,7.5
parent: 2
type: Transform
- - uid: 3534
+ - uid: 3536
components:
- pos: 47.5,8.5
parent: 2
type: Transform
- - uid: 3535
+ - uid: 3537
components:
- pos: 48.5,10.5
parent: 2
type: Transform
- - uid: 3536
+ - uid: 3538
components:
- pos: 47.5,10.5
parent: 2
type: Transform
- - uid: 3537
+ - uid: 3539
components:
- pos: 47.5,11.5
parent: 2
type: Transform
- - uid: 3538
+ - uid: 3540
components:
- pos: 47.5,12.5
parent: 2
type: Transform
- - uid: 3539
+ - uid: 3541
components:
- pos: 47.5,13.5
parent: 2
type: Transform
- - uid: 3540
+ - uid: 3542
components:
- pos: 47.5,14.5
parent: 2
type: Transform
- - uid: 3541
+ - uid: 3543
components:
- pos: 47.5,15.5
parent: 2
type: Transform
- - uid: 3542
+ - uid: 3544
components:
- pos: 48.5,13.5
parent: 2
type: Transform
- - uid: 3543
+ - uid: 3545
components:
- pos: 49.5,13.5
parent: 2
type: Transform
- - uid: 3544
+ - uid: 3546
components:
- pos: 49.5,14.5
parent: 2
type: Transform
- - uid: 3545
+ - uid: 3547
components:
- pos: 49.5,15.5
parent: 2
type: Transform
- - uid: 3546
+ - uid: 3548
components:
- pos: 49.5,16.5
parent: 2
type: Transform
- - uid: 3547
+ - uid: 3549
components:
- pos: 50.5,16.5
parent: 2
type: Transform
- - uid: 3548
+ - uid: 3550
components:
- pos: 51.5,16.5
parent: 2
type: Transform
- - uid: 3549
+ - uid: 3551
components:
- pos: 52.5,16.5
parent: 2
type: Transform
- - uid: 3550
+ - uid: 3552
components:
- pos: 53.5,16.5
parent: 2
type: Transform
- - uid: 3551
+ - uid: 3553
components:
- pos: 54.5,16.5
parent: 2
type: Transform
- - uid: 3552
+ - uid: 3554
components:
- pos: 55.5,16.5
parent: 2
type: Transform
- - uid: 3553
+ - uid: 3555
components:
- pos: 50.5,17.5
parent: 2
type: Transform
- - uid: 3554
+ - uid: 3556
components:
- pos: 50.5,18.5
parent: 2
type: Transform
- - uid: 3555
+ - uid: 3557
components:
- pos: 49.5,12.5
parent: 2
type: Transform
- - uid: 3556
+ - uid: 3558
components:
- pos: 50.5,12.5
parent: 2
type: Transform
- - uid: 3557
+ - uid: 3559
components:
- pos: 50.5,11.5
parent: 2
type: Transform
- - uid: 3558
+ - uid: 3560
components:
- pos: 50.5,10.5
parent: 2
type: Transform
- - uid: 3559
+ - uid: 3561
components:
- pos: 50.5,9.5
parent: 2
type: Transform
- - uid: 3560
+ - uid: 3562
components:
- pos: 51.5,9.5
parent: 2
type: Transform
- - uid: 3561
+ - uid: 3563
components:
- pos: 52.5,9.5
parent: 2
type: Transform
- - uid: 3562
+ - uid: 3564
components:
- pos: 53.5,9.5
parent: 2
type: Transform
- - uid: 3563
+ - uid: 3565
components:
- pos: 53.5,10.5
parent: 2
type: Transform
- - uid: 3564
+ - uid: 3566
components:
- pos: 53.5,11.5
parent: 2
type: Transform
- - uid: 3565
+ - uid: 3567
components:
- pos: 53.5,12.5
parent: 2
type: Transform
- - uid: 3566
+ - uid: 3568
components:
- pos: 59.5,11.5
parent: 2
type: Transform
- - uid: 3567
+ - uid: 3569
components:
- pos: 59.5,10.5
parent: 2
type: Transform
- - uid: 3568
+ - uid: 3570
components:
- pos: 59.5,9.5
parent: 2
type: Transform
- - uid: 3569
+ - uid: 3571
components:
- pos: 60.5,9.5
parent: 2
type: Transform
- - uid: 3570
+ - uid: 3572
components:
- pos: 60.5,8.5
parent: 2
type: Transform
- - uid: 3571
+ - uid: 3573
components:
- pos: 60.5,7.5
parent: 2
type: Transform
- - uid: 3572
+ - uid: 3574
components:
- pos: 60.5,6.5
parent: 2
type: Transform
- - uid: 3573
+ - uid: 3575
components:
- pos: 60.5,5.5
parent: 2
type: Transform
- - uid: 3574
+ - uid: 3576
components:
- pos: 60.5,4.5
parent: 2
type: Transform
- - uid: 3575
+ - uid: 3577
components:
- pos: 61.5,4.5
parent: 2
type: Transform
- - uid: 3576
+ - uid: 3578
components:
- pos: 62.5,4.5
parent: 2
type: Transform
- - uid: 3577
+ - uid: 3579
components:
- pos: 62.5,5.5
parent: 2
type: Transform
- - uid: 3578
+ - uid: 3580
components:
- pos: 60.5,-5.5
parent: 2
type: Transform
- - uid: 3579
+ - uid: 3581
components:
- pos: 45.5,20.5
parent: 2
type: Transform
- - uid: 3580
+ - uid: 3582
components:
- pos: 44.5,20.5
parent: 2
type: Transform
- - uid: 3581
+ - uid: 3583
components:
- pos: 43.5,20.5
parent: 2
type: Transform
- - uid: 3582
+ - uid: 3584
components:
- pos: 42.5,20.5
parent: 2
type: Transform
- - uid: 3583
+ - uid: 3585
components:
- pos: 41.5,20.5
parent: 2
type: Transform
- - uid: 3584
+ - uid: 3586
components:
- pos: 40.5,20.5
parent: 2
type: Transform
- - uid: 3585
+ - uid: 3587
components:
- pos: 39.5,20.5
parent: 2
type: Transform
- - uid: 3586
+ - uid: 3588
components:
- pos: 38.5,20.5
parent: 2
type: Transform
- - uid: 3587
+ - uid: 3589
components:
- pos: 37.5,20.5
parent: 2
type: Transform
- - uid: 3588
+ - uid: 3590
components:
- pos: 36.5,20.5
parent: 2
type: Transform
- - uid: 3589
+ - uid: 3591
components:
- pos: 35.5,20.5
parent: 2
type: Transform
- - uid: 3590
+ - uid: 3592
components:
- pos: 35.5,19.5
parent: 2
type: Transform
- - uid: 3591
+ - uid: 3593
components:
- pos: 46.5,11.5
parent: 2
type: Transform
- - uid: 3592
+ - uid: 3594
components:
- pos: 45.5,11.5
parent: 2
type: Transform
- - uid: 3593
+ - uid: 3595
components:
- pos: 43.5,11.5
parent: 2
type: Transform
- - uid: 3594
+ - uid: 3596
components:
- pos: 42.5,11.5
parent: 2
type: Transform
- - uid: 3595
+ - uid: 3597
components:
- pos: 41.5,11.5
parent: 2
type: Transform
- - uid: 3596
+ - uid: 3598
components:
- pos: 40.5,11.5
parent: 2
type: Transform
- - uid: 3597
+ - uid: 3599
components:
- pos: 41.5,10.5
parent: 2
type: Transform
- - uid: 3598
+ - uid: 3600
components:
- pos: 41.5,9.5
parent: 2
type: Transform
- - uid: 3599
+ - uid: 3601
components:
- pos: 41.5,8.5
parent: 2
type: Transform
- - uid: 3600
+ - uid: 3602
components:
- pos: 41.5,7.5
parent: 2
type: Transform
- - uid: 3601
+ - uid: 3603
components:
- pos: 41.5,6.5
parent: 2
type: Transform
- - uid: 3602
+ - uid: 3604
components:
- pos: 41.5,5.5
parent: 2
type: Transform
- - uid: 3603
+ - uid: 3605
components:
- pos: 41.5,4.5
parent: 2
type: Transform
- - uid: 3604
+ - uid: 3606
components:
- pos: 40.5,12.5
parent: 2
type: Transform
- - uid: 3605
+ - uid: 3607
components:
- pos: 40.5,13.5
parent: 2
type: Transform
- - uid: 3606
+ - uid: 3608
components:
- pos: 40.5,14.5
parent: 2
type: Transform
- - uid: 3607
+ - uid: 3609
components:
- pos: 39.5,14.5
parent: 2
type: Transform
- - uid: 3608
+ - uid: 3610
components:
- pos: 38.5,14.5
parent: 2
type: Transform
- - uid: 3609
+ - uid: 3611
components:
- pos: 37.5,14.5
parent: 2
type: Transform
- - uid: 3610
+ - uid: 3612
components:
- pos: 36.5,14.5
parent: 2
type: Transform
- - uid: 3611
+ - uid: 3613
components:
- pos: 35.5,14.5
parent: 2
type: Transform
- - uid: 3612
+ - uid: 3614
components:
- pos: 34.5,14.5
parent: 2
type: Transform
- - uid: 3613
+ - uid: 3615
components:
- pos: 33.5,14.5
parent: 2
type: Transform
- - uid: 3614
+ - uid: 3616
components:
- pos: 32.5,14.5
parent: 2
type: Transform
- - uid: 3615
+ - uid: 3617
components:
- pos: 31.5,14.5
parent: 2
type: Transform
- - uid: 3616
+ - uid: 3618
components:
- pos: 35.5,15.5
parent: 2
type: Transform
- - uid: 3617
+ - uid: 3619
components:
- pos: 35.5,16.5
parent: 2
type: Transform
- - uid: 3618
+ - uid: 3620
components:
- pos: 32.5,13.5
parent: 2
type: Transform
- - uid: 3619
+ - uid: 3621
components:
- pos: 32.5,12.5
parent: 2
type: Transform
- - uid: 3620
+ - uid: 3622
components:
- pos: 32.5,11.5
parent: 2
type: Transform
- - uid: 3621
+ - uid: 3623
components:
- pos: 30.5,14.5
parent: 2
type: Transform
- - uid: 3622
+ - uid: 3624
components:
- pos: 29.5,14.5
parent: 2
type: Transform
- - uid: 3623
+ - uid: 3625
components:
- pos: 29.5,13.5
parent: 2
type: Transform
- - uid: 3624
+ - uid: 3626
components:
- pos: 29.5,12.5
parent: 2
type: Transform
- - uid: 3625
+ - uid: 3627
components:
- pos: 29.5,11.5
parent: 2
type: Transform
- - uid: 3626
+ - uid: 3628
components:
- pos: 35.5,13.5
parent: 2
type: Transform
- - uid: 3627
+ - uid: 3629
components:
- pos: 35.5,12.5
parent: 2
type: Transform
- - uid: 3628
+ - uid: 3630
components:
- pos: 35.5,11.5
parent: 2
type: Transform
- - uid: 3629
+ - uid: 3631
components:
- pos: 38.5,7.5
parent: 2
type: Transform
- - uid: 3630
+ - uid: 3632
components:
- pos: 37.5,7.5
parent: 2
type: Transform
- - uid: 3631
+ - uid: 3633
components:
- pos: 40.5,4.5
parent: 2
type: Transform
- - uid: 3632
+ - uid: 3634
components:
- pos: 39.5,4.5
parent: 2
type: Transform
- - uid: 3633
+ - uid: 3635
components:
- pos: 37.5,4.5
parent: 2
type: Transform
- - uid: 3634
+ - uid: 3636
components:
- pos: 38.5,4.5
parent: 2
type: Transform
- - uid: 3635
+ - uid: 3637
components:
- pos: -12.5,42.5
parent: 2
type: Transform
- - uid: 3636
+ - uid: 3638
components:
- pos: 51.5,11.5
parent: 2
type: Transform
- - uid: 3637
+ - uid: 3639
components:
- pos: 55.5,13.5
parent: 2
type: Transform
- - uid: 3638
+ - uid: 3640
components:
- pos: 55.5,14.5
parent: 2
type: Transform
- - uid: 3639
+ - uid: 3641
components:
- pos: 54.5,14.5
parent: 2
type: Transform
- - uid: 3640
+ - uid: 3642
components:
- pos: 53.5,14.5
parent: 2
type: Transform
- - uid: 3641
+ - uid: 3643
components:
- pos: 52.5,14.5
parent: 2
type: Transform
- - uid: 3642
+ - uid: 3644
components:
- pos: 51.5,14.5
parent: 2
type: Transform
- - uid: 3643
+ - uid: 3645
components:
- pos: 51.5,13.5
parent: 2
type: Transform
- - uid: 3644
+ - uid: 3646
components:
- pos: 51.5,12.5
parent: 2
type: Transform
- - uid: 3645
+ - uid: 3647
components:
- pos: 49.5,10.5
parent: 2
type: Transform
- - uid: 3646
+ - uid: 3648
components:
- pos: 45.5,7.5
parent: 2
type: Transform
- - uid: 3647
+ - uid: 3649
components:
- pos: 42.5,21.5
parent: 2
type: Transform
- - uid: 3648
+ - uid: 3650
components:
- pos: 42.5,22.5
parent: 2
type: Transform
- - uid: 3649
+ - uid: 3651
components:
- pos: 49.5,3.5
parent: 2
type: Transform
- - uid: 3650
+ - uid: 3652
components:
- pos: 49.5,2.5
parent: 2
type: Transform
- - uid: 3651
+ - uid: 3653
components:
- pos: 48.5,2.5
parent: 2
type: Transform
- - uid: 3652
+ - uid: 3654
components:
- pos: 48.5,1.5
parent: 2
type: Transform
- - uid: 3653
+ - uid: 3655
components:
- pos: 47.5,1.5
parent: 2
type: Transform
- - uid: 3654
+ - uid: 3656
components:
- pos: 46.5,1.5
parent: 2
type: Transform
- - uid: 3655
+ - uid: 3657
components:
- pos: 45.5,1.5
parent: 2
type: Transform
- - uid: 3656
+ - uid: 3658
components:
- pos: 44.5,1.5
parent: 2
type: Transform
- - uid: 3657
+ - uid: 3659
components:
- pos: 43.5,1.5
parent: 2
type: Transform
- - uid: 3658
+ - uid: 3660
components:
- pos: 42.5,1.5
parent: 2
type: Transform
- - uid: 3659
+ - uid: 3661
components:
- pos: 42.5,0.5
parent: 2
type: Transform
- - uid: 3660
+ - uid: 3662
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- - uid: 3661
+ - uid: 3663
components:
- pos: 42.5,-1.5
parent: 2
type: Transform
- - uid: 3662
+ - uid: 3664
components:
- pos: 42.5,-2.5
parent: 2
type: Transform
- - uid: 3663
+ - uid: 3665
components:
- pos: 42.5,-3.5
parent: 2
type: Transform
- - uid: 3664
+ - uid: 3666
components:
- pos: 41.5,-1.5
parent: 2
type: Transform
- - uid: 3665
+ - uid: 3667
components:
- pos: 40.5,-1.5
parent: 2
type: Transform
- - uid: 3666
+ - uid: 3668
components:
- pos: 39.5,-1.5
parent: 2
type: Transform
- - uid: 3667
+ - uid: 3669
components:
- pos: 38.5,-1.5
parent: 2
type: Transform
- - uid: 3668
+ - uid: 3670
components:
- pos: 37.5,-1.5
parent: 2
type: Transform
- - uid: 3669
+ - uid: 3671
components:
- pos: 37.5,-2.5
parent: 2
type: Transform
- - uid: 3670
+ - uid: 3672
components:
- pos: 37.5,-3.5
parent: 2
type: Transform
- - uid: 3671
+ - uid: 3673
components:
- pos: 43.5,-1.5
parent: 2
type: Transform
- - uid: 3672
+ - uid: 3674
components:
- pos: 44.5,-1.5
parent: 2
type: Transform
- - uid: 3673
+ - uid: 3675
components:
- pos: 44.5,-2.5
parent: 2
type: Transform
- - uid: 3674
+ - uid: 3676
components:
- pos: 38.5,-3.5
parent: 2
type: Transform
- - uid: 3675
+ - uid: 3677
components:
- pos: 38.5,-4.5
parent: 2
type: Transform
- - uid: 3676
+ - uid: 3678
components:
- pos: 38.5,-5.5
parent: 2
type: Transform
- - uid: 3677
+ - uid: 3679
components:
- pos: 38.5,-6.5
parent: 2
type: Transform
- - uid: 3678
+ - uid: 3680
components:
- pos: 38.5,-8.5
parent: 2
type: Transform
- - uid: 3679
+ - uid: 3681
components:
- pos: 38.5,-7.5
parent: 2
type: Transform
- - uid: 3680
+ - uid: 3682
components:
- pos: 39.5,-8.5
parent: 2
type: Transform
- - uid: 3681
+ - uid: 3683
components:
- pos: 46.5,0.5
parent: 2
type: Transform
- - uid: 3682
+ - uid: 3684
components:
- pos: 46.5,-0.5
parent: 2
type: Transform
- - uid: 3683
+ - uid: 3685
components:
- pos: 46.5,-1.5
parent: 2
type: Transform
- - uid: 3684
+ - uid: 3686
components:
- pos: 47.5,-1.5
parent: 2
type: Transform
- - uid: 3685
+ - uid: 3687
components:
- pos: 47.5,-2.5
parent: 2
type: Transform
- - uid: 3686
+ - uid: 3688
components:
- pos: 41.5,1.5
parent: 2
type: Transform
- - uid: 3687
+ - uid: 3689
components:
- pos: 40.5,1.5
parent: 2
type: Transform
- - uid: 3688
+ - uid: 3690
components:
- pos: 39.5,1.5
parent: 2
type: Transform
- - uid: 3689
+ - uid: 3691
components:
- pos: 38.5,1.5
parent: 2
type: Transform
- - uid: 3690
+ - uid: 3692
components:
- pos: 37.5,1.5
parent: 2
type: Transform
- - uid: 3691
+ - uid: 3693
components:
- pos: 41.5,2.5
parent: 2
type: Transform
- - uid: 3692
+ - uid: 3694
components:
- pos: 48.5,0.5
parent: 2
type: Transform
- - uid: 3693
+ - uid: 3695
components:
- pos: 49.5,0.5
parent: 2
type: Transform
- - uid: 3694
+ - uid: 3696
components:
- pos: 50.5,0.5
parent: 2
type: Transform
- - uid: 3695
+ - uid: 3697
components:
- pos: 51.5,0.5
parent: 2
type: Transform
- - uid: 3696
+ - uid: 3698
components:
- pos: 52.5,0.5
parent: 2
type: Transform
- - uid: 3697
+ - uid: 3699
components:
- pos: 52.5,1.5
parent: 2
type: Transform
- - uid: 3698
+ - uid: 3700
components:
- pos: 52.5,2.5
parent: 2
type: Transform
- - uid: 3699
+ - uid: 3701
components:
- pos: 53.5,0.5
parent: 2
type: Transform
- - uid: 3700
+ - uid: 3702
components:
- pos: 53.5,-0.5
parent: 2
type: Transform
- - uid: 3701
+ - uid: 3703
components:
- pos: 54.5,-0.5
parent: 2
type: Transform
- - uid: 3702
+ - uid: 3704
components:
- pos: 55.5,-0.5
parent: 2
type: Transform
- - uid: 3703
+ - uid: 3705
components:
- pos: 56.5,-0.5
parent: 2
type: Transform
- - uid: 3704
+ - uid: 3706
components:
- pos: 57.5,-0.5
parent: 2
type: Transform
- - uid: 3705
+ - uid: 3707
components:
- pos: 57.5,0.5
parent: 2
type: Transform
- - uid: 3706
+ - uid: 3708
components:
- pos: 57.5,1.5
parent: 2
type: Transform
- - uid: 3707
+ - uid: 3709
components:
- pos: 58.5,1.5
parent: 2
type: Transform
- - uid: 3708
+ - uid: 3710
components:
- pos: 59.5,1.5
parent: 2
type: Transform
- - uid: 3709
+ - uid: 3711
components:
- pos: 60.5,1.5
parent: 2
type: Transform
- - uid: 3710
+ - uid: 3712
components:
- pos: 61.5,1.5
parent: 2
type: Transform
- - uid: 3711
+ - uid: 3713
components:
- pos: 62.5,1.5
parent: 2
type: Transform
- - uid: 3712
+ - uid: 3714
components:
- pos: 56.5,-1.5
parent: 2
type: Transform
- - uid: 3713
+ - uid: 3715
components:
- pos: 56.5,-2.5
parent: 2
type: Transform
- - uid: 3714
+ - uid: 3716
components:
- pos: 56.5,-3.5
parent: 2
type: Transform
- - uid: 3715
+ - uid: 3717
components:
- pos: 51.5,-0.5
parent: 2
type: Transform
- - uid: 3716
+ - uid: 3718
components:
- pos: 51.5,-1.5
parent: 2
type: Transform
- - uid: 3717
+ - uid: 3719
components:
- pos: 51.5,-2.5
parent: 2
type: Transform
- - uid: 3718
+ - uid: 3720
components:
- pos: 52.5,-2.5
parent: 2
type: Transform
- - uid: 3719
+ - uid: 3721
components:
- pos: 52.5,-3.5
parent: 2
type: Transform
- - uid: 3720
+ - uid: 3722
components:
- pos: 52.5,-5.5
parent: 2
type: Transform
- - uid: 3721
+ - uid: 3723
components:
- pos: 59.5,21.5
parent: 2
type: Transform
- - uid: 3722
+ - uid: 3724
components:
- pos: 60.5,21.5
parent: 2
type: Transform
- - uid: 3723
+ - uid: 3725
components:
- pos: 61.5,21.5
parent: 2
type: Transform
- - uid: 3724
+ - uid: 3726
components:
- pos: 67.5,-11.5
parent: 2
type: Transform
- - uid: 3725
+ - uid: 3727
components:
- pos: 68.5,-11.5
parent: 2
type: Transform
- - uid: 3726
+ - uid: 3728
components:
- pos: 66.5,-13.5
parent: 2
type: Transform
- - uid: 3727
+ - uid: 3729
components:
- pos: 68.5,-13.5
parent: 2
type: Transform
- - uid: 3728
+ - uid: 3730
components:
- pos: 66.5,-11.5
parent: 2
type: Transform
- - uid: 3729
+ - uid: 3731
components:
- pos: 58.5,-34.5
parent: 2
type: Transform
- - uid: 3730
+ - uid: 3732
components:
- pos: 63.5,-43.5
parent: 2
type: Transform
- - uid: 3731
+ - uid: 3733
components:
- pos: 45.5,-39.5
parent: 2
type: Transform
- - uid: 3732
+ - uid: 3734
components:
- pos: 44.5,-39.5
parent: 2
type: Transform
- - uid: 3733
+ - uid: 3735
components:
- pos: 54.5,-33.5
parent: 2
type: Transform
- - uid: 3734
+ - uid: 3736
components:
- pos: 65.5,-45.5
parent: 2
type: Transform
- - uid: 3735
+ - uid: 3737
components:
- pos: 65.5,-44.5
parent: 2
type: Transform
- - uid: 3736
+ - uid: 3738
components:
- pos: 60.5,-11.5
parent: 2
type: Transform
- - uid: 3737
+ - uid: 3739
components:
- pos: 59.5,-11.5
parent: 2
type: Transform
- - uid: 3738
+ - uid: 3740
components:
- pos: 58.5,-11.5
parent: 2
type: Transform
- - uid: 3739
+ - uid: 3741
components:
- pos: 57.5,-11.5
parent: 2
type: Transform
- - uid: 3740
+ - uid: 3742
components:
- pos: 56.5,-11.5
parent: 2
type: Transform
- - uid: 3741
+ - uid: 3743
components:
- pos: 55.5,-11.5
parent: 2
type: Transform
- - uid: 3742
+ - uid: 3744
components:
- pos: 54.5,-11.5
parent: 2
type: Transform
- - uid: 3743
+ - uid: 3745
components:
- pos: 53.5,-11.5
parent: 2
type: Transform
- - uid: 3744
+ - uid: 3746
components:
- pos: 52.5,-11.5
parent: 2
type: Transform
- - uid: 3745
+ - uid: 3747
components:
- pos: 53.5,-12.5
parent: 2
type: Transform
- - uid: 3746
+ - uid: 3748
components:
- pos: 53.5,-13.5
parent: 2
type: Transform
- - uid: 3747
+ - uid: 3749
components:
- pos: 51.5,-11.5
parent: 2
type: Transform
- - uid: 3748
+ - uid: 3750
components:
- pos: 51.5,-10.5
parent: 2
type: Transform
- - uid: 3749
+ - uid: 3751
components:
- pos: 51.5,-9.5
parent: 2
type: Transform
- - uid: 3750
+ - uid: 3752
components:
- pos: 51.5,-8.5
parent: 2
type: Transform
- - uid: 3751
+ - uid: 3753
components:
- pos: 50.5,-8.5
parent: 2
type: Transform
- - uid: 3752
+ - uid: 3754
components:
- pos: 49.5,-8.5
parent: 2
type: Transform
- - uid: 3753
+ - uid: 3755
components:
- pos: 48.5,-8.5
parent: 2
type: Transform
- - uid: 3754
+ - uid: 3756
components:
- pos: 47.5,-8.5
parent: 2
type: Transform
- - uid: 3755
+ - uid: 3757
components:
- pos: 46.5,-8.5
parent: 2
type: Transform
- - uid: 3756
+ - uid: 3758
components:
- pos: 47.5,-7.5
parent: 2
type: Transform
- - uid: 3757
+ - uid: 3759
components:
- pos: 46.5,-9.5
parent: 2
type: Transform
- - uid: 3758
+ - uid: 3760
components:
- pos: 46.5,-10.5
parent: 2
type: Transform
- - uid: 3759
+ - uid: 3761
components:
- pos: 46.5,-11.5
parent: 2
type: Transform
- - uid: 3760
+ - uid: 3762
components:
- pos: 45.5,-11.5
parent: 2
type: Transform
- - uid: 3761
+ - uid: 3763
components:
- pos: 44.5,-11.5
parent: 2
type: Transform
- - uid: 3762
+ - uid: 3764
components:
- pos: 43.5,-11.5
parent: 2
type: Transform
- - uid: 3763
+ - uid: 3765
components:
- pos: 42.5,-11.5
parent: 2
type: Transform
- - uid: 3764
+ - uid: 3766
components:
- pos: 41.5,-11.5
parent: 2
type: Transform
- - uid: 3765
+ - uid: 3767
components:
- pos: 40.5,-11.5
parent: 2
type: Transform
- - uid: 3766
+ - uid: 3768
components:
- pos: 40.5,-12.5
parent: 2
type: Transform
- - uid: 3767
+ - uid: 3769
components:
- pos: 39.5,-12.5
parent: 2
type: Transform
- - uid: 3768
+ - uid: 3770
components:
- pos: 38.5,-12.5
parent: 2
type: Transform
- - uid: 3769
+ - uid: 3771
components:
- pos: 38.5,-13.5
parent: 2
type: Transform
- - uid: 3770
+ - uid: 3772
components:
- pos: 38.5,-14.5
parent: 2
type: Transform
- - uid: 3771
+ - uid: 3773
components:
- pos: 38.5,-15.5
parent: 2
type: Transform
- - uid: 3772
+ - uid: 3774
components:
- pos: 39.5,-14.5
parent: 2
type: Transform
- - uid: 3773
+ - uid: 3775
components:
- pos: 40.5,-14.5
parent: 2
type: Transform
- - uid: 3774
+ - uid: 3776
components:
- pos: 41.5,-14.5
parent: 2
type: Transform
- - uid: 3775
+ - uid: 3777
components:
- pos: 42.5,-14.5
parent: 2
type: Transform
- - uid: 3776
+ - uid: 3778
components:
- pos: 43.5,-13.5
parent: 2
type: Transform
- - uid: 3777
+ - uid: 3779
components:
- pos: 42.5,-13.5
parent: 2
type: Transform
- - uid: 3778
+ - uid: 3780
components:
- pos: 38.5,-11.5
parent: 2
type: Transform
- - uid: 3779
+ - uid: 3781
components:
- pos: 38.5,-10.5
parent: 2
type: Transform
- - uid: 3780
+ - uid: 3782
components:
- pos: 37.5,-8.5
parent: 2
type: Transform
- - uid: 3781
+ - uid: 3783
components:
- pos: 36.5,-8.5
parent: 2
type: Transform
- - uid: 3782
+ - uid: 3784
components:
- pos: 35.5,-8.5
parent: 2
type: Transform
- - uid: 3783
+ - uid: 3785
components:
- pos: 33.5,-8.5
parent: 2
type: Transform
- - uid: 3784
+ - uid: 3786
components:
- pos: 34.5,-8.5
parent: 2
type: Transform
- - uid: 3785
+ - uid: 3787
components:
- pos: 35.5,-9.5
parent: 2
type: Transform
- - uid: 3786
+ - uid: 3788
components:
- pos: 44.5,-10.5
parent: 2
type: Transform
- - uid: 3787
+ - uid: 3789
components:
- pos: 58.5,-5.5
parent: 2
type: Transform
- - uid: 3788
+ - uid: 3790
components:
- pos: 57.5,-5.5
parent: 2
type: Transform
- - uid: 3789
+ - uid: 3791
components:
- pos: 56.5,-5.5
parent: 2
type: Transform
- - uid: 3790
+ - uid: 3792
components:
- pos: 55.5,-5.5
parent: 2
type: Transform
- - uid: 3791
+ - uid: 3793
components:
- pos: 54.5,-6.5
parent: 2
type: Transform
- - uid: 3792
+ - uid: 3794
components:
- pos: 54.5,-5.5
parent: 2
type: Transform
- - uid: 3793
+ - uid: 3795
components:
- pos: 59.5,-3.5
parent: 2
type: Transform
- - uid: 3794
+ - uid: 3796
components:
- pos: 59.5,-2.5
parent: 2
type: Transform
- - uid: 3795
+ - uid: 3797
components:
- pos: 60.5,-2.5
parent: 2
type: Transform
- - uid: 3796
+ - uid: 3798
components:
- pos: 61.5,-2.5
parent: 2
type: Transform
- - uid: 3797
+ - uid: 3799
components:
- pos: 62.5,-2.5
parent: 2
type: Transform
- - uid: 3798
+ - uid: 3800
components:
- pos: 63.5,-2.5
parent: 2
type: Transform
- - uid: 3799
+ - uid: 3801
components:
- pos: 62.5,-1.5
parent: 2
type: Transform
- - uid: 3800
+ - uid: 3802
components:
- pos: 60.5,-1.5
parent: 2
type: Transform
- - uid: 3801
+ - uid: 3803
components:
- pos: 63.5,-11.5
parent: 2
type: Transform
- - uid: 3802
+ - uid: 3804
components:
- pos: 64.5,-11.5
parent: 2
type: Transform
- - uid: 3803
+ - uid: 3805
components:
- pos: 62.5,-13.5
parent: 2
type: Transform
- - uid: 3804
+ - uid: 3806
components:
- pos: 63.5,-13.5
parent: 2
type: Transform
- - uid: 3805
+ - uid: 3807
components:
- pos: 64.5,-13.5
parent: 2
type: Transform
- - uid: 3806
+ - uid: 3808
components:
- pos: 62.5,-14.5
parent: 2
type: Transform
- - uid: 3807
+ - uid: 3809
components:
- pos: 62.5,-15.5
parent: 2
type: Transform
- - uid: 3808
+ - uid: 3810
components:
- pos: 62.5,-16.5
parent: 2
type: Transform
- - uid: 3809
+ - uid: 3811
components:
- pos: 62.5,-17.5
parent: 2
type: Transform
- - uid: 3810
+ - uid: 3812
components:
- pos: 62.5,-18.5
parent: 2
type: Transform
- - uid: 3811
+ - uid: 3813
components:
- pos: 62.5,-19.5
parent: 2
type: Transform
- - uid: 3812
+ - uid: 3814
components:
- pos: 62.5,-20.5
parent: 2
type: Transform
- - uid: 3813
+ - uid: 3815
components:
- pos: 62.5,-21.5
parent: 2
type: Transform
- - uid: 3814
+ - uid: 3816
components:
- pos: 62.5,-22.5
parent: 2
type: Transform
- - uid: 3815
+ - uid: 3817
components:
- pos: 62.5,-23.5
parent: 2
type: Transform
- - uid: 3816
+ - uid: 3818
components:
- pos: 62.5,-24.5
parent: 2
type: Transform
- - uid: 3817
+ - uid: 3819
components:
- pos: 62.5,-25.5
parent: 2
type: Transform
- - uid: 3818
+ - uid: 3820
components:
- pos: 62.5,-26.5
parent: 2
type: Transform
- - uid: 3819
+ - uid: 3821
components:
- pos: 62.5,-27.5
parent: 2
type: Transform
- - uid: 3820
+ - uid: 3822
components:
- pos: 62.5,-28.5
parent: 2
type: Transform
- - uid: 3821
+ - uid: 3823
components:
- pos: 64.5,-5.5
parent: 2
type: Transform
- - uid: 3822
+ - uid: 3824
components:
- pos: 63.5,-3.5
parent: 2
type: Transform
- - uid: 3823
+ - uid: 3825
components:
- pos: 64.5,-3.5
parent: 2
type: Transform
- - uid: 3824
+ - uid: 3826
components:
- pos: 57.5,-12.5
parent: 2
type: Transform
- - uid: 3825
+ - uid: 3827
components:
- pos: 57.5,-13.5
parent: 2
type: Transform
- - uid: 3826
+ - uid: 3828
components:
- pos: 45.5,19.5
parent: 2
type: Transform
- - uid: 3827
+ - uid: 3829
components:
- pos: 55.5,-43.5
parent: 2
type: Transform
- - uid: 3828
+ - uid: 3830
components:
- pos: 55.5,-42.5
parent: 2
type: Transform
- - uid: 3829
+ - uid: 3831
components:
- pos: 55.5,-41.5
parent: 2
type: Transform
- - uid: 3830
+ - uid: 3832
components:
- pos: 54.5,-41.5
parent: 2
type: Transform
- - uid: 3831
+ - uid: 3833
components:
- pos: 53.5,-41.5
parent: 2
type: Transform
- - uid: 3832
+ - uid: 3834
components:
- pos: 53.5,-42.5
parent: 2
type: Transform
- - uid: 3833
+ - uid: 3835
components:
- pos: 52.5,-42.5
parent: 2
type: Transform
- - uid: 3834
+ - uid: 3836
components:
- pos: 51.5,-42.5
parent: 2
type: Transform
- - uid: 3835
+ - uid: 3837
components:
- pos: 50.5,-42.5
parent: 2
type: Transform
- - uid: 3836
+ - uid: 3838
components:
- pos: 49.5,-42.5
parent: 2
type: Transform
- - uid: 3837
+ - uid: 3839
components:
- pos: 48.5,-42.5
parent: 2
type: Transform
- - uid: 3838
+ - uid: 3840
components:
- pos: 47.5,-42.5
parent: 2
type: Transform
- - uid: 3839
+ - uid: 3841
components:
- pos: 46.5,-42.5
parent: 2
type: Transform
- - uid: 3840
+ - uid: 3842
components:
- pos: 45.5,-42.5
parent: 2
type: Transform
- - uid: 3841
+ - uid: 3843
components:
- pos: 44.5,-42.5
parent: 2
type: Transform
- - uid: 3842
+ - uid: 3844
components:
- pos: 43.5,-42.5
parent: 2
type: Transform
- - uid: 3843
+ - uid: 3845
components:
- pos: 42.5,-42.5
parent: 2
type: Transform
- - uid: 3844
+ - uid: 3846
components:
- pos: 46.5,-41.5
parent: 2
type: Transform
- - uid: 3845
+ - uid: 3847
components:
- pos: 46.5,-40.5
parent: 2
type: Transform
- - uid: 3846
+ - uid: 3848
components:
- pos: 46.5,-39.5
parent: 2
type: Transform
- - uid: 3847
+ - uid: 3849
components:
- pos: 46.5,-38.5
parent: 2
type: Transform
- - uid: 3848
+ - uid: 3850
components:
- pos: 46.5,-37.5
parent: 2
type: Transform
- - uid: 3849
+ - uid: 3851
components:
- pos: 45.5,-37.5
parent: 2
type: Transform
- - uid: 3850
+ - uid: 3852
components:
- pos: 44.5,-37.5
parent: 2
type: Transform
- - uid: 3851
+ - uid: 3853
components:
- pos: 43.5,-37.5
parent: 2
type: Transform
- - uid: 3852
+ - uid: 3854
components:
- pos: 42.5,-37.5
parent: 2
type: Transform
- - uid: 3853
+ - uid: 3855
components:
- pos: 41.5,-37.5
parent: 2
type: Transform
- - uid: 3854
+ - uid: 3856
components:
- pos: 40.5,-37.5
parent: 2
type: Transform
- - uid: 3855
+ - uid: 3857
components:
- pos: 39.5,-37.5
parent: 2
type: Transform
- - uid: 3856
+ - uid: 3858
components:
- pos: 40.5,-36.5
parent: 2
type: Transform
- - uid: 3857
+ - uid: 3859
components:
- pos: 43.5,-36.5
parent: 2
type: Transform
- - uid: 3858
+ - uid: 3860
components:
- pos: 45.5,-36.5
parent: 2
type: Transform
- - uid: 3859
+ - uid: 3861
components:
- pos: 43.5,-38.5
parent: 2
type: Transform
- - uid: 3860
+ - uid: 3862
components:
- pos: 40.5,-38.5
parent: 2
type: Transform
- - uid: 3861
+ - uid: 3863
components:
- pos: 49.5,-41.5
parent: 2
type: Transform
- - uid: 3862
+ - uid: 3864
components:
- pos: 49.5,-40.5
parent: 2
type: Transform
- - uid: 3863
+ - uid: 3865
components:
- pos: 49.5,-39.5
parent: 2
type: Transform
- - uid: 3864
+ - uid: 3866
components:
- pos: 49.5,-38.5
parent: 2
type: Transform
- - uid: 3865
+ - uid: 3867
components:
- pos: 50.5,-38.5
parent: 2
type: Transform
- - uid: 3866
+ - uid: 3868
components:
- pos: 51.5,-38.5
parent: 2
type: Transform
- - uid: 3867
+ - uid: 3869
components:
- pos: 49.5,-37.5
parent: 2
type: Transform
- - uid: 3868
+ - uid: 3870
components:
- pos: 55.5,-44.5
parent: 2
type: Transform
- - uid: 3869
+ - uid: 3871
components:
- pos: 56.5,-44.5
parent: 2
type: Transform
- - uid: 3870
+ - uid: 3872
components:
- pos: 57.5,-44.5
parent: 2
type: Transform
- - uid: 3871
+ - uid: 3873
components:
- pos: 58.5,-44.5
parent: 2
type: Transform
- - uid: 3872
+ - uid: 3874
components:
- pos: 59.5,-44.5
parent: 2
type: Transform
- - uid: 3873
+ - uid: 3875
components:
- pos: 60.5,-44.5
parent: 2
type: Transform
- - uid: 3874
+ - uid: 3876
components:
- pos: 61.5,-44.5
parent: 2
type: Transform
- - uid: 3875
+ - uid: 3877
components:
- pos: 62.5,-44.5
parent: 2
type: Transform
- - uid: 3876
+ - uid: 3878
components:
- pos: 62.5,-43.5
parent: 2
type: Transform
- - uid: 3877
+ - uid: 3879
components:
- pos: 62.5,-42.5
parent: 2
type: Transform
- - uid: 3878
+ - uid: 3880
components:
- pos: 62.5,-41.5
parent: 2
type: Transform
- - uid: 3879
+ - uid: 3881
components:
- pos: 62.5,-40.5
parent: 2
type: Transform
- - uid: 3880
+ - uid: 3882
components:
- pos: 62.5,-39.5
parent: 2
type: Transform
- - uid: 3881
+ - uid: 3883
components:
- pos: 62.5,-37.5
parent: 2
type: Transform
- - uid: 3882
+ - uid: 3884
components:
- pos: 62.5,-36.5
parent: 2
type: Transform
- - uid: 3883
+ - uid: 3885
components:
- pos: 62.5,-35.5
parent: 2
type: Transform
- - uid: 3884
+ - uid: 3886
components:
- pos: 62.5,-34.5
parent: 2
type: Transform
- - uid: 3885
+ - uid: 3887
components:
- pos: 63.5,-34.5
parent: 2
type: Transform
- - uid: 3886
+ - uid: 3888
components:
- pos: 64.5,-34.5
parent: 2
type: Transform
- - uid: 3887
+ - uid: 3889
components:
- pos: 65.5,-34.5
parent: 2
type: Transform
- - uid: 3888
+ - uid: 3890
components:
- pos: 62.5,-33.5
parent: 2
type: Transform
- - uid: 3889
+ - uid: 3891
components:
- pos: 62.5,-32.5
parent: 2
type: Transform
- - uid: 3890
+ - uid: 3892
components:
- pos: 62.5,-31.5
parent: 2
type: Transform
- - uid: 3891
+ - uid: 3893
components:
- pos: 61.5,-34.5
parent: 2
type: Transform
- - uid: 3892
+ - uid: 3894
components:
- pos: 60.5,-34.5
parent: 2
type: Transform
- - uid: 3893
+ - uid: 3895
components:
- pos: 59.5,-34.5
parent: 2
type: Transform
- - uid: 3894
+ - uid: 3896
components:
- pos: 64.5,-35.5
parent: 2
type: Transform
- - uid: 3895
+ - uid: 3897
components:
- pos: 60.5,-35.5
parent: 2
type: Transform
- - uid: 3896
+ - uid: 3898
components:
- pos: 63.5,-33.5
parent: 2
type: Transform
- - uid: 3897
+ - uid: 3899
components:
- pos: 62.5,-45.5
parent: 2
type: Transform
- - uid: 3898
+ - uid: 3900
components:
- pos: 62.5,-46.5
parent: 2
type: Transform
- - uid: 3899
+ - uid: 3901
components:
- pos: 62.5,-47.5
parent: 2
type: Transform
- - uid: 3900
+ - uid: 3902
components:
- pos: 62.5,-48.5
parent: 2
type: Transform
- - uid: 3901
+ - uid: 3903
components:
- pos: 62.5,-49.5
parent: 2
type: Transform
- - uid: 3902
+ - uid: 3904
components:
- pos: 62.5,-50.5
parent: 2
type: Transform
- - uid: 3903
+ - uid: 3905
components:
- pos: 62.5,-51.5
parent: 2
type: Transform
- - uid: 3904
+ - uid: 3906
components:
- pos: 62.5,-52.5
parent: 2
type: Transform
- - uid: 3905
+ - uid: 3907
components:
- pos: 62.5,-53.5
parent: 2
type: Transform
- - uid: 3906
+ - uid: 3908
components:
- pos: 62.5,-54.5
parent: 2
type: Transform
- - uid: 3907
+ - uid: 3909
components:
- pos: 63.5,-52.5
parent: 2
type: Transform
- - uid: 3908
+ - uid: 3910
components:
- pos: 64.5,-52.5
parent: 2
type: Transform
- - uid: 3909
+ - uid: 3911
components:
- pos: 61.5,-52.5
parent: 2
type: Transform
- - uid: 3910
+ - uid: 3912
components:
- pos: 60.5,-52.5
parent: 2
type: Transform
- - uid: 3911
+ - uid: 3913
components:
- pos: 63.5,-46.5
parent: 2
type: Transform
- - uid: 3912
+ - uid: 3914
components:
- pos: 64.5,-46.5
parent: 2
type: Transform
- - uid: 3913
+ - uid: 3915
components:
- pos: 65.5,-46.5
parent: 2
type: Transform
- - uid: 3914
+ - uid: 3916
components:
- pos: 66.5,-46.5
parent: 2
type: Transform
- - uid: 3915
+ - uid: 3917
components:
- pos: 68.5,-46.5
parent: 2
type: Transform
- - uid: 3916
+ - uid: 3918
components:
- pos: 69.5,-46.5
parent: 2
type: Transform
- - uid: 3917
+ - uid: 3919
components:
- pos: 70.5,-46.5
parent: 2
type: Transform
- - uid: 3918
+ - uid: 3920
components:
- pos: 71.5,-46.5
parent: 2
type: Transform
- - uid: 3919
+ - uid: 3921
components:
- pos: 72.5,-46.5
parent: 2
type: Transform
- - uid: 3920
+ - uid: 3922
components:
- pos: 69.5,-47.5
parent: 2
type: Transform
- - uid: 3921
+ - uid: 3923
components:
- pos: 69.5,-48.5
parent: 2
type: Transform
- - uid: 3922
+ - uid: 3924
components:
- pos: 69.5,-49.5
parent: 2
type: Transform
- - uid: 3923
+ - uid: 3925
components:
- pos: 69.5,-45.5
parent: 2
type: Transform
- - uid: 3924
+ - uid: 3926
components:
- pos: 69.5,-44.5
parent: 2
type: Transform
- - uid: 3925
+ - uid: 3927
components:
- pos: 71.5,-45.5
parent: 2
type: Transform
- - uid: 3926
+ - uid: 3928
components:
- pos: 71.5,-47.5
parent: 2
type: Transform
- - uid: 3927
+ - uid: 3929
components:
- pos: 73.5,-46.5
parent: 2
type: Transform
- - uid: 3928
+ - uid: 3930
components:
- pos: 73.5,-47.5
parent: 2
type: Transform
- - uid: 3929
+ - uid: 3931
components:
- pos: 73.5,-45.5
parent: 2
type: Transform
- - uid: 3930
+ - uid: 3932
components:
- pos: 49.5,-43.5
parent: 2
type: Transform
- - uid: 3931
+ - uid: 3933
components:
- pos: 49.5,-44.5
parent: 2
type: Transform
- - uid: 3932
+ - uid: 3934
components:
- pos: 49.5,-46.5
parent: 2
type: Transform
- - uid: 3933
+ - uid: 3935
components:
- pos: 49.5,-47.5
parent: 2
type: Transform
- - uid: 3934
+ - uid: 3936
components:
- pos: 49.5,-49.5
parent: 2
type: Transform
- - uid: 3935
+ - uid: 3937
components:
- pos: 49.5,-50.5
parent: 2
type: Transform
- - uid: 3936
+ - uid: 3938
components:
- pos: 49.5,-51.5
parent: 2
type: Transform
- - uid: 3937
+ - uid: 3939
components:
- pos: 49.5,-52.5
parent: 2
type: Transform
- - uid: 3938
+ - uid: 3940
components:
- pos: 49.5,-53.5
parent: 2
type: Transform
- - uid: 3939
+ - uid: 3941
components:
- pos: 49.5,-54.5
parent: 2
type: Transform
- - uid: 3940
+ - uid: 3942
components:
- pos: 48.5,-45.5
parent: 2
type: Transform
- - uid: 3941
+ - uid: 3943
components:
- pos: 47.5,-45.5
parent: 2
type: Transform
- - uid: 3942
+ - uid: 3944
components:
- pos: 46.5,-45.5
parent: 2
type: Transform
- - uid: 3943
+ - uid: 3945
components:
- pos: 45.5,-45.5
parent: 2
type: Transform
- - uid: 3944
+ - uid: 3946
components:
- pos: 45.5,-46.5
parent: 2
type: Transform
- - uid: 3945
+ - uid: 3947
components:
- pos: 45.5,-47.5
parent: 2
type: Transform
- - uid: 3946
+ - uid: 3948
components:
- pos: 45.5,-48.5
parent: 2
type: Transform
- - uid: 3947
+ - uid: 3949
components:
- pos: 44.5,-48.5
parent: 2
type: Transform
- - uid: 3948
+ - uid: 3950
components:
- pos: 43.5,-48.5
parent: 2
type: Transform
- - uid: 3949
+ - uid: 3951
components:
- pos: 43.5,-47.5
parent: 2
type: Transform
- - uid: 3950
+ - uid: 3952
components:
- pos: 43.5,-46.5
parent: 2
type: Transform
- - uid: 3951
+ - uid: 3953
components:
- pos: 42.5,-46.5
parent: 2
type: Transform
- - uid: 3952
+ - uid: 3954
components:
- pos: 41.5,-46.5
parent: 2
type: Transform
- - uid: 3953
+ - uid: 3955
components:
- pos: 40.5,-46.5
parent: 2
type: Transform
- - uid: 3954
+ - uid: 3956
components:
- pos: 39.5,-46.5
parent: 2
type: Transform
- - uid: 3955
+ - uid: 3957
components:
- pos: 41.5,-42.5
parent: 2
type: Transform
- - uid: 3956
+ - uid: 3958
components:
- pos: 40.5,-42.5
parent: 2
type: Transform
- - uid: 3957
+ - uid: 3959
components:
- pos: 39.5,-42.5
parent: 2
type: Transform
- - uid: 3958
+ - uid: 3960
components:
- pos: 38.5,-42.5
parent: 2
type: Transform
- - uid: 3959
+ - uid: 3961
components:
- pos: 37.5,-42.5
parent: 2
type: Transform
- - uid: 3960
+ - uid: 3962
components:
- pos: 59.5,-33.5
parent: 2
type: Transform
- - uid: 3961
+ - uid: 3963
components:
- pos: 55.5,-63.5
parent: 2
type: Transform
- - uid: 3962
+ - uid: 3964
components:
- pos: 64.5,-43.5
parent: 2
type: Transform
- - uid: 3963
+ - uid: 3965
components:
- pos: -15.5,-18.5
parent: 2
type: Transform
- - uid: 3964
+ - uid: 3966
components:
- pos: -21.5,-59.5
parent: 2
type: Transform
- - uid: 3965
+ - uid: 3967
components:
- pos: 30.5,-47.5
parent: 2
type: Transform
- - uid: 3966
+ - uid: 3968
components:
- pos: 31.5,-47.5
parent: 2
type: Transform
- - uid: 3967
+ - uid: 3969
components:
- pos: 32.5,-47.5
parent: 2
type: Transform
- - uid: 3968
+ - uid: 3970
components:
- pos: 33.5,-47.5
parent: 2
type: Transform
- - uid: 3969
+ - uid: 3971
components:
- pos: 31.5,-46.5
parent: 2
type: Transform
- - uid: 3970
+ - uid: 3972
components:
- pos: 31.5,-46.5
parent: 2
type: Transform
- - uid: 3971
+ - uid: 3973
components:
- pos: 31.5,-45.5
parent: 2
type: Transform
- - uid: 3972
+ - uid: 3974
components:
- pos: 29.5,-48.5
parent: 2
type: Transform
- - uid: 3973
+ - uid: 3975
components:
- pos: 29.5,-49.5
parent: 2
type: Transform
- - uid: 3974
+ - uid: 3976
components:
- pos: 30.5,-49.5
parent: 2
type: Transform
- - uid: 3975
+ - uid: 3977
components:
- pos: 31.5,-49.5
parent: 2
type: Transform
- - uid: 3976
+ - uid: 3978
components:
- pos: 31.5,-50.5
parent: 2
type: Transform
- - uid: 3977
+ - uid: 3979
components:
- pos: 31.5,-51.5
parent: 2
type: Transform
- - uid: 3978
+ - uid: 3980
components:
- pos: 31.5,-52.5
parent: 2
type: Transform
- - uid: 3979
+ - uid: 3981
components:
- pos: 30.5,-51.5
parent: 2
type: Transform
- - uid: 3980
+ - uid: 3982
components:
- pos: 32.5,-51.5
parent: 2
type: Transform
- - uid: 3981
+ - uid: 3983
components:
- pos: 31.5,-53.5
parent: 2
type: Transform
- - uid: 3982
+ - uid: 3984
components:
- pos: 31.5,-54.5
parent: 2
type: Transform
- - uid: 3983
+ - uid: 3985
components:
- pos: 31.5,-56.5
parent: 2
type: Transform
- - uid: 3984
+ - uid: 3986
components:
- pos: 31.5,-55.5
parent: 2
type: Transform
- - uid: 3985
+ - uid: 3987
components:
- pos: 30.5,-54.5
parent: 2
type: Transform
- - uid: 3986
+ - uid: 3988
components:
- pos: 29.5,-54.5
parent: 2
type: Transform
- - uid: 3987
+ - uid: 3989
components:
- pos: 32.5,-54.5
parent: 2
type: Transform
- - uid: 3988
+ - uid: 3990
components:
- pos: 33.5,-54.5
parent: 2
type: Transform
- - uid: 3989
+ - uid: 3991
components:
- pos: 30.5,-45.5
parent: 2
type: Transform
- - uid: 3990
+ - uid: 3992
components:
- pos: 32.5,-45.5
parent: 2
type: Transform
- - uid: 3991
+ - uid: 3993
components:
- pos: 29.5,-45.5
parent: 2
type: Transform
- - uid: 3992
+ - uid: 3994
components:
- pos: 33.5,-45.5
parent: 2
type: Transform
- - uid: 3993
+ - uid: 3995
components:
- pos: 48.5,-54.5
parent: 2
type: Transform
- - uid: 3994
+ - uid: 3996
components:
- pos: 47.5,-54.5
parent: 2
type: Transform
- - uid: 3995
+ - uid: 3997
components:
- pos: 46.5,-54.5
parent: 2
type: Transform
- - uid: 3996
+ - uid: 3998
components:
- pos: 49.5,-55.5
parent: 2
type: Transform
- - uid: 3997
+ - uid: 3999
components:
- pos: 49.5,-56.5
parent: 2
type: Transform
- - uid: 3998
+ - uid: 4000
components:
- pos: 49.5,-57.5
parent: 2
type: Transform
- - uid: 3999
+ - uid: 4001
components:
- pos: 49.5,-58.5
parent: 2
type: Transform
- - uid: 4000
+ - uid: 4002
components:
- pos: 49.5,-59.5
parent: 2
type: Transform
- - uid: 4001
+ - uid: 4003
components:
- pos: 49.5,-60.5
parent: 2
type: Transform
- - uid: 4002
+ - uid: 4004
components:
- pos: 50.5,-60.5
parent: 2
type: Transform
- - uid: 4003
+ - uid: 4005
components:
- pos: 50.5,-53.5
parent: 2
type: Transform
- - uid: 4004
+ - uid: 4006
components:
- pos: 51.5,-53.5
parent: 2
type: Transform
- - uid: 4005
+ - uid: 4007
components:
- pos: 52.5,-53.5
parent: 2
type: Transform
- - uid: 4006
+ - uid: 4008
components:
- pos: 52.5,-52.5
parent: 2
type: Transform
- - uid: 4007
+ - uid: 4009
components:
- pos: 52.5,-51.5
parent: 2
type: Transform
- - uid: 4008
+ - uid: 4010
components:
- pos: 50.5,-50.5
parent: 2
type: Transform
- - uid: 4009
+ - uid: 4011
components:
- pos: 48.5,-57.5
parent: 2
type: Transform
- - uid: 4010
+ - uid: 4012
components:
- pos: 47.5,-57.5
parent: 2
type: Transform
- - uid: 4011
+ - uid: 4013
components:
- pos: 46.5,-57.5
parent: 2
type: Transform
- - uid: 4012
+ - uid: 4014
components:
- pos: 45.5,-57.5
parent: 2
type: Transform
- - uid: 4013
+ - uid: 4015
components:
- pos: 51.5,-54.5
parent: 2
type: Transform
- - uid: 4014
+ - uid: 4016
components:
- pos: 51.5,-55.5
parent: 2
type: Transform
- - uid: 4015
+ - uid: 4017
components:
- pos: 51.5,-56.5
parent: 2
type: Transform
- - uid: 4016
+ - uid: 4018
components:
- pos: 49.5,-48.5
parent: 2
type: Transform
- - uid: 4017
+ - uid: 4019
components:
- pos: 32.5,15.5
parent: 2
type: Transform
- - uid: 4018
+ - uid: 4020
components:
- pos: -20.5,0.5
parent: 2
type: Transform
- - uid: 4019
+ - uid: 4021
components:
- pos: -21.5,0.5
parent: 2
type: Transform
- - uid: 4020
+ - uid: 4022
components:
- pos: -21.5,1.5
parent: 2
type: Transform
- - uid: 4021
+ - uid: 4023
components:
- pos: -20.5,1.5
parent: 2
type: Transform
- - uid: 4022
+ - uid: 4024
components:
- pos: -19.5,1.5
parent: 2
type: Transform
- - uid: 4023
+ - uid: 4025
components:
- pos: -19.5,2.5
parent: 2
type: Transform
- - uid: 4024
+ - uid: 4026
components:
- pos: -18.5,2.5
parent: 2
type: Transform
- - uid: 4025
+ - uid: 4027
components:
- pos: -17.5,2.5
parent: 2
type: Transform
- - uid: 4026
+ - uid: 4028
components:
- pos: -17.5,3.5
parent: 2
type: Transform
- - uid: 4027
+ - uid: 4029
components:
- pos: -19.5,-1.5
parent: 2
type: Transform
- - uid: 4028
+ - uid: 4030
components:
- pos: -19.5,-2.5
parent: 2
type: Transform
- - uid: 4029
+ - uid: 4031
components:
- pos: -19.5,-0.5
parent: 2
type: Transform
- - uid: 4030
+ - uid: 4032
components:
- pos: -20.5,-0.5
parent: 2
type: Transform
- - uid: 4031
+ - uid: 4033
components:
- pos: -21.5,2.5
parent: 2
type: Transform
- - uid: 4032
+ - uid: 4034
components:
- pos: -21.5,3.5
parent: 2
type: Transform
- - uid: 4033
+ - uid: 4035
components:
- pos: -18.5,-0.5
parent: 2
type: Transform
- - uid: 4034
+ - uid: 4036
components:
- pos: 57.5,6.5
parent: 2
type: Transform
- - uid: 4035
+ - uid: 4037
components:
- pos: 18.5,-81.5
parent: 2
type: Transform
- - uid: 4036
+ - uid: 4038
components:
- pos: -29.5,-9.5
parent: 2
type: Transform
- - uid: 4037
+ - uid: 4039
components:
- pos: -29.5,-10.5
parent: 2
type: Transform
- - uid: 4038
+ - uid: 4040
components:
- pos: -29.5,-11.5
parent: 2
type: Transform
- - uid: 4039
+ - uid: 4041
components:
- pos: -29.5,-12.5
parent: 2
type: Transform
- - uid: 4040
+ - uid: 4042
components:
- pos: -28.5,-12.5
parent: 2
type: Transform
- - uid: 4041
+ - uid: 4043
components:
- pos: -27.5,-12.5
parent: 2
type: Transform
- - uid: 4042
+ - uid: 4044
components:
- pos: -26.5,-12.5
parent: 2
type: Transform
- - uid: 4043
+ - uid: 4045
components:
- pos: -25.5,-12.5
parent: 2
type: Transform
- - uid: 4044
+ - uid: 4046
components:
- pos: -24.5,-12.5
parent: 2
type: Transform
- - uid: 4045
+ - uid: 4047
components:
- pos: -23.5,-12.5
parent: 2
type: Transform
- - uid: 4046
+ - uid: 4048
components:
- pos: -22.5,-12.5
parent: 2
type: Transform
- - uid: 4047
+ - uid: 4049
components:
- pos: -21.5,-12.5
parent: 2
type: Transform
- - uid: 4048
+ - uid: 4050
components:
- pos: -20.5,-12.5
parent: 2
type: Transform
- - uid: 4049
+ - uid: 4051
components:
- pos: -19.5,-12.5
parent: 2
type: Transform
- - uid: 4050
+ - uid: 4052
components:
- pos: -24.5,-11.5
parent: 2
type: Transform
- - uid: 4051
+ - uid: 4053
components:
- pos: -24.5,-10.5
parent: 2
type: Transform
- - uid: 4052
+ - uid: 4054
components:
- pos: -24.5,-9.5
parent: 2
type: Transform
- - uid: 4053
+ - uid: 4055
components:
- pos: -19.5,-13.5
parent: 2
type: Transform
- - uid: 4054
+ - uid: 4056
components:
- pos: -19.5,-14.5
parent: 2
type: Transform
- - uid: 4055
+ - uid: 4057
components:
- pos: -19.5,-15.5
parent: 2
type: Transform
- - uid: 4056
+ - uid: 4058
components:
- pos: -19.5,-16.5
parent: 2
type: Transform
- - uid: 4057
+ - uid: 4059
components:
- pos: -19.5,-17.5
parent: 2
type: Transform
- - uid: 4058
+ - uid: 4060
components:
- pos: -19.5,-18.5
parent: 2
type: Transform
- - uid: 4059
+ - uid: 4061
components:
- pos: -19.5,-19.5
parent: 2
type: Transform
- - uid: 4060
+ - uid: 4062
components:
- pos: -19.5,-20.5
parent: 2
type: Transform
- - uid: 4061
+ - uid: 4063
components:
- pos: -19.5,-21.5
parent: 2
type: Transform
- - uid: 4062
+ - uid: 4064
components:
- pos: -19.5,-22.5
parent: 2
type: Transform
- - uid: 4063
+ - uid: 4065
components:
- pos: -20.5,-17.5
parent: 2
type: Transform
- - uid: 4064
+ - uid: 4066
components:
- pos: -21.5,-17.5
parent: 2
type: Transform
- - uid: 4065
+ - uid: 4067
components:
- pos: -23.5,-17.5
parent: 2
type: Transform
- - uid: 4066
+ - uid: 4068
components:
- pos: -24.5,-17.5
parent: 2
type: Transform
- - uid: 4067
+ - uid: 4069
components:
- pos: -25.5,-17.5
parent: 2
type: Transform
- - uid: 4068
+ - uid: 4070
components:
- pos: -26.5,-17.5
parent: 2
type: Transform
- - uid: 4069
+ - uid: 4071
components:
- pos: -27.5,-17.5
parent: 2
type: Transform
- - uid: 4070
+ - uid: 4072
components:
- pos: -28.5,-17.5
parent: 2
type: Transform
- - uid: 4071
+ - uid: 4073
components:
- pos: -29.5,-17.5
parent: 2
type: Transform
- - uid: 4072
+ - uid: 4074
components:
- pos: -20.5,-22.5
parent: 2
type: Transform
- - uid: 4073
+ - uid: 4075
components:
- pos: -21.5,-22.5
parent: 2
type: Transform
- - uid: 4074
+ - uid: 4076
components:
- pos: -22.5,-22.5
parent: 2
type: Transform
- - uid: 4075
+ - uid: 4077
components:
- pos: -23.5,-22.5
parent: 2
type: Transform
- - uid: 4076
+ - uid: 4078
components:
- pos: -24.5,-22.5
parent: 2
type: Transform
- - uid: 4077
+ - uid: 4079
components:
- pos: -25.5,-22.5
parent: 2
type: Transform
- - uid: 4078
+ - uid: 4080
components:
- pos: -26.5,-22.5
parent: 2
type: Transform
- - uid: 4079
+ - uid: 4081
components:
- pos: -27.5,-22.5
parent: 2
type: Transform
- - uid: 4080
+ - uid: 4082
components:
- pos: -28.5,-22.5
parent: 2
type: Transform
- - uid: 4081
+ - uid: 4083
components:
- pos: -29.5,-22.5
parent: 2
type: Transform
- - uid: 4082
+ - uid: 4084
components:
- pos: -19.5,-23.5
parent: 2
type: Transform
- - uid: 4083
+ - uid: 4085
components:
- pos: -19.5,-11.5
parent: 2
type: Transform
- - uid: 4084
+ - uid: 4086
components:
- pos: -19.5,-10.5
parent: 2
type: Transform
- - uid: 4085
+ - uid: 4087
components:
- pos: -19.5,-9.5
parent: 2
type: Transform
- - uid: 4086
+ - uid: 4088
components:
- pos: -19.5,-8.5
parent: 2
type: Transform
- - uid: 4087
+ - uid: 4089
components:
- pos: -19.5,-6.5
parent: 2
type: Transform
- - uid: 4088
+ - uid: 4090
components:
- pos: -19.5,-5.5
parent: 2
type: Transform
- - uid: 4089
+ - uid: 4091
components:
- pos: -18.5,-5.5
parent: 2
type: Transform
- - uid: 4090
+ - uid: 4092
components:
- pos: -17.5,-5.5
parent: 2
type: Transform
- - uid: 4091
+ - uid: 4093
components:
- pos: -16.5,-5.5
parent: 2
type: Transform
- - uid: 4092
+ - uid: 4094
components:
- pos: -15.5,-5.5
parent: 2
type: Transform
- - uid: 4093
+ - uid: 4095
components:
- pos: -14.5,-5.5
parent: 2
type: Transform
- - uid: 4094
+ - uid: 4096
components:
- pos: -13.5,-5.5
parent: 2
type: Transform
- - uid: 4095
+ - uid: 4097
components:
- pos: -13.5,-4.5
parent: 2
type: Transform
- - uid: 4096
+ - uid: 4098
components:
- pos: -13.5,3.5
parent: 2
type: Transform
- - uid: 4097
+ - uid: 4099
components:
- pos: -19.5,7.5
parent: 2
type: Transform
- - uid: 4098
+ - uid: 4100
components:
- pos: -20.5,7.5
parent: 2
type: Transform
- - uid: 4099
+ - uid: 4101
components:
- pos: -21.5,7.5
parent: 2
type: Transform
- - uid: 4100
+ - uid: 4102
components:
- pos: -22.5,7.5
parent: 2
type: Transform
- - uid: 4101
+ - uid: 4103
components:
- pos: -20.5,-5.5
parent: 2
type: Transform
- - uid: 4102
+ - uid: 4104
components:
- pos: -21.5,-5.5
parent: 2
type: Transform
- - uid: 4103
+ - uid: 4105
components:
- pos: -22.5,-5.5
parent: 2
type: Transform
- - uid: 4104
+ - uid: 4106
components:
- pos: -23.5,-5.5
parent: 2
type: Transform
- - uid: 4105
+ - uid: 4107
components:
- pos: -24.5,-5.5
parent: 2
type: Transform
- - uid: 4106
+ - uid: 4108
components:
- pos: -25.5,-5.5
parent: 2
type: Transform
- - uid: 4107
+ - uid: 4109
components:
- pos: -25.5,-4.5
parent: 2
type: Transform
- - uid: 4108
+ - uid: 4110
components:
- pos: -25.5,-3.5
parent: 2
type: Transform
- - uid: 4109
+ - uid: 4111
components:
- pos: -25.5,-2.5
parent: 2
type: Transform
- - uid: 4110
+ - uid: 4112
components:
- pos: -25.5,-1.5
parent: 2
type: Transform
- - uid: 4111
+ - uid: 4113
components:
- pos: -25.5,-0.5
parent: 2
type: Transform
- - uid: 4112
+ - uid: 4114
components:
- pos: -25.5,0.5
parent: 2
type: Transform
- - uid: 4113
+ - uid: 4115
components:
- pos: -24.5,-9.5
parent: 2
type: Transform
- - uid: 4114
+ - uid: 4116
components:
- pos: -23.5,-9.5
parent: 2
type: Transform
- - uid: 4115
+ - uid: 4117
components:
- pos: -29.5,-13.5
parent: 2
type: Transform
- - uid: 4116
+ - uid: 4118
components:
- pos: -29.5,-14.5
parent: 2
type: Transform
- - uid: 4117
+ - uid: 4119
components:
- pos: -29.5,-8.5
parent: 2
type: Transform
- - uid: 4118
+ - uid: 4120
components:
- pos: 45.5,18.5
parent: 2
type: Transform
- - uid: 4119
+ - uid: 4121
components:
- pos: 30.5,-59.5
parent: 2
type: Transform
- - uid: 4120
+ - uid: 4122
components:
- pos: 31.5,-59.5
parent: 2
type: Transform
- - uid: 4121
+ - uid: 4123
components:
- pos: 32.5,-59.5
parent: 2
type: Transform
- - uid: 4122
+ - uid: 4124
components:
- pos: 33.5,-59.5
parent: 2
type: Transform
- - uid: 4123
+ - uid: 4125
components:
- pos: 34.5,-59.5
parent: 2
type: Transform
- - uid: 4124
+ - uid: 4126
components:
- pos: 38.5,-36.5
parent: 2
type: Transform
- - uid: 4125
+ - uid: 4127
components:
- pos: 38.5,-37.5
parent: 2
type: Transform
- - uid: 4126
+ - uid: 4128
components:
- pos: 51.5,-57.5
parent: 2
type: Transform
- - uid: 4127
+ - uid: 4129
components:
- pos: 51.5,-58.5
parent: 2
type: Transform
- - uid: 4128
+ - uid: 4130
components:
- pos: 52.5,-58.5
parent: 2
type: Transform
- - uid: 4129
+ - uid: 4131
components:
- pos: 53.5,-58.5
parent: 2
type: Transform
- - uid: 4130
+ - uid: 4132
components:
- pos: 54.5,-58.5
parent: 2
type: Transform
- - uid: 4131
+ - uid: 4133
components:
- pos: 55.5,-58.5
parent: 2
type: Transform
- - uid: 4132
+ - uid: 4134
components:
- pos: 55.5,-59.5
parent: 2
type: Transform
- - uid: 4133
+ - uid: 4135
components:
- pos: 55.5,-60.5
parent: 2
type: Transform
- - uid: 4134
+ - uid: 4136
components:
- pos: 56.5,-60.5
parent: 2
type: Transform
- - uid: 4135
+ - uid: 4137
components:
- pos: -35.5,-39.5
parent: 2
type: Transform
- - uid: 4136
+ - uid: 4138
components:
- pos: 29.5,-72.5
parent: 2
type: Transform
- - uid: 4137
+ - uid: 4139
components:
- pos: 47.5,-82.5
parent: 2
type: Transform
- - uid: 4138
+ - uid: 4140
components:
- pos: 37.5,-57.5
parent: 2
type: Transform
- - uid: 4139
+ - uid: 4141
components:
- pos: 37.5,-58.5
parent: 2
type: Transform
- - uid: 4140
+ - uid: 4142
components:
- pos: 37.5,-59.5
parent: 2
type: Transform
- - uid: 4141
+ - uid: 4143
components:
- pos: 38.5,-59.5
parent: 2
type: Transform
- - uid: 4142
+ - uid: 4144
components:
- pos: 39.5,-59.5
parent: 2
type: Transform
- - uid: 4143
+ - uid: 4145
components:
- pos: 40.5,-59.5
parent: 2
type: Transform
- - uid: 4144
+ - uid: 4146
components:
- pos: 40.5,-59.5
parent: 2
type: Transform
- - uid: 4145
+ - uid: 4147
components:
- pos: 40.5,-60.5
parent: 2
type: Transform
- - uid: 4146
+ - uid: 4148
components:
- pos: 40.5,-61.5
parent: 2
type: Transform
- - uid: 4147
+ - uid: 4149
components:
- pos: 40.5,-62.5
parent: 2
type: Transform
- - uid: 4148
+ - uid: 4150
components:
- pos: 40.5,-63.5
parent: 2
type: Transform
- - uid: 4149
+ - uid: 4151
components:
- pos: 40.5,-64.5
parent: 2
type: Transform
- - uid: 4150
+ - uid: 4152
components:
- pos: 40.5,-65.5
parent: 2
type: Transform
- - uid: 4151
+ - uid: 4153
components:
- pos: 40.5,-66.5
parent: 2
type: Transform
- - uid: 4152
+ - uid: 4154
components:
- pos: 40.5,-67.5
parent: 2
type: Transform
- - uid: 4153
+ - uid: 4155
components:
- pos: 40.5,-68.5
parent: 2
type: Transform
- - uid: 4154
+ - uid: 4156
components:
- pos: 40.5,-69.5
parent: 2
type: Transform
- - uid: 4155
+ - uid: 4157
components:
- pos: 40.5,-70.5
parent: 2
type: Transform
- - uid: 4156
+ - uid: 4158
components:
- pos: 40.5,-71.5
parent: 2
type: Transform
- - uid: 4157
+ - uid: 4159
components:
- pos: 40.5,-72.5
parent: 2
type: Transform
- - uid: 4158
+ - uid: 4160
components:
- pos: 41.5,-72.5
parent: 2
type: Transform
- - uid: 4159
+ - uid: 4161
components:
- pos: 42.5,-72.5
parent: 2
type: Transform
- - uid: 4160
+ - uid: 4162
components:
- pos: 43.5,-72.5
parent: 2
type: Transform
- - uid: 4161
+ - uid: 4163
components:
- pos: 44.5,-72.5
parent: 2
type: Transform
- - uid: 4162
+ - uid: 4164
components:
- pos: 44.5,-73.5
parent: 2
type: Transform
- - uid: 4163
+ - uid: 4165
components:
- pos: 44.5,-74.5
parent: 2
type: Transform
- - uid: 4164
+ - uid: 4166
components:
- pos: 42.5,-73.5
parent: 2
type: Transform
- - uid: 4165
+ - uid: 4167
components:
- pos: 42.5,-74.5
parent: 2
type: Transform
- - uid: 4166
+ - uid: 4168
components:
- pos: 39.5,-72.5
parent: 2
type: Transform
- - uid: 4167
+ - uid: 4169
components:
- pos: 38.5,-72.5
parent: 2
type: Transform
- - uid: 4168
+ - uid: 4170
components:
- pos: 37.5,-72.5
parent: 2
type: Transform
- - uid: 4169
+ - uid: 4171
components:
- pos: 36.5,-72.5
parent: 2
type: Transform
- - uid: 4170
+ - uid: 4172
components:
- pos: 35.5,-72.5
parent: 2
type: Transform
- - uid: 4171
+ - uid: 4173
components:
- pos: 34.5,-72.5
parent: 2
type: Transform
- - uid: 4172
+ - uid: 4174
components:
- pos: 34.5,-73.5
parent: 2
type: Transform
- - uid: 4173
+ - uid: 4175
components:
- pos: 34.5,-74.5
parent: 2
type: Transform
- - uid: 4174
+ - uid: 4176
components:
- pos: 36.5,-73.5
parent: 2
type: Transform
- - uid: 4175
+ - uid: 4177
components:
- pos: 36.5,-74.5
parent: 2
type: Transform
- - uid: 4176
+ - uid: 4178
components:
- pos: 44.5,-71.5
parent: 2
type: Transform
- - uid: 4177
+ - uid: 4179
components:
- pos: 44.5,-70.5
parent: 2
type: Transform
- - uid: 4178
+ - uid: 4180
components:
- pos: 34.5,-71.5
parent: 2
type: Transform
- - uid: 4179
+ - uid: 4181
components:
- pos: 34.5,-70.5
parent: 2
type: Transform
- - uid: 4180
+ - uid: 4182
components:
- pos: 41.5,-59.5
parent: 2
type: Transform
- - uid: 4181
+ - uid: 4183
components:
- pos: 42.5,-59.5
parent: 2
type: Transform
- - uid: 4182
+ - uid: 4184
components:
- pos: 43.5,-59.5
parent: 2
type: Transform
- - uid: 4183
+ - uid: 4185
components:
- pos: 39.5,-58.5
parent: 2
type: Transform
- - uid: 4184
+ - uid: 4186
components:
- pos: 39.5,-57.5
parent: 2
type: Transform
- - uid: 4185
+ - uid: 4187
components:
- pos: 39.5,-56.5
parent: 2
type: Transform
- - uid: 4186
+ - uid: 4188
components:
- pos: 39.5,-55.5
parent: 2
type: Transform
- - uid: 4187
+ - uid: 4189
components:
- pos: 39.5,-54.5
parent: 2
type: Transform
- - uid: 4188
+ - uid: 4190
components:
- pos: 40.5,-55.5
parent: 2
type: Transform
- - uid: 4189
+ - uid: 4191
components:
- pos: 36.5,-58.5
parent: 2
type: Transform
- - uid: 4190
+ - uid: 4192
components:
- pos: 36.5,-56.5
parent: 2
type: Transform
- - uid: 4191
+ - uid: 4193
components:
- pos: 36.5,-54.5
parent: 2
type: Transform
- - uid: 4192
+ - uid: 4194
components:
- pos: 36.5,-57.5
parent: 2
type: Transform
- - uid: 4193
+ - uid: 4195
components:
- pos: 36.5,-55.5
parent: 2
type: Transform
- - uid: 4194
+ - uid: 4196
components:
- pos: 36.5,-53.5
parent: 2
type: Transform
- - uid: 4195
+ - uid: 4197
components:
- pos: 36.5,-52.5
parent: 2
type: Transform
- - uid: 4196
+ - uid: 4198
components:
- pos: 36.5,-51.5
parent: 2
type: Transform
- - uid: 4197
+ - uid: 4199
components:
- pos: 37.5,-51.5
parent: 2
type: Transform
- - uid: 4198
+ - uid: 4200
components:
- pos: 38.5,-51.5
parent: 2
type: Transform
- - uid: 4199
+ - uid: 4201
components:
- pos: 39.5,-51.5
parent: 2
type: Transform
- - uid: 4200
+ - uid: 4202
components:
- pos: 40.5,-51.5
parent: 2
type: Transform
- - uid: 4201
+ - uid: 4203
components:
- pos: 40.5,-50.5
parent: 2
type: Transform
- - uid: 4202
+ - uid: 4204
components:
- pos: 40.5,-49.5
parent: 2
type: Transform
- - uid: 4203
+ - uid: 4205
components:
- pos: 39.5,-49.5
parent: 2
type: Transform
- - uid: 4204
+ - uid: 4206
components:
- pos: 39.5,-48.5
parent: 2
type: Transform
- - uid: 4205
+ - uid: 4207
components:
- pos: 38.5,-48.5
parent: 2
type: Transform
- - uid: 4206
+ - uid: 4208
components:
- pos: 41.5,-51.5
parent: 2
type: Transform
- - uid: 4207
+ - uid: 4209
components:
- pos: 42.5,-51.5
parent: 2
type: Transform
- - uid: 4208
+ - uid: 4210
components:
- pos: 43.5,-51.5
parent: 2
type: Transform
- - uid: 4209
+ - uid: 4211
components:
- pos: 43.5,-52.5
parent: 2
type: Transform
- - uid: 4210
+ - uid: 4212
components:
- pos: 43.5,-53.5
parent: 2
type: Transform
- - uid: 4211
+ - uid: 4213
components:
- pos: 43.5,-54.5
parent: 2
type: Transform
- - uid: 4212
+ - uid: 4214
components:
- pos: 31.5,-72.5
parent: 2
type: Transform
- - uid: 4213
+ - uid: 4215
components:
- pos: 27.5,-72.5
parent: 2
type: Transform
- - uid: 4214
+ - uid: 4216
components:
- pos: 28.5,-72.5
parent: 2
type: Transform
- - uid: 4215
+ - uid: 4217
components:
- pos: 22.5,-83.5
parent: 2
type: Transform
- - uid: 4216
+ - uid: 4218
components:
- pos: 23.5,-72.5
parent: 2
type: Transform
- - uid: 4217
+ - uid: 4219
components:
- pos: 25.5,-70.5
parent: 2
type: Transform
- - uid: 4218
+ - uid: 4220
components:
- pos: 25.5,-69.5
parent: 2
type: Transform
- - uid: 4219
+ - uid: 4221
components:
- pos: 13.5,-83.5
parent: 2
type: Transform
- - uid: 4220
+ - uid: 4222
components:
- pos: 26.5,-72.5
parent: 2
type: Transform
- - uid: 4221
+ - uid: 4223
components:
- pos: 25.5,-72.5
parent: 2
type: Transform
- - uid: 4222
+ - uid: 4224
components:
- pos: 25.5,-71.5
parent: 2
type: Transform
- - uid: 4223
+ - uid: 4225
components:
- pos: 20.5,-83.5
parent: 2
type: Transform
- - uid: 4224
+ - uid: 4226
components:
- pos: 18.5,-83.5
parent: 2
type: Transform
- - uid: 4225
+ - uid: 4227
components:
- pos: 24.5,-72.5
parent: 2
type: Transform
- - uid: 4226
+ - uid: 4228
components:
- pos: 13.5,-86.5
parent: 2
type: Transform
- - uid: 4227
+ - uid: 4229
components:
- pos: 21.5,-83.5
parent: 2
type: Transform
- - uid: 4228
+ - uid: 4230
components:
- pos: 14.5,-81.5
parent: 2
type: Transform
- - uid: 4229
+ - uid: 4231
components:
- pos: 12.5,-81.5
parent: 2
type: Transform
- - uid: 4230
+ - uid: 4232
components:
- pos: 17.5,-81.5
parent: 2
type: Transform
- - uid: 4231
+ - uid: 4233
components:
- pos: 14.5,-86.5
parent: 2
type: Transform
- - uid: 4232
+ - uid: 4234
components:
- pos: 10.5,-70.5
parent: 2
type: Transform
- - uid: 4233
+ - uid: 4235
components:
- pos: 32.5,-72.5
parent: 2
type: Transform
- - uid: 4234
+ - uid: 4236
components:
- pos: 30.5,-75.5
parent: 2
type: Transform
- - uid: 4235
+ - uid: 4237
components:
- pos: 30.5,-73.5
parent: 2
type: Transform
- - uid: 4236
+ - uid: 4238
components:
- pos: 30.5,-76.5
parent: 2
type: Transform
- - uid: 4237
+ - uid: 4239
components:
- pos: 30.5,-74.5
parent: 2
type: Transform
- - uid: 4238
+ - uid: 4240
components:
- pos: 33.5,-72.5
parent: 2
type: Transform
- - uid: 4239
+ - uid: 4241
components:
- pos: 48.5,-73.5
parent: 2
type: Transform
- - uid: 4240
+ - uid: 4242
components:
- pos: 42.5,-75.5
parent: 2
type: Transform
- - uid: 4241
+ - uid: 4243
components:
- pos: 36.5,-75.5
parent: 2
type: Transform
- - uid: 4242
+ - uid: 4244
components:
- pos: 30.5,-78.5
parent: 2
type: Transform
- - uid: 4243
+ - uid: 4245
components:
- pos: 46.5,-82.5
parent: 2
type: Transform
- - uid: 4244
+ - uid: 4246
components:
- pos: 48.5,-91.5
parent: 2
type: Transform
- - uid: 4245
+ - uid: 4247
components:
- pos: 21.5,-73.5
parent: 2
type: Transform
- - uid: 4246
+ - uid: 4248
components:
- pos: 20.5,-73.5
parent: 2
type: Transform
- - uid: 4247
+ - uid: 4249
components:
- pos: 19.5,-73.5
parent: 2
type: Transform
- - uid: 4248
+ - uid: 4250
components:
- pos: 18.5,-73.5
parent: 2
type: Transform
- - uid: 4249
+ - uid: 4251
components:
- pos: 17.5,-73.5
parent: 2
type: Transform
- - uid: 4250
+ - uid: 4252
components:
- pos: 16.5,-73.5
parent: 2
type: Transform
- - uid: 4251
+ - uid: 4253
components:
- pos: 15.5,-73.5
parent: 2
type: Transform
- - uid: 4252
+ - uid: 4254
components:
- pos: 14.5,-73.5
parent: 2
type: Transform
- - uid: 4253
+ - uid: 4255
components:
- pos: 13.5,-73.5
parent: 2
type: Transform
- - uid: 4254
+ - uid: 4256
components:
- pos: 12.5,-73.5
parent: 2
type: Transform
- - uid: 4255
+ - uid: 4257
components:
- pos: 11.5,-73.5
parent: 2
type: Transform
- - uid: 4256
+ - uid: 4258
components:
- pos: 11.5,-72.5
parent: 2
type: Transform
- - uid: 4257
+ - uid: 4259
components:
- pos: 11.5,-71.5
parent: 2
type: Transform
- - uid: 4258
+ - uid: 4260
components:
- pos: 11.5,-70.5
parent: 2
type: Transform
- - uid: 4259
+ - uid: 4261
components:
- pos: 19.5,-83.5
parent: 2
type: Transform
- - uid: 4260
+ - uid: 4262
components:
- pos: 48.5,-89.5
parent: 2
type: Transform
- - uid: 4261
+ - uid: 4263
components:
- pos: 23.5,-83.5
parent: 2
type: Transform
- - uid: 4262
+ - uid: 4264
components:
- pos: 9.5,-70.5
parent: 2
type: Transform
- - uid: 4263
+ - uid: 4265
components:
- pos: 16.5,-86.5
parent: 2
type: Transform
- - uid: 4264
+ - uid: 4266
components:
- pos: 15.5,-86.5
parent: 2
type: Transform
- - uid: 4265
+ - uid: 4267
components:
- pos: 12.5,-86.5
parent: 2
type: Transform
- - uid: 4266
+ - uid: 4268
components:
- pos: 17.5,-86.5
parent: 2
type: Transform
- - uid: 4267
+ - uid: 4269
components:
- pos: -13.5,-26.5
parent: 2
type: Transform
- - uid: 4268
+ - uid: 4270
components:
- pos: -14.5,-26.5
parent: 2
type: Transform
- - uid: 4269
+ - uid: 4271
components:
- pos: -15.5,-26.5
parent: 2
type: Transform
- - uid: 4270
+ - uid: 4272
components:
- pos: -16.5,-26.5
parent: 2
type: Transform
- - uid: 4271
+ - uid: 4273
components:
- pos: -17.5,-26.5
parent: 2
type: Transform
- - uid: 4272
+ - uid: 4274
components:
- pos: -18.5,-26.5
parent: 2
type: Transform
- - uid: 4273
+ - uid: 4275
components:
- pos: -19.5,-26.5
parent: 2
type: Transform
- - uid: 4274
+ - uid: 4276
components:
- pos: -19.5,-27.5
parent: 2
type: Transform
- - uid: 4275
+ - uid: 4277
components:
- pos: -19.5,-28.5
parent: 2
type: Transform
- - uid: 4276
+ - uid: 4278
components:
- pos: -19.5,-29.5
parent: 2
type: Transform
- - uid: 4277
+ - uid: 4279
components:
- pos: -19.5,-30.5
parent: 2
type: Transform
- - uid: 4278
+ - uid: 4280
components:
- pos: -19.5,-31.5
parent: 2
type: Transform
- - uid: 4279
+ - uid: 4281
components:
- pos: -19.5,-32.5
parent: 2
type: Transform
- - uid: 4280
+ - uid: 4282
components:
- pos: -19.5,-33.5
parent: 2
type: Transform
- - uid: 4281
+ - uid: 4283
components:
- pos: -19.5,-34.5
parent: 2
type: Transform
- - uid: 4282
+ - uid: 4284
components:
- pos: -19.5,-35.5
parent: 2
type: Transform
- - uid: 4283
+ - uid: 4285
components:
- pos: -19.5,-36.5
parent: 2
type: Transform
- - uid: 4284
+ - uid: 4286
components:
- pos: -19.5,-37.5
parent: 2
type: Transform
- - uid: 4285
+ - uid: 4287
components:
- pos: -20.5,-26.5
parent: 2
type: Transform
- - uid: 4286
+ - uid: 4288
components:
- pos: -18.5,-29.5
parent: 2
type: Transform
- - uid: 4287
+ - uid: 4289
components:
- pos: -13.5,-42.5
parent: 2
type: Transform
- - uid: 4288
+ - uid: 4290
components:
- pos: -14.5,-42.5
parent: 2
type: Transform
- - uid: 4289
+ - uid: 4291
components:
- pos: -15.5,-42.5
parent: 2
type: Transform
- - uid: 4290
+ - uid: 4292
components:
- pos: -16.5,-42.5
parent: 2
type: Transform
- - uid: 4291
+ - uid: 4293
components:
- pos: -17.5,-42.5
parent: 2
type: Transform
- - uid: 4292
+ - uid: 4294
components:
- pos: -18.5,-42.5
parent: 2
type: Transform
- - uid: 4293
+ - uid: 4295
components:
- pos: -19.5,-42.5
parent: 2
type: Transform
- - uid: 4294
+ - uid: 4296
components:
- pos: -19.5,-43.5
parent: 2
type: Transform
- - uid: 4295
+ - uid: 4297
components:
- pos: -19.5,-44.5
parent: 2
type: Transform
- - uid: 4296
+ - uid: 4298
components:
- pos: -19.5,-45.5
parent: 2
type: Transform
- - uid: 4297
+ - uid: 4299
components:
- pos: -19.5,-46.5
parent: 2
type: Transform
- - uid: 4298
+ - uid: 4300
components:
- pos: -19.5,-47.5
parent: 2
type: Transform
- - uid: 4299
+ - uid: 4301
components:
- pos: -20.5,-46.5
parent: 2
type: Transform
- - uid: 4300
+ - uid: 4302
components:
- pos: -19.5,-48.5
parent: 2
type: Transform
- - uid: 4301
+ - uid: 4303
components:
- pos: -20.5,-42.5
parent: 2
type: Transform
- - uid: 4302
+ - uid: 4304
components:
- pos: -19.5,-41.5
parent: 2
type: Transform
- - uid: 4303
+ - uid: 4305
components:
- pos: 30.5,-89.5
parent: 2
type: Transform
- - uid: 4304
+ - uid: 4306
components:
- pos: 48.5,-72.5
parent: 2
type: Transform
- - uid: 4305
+ - uid: 4307
components:
- pos: 30.5,-90.5
parent: 2
type: Transform
- - uid: 4306
+ - uid: 4308
components:
- pos: -37.5,-14.5
parent: 2
type: Transform
- - uid: 4307
+ - uid: 4309
components:
- pos: -29.5,-21.5
parent: 2
type: Transform
- - uid: 4308
+ - uid: 4310
components:
- pos: -30.5,-21.5
parent: 2
type: Transform
- - uid: 4309
+ - uid: 4311
components:
- pos: -31.5,-21.5
parent: 2
type: Transform
- - uid: 4310
+ - uid: 4312
components:
- pos: -32.5,-21.5
parent: 2
type: Transform
- - uid: 4311
+ - uid: 4313
components:
- pos: -32.5,-20.5
parent: 2
type: Transform
- - uid: 4312
+ - uid: 4314
components:
- pos: -32.5,-19.5
parent: 2
type: Transform
- - uid: 4313
+ - uid: 4315
components:
- pos: -32.5,-18.5
parent: 2
type: Transform
- - uid: 4314
+ - uid: 4316
components:
- pos: -32.5,-17.5
parent: 2
type: Transform
- - uid: 4315
+ - uid: 4317
components:
- pos: -32.5,-16.5
parent: 2
type: Transform
- - uid: 4316
+ - uid: 4318
components:
- pos: -32.5,-15.5
parent: 2
type: Transform
- - uid: 4317
+ - uid: 4319
components:
- pos: -32.5,-14.5
parent: 2
type: Transform
- - uid: 4318
+ - uid: 4320
components:
- pos: -32.5,-13.5
parent: 2
type: Transform
- - uid: 4319
+ - uid: 4321
components:
- pos: -32.5,-12.5
parent: 2
type: Transform
- - uid: 4320
+ - uid: 4322
components:
- pos: -32.5,-11.5
parent: 2
type: Transform
- - uid: 4321
+ - uid: 4323
components:
- pos: -32.5,-10.5
parent: 2
type: Transform
- - uid: 4322
+ - uid: 4324
components:
- pos: -38.5,-7.5
parent: 2
type: Transform
- - uid: 4323
+ - uid: 4325
components:
- pos: -31.5,-17.5
parent: 2
type: Transform
- - uid: 4324
+ - uid: 4326
components:
- pos: -33.5,-10.5
parent: 2
type: Transform
- - uid: 4325
+ - uid: 4327
components:
- pos: -34.5,-10.5
parent: 2
type: Transform
- - uid: 4326
+ - uid: 4328
components:
- pos: -35.5,-10.5
parent: 2
type: Transform
- - uid: 4327
+ - uid: 4329
components:
- pos: -36.5,-10.5
parent: 2
type: Transform
- - uid: 4328
+ - uid: 4330
components:
- pos: -37.5,-10.5
parent: 2
type: Transform
- - uid: 4329
+ - uid: 4331
components:
- pos: -38.5,-10.5
parent: 2
type: Transform
- - uid: 4330
+ - uid: 4332
components:
- pos: -39.5,-10.5
parent: 2
type: Transform
- - uid: 4331
+ - uid: 4333
components:
- pos: -37.5,-11.5
parent: 2
type: Transform
- - uid: 4332
+ - uid: 4334
components:
- pos: -37.5,-12.5
parent: 2
type: Transform
- - uid: 4333
+ - uid: 4335
components:
- pos: -37.5,-13.5
parent: 2
type: Transform
- - uid: 4334
+ - uid: 4336
components:
- pos: -38.5,-9.5
parent: 2
type: Transform
- - uid: 4335
+ - uid: 4337
components:
- pos: -35.5,-9.5
parent: 2
type: Transform
- - uid: 4336
+ - uid: 4338
components:
- pos: -38.5,-84.5
parent: 2
type: Transform
- - uid: 4337
+ - uid: 4339
components:
- pos: -33.5,-16.5
parent: 2
type: Transform
- - uid: 4338
+ - uid: 4340
components:
- pos: -34.5,-16.5
parent: 2
type: Transform
- - uid: 4339
+ - uid: 4341
components:
- pos: -35.5,-16.5
parent: 2
type: Transform
- - uid: 4340
+ - uid: 4342
components:
- pos: -36.5,-16.5
parent: 2
type: Transform
- - uid: 4341
+ - uid: 4343
components:
- pos: -36.5,-17.5
parent: 2
type: Transform
- - uid: 4342
+ - uid: 4344
components:
- pos: -35.5,-11.5
parent: 2
type: Transform
- - uid: 4343
+ - uid: 4345
components:
- pos: -35.5,-12.5
parent: 2
type: Transform
- - uid: 4344
+ - uid: 4346
components:
- pos: -32.5,-22.5
parent: 2
type: Transform
- - uid: 4345
+ - uid: 4347
components:
- pos: -32.5,-23.5
parent: 2
type: Transform
- - uid: 4346
+ - uid: 4348
components:
- pos: -32.5,-24.5
parent: 2
type: Transform
- - uid: 4347
+ - uid: 4349
components:
- pos: -32.5,-25.5
parent: 2
type: Transform
- - uid: 4348
+ - uid: 4350
components:
- pos: -32.5,-26.5
parent: 2
type: Transform
- - uid: 4349
+ - uid: 4351
components:
- pos: -32.5,-27.5
parent: 2
type: Transform
- - uid: 4350
+ - uid: 4352
components:
- pos: -32.5,-28.5
parent: 2
type: Transform
- - uid: 4351
+ - uid: 4353
components:
- pos: -40.5,-10.5
parent: 2
type: Transform
- - uid: 4352
+ - uid: 4354
components:
- pos: -41.5,-10.5
parent: 2
type: Transform
- - uid: 4353
+ - uid: 4355
components:
- pos: -41.5,-11.5
parent: 2
type: Transform
- - uid: 4354
+ - uid: 4356
components:
- pos: -41.5,-12.5
parent: 2
type: Transform
- - uid: 4355
+ - uid: 4357
components:
- pos: -41.5,-13.5
parent: 2
type: Transform
- - uid: 4356
+ - uid: 4358
components:
- pos: -41.5,-14.5
parent: 2
type: Transform
- - uid: 4357
+ - uid: 4359
components:
- pos: -41.5,-15.5
parent: 2
type: Transform
- - uid: 4358
+ - uid: 4360
components:
- pos: -41.5,-16.5
parent: 2
type: Transform
- - uid: 4359
+ - uid: 4361
components:
- pos: -40.5,-16.5
parent: 2
type: Transform
- - uid: 4360
+ - uid: 4362
components:
- pos: -31.5,-26.5
parent: 2
type: Transform
- - uid: 4361
+ - uid: 4363
components:
- pos: -30.5,-26.5
parent: 2
type: Transform
- - uid: 4362
+ - uid: 4364
components:
- pos: -29.5,-26.5
parent: 2
type: Transform
- - uid: 4363
+ - uid: 4365
components:
- pos: -28.5,-26.5
parent: 2
type: Transform
- - uid: 4364
+ - uid: 4366
components:
- pos: -27.5,-26.5
parent: 2
type: Transform
- - uid: 4365
+ - uid: 4367
components:
- pos: -26.5,-26.5
parent: 2
type: Transform
- - uid: 4366
+ - uid: 4368
components:
- pos: -25.5,-26.5
parent: 2
type: Transform
- - uid: 4367
+ - uid: 4369
components:
- pos: 3.5,-49.5
parent: 2
type: Transform
- - uid: 4368
+ - uid: 4370
components:
- pos: 3.5,-50.5
parent: 2
type: Transform
- - uid: 4369
+ - uid: 4371
components:
- pos: -18.5,14.5
parent: 2
type: Transform
- - uid: 4370
+ - uid: 4372
components:
- pos: -18.5,13.5
parent: 2
type: Transform
- - uid: 4371
+ - uid: 4373
components:
- pos: -18.5,12.5
parent: 2
type: Transform
- - uid: 4372
+ - uid: 4374
components:
- pos: -18.5,11.5
parent: 2
type: Transform
- - uid: 4373
+ - uid: 4375
components:
- pos: -18.5,10.5
parent: 2
type: Transform
- - uid: 4374
+ - uid: 4376
components:
- pos: -18.5,9.5
parent: 2
type: Transform
- - uid: 4375
+ - uid: 4377
components:
- pos: -18.5,8.5
parent: 2
type: Transform
- - uid: 4376
+ - uid: 4378
components:
- pos: -18.5,7.5
parent: 2
type: Transform
- - uid: 4377
+ - uid: 4379
components:
- pos: -17.5,7.5
parent: 2
type: Transform
- - uid: 4378
+ - uid: 4380
components:
- pos: -16.5,7.5
parent: 2
type: Transform
- - uid: 4379
+ - uid: 4381
components:
- pos: -15.5,7.5
parent: 2
type: Transform
- - uid: 4380
+ - uid: 4382
components:
- pos: -14.5,7.5
parent: 2
type: Transform
- - uid: 4381
+ - uid: 4383
components:
- pos: -13.5,7.5
parent: 2
type: Transform
- - uid: 4382
+ - uid: 4384
components:
- pos: -12.5,7.5
parent: 2
type: Transform
- - uid: 4383
+ - uid: 4385
components:
- pos: -12.5,6.5
parent: 2
type: Transform
- - uid: 4384
+ - uid: 4386
components:
- pos: -12.5,5.5
parent: 2
type: Transform
- - uid: 4385
+ - uid: 4387
components:
- pos: -12.5,4.5
parent: 2
type: Transform
- - uid: 4386
+ - uid: 4388
components:
- pos: -12.5,3.5
parent: 2
type: Transform
- - uid: 4387
+ - uid: 4389
components:
- pos: -12.5,2.5
parent: 2
type: Transform
- - uid: 4388
+ - uid: 4390
components:
- pos: -12.5,1.5
parent: 2
type: Transform
- - uid: 4389
+ - uid: 4391
components:
- pos: -12.5,0.5
parent: 2
type: Transform
- - uid: 4390
+ - uid: 4392
components:
- pos: -12.5,-0.5
parent: 2
type: Transform
- - uid: 4391
+ - uid: 4393
components:
- pos: -12.5,-1.5
parent: 2
type: Transform
- - uid: 4392
+ - uid: 4394
components:
- pos: -12.5,-2.5
parent: 2
type: Transform
- - uid: 4393
+ - uid: 4395
components:
- pos: -13.5,-2.5
parent: 2
type: Transform
- - uid: 4394
+ - uid: 4396
components:
- pos: -12.5,-4.5
parent: 2
type: Transform
- - uid: 4395
+ - uid: 4397
components:
- pos: -23.5,7.5
parent: 2
type: Transform
- - uid: 4396
+ - uid: 4398
components:
- pos: -24.5,7.5
parent: 2
type: Transform
- - uid: 4397
+ - uid: 4399
components:
- pos: -25.5,7.5
parent: 2
type: Transform
- - uid: 4398
+ - uid: 4400
components:
- pos: -25.5,6.5
parent: 2
type: Transform
- - uid: 4399
+ - uid: 4401
components:
- pos: -25.5,5.5
parent: 2
type: Transform
- - uid: 4400
+ - uid: 4402
components:
- pos: -25.5,4.5
parent: 2
type: Transform
- - uid: 4401
+ - uid: 4403
components:
- pos: -25.5,3.5
parent: 2
type: Transform
- - uid: 4402
+ - uid: 4404
components:
- pos: -25.5,2.5
parent: 2
type: Transform
- - uid: 4403
+ - uid: 4405
components:
- pos: -16.5,10.5
parent: 2
type: Transform
- - uid: 4404
+ - uid: 4406
components:
- pos: -15.5,10.5
parent: 2
type: Transform
- - uid: 4405
+ - uid: 4407
components:
- pos: -14.5,10.5
parent: 2
type: Transform
- - uid: 4406
+ - uid: 4408
components:
- pos: -14.5,11.5
parent: 2
type: Transform
- - uid: 4407
+ - uid: 4409
components:
- pos: -14.5,12.5
parent: 2
type: Transform
- - uid: 4408
+ - uid: 4410
components:
- pos: -14.5,13.5
parent: 2
type: Transform
- - uid: 4409
+ - uid: 4411
components:
- pos: -14.5,14.5
parent: 2
type: Transform
- - uid: 4410
+ - uid: 4412
components:
- pos: -14.5,15.5
parent: 2
type: Transform
- - uid: 4411
+ - uid: 4413
components:
- pos: -13.5,15.5
parent: 2
type: Transform
- - uid: 4412
+ - uid: 4414
components:
- pos: -12.5,15.5
parent: 2
type: Transform
- - uid: 4413
+ - uid: 4415
components:
- pos: -11.5,15.5
parent: 2
type: Transform
- - uid: 4414
+ - uid: 4416
components:
- pos: -10.5,15.5
parent: 2
type: Transform
- - uid: 4415
+ - uid: 4417
components:
- pos: -8.5,16.5
parent: 2
type: Transform
- - uid: 4416
+ - uid: 4418
components:
- pos: -7.5,16.5
parent: 2
type: Transform
- - uid: 4417
+ - uid: 4419
components:
- pos: -6.5,16.5
parent: 2
type: Transform
- - uid: 4418
+ - uid: 4420
components:
- pos: -5.5,16.5
parent: 2
type: Transform
- - uid: 4419
+ - uid: 4421
components:
- pos: -4.5,16.5
parent: 2
type: Transform
- - uid: 4420
+ - uid: 4422
components:
- pos: -42.5,-10.5
parent: 2
type: Transform
- - uid: 4421
+ - uid: 4423
components:
- pos: -43.5,-10.5
parent: 2
type: Transform
- - uid: 4422
+ - uid: 4424
components:
- pos: -44.5,-10.5
parent: 2
type: Transform
- - uid: 4423
+ - uid: 4425
components:
- pos: -45.5,-10.5
parent: 2
type: Transform
- - uid: 4424
+ - uid: 4426
components:
- pos: -46.5,-10.5
parent: 2
type: Transform
- - uid: 4425
+ - uid: 4427
components:
- pos: -46.5,-9.5
parent: 2
type: Transform
- - uid: 4426
+ - uid: 4428
components:
- pos: -46.5,-11.5
parent: 2
type: Transform
- - uid: 4427
+ - uid: 4429
components:
- pos: -46.5,-12.5
parent: 2
type: Transform
- - uid: 4428
+ - uid: 4430
components:
- pos: -46.5,-13.5
parent: 2
type: Transform
- - uid: 4429
+ - uid: 4431
components:
- pos: -46.5,-14.5
parent: 2
type: Transform
- - uid: 4430
+ - uid: 4432
components:
- pos: -46.5,-15.5
parent: 2
type: Transform
- - uid: 4431
+ - uid: 4433
components:
- pos: -46.5,-16.5
parent: 2
type: Transform
- - uid: 4432
+ - uid: 4434
components:
- pos: -47.5,-13.5
parent: 2
type: Transform
- - uid: 4433
+ - uid: 4435
components:
- pos: -48.5,-13.5
parent: 2
type: Transform
- - uid: 4434
+ - uid: 4436
components:
- pos: -49.5,-13.5
parent: 2
type: Transform
- - uid: 4435
+ - uid: 4437
components:
- pos: -45.5,-16.5
parent: 2
type: Transform
- - uid: 4436
+ - uid: 4438
components:
- pos: -45.5,-17.5
parent: 2
type: Transform
- - uid: 4437
+ - uid: 4439
components:
- pos: -45.5,-18.5
parent: 2
type: Transform
- - uid: 4438
+ - uid: 4440
components:
- pos: -45.5,-19.5
parent: 2
type: Transform
- - uid: 4439
+ - uid: 4441
components:
- pos: -45.5,-20.5
parent: 2
type: Transform
- - uid: 4440
+ - uid: 4442
components:
- pos: -45.5,-21.5
parent: 2
type: Transform
- - uid: 4441
+ - uid: 4443
components:
- pos: -46.5,-20.5
parent: 2
type: Transform
- - uid: 4442
+ - uid: 4444
components:
- pos: -47.5,-20.5
parent: 2
type: Transform
- - uid: 4443
+ - uid: 4445
components:
- pos: -47.5,-21.5
parent: 2
type: Transform
- - uid: 4444
+ - uid: 4446
components:
- pos: -45.5,-22.5
parent: 2
type: Transform
- - uid: 4445
+ - uid: 4447
components:
- pos: -48.5,-22.5
parent: 2
type: Transform
- - uid: 4446
+ - uid: 4448
components:
- pos: -47.5,-22.5
parent: 2
type: Transform
- - uid: 4447
+ - uid: 4449
components:
- pos: -38.5,-8.5
parent: 2
type: Transform
- - uid: 4448
+ - uid: 4450
components:
- pos: -35.5,-7.5
parent: 2
type: Transform
- - uid: 4449
+ - uid: 4451
components:
- pos: -35.5,-8.5
parent: 2
type: Transform
- - uid: 4450
+ - uid: 4452
components:
- pos: -34.5,-6.5
parent: 2
type: Transform
- - uid: 4451
+ - uid: 4453
components:
- pos: -35.5,-6.5
parent: 2
type: Transform
- - uid: 4452
+ - uid: 4454
components:
- pos: -36.5,-6.5
parent: 2
type: Transform
- - uid: 4453
+ - uid: 4455
components:
- pos: -37.5,-6.5
parent: 2
type: Transform
- - uid: 4454
+ - uid: 4456
components:
- pos: -38.5,-6.5
parent: 2
type: Transform
- - uid: 4455
+ - uid: 4457
components:
- pos: -39.5,-6.5
parent: 2
type: Transform
- - uid: 4456
+ - uid: 4458
components:
- pos: -40.5,-6.5
parent: 2
type: Transform
- - uid: 4457
+ - uid: 4459
components:
- pos: -41.5,-6.5
parent: 2
type: Transform
- - uid: 4458
+ - uid: 4460
components:
- pos: -38.5,-5.5
parent: 2
type: Transform
- - uid: 4459
+ - uid: 4461
components:
- pos: -55.5,-28.5
parent: 2
type: Transform
- - uid: 4460
+ - uid: 4462
components:
- pos: -55.5,-30.5
parent: 2
type: Transform
- - uid: 4461
+ - uid: 4463
components:
- pos: -57.5,-28.5
parent: 2
type: Transform
- - uid: 4462
+ - uid: 4464
components:
- pos: -39.5,-69.5
parent: 2
type: Transform
- - uid: 4463
+ - uid: 4465
components:
- pos: -39.5,-71.5
parent: 2
type: Transform
- - uid: 4464
+ - uid: 4466
components:
- pos: -50.5,-15.5
parent: 2
type: Transform
- - uid: 4465
+ - uid: 4467
components:
- pos: -50.5,-16.5
parent: 2
type: Transform
- - uid: 4466
+ - uid: 4468
components:
- pos: -51.5,-16.5
parent: 2
type: Transform
- - uid: 4467
+ - uid: 4469
components:
- pos: -51.5,-17.5
parent: 2
type: Transform
- - uid: 4468
+ - uid: 4470
components:
- pos: -51.5,-18.5
parent: 2
type: Transform
- - uid: 4469
+ - uid: 4471
components:
- pos: -51.5,-19.5
parent: 2
type: Transform
- - uid: 4470
+ - uid: 4472
components:
- pos: -51.5,-20.5
parent: 2
type: Transform
- - uid: 4471
+ - uid: 4473
components:
- pos: -52.5,-23.5
parent: 2
type: Transform
- - uid: 4472
+ - uid: 4474
components:
- pos: -51.5,-22.5
parent: 2
type: Transform
- - uid: 4473
+ - uid: 4475
components:
- pos: -51.5,-23.5
parent: 2
type: Transform
- - uid: 4474
+ - uid: 4476
components:
- pos: -51.5,-24.5
parent: 2
type: Transform
- - uid: 4475
+ - uid: 4477
components:
- pos: -51.5,-25.5
parent: 2
type: Transform
- - uid: 4476
+ - uid: 4478
components:
- pos: -50.5,-25.5
parent: 2
type: Transform
- - uid: 4477
+ - uid: 4479
components:
- pos: -52.5,-19.5
parent: 2
type: Transform
- - uid: 4478
+ - uid: 4480
components:
- pos: -53.5,-19.5
parent: 2
type: Transform
- - uid: 4479
+ - uid: 4481
components:
- pos: -54.5,-19.5
parent: 2
type: Transform
- - uid: 4480
+ - uid: 4482
components:
- pos: -54.5,-20.5
parent: 2
type: Transform
- - uid: 4481
+ - uid: 4483
components:
- pos: -54.5,-21.5
parent: 2
type: Transform
- - uid: 4482
+ - uid: 4484
components:
- pos: -54.5,-22.5
parent: 2
type: Transform
- - uid: 4483
+ - uid: 4485
components:
- pos: -54.5,-23.5
parent: 2
type: Transform
- - uid: 4484
+ - uid: 4486
components:
- pos: -54.5,-24.5
parent: 2
type: Transform
- - uid: 4485
+ - uid: 4487
components:
- pos: -55.5,-24.5
parent: 2
type: Transform
- - uid: 4486
+ - uid: 4488
components:
- pos: -56.5,-24.5
parent: 2
type: Transform
- - uid: 4487
+ - uid: 4489
components:
- pos: -57.5,-24.5
parent: 2
type: Transform
- - uid: 4488
+ - uid: 4490
components:
- pos: -58.5,-24.5
parent: 2
type: Transform
- - uid: 4489
+ - uid: 4491
components:
- pos: -59.5,-24.5
parent: 2
type: Transform
- - uid: 4490
+ - uid: 4492
components:
- pos: -60.5,-24.5
parent: 2
type: Transform
- - uid: 4491
+ - uid: 4493
components:
- pos: -61.5,-24.5
parent: 2
type: Transform
- - uid: 4492
+ - uid: 4494
components:
- pos: -62.5,-24.5
parent: 2
type: Transform
- - uid: 4493
+ - uid: 4495
components:
- pos: -63.5,-24.5
parent: 2
type: Transform
- - uid: 4494
+ - uid: 4496
components:
- pos: -64.5,-24.5
parent: 2
type: Transform
- - uid: 4495
+ - uid: 4497
components:
- pos: -64.5,-25.5
parent: 2
type: Transform
- - uid: 4496
+ - uid: 4498
components:
- pos: -64.5,-26.5
parent: 2
type: Transform
- - uid: 4497
+ - uid: 4499
components:
- pos: -64.5,-27.5
parent: 2
type: Transform
- - uid: 4498
+ - uid: 4500
components:
- pos: -64.5,-28.5
parent: 2
type: Transform
- - uid: 4499
+ - uid: 4501
components:
- pos: -64.5,-29.5
parent: 2
type: Transform
- - uid: 4500
+ - uid: 4502
components:
- pos: -64.5,-30.5
parent: 2
type: Transform
- - uid: 4501
+ - uid: 4503
components:
- pos: -65.5,-30.5
parent: 2
type: Transform
- - uid: 4502
+ - uid: 4504
components:
- pos: -66.5,-30.5
parent: 2
type: Transform
- - uid: 4503
+ - uid: 4505
components:
- pos: -67.5,-30.5
parent: 2
type: Transform
- - uid: 4504
+ - uid: 4506
components:
- pos: -68.5,-30.5
parent: 2
type: Transform
- - uid: 4505
+ - uid: 4507
components:
- pos: -65.5,-30.5
parent: 2
type: Transform
- - uid: 4506
+ - uid: 4508
components:
- pos: -65.5,-31.5
parent: 2
type: Transform
- - uid: 4507
+ - uid: 4509
components:
- pos: -65.5,-32.5
parent: 2
type: Transform
- - uid: 4508
+ - uid: 4510
components:
- pos: -68.5,-31.5
parent: 2
type: Transform
- - uid: 4509
+ - uid: 4511
components:
- pos: -68.5,-28.5
parent: 2
type: Transform
- - uid: 4510
+ - uid: 4512
components:
- pos: -68.5,-27.5
parent: 2
type: Transform
- - uid: 4511
+ - uid: 4513
components:
- pos: -68.5,-26.5
parent: 2
type: Transform
- - uid: 4512
+ - uid: 4514
components:
- pos: -68.5,-29.5
parent: 2
type: Transform
- - uid: 4513
+ - uid: 4515
components:
- pos: -54.5,-18.5
parent: 2
type: Transform
- - uid: 4514
+ - uid: 4516
components:
- pos: -54.5,-17.5
parent: 2
type: Transform
- - uid: 4515
+ - uid: 4517
components:
- pos: -54.5,-16.5
parent: 2
type: Transform
- - uid: 4516
+ - uid: 4518
components:
- pos: -54.5,-15.5
parent: 2
type: Transform
- - uid: 4517
+ - uid: 4519
components:
- pos: -54.5,-14.5
parent: 2
type: Transform
- - uid: 4518
+ - uid: 4520
components:
- pos: -54.5,-13.5
parent: 2
type: Transform
- - uid: 4519
+ - uid: 4521
components:
- pos: -54.5,-12.5
parent: 2
type: Transform
- - uid: 4520
+ - uid: 4522
components:
- pos: -54.5,-11.5
parent: 2
type: Transform
- - uid: 4521
+ - uid: 4523
components:
- pos: -54.5,-10.5
parent: 2
type: Transform
- - uid: 4522
+ - uid: 4524
components:
- pos: -54.5,-9.5
parent: 2
type: Transform
- - uid: 4523
+ - uid: 4525
components:
- pos: -54.5,-8.5
parent: 2
type: Transform
- - uid: 4524
+ - uid: 4526
components:
- pos: -54.5,-7.5
parent: 2
type: Transform
- - uid: 4525
+ - uid: 4527
components:
- pos: -54.5,-6.5
parent: 2
type: Transform
- - uid: 4526
+ - uid: 4528
components:
- pos: -53.5,-7.5
parent: 2
type: Transform
- - uid: 4527
+ - uid: 4529
components:
- pos: -52.5,-7.5
parent: 2
type: Transform
- - uid: 4528
+ - uid: 4530
components:
- pos: -51.5,-7.5
parent: 2
type: Transform
- - uid: 4529
+ - uid: 4531
components:
- pos: -52.5,-6.5
parent: 2
type: Transform
- - uid: 4530
+ - uid: 4532
components:
- pos: -56.5,-28.5
parent: 2
type: Transform
- - uid: 4531
+ - uid: 4533
components:
- pos: -55.5,-29.5
parent: 2
type: Transform
- - uid: 4532
+ - uid: 4534
components:
- pos: -39.5,-70.5
parent: 2
type: Transform
- - uid: 4533
+ - uid: 4535
components:
- pos: 55.5,10.5
parent: 2
type: Transform
- - uid: 4534
+ - uid: 4536
components:
- pos: -35.5,-31.5
parent: 2
type: Transform
- - uid: 4535
+ - uid: 4537
components:
- pos: -35.5,-32.5
parent: 2
type: Transform
- - uid: 4536
+ - uid: 4538
components:
- pos: -35.5,-33.5
parent: 2
type: Transform
- - uid: 4537
+ - uid: 4539
components:
- pos: -35.5,-34.5
parent: 2
type: Transform
- - uid: 4538
+ - uid: 4540
components:
- pos: -36.5,-34.5
parent: 2
type: Transform
- - uid: 4539
+ - uid: 4541
components:
- pos: -37.5,-34.5
parent: 2
type: Transform
- - uid: 4540
+ - uid: 4542
components:
- pos: -38.5,-34.5
parent: 2
type: Transform
- - uid: 4541
+ - uid: 4543
components:
- pos: -39.5,-34.5
parent: 2
type: Transform
- - uid: 4542
+ - uid: 4544
components:
- pos: -40.5,-34.5
parent: 2
type: Transform
- - uid: 4543
+ - uid: 4545
components:
- pos: -41.5,-34.5
parent: 2
type: Transform
- - uid: 4544
+ - uid: 4546
components:
- pos: -42.5,-34.5
parent: 2
type: Transform
- - uid: 4545
+ - uid: 4547
components:
- pos: -43.5,-34.5
parent: 2
type: Transform
- - uid: 4546
+ - uid: 4548
components:
- pos: -39.5,-33.5
parent: 2
type: Transform
- - uid: 4547
+ - uid: 4549
components:
- pos: -41.5,-35.5
parent: 2
type: Transform
- - uid: 4548
+ - uid: 4550
components:
- pos: -41.5,-36.5
parent: 2
type: Transform
- - uid: 4549
+ - uid: 4551
components:
- pos: -41.5,-37.5
parent: 2
type: Transform
- - uid: 4550
+ - uid: 4552
components:
- pos: -41.5,-38.5
parent: 2
type: Transform
- - uid: 4551
+ - uid: 4553
components:
- pos: -41.5,-39.5
parent: 2
type: Transform
- - uid: 4552
+ - uid: 4554
components:
- pos: -42.5,-39.5
parent: 2
type: Transform
- - uid: 4553
+ - uid: 4555
components:
- pos: -43.5,-39.5
parent: 2
type: Transform
- - uid: 4554
+ - uid: 4556
components:
- pos: -44.5,-39.5
parent: 2
type: Transform
- - uid: 4555
+ - uid: 4557
components:
- pos: -45.5,-39.5
parent: 2
type: Transform
- - uid: 4556
+ - uid: 4558
components:
- pos: -46.5,-39.5
parent: 2
type: Transform
- - uid: 4557
+ - uid: 4559
components:
- pos: -47.5,-39.5
parent: 2
type: Transform
- - uid: 4558
+ - uid: 4560
components:
- pos: -47.5,-40.5
parent: 2
type: Transform
- - uid: 4559
+ - uid: 4561
components:
- pos: -47.5,-41.5
parent: 2
type: Transform
- - uid: 4560
+ - uid: 4562
components:
- pos: -48.5,-41.5
parent: 2
type: Transform
- - uid: 4561
+ - uid: 4563
components:
- pos: -49.5,-41.5
parent: 2
type: Transform
- - uid: 4562
+ - uid: 4564
components:
- pos: -50.5,-41.5
parent: 2
type: Transform
- - uid: 4563
+ - uid: 4565
components:
- pos: -51.5,-41.5
parent: 2
type: Transform
- - uid: 4564
+ - uid: 4566
components:
- pos: -51.5,-42.5
parent: 2
type: Transform
- - uid: 4565
+ - uid: 4567
components:
- pos: -51.5,-43.5
parent: 2
type: Transform
- - uid: 4566
+ - uid: 4568
components:
- pos: -51.5,-44.5
parent: 2
type: Transform
- - uid: 4567
+ - uid: 4569
components:
- pos: -51.5,-45.5
parent: 2
type: Transform
- - uid: 4568
+ - uid: 4570
components:
- pos: -51.5,-46.5
parent: 2
type: Transform
- - uid: 4569
+ - uid: 4571
components:
- pos: -51.5,-47.5
parent: 2
type: Transform
- - uid: 4570
+ - uid: 4572
components:
- pos: -51.5,-48.5
parent: 2
type: Transform
- - uid: 4571
+ - uid: 4573
components:
- pos: -51.5,-49.5
parent: 2
type: Transform
- - uid: 4572
+ - uid: 4574
components:
- pos: -51.5,-50.5
parent: 2
type: Transform
- - uid: 4573
+ - uid: 4575
components:
- pos: -51.5,-51.5
parent: 2
type: Transform
- - uid: 4574
+ - uid: 4576
components:
- pos: -51.5,-52.5
parent: 2
type: Transform
- - uid: 4575
+ - uid: 4577
components:
- pos: -51.5,-53.5
parent: 2
type: Transform
- - uid: 4576
+ - uid: 4578
components:
- pos: -51.5,-54.5
parent: 2
type: Transform
- - uid: 4577
+ - uid: 4579
components:
- pos: -51.5,-55.5
parent: 2
type: Transform
- - uid: 4578
+ - uid: 4580
components:
- pos: -50.5,-55.5
parent: 2
type: Transform
- - uid: 4579
+ - uid: 4581
components:
- pos: -49.5,-55.5
parent: 2
type: Transform
- - uid: 4580
+ - uid: 4582
components:
- pos: -48.5,-55.5
parent: 2
type: Transform
- - uid: 4581
+ - uid: 4583
components:
- pos: -47.5,-55.5
parent: 2
type: Transform
- - uid: 4582
+ - uid: 4584
components:
- pos: -50.5,-53.5
parent: 2
type: Transform
- - uid: 4583
+ - uid: 4585
components:
- pos: -49.5,-53.5
parent: 2
type: Transform
- - uid: 4584
+ - uid: 4586
components:
- pos: -48.5,-53.5
parent: 2
type: Transform
- - uid: 4585
+ - uid: 4587
components:
- pos: -47.5,-53.5
parent: 2
type: Transform
- - uid: 4586
+ - uid: 4588
components:
- pos: -50.5,-51.5
parent: 2
type: Transform
- - uid: 4587
+ - uid: 4589
components:
- pos: -49.5,-51.5
parent: 2
type: Transform
- - uid: 4588
+ - uid: 4590
components:
- pos: -48.5,-51.5
parent: 2
type: Transform
- - uid: 4589
+ - uid: 4591
components:
- pos: -47.5,-51.5
parent: 2
type: Transform
- - uid: 4590
+ - uid: 4592
components:
- pos: -50.5,-49.5
parent: 2
type: Transform
- - uid: 4591
+ - uid: 4593
components:
- pos: -49.5,-49.5
parent: 2
type: Transform
- - uid: 4592
+ - uid: 4594
components:
- pos: -48.5,-49.5
parent: 2
type: Transform
- - uid: 4593
+ - uid: 4595
components:
- pos: -47.5,-49.5
parent: 2
type: Transform
- - uid: 4594
+ - uid: 4596
components:
- pos: -50.5,-47.5
parent: 2
type: Transform
- - uid: 4595
+ - uid: 4597
components:
- pos: -49.5,-47.5
parent: 2
type: Transform
- - uid: 4596
+ - uid: 4598
components:
- pos: -48.5,-47.5
parent: 2
type: Transform
- - uid: 4597
+ - uid: 4599
components:
- pos: -47.5,-47.5
parent: 2
type: Transform
- - uid: 4598
+ - uid: 4600
components:
- pos: -50.5,-45.5
parent: 2
type: Transform
- - uid: 4599
+ - uid: 4601
components:
- pos: -49.5,-45.5
parent: 2
type: Transform
- - uid: 4600
+ - uid: 4602
components:
- pos: -48.5,-45.5
parent: 2
type: Transform
- - uid: 4601
+ - uid: 4603
components:
- pos: -47.5,-45.5
parent: 2
type: Transform
- - uid: 4602
+ - uid: 4604
components:
- pos: -50.5,-43.5
parent: 2
type: Transform
- - uid: 4603
+ - uid: 4605
components:
- pos: -49.5,-43.5
parent: 2
type: Transform
- - uid: 4604
+ - uid: 4606
components:
- pos: -48.5,-43.5
parent: 2
type: Transform
- - uid: 4605
+ - uid: 4607
components:
- pos: -47.5,-43.5
parent: 2
type: Transform
- - uid: 4606
+ - uid: 4608
components:
- pos: -38.5,-35.5
parent: 2
type: Transform
- - uid: 4607
+ - uid: 4609
components:
- pos: -38.5,-36.5
parent: 2
type: Transform
- - uid: 4608
+ - uid: 4610
components:
- pos: -38.5,-37.5
parent: 2
type: Transform
- - uid: 4609
+ - uid: 4611
components:
- pos: -38.5,-38.5
parent: 2
type: Transform
- - uid: 4610
+ - uid: 4612
components:
- pos: -38.5,-39.5
parent: 2
type: Transform
- - uid: 4611
+ - uid: 4613
components:
- pos: -34.5,-34.5
parent: 2
type: Transform
- - uid: 4612
+ - uid: 4614
components:
- pos: -33.5,-34.5
parent: 2
type: Transform
- - uid: 4613
+ - uid: 4615
components:
- pos: -32.5,-34.5
parent: 2
type: Transform
- - uid: 4614
+ - uid: 4616
components:
- pos: -31.5,-34.5
parent: 2
type: Transform
- - uid: 4615
+ - uid: 4617
components:
- pos: -30.5,-34.5
parent: 2
type: Transform
- - uid: 4616
+ - uid: 4618
components:
- pos: -29.5,-34.5
parent: 2
type: Transform
- - uid: 4617
+ - uid: 4619
components:
- pos: -28.5,-34.5
parent: 2
type: Transform
- - uid: 4618
+ - uid: 4620
components:
- pos: -27.5,-34.5
parent: 2
type: Transform
- - uid: 4619
+ - uid: 4621
components:
- pos: -26.5,-34.5
parent: 2
type: Transform
- - uid: 4620
+ - uid: 4622
components:
- pos: -25.5,-34.5
parent: 2
type: Transform
- - uid: 4621
+ - uid: 4623
components:
- pos: -24.5,-34.5
parent: 2
type: Transform
- - uid: 4622
+ - uid: 4624
components:
- pos: -23.5,-34.5
parent: 2
type: Transform
- - uid: 4623
+ - uid: 4625
components:
- pos: -23.5,-33.5
parent: 2
type: Transform
- - uid: 4624
+ - uid: 4626
components:
- pos: -32.5,-33.5
parent: 2
type: Transform
- - uid: 4625
+ - uid: 4627
components:
- pos: -32.5,-32.5
parent: 2
type: Transform
- - uid: 4626
+ - uid: 4628
components:
- pos: -31.5,-35.5
parent: 2
type: Transform
- - uid: 4627
+ - uid: 4629
components:
- pos: -31.5,-36.5
parent: 2
type: Transform
- - uid: 4628
+ - uid: 4630
components:
- pos: -31.5,-37.5
parent: 2
type: Transform
- - uid: 4629
+ - uid: 4631
components:
- pos: -31.5,-38.5
parent: 2
type: Transform
- - uid: 4630
+ - uid: 4632
components:
- pos: -31.5,-39.5
parent: 2
type: Transform
- - uid: 4631
+ - uid: 4633
components:
- pos: -31.5,-40.5
parent: 2
type: Transform
- - uid: 4632
+ - uid: 4634
components:
- pos: -32.5,-40.5
parent: 2
type: Transform
- - uid: 4633
+ - uid: 4635
components:
- pos: -33.5,-40.5
parent: 2
type: Transform
- - uid: 4634
+ - uid: 4636
components:
- pos: -34.5,-40.5
parent: 2
type: Transform
- - uid: 4635
+ - uid: 4637
components:
- pos: -35.5,-40.5
parent: 2
type: Transform
- - uid: 4636
+ - uid: 4638
components:
- pos: -35.5,-41.5
parent: 2
type: Transform
- - uid: 4637
+ - uid: 4639
components:
- pos: -35.5,-42.5
parent: 2
type: Transform
- - uid: 4638
+ - uid: 4640
components:
- pos: -35.5,-43.5
parent: 2
type: Transform
- - uid: 4639
+ - uid: 4641
components:
- pos: -35.5,-44.5
parent: 2
type: Transform
- - uid: 4640
+ - uid: 4642
components:
- pos: -35.5,-45.5
parent: 2
type: Transform
- - uid: 4641
+ - uid: 4643
components:
- pos: -35.5,-46.5
parent: 2
type: Transform
- - uid: 4642
+ - uid: 4644
components:
- pos: -35.5,-47.5
parent: 2
type: Transform
- - uid: 4643
+ - uid: 4645
components:
- pos: -35.5,-48.5
parent: 2
type: Transform
- - uid: 4644
+ - uid: 4646
components:
- pos: -35.5,-49.5
parent: 2
type: Transform
- - uid: 4645
+ - uid: 4647
components:
- pos: -35.5,-50.5
parent: 2
type: Transform
- - uid: 4646
+ - uid: 4648
components:
- pos: -35.5,-51.5
parent: 2
type: Transform
- - uid: 4647
+ - uid: 4649
components:
- pos: -35.5,-52.5
parent: 2
type: Transform
- - uid: 4648
+ - uid: 4650
components:
- pos: -35.5,-53.5
parent: 2
type: Transform
- - uid: 4649
+ - uid: 4651
components:
- pos: -35.5,-54.5
parent: 2
type: Transform
- - uid: 4650
+ - uid: 4652
components:
- pos: -35.5,-55.5
parent: 2
type: Transform
- - uid: 4651
+ - uid: 4653
components:
- pos: -36.5,-43.5
parent: 2
type: Transform
- - uid: 4652
+ - uid: 4654
components:
- pos: -37.5,-43.5
parent: 2
type: Transform
- - uid: 4653
+ - uid: 4655
components:
- pos: -36.5,-46.5
parent: 2
type: Transform
- - uid: 4654
+ - uid: 4656
components:
- pos: -37.5,-46.5
parent: 2
type: Transform
- - uid: 4655
+ - uid: 4657
components:
- pos: 55.5,11.5
parent: 2
type: Transform
- - uid: 4656
+ - uid: 4658
components:
- pos: -63.5,-30.5
parent: 2
type: Transform
- - uid: 4657
+ - uid: 4659
components:
- pos: -52.5,-29.5
parent: 2
type: Transform
- - uid: 4658
+ - uid: 4660
components:
- pos: -52.5,-28.5
parent: 2
type: Transform
- - uid: 4659
+ - uid: 4661
components:
- pos: -57.5,-18.5
parent: 2
type: Transform
- - uid: 4660
+ - uid: 4662
components:
- pos: -55.5,-18.5
parent: 2
type: Transform
- - uid: 4661
+ - uid: 4663
components:
- pos: -41.5,-40.5
parent: 2
type: Transform
- - uid: 4662
+ - uid: 4664
components:
- pos: -41.5,-41.5
parent: 2
type: Transform
- - uid: 4663
+ - uid: 4665
components:
- pos: -46.5,-40.5
parent: 2
type: Transform
- - uid: 4664
+ - uid: 4666
components:
- pos: -46.5,-41.5
parent: 2
type: Transform
- - uid: 4665
+ - uid: 4667
components:
- pos: -46.5,-42.5
parent: 2
type: Transform
- - uid: 4666
+ - uid: 4668
components:
- pos: -46.5,-43.5
parent: 2
type: Transform
- - uid: 4667
+ - uid: 4669
components:
- pos: -46.5,-44.5
parent: 2
type: Transform
- - uid: 4668
+ - uid: 4670
components:
- pos: -46.5,-45.5
parent: 2
type: Transform
- - uid: 4669
+ - uid: 4671
components:
- pos: -25.5,-73.5
parent: 2
type: Transform
- - uid: 4670
+ - uid: 4672
components:
- pos: -21.5,-42.5
parent: 2
type: Transform
- - uid: 4671
+ - uid: 4673
components:
- pos: -22.5,-42.5
parent: 2
type: Transform
- - uid: 4672
+ - uid: 4674
components:
- pos: -29.5,-73.5
parent: 2
type: Transform
- - uid: 4673
+ - uid: 4675
components:
- pos: -39.5,-66.5
parent: 2
type: Transform
- - uid: 4674
+ - uid: 4676
components:
- pos: -29.5,-64.5
parent: 2
type: Transform
- - uid: 4675
+ - uid: 4677
components:
- pos: -29.5,-65.5
parent: 2
type: Transform
- - uid: 4676
+ - uid: 4678
components:
- pos: -29.5,-66.5
parent: 2
type: Transform
- - uid: 4677
+ - uid: 4679
components:
- pos: -30.5,-66.5
parent: 2
type: Transform
- - uid: 4678
+ - uid: 4680
components:
- pos: -31.5,-66.5
parent: 2
type: Transform
- - uid: 4679
+ - uid: 4681
components:
- pos: -32.5,-66.5
parent: 2
type: Transform
- - uid: 4680
+ - uid: 4682
components:
- pos: -33.5,-66.5
parent: 2
type: Transform
- - uid: 4681
+ - uid: 4683
components:
- pos: -34.5,-66.5
parent: 2
type: Transform
- - uid: 4682
+ - uid: 4684
components:
- pos: -35.5,-66.5
parent: 2
type: Transform
- - uid: 4683
+ - uid: 4685
components:
- pos: -35.5,-65.5
parent: 2
type: Transform
- - uid: 4684
+ - uid: 4686
components:
- pos: -36.5,-65.5
parent: 2
type: Transform
- - uid: 4685
+ - uid: 4687
components:
- pos: -37.5,-65.5
parent: 2
type: Transform
- - uid: 4686
+ - uid: 4688
components:
- pos: -38.5,-65.5
parent: 2
type: Transform
- - uid: 4687
+ - uid: 4689
components:
- pos: -39.5,-65.5
parent: 2
type: Transform
- - uid: 4688
+ - uid: 4690
components:
- pos: -39.5,-64.5
parent: 2
type: Transform
- - uid: 4689
+ - uid: 4691
components:
- pos: -40.5,-64.5
parent: 2
type: Transform
- - uid: 4690
+ - uid: 4692
components:
- pos: -41.5,-64.5
parent: 2
type: Transform
- - uid: 4691
+ - uid: 4693
components:
- pos: -42.5,-64.5
parent: 2
type: Transform
- - uid: 4692
+ - uid: 4694
components:
- pos: -43.5,-64.5
parent: 2
type: Transform
- - uid: 4693
+ - uid: 4695
components:
- pos: -44.5,-64.5
parent: 2
type: Transform
- - uid: 4694
+ - uid: 4696
components:
- pos: -45.5,-64.5
parent: 2
type: Transform
- - uid: 4695
+ - uid: 4697
components:
- pos: -45.5,-63.5
parent: 2
type: Transform
- - uid: 4696
+ - uid: 4698
components:
- pos: -46.5,-63.5
parent: 2
type: Transform
- - uid: 4697
+ - uid: 4699
components:
- pos: -47.5,-63.5
parent: 2
type: Transform
- - uid: 4698
+ - uid: 4700
components:
- pos: -47.5,-64.5
parent: 2
type: Transform
- - uid: 4699
+ - uid: 4701
components:
- pos: -48.5,-64.5
parent: 2
type: Transform
- - uid: 4700
+ - uid: 4702
components:
- pos: -49.5,-64.5
parent: 2
type: Transform
- - uid: 4701
+ - uid: 4703
components:
- pos: -49.5,-65.5
parent: 2
type: Transform
- - uid: 4702
+ - uid: 4704
components:
- pos: -49.5,-66.5
parent: 2
type: Transform
- - uid: 4703
+ - uid: 4705
components:
- pos: -48.5,-66.5
parent: 2
type: Transform
- - uid: 4704
+ - uid: 4706
components:
- pos: -47.5,-66.5
parent: 2
type: Transform
- - uid: 4705
+ - uid: 4707
components:
- pos: -46.5,-66.5
parent: 2
type: Transform
- - uid: 4706
+ - uid: 4708
components:
- pos: -45.5,-66.5
parent: 2
type: Transform
- - uid: 4707
+ - uid: 4709
components:
- pos: -44.5,-66.5
parent: 2
type: Transform
- - uid: 4708
+ - uid: 4710
components:
- pos: -43.5,-66.5
parent: 2
type: Transform
- - uid: 4709
+ - uid: 4711
components:
- pos: -42.5,-66.5
parent: 2
type: Transform
- - uid: 4710
+ - uid: 4712
components:
- pos: -42.5,-68.5
parent: 2
type: Transform
- - uid: 4711
+ - uid: 4713
components:
- pos: -42.5,-69.5
parent: 2
type: Transform
- - uid: 4712
+ - uid: 4714
components:
- pos: -42.5,-70.5
parent: 2
type: Transform
- - uid: 4713
+ - uid: 4715
components:
- pos: -42.5,-71.5
parent: 2
type: Transform
- - uid: 4714
+ - uid: 4716
components:
- pos: -43.5,-71.5
parent: 2
type: Transform
- - uid: 4715
+ - uid: 4717
components:
- pos: -44.5,-71.5
parent: 2
type: Transform
- - uid: 4716
+ - uid: 4718
components:
- pos: -45.5,-71.5
parent: 2
type: Transform
- - uid: 4717
+ - uid: 4719
components:
- pos: -45.5,-72.5
parent: 2
type: Transform
- - uid: 4718
+ - uid: 4720
components:
- pos: -45.5,-73.5
parent: 2
type: Transform
- - uid: 4719
+ - uid: 4721
components:
- pos: -45.5,-74.5
parent: 2
type: Transform
- - uid: 4720
+ - uid: 4722
components:
- pos: -45.5,-75.5
parent: 2
type: Transform
- - uid: 4721
+ - uid: 4723
components:
- pos: -44.5,-75.5
parent: 2
type: Transform
- - uid: 4722
+ - uid: 4724
components:
- pos: -43.5,-75.5
parent: 2
type: Transform
- - uid: 4723
+ - uid: 4725
components:
- pos: -42.5,-76.5
parent: 2
type: Transform
- - uid: 4724
+ - uid: 4726
components:
- pos: -42.5,-75.5
parent: 2
type: Transform
- - uid: 4725
+ - uid: 4727
components:
- pos: -41.5,-76.5
parent: 2
type: Transform
- - uid: 4726
+ - uid: 4728
components:
- pos: -40.5,-76.5
parent: 2
type: Transform
- - uid: 4727
+ - uid: 4729
components:
- pos: -40.5,-75.5
parent: 2
type: Transform
- - uid: 4728
- components:
- - pos: -39.5,-75.5
- parent: 2
- type: Transform
- - uid: 4729
- components:
- - pos: -38.5,-75.5
- parent: 2
- type: Transform
- uid: 4730
components:
- - pos: -37.5,-75.5
+ - pos: -39.5,-75.5
parent: 2
type: Transform
- uid: 4731
components:
- - pos: -37.5,-76.5
+ - pos: -38.5,-75.5
parent: 2
type: Transform
- uid: 4732
components:
- - pos: -37.5,-77.5
+ - pos: -37.5,-75.5
parent: 2
type: Transform
- uid: 4733
components:
- - pos: -37.5,-78.5
+ - pos: -37.5,-76.5
parent: 2
type: Transform
- uid: 4734
components:
- - pos: -37.5,-79.5
+ - pos: -37.5,-77.5
parent: 2
type: Transform
- uid: 4735
components:
- - pos: -37.5,-80.5
+ - pos: -37.5,-78.5
parent: 2
type: Transform
- uid: 4736
components:
- - pos: -37.5,-81.5
+ - pos: -37.5,-79.5
parent: 2
type: Transform
- uid: 4737
components:
- - pos: -37.5,-82.5
+ - pos: -37.5,-80.5
parent: 2
type: Transform
- uid: 4738
components:
- - pos: -44.5,-85.5
+ - pos: -37.5,-81.5
parent: 2
type: Transform
- uid: 4739
components:
- - pos: -45.5,-85.5
+ - pos: -37.5,-82.5
parent: 2
type: Transform
- uid: 4740
components:
- - pos: -45.5,-84.5
+ - pos: -44.5,-85.5
parent: 2
type: Transform
- uid: 4741
components:
- - pos: -41.5,-85.5
+ - pos: -45.5,-85.5
parent: 2
type: Transform
- uid: 4742
components:
- - pos: -45.5,-83.5
+ - pos: -45.5,-84.5
parent: 2
type: Transform
- uid: 4743
components:
- - pos: -45.5,-82.5
+ - pos: -41.5,-85.5
parent: 2
type: Transform
- uid: 4744
components:
- - pos: -46.5,-82.5
+ - pos: -45.5,-83.5
parent: 2
type: Transform
- uid: 4745
components:
- - pos: -46.5,-83.5
+ - pos: -45.5,-82.5
parent: 2
type: Transform
- uid: 4746
components:
- - pos: -42.5,-85.5
+ - pos: -46.5,-82.5
parent: 2
type: Transform
- uid: 4747
components:
- - pos: -37.5,-83.5
+ - pos: -46.5,-83.5
parent: 2
type: Transform
- uid: 4748
components:
- - pos: -37.5,-84.5
+ - pos: -42.5,-85.5
parent: 2
type: Transform
- uid: 4749
components:
- - pos: -46.5,-81.5
+ - pos: -37.5,-83.5
parent: 2
type: Transform
- uid: 4750
components:
- - pos: -46.5,-80.5
+ - pos: -37.5,-84.5
parent: 2
type: Transform
- uid: 4751
components:
- - pos: -46.5,-79.5
+ - pos: -46.5,-81.5
parent: 2
type: Transform
- uid: 4752
components:
- - pos: -46.5,-78.5
+ - pos: -46.5,-80.5
parent: 2
type: Transform
- uid: 4753
components:
- - pos: -46.5,-77.5
+ - pos: -46.5,-79.5
parent: 2
type: Transform
- uid: 4754
components:
- - pos: -46.5,-76.5
+ - pos: -46.5,-78.5
parent: 2
type: Transform
- uid: 4755
components:
- - pos: -47.5,-76.5
+ - pos: -46.5,-77.5
parent: 2
type: Transform
- uid: 4756
components:
- - pos: -48.5,-76.5
+ - pos: -46.5,-76.5
parent: 2
type: Transform
- uid: 4757
components:
- - pos: -49.5,-76.5
+ - pos: -47.5,-76.5
parent: 2
type: Transform
- uid: 4758
components:
- - pos: -50.5,-76.5
+ - pos: -48.5,-76.5
parent: 2
type: Transform
- uid: 4759
components:
- - pos: -51.5,-76.5
+ - pos: -49.5,-76.5
parent: 2
type: Transform
- uid: 4760
components:
- - pos: -52.5,-76.5
+ - pos: -50.5,-76.5
parent: 2
type: Transform
- uid: 4761
components:
- - pos: -53.5,-76.5
+ - pos: -51.5,-76.5
parent: 2
type: Transform
- uid: 4762
components:
- - pos: -54.5,-76.5
+ - pos: -52.5,-76.5
parent: 2
type: Transform
- uid: 4763
components:
- - pos: -55.5,-76.5
+ - pos: -53.5,-76.5
parent: 2
type: Transform
- uid: 4764
components:
- - pos: -55.5,-77.5
+ - pos: -54.5,-76.5
parent: 2
type: Transform
- uid: 4765
components:
- - pos: -55.5,-78.5
+ - pos: -55.5,-76.5
parent: 2
type: Transform
- uid: 4766
components:
- - pos: -55.5,-79.5
+ - pos: -55.5,-77.5
parent: 2
type: Transform
- uid: 4767
components:
- - pos: -55.5,-80.5
+ - pos: -55.5,-78.5
parent: 2
type: Transform
- uid: 4768
components:
- - pos: -55.5,-81.5
+ - pos: -55.5,-79.5
parent: 2
type: Transform
- uid: 4769
components:
- - pos: -55.5,-75.5
+ - pos: -55.5,-80.5
parent: 2
type: Transform
- uid: 4770
components:
- - pos: -55.5,-74.5
+ - pos: -55.5,-81.5
parent: 2
type: Transform
- uid: 4771
components:
- - pos: -55.5,-73.5
+ - pos: -55.5,-75.5
parent: 2
type: Transform
- uid: 4772
components:
- - pos: -55.5,-72.5
+ - pos: -55.5,-74.5
parent: 2
type: Transform
- uid: 4773
components:
- - pos: -55.5,-71.5
+ - pos: -55.5,-73.5
parent: 2
type: Transform
- uid: 4774
components:
- - pos: -54.5,-73.5
+ - pos: -55.5,-72.5
parent: 2
type: Transform
- uid: 4775
components:
- - pos: -53.5,-73.5
+ - pos: -55.5,-71.5
parent: 2
type: Transform
- uid: 4776
components:
- - pos: -54.5,-79.5
+ - pos: -54.5,-73.5
parent: 2
type: Transform
- uid: 4777
components:
- - pos: -53.5,-79.5
+ - pos: -53.5,-73.5
parent: 2
type: Transform
- uid: 4778
components:
- - pos: -56.5,-71.5
+ - pos: -54.5,-79.5
parent: 2
type: Transform
- uid: 4779
components:
- - pos: -57.5,-71.5
+ - pos: -53.5,-79.5
parent: 2
type: Transform
- uid: 4780
components:
- - pos: -56.5,-73.5
+ - pos: -56.5,-71.5
parent: 2
type: Transform
- uid: 4781
components:
- - pos: -57.5,-73.5
+ - pos: -57.5,-71.5
parent: 2
type: Transform
- uid: 4782
components:
- - pos: -56.5,-79.5
+ - pos: -56.5,-73.5
parent: 2
type: Transform
- uid: 4783
components:
- - pos: -57.5,-79.5
+ - pos: -57.5,-73.5
parent: 2
type: Transform
- uid: 4784
components:
- - pos: -56.5,-81.5
+ - pos: -56.5,-79.5
parent: 2
type: Transform
- uid: 4785
components:
- - pos: -57.5,-81.5
+ - pos: -57.5,-79.5
parent: 2
type: Transform
- uid: 4786
components:
- - pos: -55.5,-82.5
+ - pos: -56.5,-81.5
parent: 2
type: Transform
- uid: 4787
components:
- - pos: -29.5,-63.5
+ - pos: -57.5,-81.5
parent: 2
type: Transform
- uid: 4788
components:
- - pos: -28.5,-63.5
+ - pos: -55.5,-82.5
parent: 2
type: Transform
- uid: 4789
components:
- - pos: -28.5,-62.5
+ - pos: -29.5,-63.5
parent: 2
type: Transform
- uid: 4790
components:
- - pos: -28.5,-61.5
+ - pos: -28.5,-63.5
parent: 2
type: Transform
- uid: 4791
components:
- - pos: -28.5,-60.5
+ - pos: -28.5,-62.5
parent: 2
type: Transform
- uid: 4792
components:
- - pos: -28.5,-59.5
+ - pos: -28.5,-61.5
parent: 2
type: Transform
- uid: 4793
components:
- - pos: -28.5,-58.5
+ - pos: -28.5,-60.5
parent: 2
type: Transform
- uid: 4794
components:
- - pos: -28.5,-57.5
+ - pos: -28.5,-59.5
parent: 2
type: Transform
- uid: 4795
components:
- - pos: -28.5,-56.5
+ - pos: -28.5,-58.5
parent: 2
type: Transform
- uid: 4796
components:
- - pos: -28.5,-55.5
+ - pos: -28.5,-57.5
parent: 2
type: Transform
- uid: 4797
components:
- - pos: -28.5,-54.5
+ - pos: -28.5,-56.5
parent: 2
type: Transform
- uid: 4798
components:
- - pos: -27.5,-54.5
+ - pos: -28.5,-55.5
parent: 2
type: Transform
- uid: 4799
components:
- - pos: -26.5,-54.5
+ - pos: -28.5,-54.5
parent: 2
type: Transform
- uid: 4800
components:
- - pos: -25.5,-54.5
+ - pos: -27.5,-54.5
parent: 2
type: Transform
- uid: 4801
components:
- - pos: -25.5,-53.5
+ - pos: -26.5,-54.5
parent: 2
type: Transform
- uid: 4802
components:
- - pos: -25.5,-52.5
+ - pos: -25.5,-54.5
parent: 2
type: Transform
- uid: 4803
components:
- - pos: -25.5,-51.5
+ - pos: -25.5,-53.5
parent: 2
type: Transform
- uid: 4804
components:
- - pos: -24.5,-51.5
+ - pos: -25.5,-52.5
parent: 2
type: Transform
- uid: 4805
components:
- - pos: -27.5,-63.5
+ - pos: -25.5,-51.5
parent: 2
type: Transform
- uid: 4806
components:
- - pos: -27.5,-64.5
+ - pos: -24.5,-51.5
parent: 2
type: Transform
- uid: 4807
components:
- - pos: -23.5,-64.5
+ - pos: -27.5,-63.5
parent: 2
type: Transform
- uid: 4808
components:
- - pos: -24.5,-64.5
+ - pos: -27.5,-64.5
parent: 2
type: Transform
- uid: 4809
components:
- - pos: -25.5,-64.5
+ - pos: -23.5,-64.5
parent: 2
type: Transform
- uid: 4810
components:
- - pos: -26.5,-64.5
+ - pos: -24.5,-64.5
parent: 2
type: Transform
- uid: 4811
components:
- - pos: -23.5,-66.5
+ - pos: -25.5,-64.5
parent: 2
type: Transform
- uid: 4812
components:
- - pos: -23.5,-65.5
+ - pos: -26.5,-64.5
parent: 2
type: Transform
- uid: 4813
components:
- - pos: -42.5,-72.5
+ - pos: -23.5,-66.5
parent: 2
type: Transform
- uid: 4814
components:
- - pos: -41.5,-72.5
+ - pos: -23.5,-65.5
parent: 2
type: Transform
- uid: 4815
components:
- - pos: -40.5,-72.5
+ - pos: -42.5,-72.5
parent: 2
type: Transform
- uid: 4816
components:
- - pos: -39.5,-72.5
+ - pos: -41.5,-72.5
parent: 2
type: Transform
- uid: 4817
components:
- - pos: -38.5,-72.5
+ - pos: -40.5,-72.5
parent: 2
type: Transform
- uid: 4818
components:
- - pos: -23.5,-42.5
+ - pos: -39.5,-72.5
parent: 2
type: Transform
- uid: 4819
components:
- - pos: -23.5,-43.5
+ - pos: -38.5,-72.5
parent: 2
type: Transform
- uid: 4820
components:
- - pos: -23.5,-44.5
+ - pos: -23.5,-42.5
parent: 2
type: Transform
- uid: 4821
components:
- - pos: -23.5,-45.5
+ - pos: -23.5,-43.5
parent: 2
type: Transform
- uid: 4822
components:
- - pos: -23.5,-46.5
+ - pos: -23.5,-44.5
parent: 2
type: Transform
- uid: 4823
components:
- - pos: -23.5,-47.5
+ - pos: -23.5,-45.5
parent: 2
type: Transform
- uid: 4824
components:
- - pos: -23.5,-48.5
+ - pos: -23.5,-46.5
parent: 2
type: Transform
- uid: 4825
components:
- - pos: -23.5,-49.5
+ - pos: -23.5,-47.5
parent: 2
type: Transform
- uid: 4826
components:
- - pos: -24.5,-49.5
+ - pos: -23.5,-48.5
parent: 2
type: Transform
- uid: 4827
components:
- - pos: -25.5,-49.5
+ - pos: -23.5,-49.5
parent: 2
type: Transform
- uid: 4828
components:
- - pos: -26.5,-49.5
+ - pos: -24.5,-49.5
parent: 2
type: Transform
- uid: 4829
components:
- - pos: -27.5,-49.5
+ - pos: -25.5,-49.5
parent: 2
type: Transform
- uid: 4830
components:
- - pos: -27.5,-48.5
+ - pos: -26.5,-49.5
parent: 2
type: Transform
- uid: 4831
components:
- - pos: -27.5,-47.5
+ - pos: -27.5,-49.5
parent: 2
type: Transform
- uid: 4832
components:
- - pos: -27.5,-46.5
+ - pos: -27.5,-48.5
parent: 2
type: Transform
- uid: 4833
components:
- - pos: -26.5,-46.5
+ - pos: -27.5,-47.5
parent: 2
type: Transform
- uid: 4834
components:
- - pos: -25.5,-46.5
+ - pos: -27.5,-46.5
parent: 2
type: Transform
- uid: 4835
components:
- - pos: -25.5,-45.5
+ - pos: -26.5,-46.5
parent: 2
type: Transform
- uid: 4836
components:
- - pos: -25.5,-44.5
+ - pos: -25.5,-46.5
parent: 2
type: Transform
- uid: 4837
components:
- - pos: -25.5,-43.5
+ - pos: -25.5,-45.5
parent: 2
type: Transform
- uid: 4838
components:
- - pos: -25.5,-42.5
+ - pos: -25.5,-44.5
parent: 2
type: Transform
- uid: 4839
components:
- - pos: -25.5,-41.5
+ - pos: -25.5,-43.5
parent: 2
type: Transform
- uid: 4840
components:
- - pos: -25.5,-40.5
+ - pos: -25.5,-42.5
parent: 2
type: Transform
- uid: 4841
components:
- - pos: -25.5,-39.5
+ - pos: -25.5,-41.5
parent: 2
type: Transform
- uid: 4842
components:
- - pos: -26.5,-41.5
+ - pos: -25.5,-40.5
parent: 2
type: Transform
- uid: 4843
components:
- - pos: -27.5,-41.5
+ - pos: -25.5,-39.5
parent: 2
type: Transform
- uid: 4844
components:
- - pos: -28.5,-41.5
+ - pos: -26.5,-41.5
parent: 2
type: Transform
- uid: 4845
components:
- - pos: -27.5,-45.5
+ - pos: -27.5,-41.5
parent: 2
type: Transform
- uid: 4846
components:
- - pos: -27.5,-44.5
+ - pos: -28.5,-41.5
parent: 2
type: Transform
- uid: 4847
components:
- - pos: -28.5,-44.5
+ - pos: -27.5,-45.5
parent: 2
type: Transform
- uid: 4848
components:
- - pos: -29.5,-44.5
+ - pos: -27.5,-44.5
parent: 2
type: Transform
- uid: 4849
components:
- - pos: -30.5,-44.5
+ - pos: -28.5,-44.5
parent: 2
type: Transform
- uid: 4850
components:
- - pos: -31.5,-44.5
+ - pos: -29.5,-44.5
parent: 2
type: Transform
- uid: 4851
components:
- - pos: -31.5,-45.5
+ - pos: -30.5,-44.5
parent: 2
type: Transform
- uid: 4852
components:
- - pos: -31.5,-46.5
+ - pos: -31.5,-44.5
parent: 2
type: Transform
- uid: 4853
components:
- - pos: -31.5,-47.5
+ - pos: -31.5,-45.5
parent: 2
type: Transform
- uid: 4854
components:
- - pos: -23.5,-51.5
+ - pos: -31.5,-46.5
parent: 2
type: Transform
- uid: 4855
components:
- - pos: -30.5,-47.5
+ - pos: -31.5,-47.5
parent: 2
type: Transform
- uid: 4856
components:
- - pos: -30.5,-48.5
+ - pos: -23.5,-51.5
parent: 2
type: Transform
- uid: 4857
components:
- - pos: -30.5,-49.5
+ - pos: -30.5,-47.5
parent: 2
type: Transform
- uid: 4858
components:
- - pos: -22.5,-51.5
+ - pos: -30.5,-48.5
parent: 2
type: Transform
- uid: 4859
components:
- - pos: -19.5,-49.5
+ - pos: -30.5,-49.5
parent: 2
type: Transform
- uid: 4860
components:
- - pos: -20.5,-49.5
+ - pos: -22.5,-51.5
parent: 2
type: Transform
- uid: 4861
components:
- - pos: -22.5,-52.5
+ - pos: -19.5,-49.5
parent: 2
type: Transform
- uid: 4862
components:
- - pos: -22.5,-53.5
+ - pos: -20.5,-49.5
parent: 2
type: Transform
- uid: 4863
components:
- - pos: -22.5,-54.5
+ - pos: -22.5,-52.5
parent: 2
type: Transform
- uid: 4864
components:
- - pos: -22.5,-55.5
+ - pos: -22.5,-53.5
parent: 2
type: Transform
- uid: 4865
components:
- - pos: -21.5,-52.5
+ - pos: -22.5,-54.5
parent: 2
type: Transform
- uid: 4866
components:
- - pos: -55.5,-60.5
+ - pos: -22.5,-55.5
parent: 2
type: Transform
- uid: 4867
components:
- - pos: 30.5,-14.5
+ - pos: -21.5,-52.5
parent: 2
type: Transform
- uid: 4868
components:
- - pos: 29.5,-14.5
+ - pos: -55.5,-60.5
parent: 2
type: Transform
- uid: 4869
components:
- - pos: 30.5,-11.5
+ - pos: 30.5,-14.5
parent: 2
type: Transform
- uid: 4870
components:
- - pos: 30.5,-12.5
+ - pos: 29.5,-14.5
parent: 2
type: Transform
- uid: 4871
components:
- - pos: -1.5,-79.5
+ - pos: 30.5,-11.5
parent: 2
type: Transform
- uid: 4872
components:
- - pos: 28.5,-25.5
+ - pos: 30.5,-12.5
parent: 2
type: Transform
- uid: 4873
components:
- - pos: -34.5,-55.5
+ - pos: -1.5,-79.5
parent: 2
type: Transform
- uid: 4874
components:
- - pos: -33.5,-26.5
+ - pos: 28.5,-25.5
parent: 2
type: Transform
- uid: 4875
components:
- - pos: -34.5,-26.5
+ - pos: -34.5,-55.5
parent: 2
type: Transform
- uid: 4876
components:
- - pos: -35.5,-26.5
+ - pos: -33.5,-26.5
parent: 2
type: Transform
- uid: 4877
components:
- - pos: -35.5,-25.5
+ - pos: -34.5,-26.5
parent: 2
type: Transform
- uid: 4878
components:
- - pos: -35.5,-24.5
+ - pos: -35.5,-26.5
parent: 2
type: Transform
- uid: 4879
components:
- - pos: -36.5,-24.5
+ - pos: -35.5,-25.5
parent: 2
type: Transform
- uid: 4880
components:
- - pos: -37.5,-24.5
+ - pos: -35.5,-24.5
parent: 2
type: Transform
- uid: 4881
components:
- - pos: -37.5,-23.5
+ - pos: -36.5,-24.5
parent: 2
type: Transform
- uid: 4882
components:
- - pos: -37.5,-22.5
+ - pos: -37.5,-24.5
parent: 2
type: Transform
- uid: 4883
components:
- - pos: -37.5,-21.5
+ - pos: -37.5,-23.5
parent: 2
type: Transform
- uid: 4884
components:
- - pos: -38.5,-22.5
+ - pos: -37.5,-22.5
parent: 2
type: Transform
- uid: 4885
components:
- - pos: -39.5,-22.5
+ - pos: -37.5,-21.5
parent: 2
type: Transform
- uid: 4886
components:
- - pos: -39.5,-23.5
+ - pos: -38.5,-22.5
parent: 2
type: Transform
- uid: 4887
components:
- - pos: -39.5,-24.5
+ - pos: -39.5,-22.5
parent: 2
type: Transform
- uid: 4888
components:
- - pos: -40.5,-24.5
+ - pos: -39.5,-23.5
parent: 2
type: Transform
- uid: 4889
components:
- - pos: -41.5,-24.5
+ - pos: -39.5,-24.5
parent: 2
type: Transform
- uid: 4890
components:
- - pos: -41.5,-25.5
+ - pos: -40.5,-24.5
parent: 2
type: Transform
- uid: 4891
components:
- - pos: -41.5,-26.5
+ - pos: -41.5,-24.5
parent: 2
type: Transform
- uid: 4892
components:
- - pos: -43.5,-26.5
+ - pos: -41.5,-25.5
parent: 2
type: Transform
- uid: 4893
components:
- - pos: -42.5,-26.5
+ - pos: -41.5,-26.5
parent: 2
type: Transform
- uid: 4894
components:
- - pos: -40.5,-26.5
+ - pos: -43.5,-26.5
parent: 2
type: Transform
- uid: 4895
components:
- - pos: -39.5,-26.5
+ - pos: -42.5,-26.5
parent: 2
type: Transform
- uid: 4896
components:
- - pos: -38.5,-26.5
+ - pos: -40.5,-26.5
parent: 2
type: Transform
- uid: 4897
components:
- - pos: -37.5,-26.5
+ - pos: -39.5,-26.5
parent: 2
type: Transform
- uid: 4898
components:
- - pos: -37.5,-27.5
+ - pos: -38.5,-26.5
parent: 2
type: Transform
- uid: 4899
components:
- - pos: -37.5,-28.5
+ - pos: -37.5,-26.5
parent: 2
type: Transform
- uid: 4900
components:
- - pos: -36.5,-28.5
+ - pos: -37.5,-27.5
parent: 2
type: Transform
- uid: 4901
components:
- - pos: -35.5,-28.5
+ - pos: -37.5,-28.5
parent: 2
type: Transform
- uid: 4902
components:
- - pos: -35.5,-29.5
+ - pos: -36.5,-28.5
parent: 2
type: Transform
- uid: 4903
components:
- - pos: -35.5,-30.5
+ - pos: -35.5,-28.5
parent: 2
type: Transform
- uid: 4904
components:
- - pos: -44.5,-26.5
+ - pos: -35.5,-29.5
parent: 2
type: Transform
- uid: 4905
components:
- - pos: -44.5,-27.5
+ - pos: -35.5,-30.5
parent: 2
type: Transform
- uid: 4906
components:
- - pos: -45.5,-27.5
+ - pos: -44.5,-26.5
parent: 2
type: Transform
- uid: 4907
components:
- - pos: -46.5,-27.5
+ - pos: -44.5,-27.5
parent: 2
type: Transform
- uid: 4908
components:
- - pos: -47.5,-27.5
+ - pos: -45.5,-27.5
parent: 2
type: Transform
- uid: 4909
components:
- - pos: -48.5,-27.5
+ - pos: -46.5,-27.5
parent: 2
type: Transform
- uid: 4910
components:
- - pos: -48.5,-28.5
+ - pos: -47.5,-27.5
parent: 2
type: Transform
- uid: 4911
components:
- - pos: -48.5,-29.5
+ - pos: -48.5,-27.5
parent: 2
type: Transform
- uid: 4912
components:
- - pos: -48.5,-30.5
+ - pos: -48.5,-28.5
parent: 2
type: Transform
- uid: 4913
components:
- - pos: -48.5,-31.5
+ - pos: -48.5,-29.5
parent: 2
type: Transform
- uid: 4914
components:
- - pos: -48.5,-32.5
+ - pos: -48.5,-30.5
parent: 2
type: Transform
- uid: 4915
components:
- - pos: -50.5,-32.5
+ - pos: -48.5,-31.5
parent: 2
type: Transform
- uid: 4916
components:
- - pos: -49.5,-32.5
+ - pos: -48.5,-32.5
parent: 2
type: Transform
- uid: 4917
components:
- - pos: -51.5,-32.5
+ - pos: -50.5,-32.5
parent: 2
type: Transform
- uid: 4918
components:
- - pos: -52.5,-32.5
+ - pos: -49.5,-32.5
parent: 2
type: Transform
- uid: 4919
components:
- - pos: -53.5,-32.5
+ - pos: -51.5,-32.5
parent: 2
type: Transform
- uid: 4920
components:
- - pos: -54.5,-32.5
+ - pos: -52.5,-32.5
parent: 2
type: Transform
- uid: 4921
components:
- - pos: -55.5,-32.5
+ - pos: -53.5,-32.5
parent: 2
type: Transform
- uid: 4922
components:
- - pos: -55.5,-33.5
+ - pos: -54.5,-32.5
parent: 2
type: Transform
- uid: 4923
components:
- - pos: -55.5,-34.5
+ - pos: -55.5,-32.5
parent: 2
type: Transform
- uid: 4924
components:
- - pos: -55.5,-35.5
+ - pos: -55.5,-33.5
parent: 2
type: Transform
- uid: 4925
components:
- - pos: -55.5,-36.5
+ - pos: -55.5,-34.5
parent: 2
type: Transform
- uid: 4926
components:
- - pos: -55.5,-37.5
+ - pos: -55.5,-35.5
parent: 2
type: Transform
- uid: 4927
components:
- - pos: -55.5,-38.5
+ - pos: -55.5,-36.5
parent: 2
type: Transform
- uid: 4928
components:
- - pos: -55.5,-39.5
+ - pos: -55.5,-37.5
parent: 2
type: Transform
- uid: 4929
components:
- - pos: -56.5,-39.5
+ - pos: -55.5,-38.5
parent: 2
type: Transform
- uid: 4930
components:
- - pos: -56.5,-40.5
+ - pos: -55.5,-39.5
parent: 2
type: Transform
- uid: 4931
components:
- - pos: -56.5,-41.5
+ - pos: -56.5,-39.5
parent: 2
type: Transform
- uid: 4932
components:
- - pos: -56.5,-42.5
+ - pos: -56.5,-40.5
parent: 2
type: Transform
- uid: 4933
components:
- - pos: -56.5,-43.5
+ - pos: -56.5,-41.5
parent: 2
type: Transform
- uid: 4934
components:
- - pos: -56.5,-44.5
+ - pos: -56.5,-42.5
parent: 2
type: Transform
- uid: 4935
components:
- - pos: -56.5,-45.5
+ - pos: -56.5,-43.5
parent: 2
type: Transform
- uid: 4936
components:
- - pos: -56.5,-46.5
+ - pos: -56.5,-44.5
parent: 2
type: Transform
- uid: 4937
components:
- - pos: -56.5,-47.5
+ - pos: -56.5,-45.5
parent: 2
type: Transform
- uid: 4938
components:
- - pos: -56.5,-48.5
+ - pos: -56.5,-46.5
parent: 2
type: Transform
- uid: 4939
components:
- - pos: -56.5,-49.5
+ - pos: -56.5,-47.5
parent: 2
type: Transform
- uid: 4940
components:
- - pos: -56.5,-50.5
+ - pos: -56.5,-48.5
parent: 2
type: Transform
- uid: 4941
components:
- - pos: -56.5,-51.5
+ - pos: -56.5,-49.5
parent: 2
type: Transform
- uid: 4942
components:
- - pos: -56.5,-52.5
+ - pos: -56.5,-50.5
parent: 2
type: Transform
- uid: 4943
components:
- - pos: -56.5,-53.5
+ - pos: -56.5,-51.5
parent: 2
type: Transform
- uid: 4944
components:
- - pos: -56.5,-54.5
+ - pos: -56.5,-52.5
parent: 2
type: Transform
- uid: 4945
components:
- - pos: -56.5,-55.5
+ - pos: -56.5,-53.5
parent: 2
type: Transform
- uid: 4946
components:
- - pos: -56.5,-56.5
+ - pos: -56.5,-54.5
parent: 2
type: Transform
- uid: 4947
components:
- - pos: -56.5,-57.5
+ - pos: -56.5,-55.5
parent: 2
type: Transform
- uid: 4948
components:
- - pos: -56.5,-58.5
+ - pos: -56.5,-56.5
parent: 2
type: Transform
- uid: 4949
components:
- - pos: -57.5,-58.5
+ - pos: -56.5,-57.5
parent: 2
type: Transform
- uid: 4950
components:
- - pos: -57.5,-59.5
+ - pos: -56.5,-58.5
parent: 2
type: Transform
- uid: 4951
components:
- - pos: -50.5,-64.5
+ - pos: -57.5,-58.5
parent: 2
type: Transform
- uid: 4952
components:
- - pos: -50.5,-63.5
+ - pos: -57.5,-59.5
parent: 2
type: Transform
- uid: 4953
components:
- - pos: -51.5,-63.5
+ - pos: -50.5,-64.5
parent: 2
type: Transform
- uid: 4954
components:
- - pos: -55.5,-58.5
+ - pos: -50.5,-63.5
parent: 2
type: Transform
- uid: 4955
components:
- - pos: -55.5,-59.5
+ - pos: -51.5,-63.5
parent: 2
type: Transform
- uid: 4956
components:
- - pos: -55.5,-61.5
+ - pos: -55.5,-58.5
parent: 2
type: Transform
- uid: 4957
components:
- - pos: -36.5,-30.5
+ - pos: -55.5,-59.5
parent: 2
type: Transform
- uid: 4958
components:
- - pos: -38.5,-28.5
+ - pos: -55.5,-61.5
parent: 2
type: Transform
- uid: 4959
components:
- - pos: -38.5,-30.5
+ - pos: -36.5,-30.5
parent: 2
type: Transform
- uid: 4960
components:
- - pos: -39.5,-30.5
+ - pos: -38.5,-28.5
parent: 2
type: Transform
- uid: 4961
components:
- - pos: -40.5,-30.5
+ - pos: -38.5,-30.5
parent: 2
type: Transform
- uid: 4962
components:
- - pos: -41.5,-30.5
+ - pos: -39.5,-30.5
parent: 2
type: Transform
- uid: 4963
components:
- - pos: -41.5,-29.5
+ - pos: -40.5,-30.5
parent: 2
type: Transform
- uid: 4964
components:
- - pos: -56.5,-85.5
+ - pos: -41.5,-30.5
parent: 2
type: Transform
- uid: 4965
components:
- - pos: -56.5,-86.5
+ - pos: -41.5,-29.5
parent: 2
type: Transform
- uid: 4966
components:
- - pos: -56.5,-87.5
+ - pos: -56.5,-85.5
parent: 2
type: Transform
- uid: 4967
components:
- - pos: -55.5,-87.5
+ - pos: -56.5,-86.5
parent: 2
type: Transform
- uid: 4968
components:
- - pos: -54.5,-87.5
+ - pos: -56.5,-87.5
parent: 2
type: Transform
- uid: 4969
components:
- - pos: -53.5,-87.5
+ - pos: -55.5,-87.5
parent: 2
type: Transform
- uid: 4970
components:
- - pos: -52.5,-87.5
+ - pos: -54.5,-87.5
parent: 2
type: Transform
- uid: 4971
components:
- - pos: -54.5,-86.5
+ - pos: -53.5,-87.5
parent: 2
type: Transform
- uid: 4972
components:
- - pos: -54.5,-85.5
+ - pos: -52.5,-87.5
parent: 2
type: Transform
- uid: 4973
components:
- - pos: -54.5,-88.5
+ - pos: -54.5,-86.5
parent: 2
type: Transform
- uid: 4974
components:
- - pos: -54.5,-89.5
+ - pos: -54.5,-85.5
parent: 2
type: Transform
- uid: 4975
components:
- - pos: -55.5,-85.5
+ - pos: -54.5,-88.5
parent: 2
type: Transform
- uid: 4976
components:
- - pos: 33.5,22.5
+ - pos: -54.5,-89.5
parent: 2
type: Transform
- uid: 4977
components:
- - pos: 34.5,22.5
+ - pos: -55.5,-85.5
parent: 2
type: Transform
- uid: 4978
components:
- - pos: 35.5,22.5
+ - pos: 33.5,22.5
parent: 2
type: Transform
- uid: 4979
components:
- - pos: 36.5,22.5
+ - pos: 34.5,22.5
parent: 2
type: Transform
- uid: 4980
components:
- - pos: 36.5,23.5
+ - pos: 35.5,22.5
parent: 2
type: Transform
- uid: 4981
components:
- - pos: 37.5,23.5
+ - pos: 36.5,22.5
parent: 2
type: Transform
- uid: 4982
components:
- - pos: 38.5,23.5
+ - pos: 36.5,23.5
parent: 2
type: Transform
- uid: 4983
components:
- - pos: 39.5,23.5
+ - pos: 37.5,23.5
parent: 2
type: Transform
- uid: 4984
components:
- - pos: 40.5,23.5
+ - pos: 38.5,23.5
parent: 2
type: Transform
- uid: 4985
components:
- - pos: 42.5,23.5
+ - pos: 39.5,23.5
parent: 2
type: Transform
- uid: 4986
components:
- - pos: 44.5,23.5
+ - pos: 40.5,23.5
parent: 2
type: Transform
- uid: 4987
components:
- - pos: 43.5,23.5
+ - pos: 42.5,23.5
parent: 2
type: Transform
- uid: 4988
components:
- - pos: 44.5,24.5
+ - pos: 44.5,23.5
parent: 2
type: Transform
- uid: 4989
components:
- - pos: 44.5,25.5
+ - pos: 43.5,23.5
parent: 2
type: Transform
- uid: 4990
components:
- - pos: 44.5,26.5
+ - pos: 44.5,24.5
parent: 2
type: Transform
- uid: 4991
components:
- - pos: 47.5,26.5
+ - pos: 44.5,25.5
parent: 2
type: Transform
- uid: 4992
components:
- - pos: 48.5,26.5
+ - pos: 44.5,26.5
parent: 2
type: Transform
- uid: 4993
components:
- - pos: 49.5,26.5
+ - pos: 47.5,26.5
parent: 2
type: Transform
- uid: 4994
components:
- - pos: 50.5,26.5
+ - pos: 48.5,26.5
parent: 2
type: Transform
- uid: 4995
components:
- - pos: 51.5,26.5
+ - pos: 49.5,26.5
parent: 2
type: Transform
- uid: 4996
components:
- - pos: 52.5,26.5
+ - pos: 50.5,26.5
parent: 2
type: Transform
- uid: 4997
components:
- - pos: 53.5,26.5
+ - pos: 51.5,26.5
parent: 2
type: Transform
- uid: 4998
components:
- - pos: 54.5,26.5
+ - pos: 52.5,26.5
parent: 2
type: Transform
- uid: 4999
components:
- - pos: 55.5,26.5
+ - pos: 53.5,26.5
parent: 2
type: Transform
- uid: 5000
components:
- - pos: 56.5,26.5
+ - pos: 54.5,26.5
parent: 2
type: Transform
- uid: 5001
components:
- - pos: 57.5,26.5
+ - pos: 55.5,26.5
parent: 2
type: Transform
- uid: 5002
components:
- - pos: 58.5,26.5
+ - pos: 56.5,26.5
parent: 2
type: Transform
- uid: 5003
components:
- - pos: 59.5,26.5
+ - pos: 57.5,26.5
parent: 2
type: Transform
- uid: 5004
components:
- - pos: 60.5,26.5
+ - pos: 58.5,26.5
parent: 2
type: Transform
- uid: 5005
components:
- - pos: 63.5,5.5
+ - pos: 59.5,26.5
parent: 2
type: Transform
- uid: 5006
components:
- - pos: 64.5,5.5
+ - pos: 60.5,26.5
parent: 2
type: Transform
- uid: 5007
components:
- - pos: 65.5,5.5
+ - pos: 63.5,5.5
parent: 2
type: Transform
- uid: 5008
components:
- - pos: 65.5,4.5
+ - pos: 64.5,5.5
parent: 2
type: Transform
- uid: 5009
components:
- - pos: 65.5,6.5
+ - pos: 65.5,5.5
parent: 2
type: Transform
- uid: 5010
components:
- - pos: 65.5,7.5
+ - pos: 65.5,4.5
parent: 2
type: Transform
- uid: 5011
components:
- - pos: 65.5,8.5
+ - pos: 65.5,6.5
parent: 2
type: Transform
- uid: 5012
components:
- - pos: 65.5,9.5
+ - pos: 65.5,7.5
parent: 2
type: Transform
- uid: 5013
components:
- - pos: 65.5,10.5
+ - pos: 65.5,8.5
parent: 2
type: Transform
- uid: 5014
components:
- - pos: 65.5,11.5
+ - pos: 65.5,9.5
parent: 2
type: Transform
- uid: 5015
components:
- - pos: 65.5,12.5
+ - pos: 65.5,10.5
parent: 2
type: Transform
- uid: 5016
components:
- - pos: 65.5,13.5
+ - pos: 65.5,11.5
parent: 2
type: Transform
- uid: 5017
components:
- - pos: 65.5,14.5
+ - pos: 65.5,12.5
parent: 2
type: Transform
- uid: 5018
components:
- - pos: 65.5,15.5
+ - pos: 65.5,13.5
parent: 2
type: Transform
- uid: 5019
components:
- - pos: 53.5,27.5
+ - pos: 65.5,14.5
parent: 2
type: Transform
- uid: 5020
components:
- - pos: -25.5,-27.5
+ - pos: 65.5,15.5
parent: 2
type: Transform
- uid: 5021
components:
- - pos: -25.5,-28.5
+ - pos: 53.5,27.5
parent: 2
type: Transform
- uid: 5022
components:
- - pos: -25.5,-29.5
+ - pos: -25.5,-27.5
parent: 2
type: Transform
- uid: 5023
components:
- - pos: -26.5,-29.5
+ - pos: -25.5,-28.5
parent: 2
type: Transform
- uid: 5024
components:
- - pos: -28.5,-29.5
+ - pos: -25.5,-29.5
parent: 2
type: Transform
- uid: 5025
components:
- - pos: -27.5,-29.5
+ - pos: -26.5,-29.5
parent: 2
type: Transform
- uid: 5026
components:
- - pos: -24.5,-29.5
+ - pos: -28.5,-29.5
parent: 2
type: Transform
- uid: 5027
components:
- - pos: 8.5,-14.5
+ - pos: -27.5,-29.5
parent: 2
type: Transform
- uid: 5028
components:
- - pos: 7.5,-14.5
+ - pos: -24.5,-29.5
parent: 2
type: Transform
- uid: 5029
components:
- - pos: 6.5,-14.5
+ - pos: 8.5,-14.5
parent: 2
type: Transform
- uid: 5030
components:
- - pos: 5.5,-14.5
+ - pos: 7.5,-14.5
parent: 2
type: Transform
- uid: 5031
components:
- - pos: 4.5,-14.5
+ - pos: 6.5,-14.5
parent: 2
type: Transform
- uid: 5032
components:
- - pos: 4.5,-15.5
+ - pos: 5.5,-14.5
parent: 2
type: Transform
- uid: 5033
components:
- - pos: 4.5,-16.5
+ - pos: 4.5,-14.5
parent: 2
type: Transform
- uid: 5034
components:
- - pos: 3.5,-16.5
+ - pos: 4.5,-15.5
parent: 2
type: Transform
- uid: 5035
components:
- - pos: 2.5,-16.5
+ - pos: 4.5,-16.5
parent: 2
type: Transform
- uid: 5036
components:
- - pos: 1.5,-16.5
+ - pos: 3.5,-16.5
parent: 2
type: Transform
- uid: 5037
components:
- - pos: 0.5,-16.5
+ - pos: 2.5,-16.5
parent: 2
type: Transform
- uid: 5038
components:
- - pos: 2.5,-14.5
+ - pos: 1.5,-16.5
parent: 2
type: Transform
- uid: 5039
components:
- - pos: 3.5,-14.5
+ - pos: 0.5,-16.5
parent: 2
type: Transform
- uid: 5040
components:
- - pos: 1.5,-14.5
+ - pos: 2.5,-14.5
parent: 2
type: Transform
- uid: 5041
components:
- - pos: 0.5,-14.5
+ - pos: 3.5,-14.5
parent: 2
type: Transform
- uid: 5042
components:
- - pos: -0.5,-14.5
+ - pos: 1.5,-14.5
parent: 2
type: Transform
- uid: 5043
components:
- - pos: -0.5,-13.5
+ - pos: 1.5,-13.5
parent: 2
type: Transform
- uid: 5044
components:
- - pos: -0.5,-12.5
+ - pos: -2.5,-14.5
parent: 2
type: Transform
- uid: 5045
components:
- - pos: -0.5,-11.5
+ - pos: -0.5,-12.5
parent: 2
type: Transform
- uid: 5046
components:
- - pos: -0.5,-9.5
+ - pos: -0.5,-11.5
parent: 2
type: Transform
- uid: 5047
components:
- - pos: -0.5,-10.5
+ - pos: -0.5,-9.5
parent: 2
type: Transform
- uid: 5048
components:
- - pos: 0.5,35.5
+ - pos: -0.5,-10.5
parent: 2
type: Transform
- uid: 5049
components:
- - pos: 0.5,34.5
+ - pos: 0.5,35.5
parent: 2
type: Transform
- uid: 5050
components:
- - pos: 0.5,33.5
+ - pos: 0.5,34.5
parent: 2
type: Transform
- uid: 5051
components:
- - pos: 0.5,32.5
+ - pos: 0.5,33.5
parent: 2
type: Transform
- uid: 5052
components:
- - pos: 1.5,32.5
+ - pos: 0.5,32.5
parent: 2
type: Transform
- uid: 5053
components:
- - pos: 2.5,32.5
+ - pos: 1.5,32.5
parent: 2
type: Transform
- uid: 5054
components:
- - pos: 13.5,32.5
+ - pos: 2.5,32.5
parent: 2
type: Transform
- uid: 5055
components:
- - pos: 14.5,32.5
+ - pos: 13.5,32.5
parent: 2
type: Transform
- uid: 5056
components:
- - pos: 15.5,32.5
+ - pos: 14.5,32.5
parent: 2
type: Transform
- uid: 5057
components:
- - pos: 16.5,32.5
+ - pos: 15.5,32.5
parent: 2
type: Transform
- uid: 5058
components:
- - pos: 16.5,33.5
+ - pos: 16.5,32.5
parent: 2
type: Transform
- uid: 5059
components:
- - pos: 16.5,34.5
+ - pos: 16.5,33.5
parent: 2
type: Transform
- uid: 5060
components:
- - pos: 16.5,31.5
+ - pos: 16.5,34.5
parent: 2
type: Transform
- uid: 5061
components:
- - pos: 16.5,30.5
+ - pos: 16.5,31.5
parent: 2
type: Transform
- uid: 5062
components:
- - pos: 16.5,29.5
+ - pos: 16.5,30.5
parent: 2
type: Transform
- uid: 5063
components:
- - pos: 16.5,28.5
+ - pos: 16.5,29.5
parent: 2
type: Transform
- uid: 5064
components:
- - pos: 16.5,27.5
+ - pos: 16.5,28.5
parent: 2
type: Transform
- uid: 5065
components:
- - pos: 16.5,26.5
+ - pos: 16.5,27.5
parent: 2
type: Transform
- uid: 5066
components:
- - pos: 16.5,25.5
+ - pos: 16.5,26.5
parent: 2
type: Transform
- uid: 5067
components:
- - pos: 15.5,25.5
+ - pos: 16.5,25.5
parent: 2
type: Transform
- uid: 5068
components:
- - pos: 14.5,25.5
+ - pos: 15.5,25.5
parent: 2
type: Transform
- uid: 5069
components:
- - pos: 13.5,25.5
+ - pos: 14.5,25.5
parent: 2
type: Transform
- uid: 5070
components:
- - pos: 12.5,25.5
+ - pos: 13.5,25.5
parent: 2
type: Transform
- uid: 5071
components:
- - pos: 11.5,25.5
+ - pos: 12.5,25.5
parent: 2
type: Transform
- uid: 5072
components:
- - pos: 8.5,25.5
+ - pos: 11.5,25.5
parent: 2
type: Transform
- uid: 5073
components:
- - pos: 9.5,25.5
+ - pos: 8.5,25.5
parent: 2
type: Transform
- uid: 5074
components:
- - pos: 10.5,25.5
+ - pos: 9.5,25.5
parent: 2
type: Transform
- uid: 5075
components:
- - pos: 8.5,24.5
+ - pos: 10.5,25.5
parent: 2
type: Transform
- uid: 5076
components:
- - pos: 7.5,24.5
+ - pos: 8.5,24.5
parent: 2
type: Transform
- uid: 5077
components:
- - pos: 6.5,24.5
+ - pos: 7.5,24.5
parent: 2
type: Transform
- uid: 5078
components:
- - pos: 5.5,24.5
+ - pos: 6.5,24.5
parent: 2
type: Transform
- uid: 5079
components:
- - pos: 4.5,24.5
+ - pos: 5.5,24.5
parent: 2
type: Transform
- uid: 5080
components:
- - pos: 3.5,24.5
+ - pos: 4.5,24.5
parent: 2
type: Transform
- uid: 5081
components:
- - pos: 2.5,24.5
+ - pos: 3.5,24.5
parent: 2
type: Transform
- uid: 5082
components:
- - pos: 1.5,24.5
+ - pos: 2.5,24.5
parent: 2
type: Transform
- uid: 5083
components:
- - pos: 0.5,24.5
+ - pos: 1.5,24.5
parent: 2
type: Transform
- uid: 5084
components:
- - pos: -0.5,24.5
+ - pos: 0.5,24.5
parent: 2
type: Transform
- uid: 5085
components:
- - pos: -1.5,24.5
+ - pos: -0.5,24.5
parent: 2
type: Transform
- uid: 5086
components:
- - pos: -0.5,32.5
+ - pos: -1.5,24.5
parent: 2
type: Transform
- uid: 5087
components:
- - pos: -1.5,32.5
+ - pos: -0.5,32.5
parent: 2
type: Transform
- uid: 5088
components:
- - pos: -2.5,32.5
+ - pos: -1.5,32.5
parent: 2
type: Transform
- uid: 5089
components:
- - pos: -3.5,32.5
+ - pos: -2.5,32.5
parent: 2
type: Transform
- uid: 5090
components:
- - pos: -4.5,32.5
+ - pos: -3.5,32.5
parent: 2
type: Transform
- uid: 5091
components:
- - pos: -5.5,32.5
+ - pos: -4.5,32.5
parent: 2
type: Transform
- uid: 5092
components:
- - pos: -6.5,32.5
+ - pos: -5.5,32.5
parent: 2
type: Transform
- uid: 5093
components:
- - pos: -7.5,32.5
+ - pos: -6.5,32.5
parent: 2
type: Transform
- uid: 5094
components:
- - pos: -8.5,32.5
+ - pos: -7.5,32.5
parent: 2
type: Transform
- uid: 5095
components:
- - pos: -8.5,31.5
+ - pos: -8.5,32.5
parent: 2
type: Transform
- uid: 5096
components:
- - pos: -8.5,30.5
+ - pos: -8.5,31.5
parent: 2
type: Transform
- uid: 5097
components:
- - pos: -8.5,29.5
+ - pos: -8.5,30.5
parent: 2
type: Transform
- uid: 5098
components:
- - pos: -8.5,28.5
+ - pos: -8.5,29.5
parent: 2
type: Transform
- uid: 5099
components:
- - pos: -8.5,27.5
+ - pos: -8.5,28.5
parent: 2
type: Transform
- uid: 5100
components:
- - pos: -8.5,26.5
+ - pos: -8.5,27.5
parent: 2
type: Transform
- uid: 5101
components:
- - pos: -12.5,26.5
+ - pos: -8.5,26.5
parent: 2
type: Transform
- uid: 5102
components:
- - pos: -8.5,23.5
+ - pos: -12.5,26.5
parent: 2
type: Transform
- uid: 5103
components:
- - pos: -1.5,33.5
+ - pos: -8.5,23.5
parent: 2
type: Transform
- uid: 5104
components:
- - pos: -1.5,34.5
+ - pos: -1.5,33.5
parent: 2
type: Transform
- uid: 5105
components:
- - pos: -1.5,31.5
+ - pos: -1.5,34.5
parent: 2
type: Transform
- uid: 5106
components:
- - pos: -15.5,26.5
+ - pos: -1.5,31.5
parent: 2
type: Transform
- uid: 5107
components:
- - pos: -11.5,28.5
+ - pos: -15.5,26.5
parent: 2
type: Transform
- uid: 5108
components:
- - pos: -11.5,29.5
+ - pos: -11.5,28.5
parent: 2
type: Transform
- uid: 5109
components:
- - pos: -68.5,-25.5
+ - pos: -11.5,29.5
parent: 2
type: Transform
- uid: 5110
components:
- - pos: -68.5,-24.5
+ - pos: -68.5,-25.5
parent: 2
type: Transform
- uid: 5111
components:
- - pos: -68.5,-23.5
+ - pos: -68.5,-24.5
parent: 2
type: Transform
- uid: 5112
components:
- - pos: -69.5,-23.5
+ - pos: -68.5,-23.5
parent: 2
type: Transform
- uid: 5113
components:
- - pos: -70.5,-23.5
+ - pos: -69.5,-23.5
parent: 2
type: Transform
- uid: 5114
components:
- - pos: -71.5,-23.5
+ - pos: -70.5,-23.5
parent: 2
type: Transform
- uid: 5115
components:
- - pos: -72.5,-23.5
+ - pos: -71.5,-23.5
parent: 2
type: Transform
- uid: 5116
components:
- - pos: -73.5,-23.5
+ - pos: -72.5,-23.5
parent: 2
type: Transform
- uid: 5117
components:
- - pos: -72.5,-24.5
+ - pos: -73.5,-23.5
parent: 2
type: Transform
- uid: 5118
components:
- - pos: -72.5,-25.5
+ - pos: -72.5,-24.5
parent: 2
type: Transform
- uid: 5119
components:
- - pos: -74.5,-23.5
+ - pos: -72.5,-25.5
parent: 2
type: Transform
- uid: 5120
components:
- - pos: -74.5,-24.5
+ - pos: -74.5,-23.5
parent: 2
type: Transform
- uid: 5121
components:
- - pos: -42.5,-6.5
+ - pos: -74.5,-24.5
parent: 2
type: Transform
- uid: 5122
components:
- - pos: -43.5,-6.5
+ - pos: -42.5,-6.5
parent: 2
type: Transform
- uid: 5123
components:
- - pos: -44.5,-6.5
+ - pos: -43.5,-6.5
parent: 2
type: Transform
- uid: 5124
components:
- - pos: -45.5,-6.5
+ - pos: -44.5,-6.5
parent: 2
type: Transform
- uid: 5125
components:
- - pos: -46.5,-6.5
+ - pos: -45.5,-6.5
parent: 2
type: Transform
- uid: 5126
components:
- - pos: -47.5,-6.5
+ - pos: -46.5,-6.5
parent: 2
type: Transform
- uid: 5127
components:
- - pos: -48.5,-6.5
+ - pos: -47.5,-6.5
parent: 2
type: Transform
- uid: 5128
components:
- - pos: -42.5,16.5
+ - pos: -48.5,-6.5
parent: 2
type: Transform
- uid: 5129
components:
- - pos: -9.5,24.5
+ - pos: -42.5,16.5
parent: 2
type: Transform
- uid: 5130
components:
- - pos: -10.5,26.5
+ - pos: -9.5,24.5
parent: 2
type: Transform
- uid: 5131
components:
- - pos: -9.5,26.5
+ - pos: -10.5,26.5
parent: 2
type: Transform
- uid: 5132
components:
- - pos: -9.5,25.5
+ - pos: -9.5,26.5
parent: 2
type: Transform
- uid: 5133
components:
- - pos: -9.5,23.5
+ - pos: -9.5,25.5
parent: 2
type: Transform
- uid: 5134
components:
- - pos: -14.5,26.5
+ - pos: -9.5,23.5
parent: 2
type: Transform
- uid: 5135
components:
- - pos: -11.5,27.5
+ - pos: -14.5,26.5
parent: 2
type: Transform
- uid: 5136
components:
- - pos: 21.5,22.5
+ - pos: -11.5,27.5
parent: 2
type: Transform
- uid: 5137
components:
- - pos: 21.5,23.5
+ - pos: 21.5,22.5
parent: 2
type: Transform
- uid: 5138
components:
- - pos: -18.5,15.5
+ - pos: 21.5,23.5
parent: 2
type: Transform
- uid: 5139
components:
- - pos: -18.5,16.5
+ - pos: -18.5,15.5
parent: 2
type: Transform
- uid: 5140
components:
- - pos: -18.5,17.5
+ - pos: -18.5,16.5
parent: 2
type: Transform
- uid: 5141
components:
- - pos: -18.5,18.5
+ - pos: -18.5,17.5
parent: 2
type: Transform
- uid: 5142
components:
- - pos: -18.5,19.5
+ - pos: -18.5,18.5
parent: 2
type: Transform
- uid: 5143
components:
- - pos: -18.5,20.5
+ - pos: -18.5,19.5
parent: 2
type: Transform
- uid: 5144
components:
- - pos: -18.5,21.5
+ - pos: -18.5,20.5
parent: 2
type: Transform
- uid: 5145
components:
- - pos: -19.5,21.5
+ - pos: -18.5,21.5
parent: 2
type: Transform
- uid: 5146
components:
- - pos: -20.5,21.5
+ - pos: -19.5,21.5
parent: 2
type: Transform
- uid: 5147
components:
- - pos: -21.5,21.5
+ - pos: -20.5,21.5
parent: 2
type: Transform
- uid: 5148
components:
- - pos: -22.5,21.5
+ - pos: -21.5,21.5
parent: 2
type: Transform
- uid: 5149
components:
- - pos: -23.5,21.5
+ - pos: -22.5,21.5
parent: 2
type: Transform
- uid: 5150
components:
- - pos: -23.5,22.5
+ - pos: -23.5,21.5
parent: 2
type: Transform
- uid: 5151
components:
- - pos: -23.5,23.5
+ - pos: -23.5,22.5
parent: 2
type: Transform
- uid: 5152
components:
- - pos: -23.5,24.5
+ - pos: -23.5,23.5
parent: 2
type: Transform
- uid: 5153
components:
- - pos: -23.5,25.5
+ - pos: -23.5,24.5
parent: 2
type: Transform
- uid: 5154
components:
- - pos: -23.5,26.5
+ - pos: -23.5,25.5
parent: 2
type: Transform
- uid: 5155
components:
- - pos: -24.5,21.5
+ - pos: -23.5,26.5
parent: 2
type: Transform
- uid: 5156
components:
- - pos: -25.5,21.5
+ - pos: -24.5,21.5
parent: 2
type: Transform
- uid: 5157
components:
- - pos: -26.5,21.5
+ - pos: -25.5,21.5
parent: 2
type: Transform
- uid: 5158
components:
- - pos: -27.5,21.5
+ - pos: -26.5,21.5
parent: 2
type: Transform
- uid: 5159
components:
- - pos: -28.5,21.5
+ - pos: -27.5,21.5
parent: 2
type: Transform
- uid: 5160
components:
- - pos: -28.5,22.5
+ - pos: -28.5,21.5
parent: 2
type: Transform
- uid: 5161
components:
- - pos: -29.5,22.5
+ - pos: -28.5,22.5
parent: 2
type: Transform
- uid: 5162
components:
- - pos: -30.5,22.5
+ - pos: -29.5,22.5
parent: 2
type: Transform
- uid: 5163
components:
- - pos: -31.5,22.5
+ - pos: -30.5,22.5
parent: 2
type: Transform
- uid: 5164
components:
- - pos: -32.5,22.5
+ - pos: -31.5,22.5
parent: 2
type: Transform
- uid: 5165
components:
- - pos: -32.5,23.5
+ - pos: -32.5,22.5
parent: 2
type: Transform
- uid: 5166
components:
- - pos: -32.5,24.5
+ - pos: -32.5,23.5
parent: 2
type: Transform
- uid: 5167
components:
- - pos: -32.5,25.5
+ - pos: -32.5,24.5
parent: 2
type: Transform
- uid: 5168
components:
- - pos: -32.5,26.5
+ - pos: -32.5,25.5
parent: 2
type: Transform
- uid: 5169
components:
- - pos: -32.5,27.5
+ - pos: -32.5,26.5
parent: 2
type: Transform
- uid: 5170
components:
- - pos: -31.5,27.5
+ - pos: -32.5,27.5
parent: 2
type: Transform
- uid: 5171
components:
- - pos: -30.5,27.5
+ - pos: -31.5,27.5
parent: 2
type: Transform
- uid: 5172
components:
- - pos: -33.5,27.5
+ - pos: -30.5,27.5
parent: 2
type: Transform
- uid: 5173
components:
- - pos: -32.5,28.5
+ - pos: -33.5,27.5
parent: 2
type: Transform
- uid: 5174
components:
- - pos: -32.5,29.5
+ - pos: -32.5,28.5
parent: 2
type: Transform
- uid: 5175
components:
- - pos: -32.5,30.5
+ - pos: -32.5,29.5
parent: 2
type: Transform
- uid: 5176
components:
- - pos: -33.5,30.5
+ - pos: -32.5,30.5
parent: 2
type: Transform
- uid: 5177
components:
- - pos: -33.5,25.5
+ - pos: -33.5,30.5
parent: 2
type: Transform
- uid: 5178
components:
- - pos: -34.5,25.5
+ - pos: -33.5,25.5
parent: 2
type: Transform
- uid: 5179
components:
- - pos: -35.5,25.5
+ - pos: -34.5,25.5
parent: 2
type: Transform
- uid: 5180
components:
- - pos: -36.5,25.5
+ - pos: -35.5,25.5
parent: 2
type: Transform
- uid: 5181
components:
- - pos: -37.5,25.5
+ - pos: -36.5,25.5
parent: 2
type: Transform
- uid: 5182
components:
- - pos: -38.5,25.5
+ - pos: -37.5,25.5
parent: 2
type: Transform
- uid: 5183
components:
- - pos: -38.5,24.5
+ - pos: -38.5,25.5
parent: 2
type: Transform
- uid: 5184
components:
- - pos: -38.5,23.5
+ - pos: -38.5,24.5
parent: 2
type: Transform
- uid: 5185
components:
- - pos: -38.5,22.5
+ - pos: -38.5,23.5
parent: 2
type: Transform
- uid: 5186
components:
- - pos: -39.5,22.5
+ - pos: -38.5,22.5
parent: 2
type: Transform
- uid: 5187
components:
- - pos: -40.5,22.5
+ - pos: -39.5,22.5
parent: 2
type: Transform
- uid: 5188
components:
- - pos: -41.5,22.5
+ - pos: -40.5,22.5
parent: 2
type: Transform
- uid: 5189
components:
- - pos: -42.5,22.5
+ - pos: -41.5,22.5
parent: 2
type: Transform
- uid: 5190
components:
- - pos: -43.5,22.5
+ - pos: -42.5,22.5
parent: 2
type: Transform
- uid: 5191
components:
- - pos: -44.5,22.5
+ - pos: -43.5,22.5
parent: 2
type: Transform
- uid: 5192
components:
- - pos: -45.5,22.5
+ - pos: -44.5,22.5
parent: 2
type: Transform
- uid: 5193
components:
- - pos: -46.5,22.5
+ - pos: -45.5,22.5
parent: 2
type: Transform
- uid: 5194
components:
- - pos: -47.5,22.5
+ - pos: -46.5,22.5
parent: 2
type: Transform
- uid: 5195
components:
- - pos: -48.5,22.5
+ - pos: -47.5,22.5
parent: 2
type: Transform
- uid: 5196
components:
- - pos: -49.5,22.5
+ - pos: -48.5,22.5
parent: 2
type: Transform
- uid: 5197
components:
- - pos: -50.5,22.5
+ - pos: -49.5,22.5
parent: 2
type: Transform
- uid: 5198
components:
- - pos: -32.5,21.5
+ - pos: -50.5,22.5
parent: 2
type: Transform
- uid: 5199
components:
- - pos: -32.5,20.5
+ - pos: -32.5,21.5
parent: 2
type: Transform
- uid: 5200
components:
- - pos: -32.5,19.5
+ - pos: -32.5,20.5
parent: 2
type: Transform
- uid: 5201
components:
- - pos: -32.5,18.5
+ - pos: -32.5,19.5
parent: 2
type: Transform
- uid: 5202
components:
- - pos: -33.5,18.5
+ - pos: -32.5,18.5
parent: 2
type: Transform
- uid: 5203
components:
- - pos: -34.5,18.5
+ - pos: -33.5,18.5
parent: 2
type: Transform
- uid: 5204
components:
- - pos: -35.5,18.5
+ - pos: -34.5,18.5
parent: 2
type: Transform
- uid: 5205
components:
- - pos: -36.5,18.5
+ - pos: -35.5,18.5
parent: 2
type: Transform
- uid: 5206
components:
- - pos: -37.5,18.5
+ - pos: -36.5,18.5
parent: 2
type: Transform
- uid: 5207
components:
- - pos: -38.5,18.5
+ - pos: -37.5,18.5
parent: 2
type: Transform
- uid: 5208
components:
- - pos: -39.5,18.5
+ - pos: -38.5,18.5
parent: 2
type: Transform
- uid: 5209
components:
- - pos: -40.5,18.5
+ - pos: -39.5,18.5
parent: 2
type: Transform
- uid: 5210
components:
- - pos: -41.5,18.5
+ - pos: -40.5,18.5
parent: 2
type: Transform
- uid: 5211
components:
- - pos: -42.5,18.5
+ - pos: -41.5,18.5
parent: 2
type: Transform
- uid: 5212
components:
- - pos: -43.5,18.5
+ - pos: -42.5,18.5
parent: 2
type: Transform
- uid: 5213
components:
- - pos: -44.5,18.5
+ - pos: -43.5,18.5
parent: 2
type: Transform
- uid: 5214
components:
- - pos: -45.5,18.5
+ - pos: -44.5,18.5
parent: 2
type: Transform
- uid: 5215
components:
- - pos: -46.5,18.5
+ - pos: -45.5,18.5
parent: 2
type: Transform
- uid: 5216
components:
- - pos: -47.5,18.5
+ - pos: -46.5,18.5
parent: 2
type: Transform
- uid: 5217
components:
- - pos: -37.5,19.5
+ - pos: -47.5,18.5
parent: 2
type: Transform
- uid: 5218
components:
- - pos: -37.5,20.5
+ - pos: -37.5,19.5
parent: 2
type: Transform
- uid: 5219
components:
- - pos: -37.5,21.5
+ - pos: -37.5,20.5
parent: 2
type: Transform
- uid: 5220
components:
- - pos: -36.5,21.5
+ - pos: -37.5,21.5
parent: 2
type: Transform
- uid: 5221
components:
- - pos: -36.5,22.5
+ - pos: -36.5,21.5
parent: 2
type: Transform
- uid: 5222
components:
- - pos: -47.5,19.5
+ - pos: -36.5,22.5
parent: 2
type: Transform
- uid: 5223
components:
- - pos: -48.5,19.5
+ - pos: -47.5,19.5
parent: 2
type: Transform
- uid: 5224
components:
- - pos: -49.5,19.5
+ - pos: -48.5,19.5
parent: 2
type: Transform
- uid: 5225
components:
- - pos: -50.5,19.5
+ - pos: -49.5,19.5
parent: 2
type: Transform
- uid: 5226
components:
- - pos: -46.5,23.5
+ - pos: -50.5,19.5
parent: 2
type: Transform
- uid: 5227
components:
- - pos: -46.5,24.5
+ - pos: -46.5,23.5
parent: 2
type: Transform
- uid: 5228
components:
- - pos: -46.5,25.5
+ - pos: -46.5,24.5
parent: 2
type: Transform
- uid: 5229
components:
- - pos: -46.5,26.5
+ - pos: -46.5,25.5
parent: 2
type: Transform
- uid: 5230
components:
- - pos: -43.5,19.5
+ - pos: -46.5,26.5
parent: 2
type: Transform
- uid: 5231
components:
- - pos: -41.5,19.5
+ - pos: -43.5,19.5
parent: 2
type: Transform
- uid: 5232
components:
- - pos: -31.5,25.5
+ - pos: -41.5,19.5
parent: 2
type: Transform
- uid: 5233
components:
- - pos: -30.5,25.5
+ - pos: -31.5,25.5
parent: 2
type: Transform
- uid: 5234
components:
- - pos: -29.5,25.5
+ - pos: -30.5,25.5
parent: 2
type: Transform
- uid: 5235
components:
- - pos: -28.5,25.5
+ - pos: -29.5,25.5
parent: 2
type: Transform
- uid: 5236
components:
- - pos: -27.5,25.5
+ - pos: -28.5,25.5
parent: 2
type: Transform
- uid: 5237
components:
- - pos: -25.5,20.5
+ - pos: -27.5,25.5
parent: 2
type: Transform
- uid: 5238
components:
- - pos: -25.5,19.5
+ - pos: -25.5,20.5
parent: 2
type: Transform
- uid: 5239
components:
- - pos: -25.5,18.5
+ - pos: -25.5,19.5
parent: 2
type: Transform
- uid: 5240
components:
- - pos: -26.5,18.5
+ - pos: -25.5,18.5
parent: 2
type: Transform
- uid: 5241
components:
- - pos: -27.5,18.5
+ - pos: -26.5,18.5
parent: 2
type: Transform
- uid: 5242
components:
- - pos: -29.5,18.5
+ - pos: -27.5,18.5
parent: 2
type: Transform
- uid: 5243
components:
- - pos: -28.5,18.5
+ - pos: -29.5,18.5
parent: 2
type: Transform
- uid: 5244
components:
- - pos: -18.5,22.5
+ - pos: -28.5,18.5
parent: 2
type: Transform
- uid: 5245
components:
- - pos: -18.5,23.5
+ - pos: -18.5,22.5
parent: 2
type: Transform
- uid: 5246
components:
- - pos: -24.5,18.5
+ - pos: -18.5,23.5
parent: 2
type: Transform
- uid: 5247
components:
- - pos: -41.5,27.5
+ - pos: -24.5,18.5
parent: 2
type: Transform
- uid: 5248
components:
- - pos: -51.5,22.5
+ - pos: -41.5,27.5
parent: 2
type: Transform
- uid: 5249
components:
- - pos: -52.5,22.5
+ - pos: -51.5,22.5
parent: 2
type: Transform
- uid: 5250
components:
- - pos: -52.5,21.5
+ - pos: -52.5,22.5
parent: 2
type: Transform
- uid: 5251
components:
- - pos: -52.5,-27.5
+ - pos: -52.5,21.5
parent: 2
type: Transform
- uid: 5252
components:
- - pos: -46.5,27.5
+ - pos: -52.5,-27.5
parent: 2
type: Transform
- uid: 5253
components:
- - pos: -46.5,28.5
+ - pos: -46.5,27.5
parent: 2
type: Transform
- uid: 5254
components:
- - pos: -46.5,29.5
+ - pos: -46.5,28.5
parent: 2
type: Transform
- uid: 5255
components:
- - pos: -46.5,30.5
+ - pos: -46.5,29.5
parent: 2
type: Transform
- uid: 5256
components:
- - pos: -46.5,31.5
+ - pos: -46.5,30.5
parent: 2
type: Transform
- uid: 5257
components:
- - pos: -46.5,32.5
+ - pos: -46.5,31.5
parent: 2
type: Transform
- uid: 5258
components:
- - pos: -46.5,33.5
+ - pos: -46.5,32.5
parent: 2
type: Transform
- uid: 5259
components:
- - pos: -47.5,33.5
+ - pos: -46.5,33.5
parent: 2
type: Transform
- uid: 5260
components:
- - pos: -48.5,33.5
+ - pos: -47.5,33.5
parent: 2
type: Transform
- uid: 5261
components:
- - pos: -49.5,33.5
+ - pos: -48.5,33.5
parent: 2
type: Transform
- uid: 5262
components:
- - pos: -50.5,33.5
+ - pos: -49.5,33.5
parent: 2
type: Transform
- uid: 5263
components:
- - pos: -51.5,33.5
+ - pos: -50.5,33.5
parent: 2
type: Transform
- uid: 5264
components:
- - pos: -47.5,31.5
+ - pos: -51.5,33.5
parent: 2
type: Transform
- uid: 5265
components:
- - pos: -48.5,31.5
+ - pos: -47.5,31.5
parent: 2
type: Transform
- uid: 5266
components:
- - pos: -49.5,31.5
+ - pos: -48.5,31.5
parent: 2
type: Transform
- uid: 5267
components:
- - pos: -50.5,31.5
+ - pos: -49.5,31.5
parent: 2
type: Transform
- uid: 5268
components:
- - pos: -51.5,31.5
+ - pos: -50.5,31.5
parent: 2
type: Transform
- uid: 5269
components:
- - pos: -45.5,30.5
+ - pos: -51.5,31.5
parent: 2
type: Transform
- uid: 5270
components:
- - pos: -44.5,30.5
+ - pos: -45.5,30.5
parent: 2
type: Transform
- uid: 5271
components:
- - pos: -43.5,30.5
+ - pos: -44.5,30.5
parent: 2
type: Transform
- uid: 5272
components:
- - pos: -42.5,30.5
+ - pos: -43.5,30.5
parent: 2
type: Transform
- uid: 5273
components:
- - pos: -41.5,30.5
+ - pos: -42.5,30.5
parent: 2
type: Transform
- uid: 5274
components:
- - pos: -40.5,30.5
+ - pos: -41.5,30.5
parent: 2
type: Transform
- uid: 5275
components:
- - pos: -40.5,31.5
+ - pos: -40.5,30.5
parent: 2
type: Transform
- uid: 5276
components:
- - pos: -39.5,31.5
+ - pos: -40.5,31.5
parent: 2
type: Transform
- uid: 5277
components:
- - pos: -38.5,31.5
+ - pos: -39.5,31.5
parent: 2
type: Transform
- uid: 5278
components:
- - pos: -37.5,31.5
+ - pos: -38.5,31.5
parent: 2
type: Transform
- uid: 5279
components:
- - pos: -36.5,31.5
+ - pos: -37.5,31.5
parent: 2
type: Transform
- uid: 5280
components:
- - pos: -37.5,30.5
+ - pos: -36.5,31.5
parent: 2
type: Transform
- uid: 5281
components:
- - pos: -37.5,29.5
+ - pos: -37.5,30.5
parent: 2
type: Transform
- uid: 5282
components:
- - pos: -44.5,31.5
+ - pos: -37.5,29.5
parent: 2
type: Transform
- uid: 5283
components:
- - pos: -44.5,32.5
+ - pos: -44.5,31.5
parent: 2
type: Transform
- uid: 5284
components:
- - pos: -44.5,33.5
+ - pos: -44.5,32.5
parent: 2
type: Transform
- uid: 5285
components:
- - pos: -44.5,34.5
+ - pos: -44.5,33.5
parent: 2
type: Transform
- uid: 5286
components:
- - pos: -42.5,29.5
+ - pos: -44.5,34.5
parent: 2
type: Transform
- uid: 5287
components:
- - pos: -42.5,28.5
+ - pos: -42.5,29.5
parent: 2
type: Transform
- uid: 5288
components:
- - pos: -43.5,33.5
+ - pos: -42.5,28.5
parent: 2
type: Transform
- uid: 5289
components:
- - pos: -44.5,35.5
+ - pos: -43.5,33.5
parent: 2
type: Transform
- uid: 5290
components:
- - pos: -45.5,35.5
+ - pos: -44.5,35.5
parent: 2
type: Transform
- uid: 5291
components:
- - pos: -46.5,35.5
+ - pos: -45.5,35.5
parent: 2
type: Transform
- uid: 5292
components:
- - pos: -47.5,35.5
+ - pos: -46.5,35.5
parent: 2
type: Transform
- uid: 5293
components:
- - pos: -23.5,17.5
+ - pos: -47.5,35.5
parent: 2
type: Transform
- uid: 5294
components:
- - pos: -24.5,8.5
+ - pos: -23.5,17.5
parent: 2
type: Transform
- uid: 5295
components:
- - pos: -24.5,9.5
+ - pos: -24.5,8.5
parent: 2
type: Transform
- uid: 5296
components:
- - pos: -24.5,10.5
+ - pos: -24.5,9.5
parent: 2
type: Transform
- uid: 5297
components:
- - pos: -25.5,10.5
+ - pos: -24.5,10.5
parent: 2
type: Transform
- uid: 5298
components:
- - pos: -25.5,11.5
+ - pos: -25.5,10.5
parent: 2
type: Transform
- uid: 5299
components:
- - pos: -25.5,12.5
+ - pos: -25.5,11.5
parent: 2
type: Transform
- uid: 5300
components:
- - pos: -25.5,13.5
+ - pos: -25.5,12.5
parent: 2
type: Transform
- uid: 5301
components:
- - pos: -25.5,14.5
+ - pos: -25.5,13.5
parent: 2
type: Transform
- uid: 5302
components:
- - pos: -24.5,13.5
+ - pos: -25.5,14.5
parent: 2
type: Transform
- uid: 5303
components:
- - pos: -23.5,13.5
+ - pos: -24.5,13.5
parent: 2
type: Transform
- uid: 5304
components:
- - pos: -26.5,12.5
+ - pos: -23.5,13.5
parent: 2
type: Transform
- uid: 5305
components:
- - pos: -27.5,12.5
+ - pos: -26.5,12.5
parent: 2
type: Transform
- uid: 5306
components:
- - pos: -42.5,15.5
+ - pos: -27.5,12.5
parent: 2
type: Transform
- uid: 5307
components:
- - pos: -42.5,2.5
+ - pos: -42.5,15.5
parent: 2
type: Transform
- uid: 5308
components:
- - pos: -42.5,1.5
+ - pos: -42.5,2.5
parent: 2
type: Transform
- uid: 5309
components:
- - pos: -41.5,1.5
+ - pos: -42.5,1.5
parent: 2
type: Transform
- uid: 5310
components:
- - pos: -40.5,1.5
+ - pos: -41.5,1.5
parent: 2
type: Transform
- uid: 5311
components:
- - pos: -39.5,1.5
+ - pos: -40.5,1.5
parent: 2
type: Transform
- uid: 5312
components:
- - pos: -38.5,1.5
+ - pos: -39.5,1.5
parent: 2
type: Transform
- uid: 5313
components:
- - pos: -37.5,1.5
+ - pos: -38.5,1.5
parent: 2
type: Transform
- uid: 5314
components:
- - pos: -37.5,2.5
+ - pos: -37.5,1.5
parent: 2
type: Transform
- uid: 5315
components:
- - pos: -37.5,3.5
+ - pos: -37.5,2.5
parent: 2
type: Transform
- uid: 5316
components:
- - pos: -37.5,4.5
+ - pos: -37.5,3.5
parent: 2
type: Transform
- uid: 5317
components:
- - pos: -37.5,5.5
+ - pos: -37.5,4.5
parent: 2
type: Transform
- uid: 5318
components:
- - pos: -37.5,6.5
+ - pos: -37.5,5.5
parent: 2
type: Transform
- uid: 5319
components:
- - pos: -37.5,7.5
+ - pos: -37.5,6.5
parent: 2
type: Transform
- uid: 5320
components:
- - pos: -37.5,8.5
+ - pos: -37.5,7.5
parent: 2
type: Transform
- uid: 5321
components:
- - pos: -37.5,9.5
+ - pos: -37.5,8.5
parent: 2
type: Transform
- uid: 5322
components:
- - pos: -37.5,10.5
+ - pos: -37.5,9.5
parent: 2
type: Transform
- uid: 5323
components:
- - pos: -37.5,11.5
+ - pos: -37.5,10.5
parent: 2
type: Transform
- uid: 5324
components:
- - pos: -37.5,12.5
+ - pos: -37.5,11.5
parent: 2
type: Transform
- uid: 5325
components:
- - pos: -37.5,13.5
+ - pos: -37.5,12.5
parent: 2
type: Transform
- uid: 5326
components:
- - pos: -38.5,13.5
+ - pos: -37.5,13.5
parent: 2
type: Transform
- uid: 5327
components:
- - pos: -39.5,13.5
+ - pos: -38.5,13.5
parent: 2
type: Transform
- uid: 5328
components:
- - pos: -42.5,13.5
+ - pos: -39.5,13.5
parent: 2
type: Transform
- uid: 5329
components:
- - pos: -42.5,14.5
+ - pos: -42.5,13.5
parent: 2
type: Transform
- uid: 5330
components:
- - pos: -39.5,14.5
+ - pos: -42.5,14.5
parent: 2
type: Transform
- uid: 5331
components:
- - pos: -39.5,15.5
+ - pos: -39.5,14.5
parent: 2
type: Transform
- uid: 5332
components:
- - pos: -36.5,13.5
+ - pos: -39.5,15.5
parent: 2
type: Transform
- uid: 5333
components:
- - pos: -35.5,13.5
+ - pos: -36.5,13.5
parent: 2
type: Transform
- uid: 5334
components:
- - pos: -34.5,13.5
+ - pos: -35.5,13.5
parent: 2
type: Transform
- uid: 5335
components:
- - pos: -33.5,13.5
+ - pos: -34.5,13.5
parent: 2
type: Transform
- uid: 5336
components:
- - pos: -35.5,14.5
+ - pos: -33.5,13.5
parent: 2
type: Transform
- uid: 5337
components:
- - pos: -35.5,15.5
+ - pos: -35.5,14.5
parent: 2
type: Transform
- uid: 5338
components:
- - pos: -33.5,14.5
+ - pos: -35.5,15.5
parent: 2
type: Transform
- uid: 5339
components:
- - pos: -32.5,14.5
+ - pos: -33.5,14.5
parent: 2
type: Transform
- uid: 5340
components:
- - pos: -31.5,14.5
+ - pos: -32.5,14.5
parent: 2
type: Transform
- uid: 5341
components:
- - pos: -30.5,14.5
+ - pos: -31.5,14.5
parent: 2
type: Transform
- uid: 5342
components:
- - pos: -30.5,13.5
+ - pos: -30.5,14.5
parent: 2
type: Transform
- uid: 5343
components:
- - pos: -30.5,12.5
+ - pos: -30.5,13.5
parent: 2
type: Transform
- uid: 5344
components:
- - pos: -30.5,11.5
+ - pos: -30.5,12.5
parent: 2
type: Transform
- uid: 5345
components:
- - pos: -30.5,10.5
+ - pos: -30.5,11.5
parent: 2
type: Transform
- uid: 5346
components:
- - pos: -30.5,9.5
+ - pos: -30.5,10.5
parent: 2
type: Transform
- uid: 5347
components:
- - pos: -30.5,8.5
+ - pos: -30.5,9.5
parent: 2
type: Transform
- uid: 5348
components:
- - pos: -31.5,10.5
+ - pos: -30.5,8.5
parent: 2
type: Transform
- uid: 5349
components:
- - pos: -32.5,10.5
+ - pos: -31.5,10.5
parent: 2
type: Transform
- uid: 5350
components:
- - pos: -33.5,10.5
+ - pos: -32.5,10.5
parent: 2
type: Transform
- uid: 5351
components:
- - pos: -29.5,9.5
+ - pos: -33.5,10.5
parent: 2
type: Transform
- uid: 5352
components:
- - pos: -28.5,9.5
+ - pos: -29.5,9.5
parent: 2
type: Transform
- uid: 5353
components:
- - pos: -30.5,7.5
+ - pos: -28.5,9.5
parent: 2
type: Transform
- uid: 5354
components:
- - pos: -37.5,0.5
+ - pos: -30.5,7.5
parent: 2
type: Transform
- uid: 5355
components:
- - pos: -37.5,-0.5
+ - pos: -37.5,0.5
parent: 2
type: Transform
- uid: 5356
components:
- - pos: -37.5,-1.5
+ - pos: -37.5,-0.5
parent: 2
type: Transform
- uid: 5357
components:
- - pos: -37.5,-2.5
+ - pos: -37.5,-1.5
parent: 2
type: Transform
- uid: 5358
components:
- - pos: -38.5,-2.5
+ - pos: -37.5,-2.5
parent: 2
type: Transform
- uid: 5359
components:
- - pos: -39.5,-2.5
+ - pos: -38.5,-2.5
parent: 2
type: Transform
- uid: 5360
components:
- - pos: -40.5,-2.5
+ - pos: -39.5,-2.5
parent: 2
type: Transform
- uid: 5361
components:
- - pos: -41.5,-2.5
+ - pos: -40.5,-2.5
parent: 2
type: Transform
- uid: 5362
components:
- - pos: -42.5,-2.5
+ - pos: -41.5,-2.5
parent: 2
type: Transform
- uid: 5363
components:
- - pos: -42.5,-3.5
+ - pos: -42.5,-2.5
parent: 2
type: Transform
- uid: 5364
components:
- - pos: -43.5,-3.5
+ - pos: -42.5,-3.5
parent: 2
type: Transform
- uid: 5365
components:
- - pos: -44.5,-3.5
+ - pos: -43.5,-3.5
parent: 2
type: Transform
- uid: 5366
components:
- - pos: -45.5,-3.5
+ - pos: -44.5,-3.5
parent: 2
type: Transform
- uid: 5367
components:
- - pos: 55.5,12.5
+ - pos: -45.5,-3.5
parent: 2
type: Transform
- uid: 5368
components:
- - pos: -36.5,-0.5
+ - pos: 55.5,12.5
parent: 2
type: Transform
- uid: 5369
components:
- - pos: -35.5,-0.5
+ - pos: -36.5,-0.5
parent: 2
type: Transform
- uid: 5370
components:
- - pos: -34.5,-0.5
+ - pos: -35.5,-0.5
parent: 2
type: Transform
- uid: 5371
components:
- - pos: -33.5,-0.5
+ - pos: -34.5,-0.5
parent: 2
type: Transform
- uid: 5372
components:
- - pos: -32.5,-0.5
+ - pos: -33.5,-0.5
parent: 2
type: Transform
- uid: 5373
components:
- - pos: -31.5,-0.5
+ - pos: -32.5,-0.5
parent: 2
type: Transform
- uid: 5374
components:
- - pos: -30.5,-0.5
+ - pos: -31.5,-0.5
parent: 2
type: Transform
- uid: 5375
components:
- - pos: -29.5,-0.5
+ - pos: -30.5,-0.5
parent: 2
type: Transform
- uid: 5376
components:
- - pos: -29.5,-1.5
+ - pos: -29.5,-0.5
parent: 2
type: Transform
- uid: 5377
components:
- - pos: -29.5,-2.5
+ - pos: -29.5,-1.5
parent: 2
type: Transform
- uid: 5378
components:
- - pos: -29.5,-3.5
+ - pos: -29.5,-2.5
parent: 2
type: Transform
- uid: 5379
components:
- - pos: -28.5,-3.5
+ - pos: -29.5,-3.5
parent: 2
type: Transform
- uid: 5380
components:
- - pos: -28.5,-4.5
+ - pos: -28.5,-3.5
parent: 2
type: Transform
- uid: 5381
@@ -39656,6062 +39709,6062 @@ entities:
type: Transform
- uid: 5382
components:
- - pos: -28.5,-5.5
+ - pos: -28.5,-4.5
parent: 2
type: Transform
- uid: 5383
components:
- - pos: -30.5,0.5
+ - pos: -28.5,-5.5
parent: 2
type: Transform
- uid: 5384
components:
- - pos: -30.5,1.5
+ - pos: -30.5,0.5
parent: 2
type: Transform
- uid: 5385
components:
- - pos: -23.5,18.5
+ - pos: -30.5,1.5
parent: 2
type: Transform
- uid: 5386
components:
- - pos: -41.5,26.5
+ - pos: -23.5,18.5
parent: 2
type: Transform
- uid: 5387
components:
- - pos: -2.5,24.5
+ - pos: -41.5,26.5
parent: 2
type: Transform
- uid: 5388
components:
- - pos: -2.5,23.5
+ - pos: -2.5,24.5
parent: 2
type: Transform
- uid: 5389
components:
- - pos: -3.5,23.5
+ - pos: -2.5,23.5
parent: 2
type: Transform
- uid: 5390
components:
- - pos: -3.5,22.5
+ - pos: -3.5,23.5
parent: 2
type: Transform
- uid: 5391
components:
- - pos: -4.5,22.5
+ - pos: -3.5,22.5
parent: 2
type: Transform
- uid: 5392
components:
- - pos: -5.5,22.5
+ - pos: -4.5,22.5
parent: 2
type: Transform
- uid: 5393
components:
- - pos: 65.5,-8.5
+ - pos: -5.5,22.5
parent: 2
type: Transform
- uid: 5394
components:
- - pos: 65.5,-0.5
+ - pos: 65.5,-8.5
parent: 2
type: Transform
- uid: 5395
components:
- - pos: 65.5,-1.5
+ - pos: 65.5,-0.5
parent: 2
type: Transform
- uid: 5396
components:
- - pos: 68.5,-3.5
+ - pos: 65.5,-1.5
parent: 2
type: Transform
- uid: 5397
components:
- - pos: 65.5,-12.5
+ - pos: 68.5,-3.5
parent: 2
type: Transform
- uid: 5398
components:
- - pos: 65.5,-10.5
+ - pos: 65.5,-12.5
parent: 2
type: Transform
- uid: 5399
components:
- - pos: -42.5,0.5
+ - pos: 65.5,-10.5
parent: 2
type: Transform
- uid: 5400
components:
- - pos: -43.5,0.5
+ - pos: -42.5,0.5
parent: 2
type: Transform
- uid: 5401
components:
- - pos: -44.5,0.5
+ - pos: -43.5,0.5
parent: 2
type: Transform
- uid: 5402
components:
- - pos: -45.5,0.5
+ - pos: -44.5,0.5
parent: 2
type: Transform
- uid: 5403
components:
- - pos: -46.5,0.5
+ - pos: -45.5,0.5
parent: 2
type: Transform
- uid: 5404
components:
- - pos: -46.5,1.5
+ - pos: -46.5,0.5
parent: 2
type: Transform
- uid: 5405
components:
- - pos: -46.5,2.5
+ - pos: -46.5,1.5
parent: 2
type: Transform
- uid: 5406
components:
- - pos: -46.5,3.5
+ - pos: -46.5,2.5
parent: 2
type: Transform
- uid: 5407
components:
- - pos: -46.5,4.5
+ - pos: -46.5,3.5
parent: 2
type: Transform
- uid: 5408
components:
- - pos: -46.5,5.5
+ - pos: -46.5,4.5
parent: 2
type: Transform
- uid: 5409
components:
- - pos: -46.5,6.5
+ - pos: -46.5,5.5
parent: 2
type: Transform
- uid: 5410
components:
- - pos: -46.5,7.5
+ - pos: -46.5,6.5
parent: 2
type: Transform
- uid: 5411
components:
- - pos: -46.5,8.5
+ - pos: -46.5,7.5
parent: 2
type: Transform
- uid: 5412
components:
- - pos: -45.5,5.5
+ - pos: -46.5,8.5
parent: 2
type: Transform
- uid: 5413
components:
- - pos: -44.5,5.5
+ - pos: -45.5,5.5
parent: 2
type: Transform
- uid: 5414
components:
- - pos: -45.5,3.5
+ - pos: -44.5,5.5
parent: 2
type: Transform
- uid: 5415
components:
- - pos: -44.5,3.5
+ - pos: -45.5,3.5
parent: 2
type: Transform
- uid: 5416
components:
- - pos: -47.5,7.5
+ - pos: -44.5,3.5
parent: 2
type: Transform
- uid: 5417
components:
- - pos: -48.5,7.5
+ - pos: -47.5,7.5
parent: 2
type: Transform
- uid: 5418
components:
- - pos: -46.5,9.5
+ - pos: -48.5,7.5
parent: 2
type: Transform
- uid: 5419
components:
- - pos: -46.5,10.5
+ - pos: -46.5,9.5
parent: 2
type: Transform
- uid: 5420
components:
- - pos: -46.5,11.5
+ - pos: -46.5,10.5
parent: 2
type: Transform
- uid: 5421
components:
- - pos: -47.5,11.5
+ - pos: -46.5,11.5
parent: 2
type: Transform
- uid: 5422
components:
- - pos: -48.5,11.5
+ - pos: -47.5,11.5
parent: 2
type: Transform
- uid: 5423
components:
- - pos: -49.5,11.5
+ - pos: -48.5,11.5
parent: 2
type: Transform
- uid: 5424
components:
- - pos: -50.5,11.5
+ - pos: -49.5,11.5
parent: 2
type: Transform
- uid: 5425
components:
- - pos: -51.5,11.5
+ - pos: -50.5,11.5
parent: 2
type: Transform
- uid: 5426
components:
- - pos: -51.5,10.5
+ - pos: -51.5,11.5
parent: 2
type: Transform
- uid: 5427
components:
- - pos: -52.5,10.5
+ - pos: -51.5,10.5
parent: 2
type: Transform
- uid: 5428
components:
- - pos: -52.5,9.5
+ - pos: -52.5,10.5
parent: 2
type: Transform
- uid: 5429
components:
- - pos: -52.5,8.5
+ - pos: -52.5,9.5
parent: 2
type: Transform
- uid: 5430
components:
- - pos: -52.5,7.5
+ - pos: -52.5,8.5
parent: 2
type: Transform
- uid: 5431
components:
- - pos: -51.5,12.5
+ - pos: -52.5,7.5
parent: 2
type: Transform
- uid: 5432
components:
- - pos: -51.5,13.5
+ - pos: -51.5,12.5
parent: 2
type: Transform
- uid: 5433
components:
- - pos: -51.5,14.5
+ - pos: -51.5,13.5
parent: 2
type: Transform
- uid: 5434
components:
- - pos: -48.5,12.5
+ - pos: -51.5,14.5
parent: 2
type: Transform
- uid: 5435
components:
- - pos: -48.5,13.5
+ - pos: -48.5,12.5
parent: 2
type: Transform
- uid: 5436
components:
- - pos: -48.5,14.5
+ - pos: -48.5,13.5
parent: 2
type: Transform
- uid: 5437
components:
- - pos: -46.5,12.5
+ - pos: -48.5,14.5
parent: 2
type: Transform
- uid: 5438
components:
- - pos: -46.5,13.5
+ - pos: -46.5,12.5
parent: 2
type: Transform
- uid: 5439
components:
- - pos: -46.5,14.5
+ - pos: -46.5,13.5
parent: 2
type: Transform
- uid: 5440
components:
- - pos: -45.5,11.5
+ - pos: -46.5,14.5
parent: 2
type: Transform
- uid: 5441
components:
- - pos: -44.5,11.5
+ - pos: -45.5,11.5
parent: 2
type: Transform
- uid: 5442
components:
- - pos: -43.5,11.5
+ - pos: -44.5,11.5
parent: 2
type: Transform
- uid: 5443
components:
- - pos: -42.5,11.5
+ - pos: -43.5,11.5
parent: 2
type: Transform
- uid: 5444
components:
- - pos: -42.5,10.5
+ - pos: -42.5,11.5
parent: 2
type: Transform
- uid: 5445
components:
- - pos: -47.5,7.5
+ - pos: -42.5,10.5
parent: 2
type: Transform
- uid: 5446
components:
- - pos: -47.5,0.5
+ - pos: -47.5,7.5
parent: 2
type: Transform
- uid: 5447
components:
- - pos: -48.5,0.5
+ - pos: -47.5,0.5
parent: 2
type: Transform
- uid: 5448
components:
- - pos: -49.5,0.5
+ - pos: -48.5,0.5
parent: 2
type: Transform
- uid: 5449
components:
- - pos: -49.5,-0.5
+ - pos: -49.5,0.5
parent: 2
type: Transform
- uid: 5450
components:
- - pos: -49.5,-1.5
+ - pos: -49.5,-0.5
parent: 2
type: Transform
- uid: 5451
components:
- - pos: -49.5,-2.5
+ - pos: -49.5,-1.5
parent: 2
type: Transform
- uid: 5452
components:
- - pos: -49.5,-3.5
+ - pos: -49.5,-2.5
parent: 2
type: Transform
- uid: 5453
components:
- - pos: -50.5,-3.5
+ - pos: -49.5,-3.5
parent: 2
type: Transform
- uid: 5454
components:
- - pos: -51.5,-3.5
+ - pos: -50.5,-3.5
parent: 2
type: Transform
- uid: 5455
components:
- - pos: -52.5,-3.5
+ - pos: -51.5,-3.5
parent: 2
type: Transform
- uid: 5456
components:
- - pos: -53.5,-3.5
+ - pos: -52.5,-3.5
parent: 2
type: Transform
- uid: 5457
components:
- - pos: -54.5,-3.5
+ - pos: -53.5,-3.5
parent: 2
type: Transform
- uid: 5458
components:
- - pos: -53.5,-2.5
+ - pos: -54.5,-3.5
parent: 2
type: Transform
- uid: 5459
components:
- - pos: -53.5,-1.5
+ - pos: -53.5,-2.5
parent: 2
type: Transform
- uid: 5460
components:
- - pos: -54.5,-1.5
+ - pos: -53.5,-1.5
parent: 2
type: Transform
- uid: 5461
components:
- - pos: -55.5,-1.5
+ - pos: -54.5,-1.5
parent: 2
type: Transform
- uid: 5462
components:
- - pos: -56.5,-1.5
+ - pos: -55.5,-1.5
parent: 2
type: Transform
- uid: 5463
components:
- - pos: -51.5,-2.5
+ - pos: -56.5,-1.5
parent: 2
type: Transform
- uid: 5464
components:
- - pos: -51.5,-1.5
+ - pos: -51.5,-2.5
parent: 2
type: Transform
- uid: 5465
components:
- - pos: -51.5,-0.5
+ - pos: -51.5,-1.5
parent: 2
type: Transform
- uid: 5466
components:
- - pos: -51.5,0.5
+ - pos: -51.5,-0.5
parent: 2
type: Transform
- uid: 5467
components:
- - pos: -51.5,1.5
+ - pos: -51.5,0.5
parent: 2
type: Transform
- uid: 5468
components:
- - pos: -51.5,2.5
+ - pos: -51.5,1.5
parent: 2
type: Transform
- uid: 5469
components:
- - pos: -51.5,3.5
+ - pos: -51.5,2.5
parent: 2
type: Transform
- uid: 5470
components:
- - pos: -45.5,-2.5
+ - pos: -51.5,3.5
parent: 2
type: Transform
- uid: 5471
components:
- - pos: -46.5,-2.5
+ - pos: -45.5,-2.5
parent: 2
type: Transform
- uid: 5472
components:
- - pos: -47.5,-2.5
+ - pos: -46.5,-2.5
parent: 2
type: Transform
- uid: 5473
components:
- - pos: 3.5,-64.5
+ - pos: -47.5,-2.5
parent: 2
type: Transform
- uid: 5474
components:
- - pos: 68.5,-5.5
+ - pos: 3.5,-64.5
parent: 2
type: Transform
- uid: 5475
components:
- - pos: -19.5,-52.5
+ - pos: 68.5,-5.5
parent: 2
type: Transform
- uid: 5476
components:
- - pos: -20.5,-52.5
+ - pos: -19.5,-52.5
parent: 2
type: Transform
- uid: 5477
components:
- - pos: 67.5,-5.5
+ - pos: -20.5,-52.5
parent: 2
type: Transform
- uid: 5478
components:
- - pos: 66.5,-5.5
+ - pos: 67.5,-5.5
parent: 2
type: Transform
- uid: 5479
components:
- - pos: 65.5,-6.5
+ - pos: 66.5,-5.5
parent: 2
type: Transform
- uid: 5480
components:
- - pos: 65.5,-7.5
+ - pos: 65.5,-6.5
parent: 2
type: Transform
- uid: 5481
components:
- - pos: 65.5,-9.5
+ - pos: 65.5,-7.5
parent: 2
type: Transform
- uid: 5482
components:
- - pos: 66.5,-3.5
+ - pos: 65.5,-9.5
parent: 2
type: Transform
- uid: 5483
components:
- - pos: 65.5,-2.5
+ - pos: 66.5,-3.5
parent: 2
type: Transform
- uid: 5484
components:
- - pos: 67.5,-3.5
+ - pos: 65.5,-2.5
parent: 2
type: Transform
- uid: 5485
components:
- - pos: -28.5,1.5
+ - pos: 67.5,-3.5
parent: 2
type: Transform
- uid: 5486
components:
- - pos: -27.5,1.5
+ - pos: -28.5,1.5
parent: 2
type: Transform
- uid: 5487
components:
- - pos: -27.5,0.5
+ - pos: -27.5,1.5
parent: 2
type: Transform
- uid: 5488
components:
- - pos: 22.5,-46.5
+ - pos: -27.5,0.5
parent: 2
type: Transform
- uid: 5489
components:
- - pos: -11.5,26.5
+ - pos: 22.5,-46.5
parent: 2
type: Transform
- uid: 5490
components:
- - pos: -13.5,26.5
+ - pos: -11.5,26.5
parent: 2
type: Transform
- uid: 5491
components:
- - pos: -26.5,0.5
+ - pos: -13.5,26.5
parent: 2
type: Transform
- uid: 5492
components:
- - pos: -8.5,14.5
+ - pos: -26.5,0.5
parent: 2
type: Transform
- uid: 5493
components:
- - pos: -8.5,15.5
+ - pos: -8.5,14.5
parent: 2
type: Transform
- uid: 5494
components:
- - pos: -1.5,-80.5
+ - pos: -8.5,15.5
parent: 2
type: Transform
- uid: 5495
components:
- - pos: -1.5,-81.5
+ - pos: -1.5,-80.5
parent: 2
type: Transform
- uid: 5496
components:
- - pos: -1.5,-82.5
+ - pos: -1.5,-81.5
parent: 2
type: Transform
- uid: 5497
components:
- - pos: -74.5,-25.5
+ - pos: -1.5,-82.5
parent: 2
type: Transform
- uid: 5498
components:
- - pos: -56.5,-18.5
+ - pos: -74.5,-25.5
parent: 2
type: Transform
- uid: 5499
components:
- - pos: -23.5,10.5
+ - pos: -56.5,-18.5
parent: 2
type: Transform
- uid: 5500
components:
- - pos: -22.5,10.5
+ - pos: -23.5,10.5
parent: 2
type: Transform
- uid: 5501
components:
- - pos: -22.5,11.5
+ - pos: -22.5,10.5
parent: 2
type: Transform
- uid: 5502
components:
- - pos: 41.5,14.5
+ - pos: -22.5,11.5
parent: 2
type: Transform
- uid: 5503
components:
- - pos: 42.5,14.5
+ - pos: 41.5,14.5
parent: 2
type: Transform
- uid: 5504
components:
- - pos: -75.5,-11.5
+ - pos: 42.5,14.5
parent: 2
type: Transform
- uid: 5505
components:
- - pos: -75.5,-10.5
+ - pos: -75.5,-11.5
parent: 2
type: Transform
- uid: 5506
components:
- - pos: -75.5,-9.5
+ - pos: -75.5,-10.5
parent: 2
type: Transform
- uid: 5507
components:
- - pos: -75.5,-8.5
+ - pos: -75.5,-9.5
parent: 2
type: Transform
- uid: 5508
components:
- - pos: -75.5,-7.5
+ - pos: -75.5,-8.5
parent: 2
type: Transform
- uid: 5509
components:
- - pos: -75.5,-6.5
+ - pos: -75.5,-7.5
parent: 2
type: Transform
- uid: 5510
components:
- - pos: -75.5,-5.5
+ - pos: -75.5,-6.5
parent: 2
type: Transform
- uid: 5511
components:
- - pos: -75.5,-4.5
+ - pos: -75.5,-5.5
parent: 2
type: Transform
- uid: 5512
components:
- - pos: -74.5,-4.5
+ - pos: -75.5,-4.5
parent: 2
type: Transform
- uid: 5513
components:
- - pos: -73.5,-4.5
+ - pos: -74.5,-4.5
parent: 2
type: Transform
- uid: 5514
components:
- - pos: -72.5,-4.5
+ - pos: -73.5,-4.5
parent: 2
type: Transform
- uid: 5515
components:
- - pos: -71.5,-4.5
+ - pos: -72.5,-4.5
parent: 2
type: Transform
- uid: 5516
components:
- - pos: -70.5,-4.5
+ - pos: -71.5,-4.5
parent: 2
type: Transform
- uid: 5517
components:
- - pos: -69.5,-4.5
+ - pos: -70.5,-4.5
parent: 2
type: Transform
- uid: 5518
components:
- - pos: -68.5,-4.5
+ - pos: -69.5,-4.5
parent: 2
type: Transform
- uid: 5519
components:
- - pos: -67.5,-4.5
+ - pos: -68.5,-4.5
parent: 2
type: Transform
- uid: 5520
components:
- - pos: -66.5,-4.5
+ - pos: -67.5,-4.5
parent: 2
type: Transform
- uid: 5521
components:
- - pos: -65.5,-4.5
+ - pos: -66.5,-4.5
parent: 2
type: Transform
- uid: 5522
components:
- - pos: -64.5,-4.5
+ - pos: -65.5,-4.5
parent: 2
type: Transform
- uid: 5523
components:
- - pos: -47.5,39.5
+ - pos: -64.5,-4.5
parent: 2
type: Transform
- uid: 5524
components:
- - pos: -47.5,40.5
+ - pos: -47.5,39.5
parent: 2
type: Transform
- uid: 5525
components:
- - pos: -47.5,41.5
+ - pos: -47.5,40.5
parent: 2
type: Transform
- uid: 5526
components:
- - pos: -46.5,41.5
+ - pos: -47.5,41.5
parent: 2
type: Transform
- uid: 5527
components:
- - pos: -45.5,41.5
+ - pos: -46.5,41.5
parent: 2
type: Transform
- uid: 5528
components:
- - pos: -45.5,42.5
+ - pos: -45.5,41.5
parent: 2
type: Transform
- uid: 5529
components:
- - pos: -45.5,46.5
+ - pos: -45.5,42.5
parent: 2
type: Transform
- uid: 5530
components:
- - pos: -45.5,47.5
+ - pos: -45.5,46.5
parent: 2
type: Transform
- uid: 5531
components:
- - pos: -45.5,48.5
+ - pos: -45.5,47.5
parent: 2
type: Transform
- uid: 5532
components:
- - pos: -45.5,49.5
+ - pos: -45.5,48.5
parent: 2
type: Transform
- uid: 5533
components:
- - pos: -46.5,49.5
+ - pos: -45.5,49.5
parent: 2
type: Transform
- uid: 5534
components:
- - pos: -46.5,50.5
+ - pos: -46.5,49.5
parent: 2
type: Transform
- uid: 5535
components:
- - pos: -46.5,51.5
+ - pos: -46.5,50.5
parent: 2
type: Transform
- uid: 5536
components:
- - pos: -46.5,52.5
+ - pos: -46.5,51.5
parent: 2
type: Transform
- uid: 5537
components:
- - pos: -46.5,53.5
+ - pos: -46.5,52.5
parent: 2
type: Transform
- uid: 5538
components:
- - pos: -45.5,53.5
+ - pos: -46.5,53.5
parent: 2
type: Transform
- uid: 5539
components:
- - pos: -44.5,53.5
+ - pos: -45.5,53.5
parent: 2
type: Transform
- uid: 5540
components:
- - pos: -43.5,53.5
+ - pos: -44.5,53.5
parent: 2
type: Transform
- uid: 5541
components:
- - pos: -42.5,53.5
+ - pos: -43.5,53.5
parent: 2
type: Transform
- uid: 5542
components:
- - pos: -41.5,53.5
+ - pos: -42.5,53.5
parent: 2
type: Transform
- uid: 5543
components:
- - pos: -40.5,53.5
+ - pos: -41.5,53.5
parent: 2
type: Transform
- uid: 5544
components:
- - pos: -39.5,53.5
+ - pos: -40.5,53.5
parent: 2
type: Transform
- uid: 5545
components:
- - pos: -38.5,53.5
+ - pos: -39.5,53.5
parent: 2
type: Transform
- uid: 5546
components:
- - pos: -37.5,53.5
+ - pos: -38.5,53.5
parent: 2
type: Transform
- uid: 5547
components:
- - pos: -47.5,53.5
+ - pos: -37.5,53.5
parent: 2
type: Transform
- uid: 5548
components:
- - pos: -48.5,53.5
+ - pos: -47.5,53.5
parent: 2
type: Transform
- uid: 5549
components:
- - pos: -49.5,53.5
+ - pos: -48.5,53.5
parent: 2
type: Transform
- uid: 5550
components:
- - pos: -50.5,53.5
+ - pos: -49.5,53.5
parent: 2
type: Transform
- uid: 5551
components:
- - pos: -51.5,53.5
+ - pos: -50.5,53.5
parent: 2
type: Transform
- uid: 5552
components:
- - pos: -52.5,53.5
+ - pos: -51.5,53.5
parent: 2
type: Transform
- uid: 5553
components:
- - pos: 10.5,-65.5
+ - pos: -52.5,53.5
parent: 2
type: Transform
- uid: 5554
components:
- - pos: 11.5,-65.5
+ - pos: 10.5,-65.5
parent: 2
type: Transform
- uid: 5555
components:
- - pos: 12.5,-65.5
+ - pos: 11.5,-65.5
parent: 2
type: Transform
- uid: 5556
components:
- - pos: 13.5,-65.5
+ - pos: 12.5,-65.5
parent: 2
type: Transform
- uid: 5557
components:
- - pos: 14.5,-65.5
+ - pos: 13.5,-65.5
parent: 2
type: Transform
- uid: 5558
components:
- - pos: 26.5,31.5
+ - pos: 14.5,-65.5
parent: 2
type: Transform
- uid: 5559
components:
- - pos: 25.5,31.5
+ - pos: 26.5,31.5
parent: 2
type: Transform
- uid: 5560
components:
- - pos: 24.5,31.5
+ - pos: 25.5,31.5
parent: 2
type: Transform
- uid: 5561
components:
- - pos: 24.5,32.5
+ - pos: 24.5,31.5
parent: 2
type: Transform
- uid: 5562
components:
- - pos: 24.5,33.5
+ - pos: 24.5,32.5
parent: 2
type: Transform
- uid: 5563
components:
- - pos: 24.5,34.5
+ - pos: 24.5,33.5
parent: 2
type: Transform
- uid: 5564
components:
- - pos: 54.5,28.5
+ - pos: 24.5,34.5
parent: 2
type: Transform
- uid: 5565
components:
- - pos: 53.5,28.5
+ - pos: 54.5,28.5
parent: 2
type: Transform
- uid: 5566
components:
- - pos: -62.5,-30.5
+ - pos: 53.5,28.5
parent: 2
type: Transform
- uid: 5567
components:
- - pos: -61.5,-30.5
+ - pos: -62.5,-30.5
parent: 2
type: Transform
- uid: 5568
components:
- - pos: -60.5,-30.5
+ - pos: -61.5,-30.5
parent: 2
type: Transform
- uid: 5569
components:
- - pos: -40.5,-41.5
+ - pos: -60.5,-30.5
parent: 2
type: Transform
- uid: 5570
components:
- - pos: 48.5,-46.5
+ - pos: -40.5,-41.5
parent: 2
type: Transform
- uid: 5571
components:
- - pos: 48.5,-48.5
+ - pos: 48.5,-46.5
parent: 2
type: Transform
- uid: 5572
components:
- - pos: 28.5,-5.5
+ - pos: 48.5,-48.5
parent: 2
type: Transform
- uid: 5573
components:
- - pos: -24.5,-13.5
+ - pos: 28.5,-5.5
parent: 2
type: Transform
- uid: 5574
components:
- - pos: 65.5,-43.5
+ - pos: -24.5,-13.5
parent: 2
type: Transform
- uid: 5575
components:
- - pos: -52.5,-73.5
+ - pos: 65.5,-43.5
parent: 2
type: Transform
- uid: 5576
components:
- - pos: -51.5,-73.5
+ - pos: -52.5,-73.5
parent: 2
type: Transform
- uid: 5577
components:
- - pos: -51.5,-74.5
+ - pos: -51.5,-73.5
parent: 2
type: Transform
- uid: 5578
components:
- - pos: -46.5,-75.5
+ - pos: -51.5,-74.5
parent: 2
type: Transform
- uid: 5579
components:
- - pos: 59.5,-32.5
+ - pos: -46.5,-75.5
parent: 2
type: Transform
- uid: 5580
components:
- - pos: 52.5,-13.5
+ - pos: 59.5,-32.5
parent: 2
type: Transform
- uid: 5581
components:
- - pos: 52.5,-14.5
+ - pos: 52.5,-13.5
parent: 2
type: Transform
- uid: 5582
components:
- - pos: 52.5,-15.5
+ - pos: 52.5,-14.5
parent: 2
type: Transform
- uid: 5583
components:
- - pos: 65.5,-11.5
+ - pos: 52.5,-15.5
parent: 2
type: Transform
- uid: 5584
components:
- - pos: 65.5,-13.5
+ - pos: 65.5,-11.5
parent: 2
type: Transform
- uid: 5585
components:
- - pos: 65.5,-5.5
+ - pos: 65.5,-13.5
parent: 2
type: Transform
- uid: 5586
components:
- - pos: 65.5,-3.5
+ - pos: 65.5,-5.5
parent: 2
type: Transform
- uid: 5587
components:
- - pos: 11.5,-5.5
+ - pos: 65.5,-3.5
parent: 2
type: Transform
- uid: 5588
components:
- - pos: 10.5,-0.5
+ - pos: 11.5,-5.5
parent: 2
type: Transform
- uid: 5589
components:
- - pos: 9.5,-0.5
+ - pos: 10.5,-0.5
parent: 2
type: Transform
- uid: 5590
components:
- - pos: 9.5,-1.5
+ - pos: 9.5,-0.5
parent: 2
type: Transform
- uid: 5591
components:
- - pos: 10.5,-5.5
+ - pos: 9.5,-1.5
parent: 2
type: Transform
- uid: 5592
components:
- - pos: 9.5,-5.5
+ - pos: 10.5,-5.5
parent: 2
type: Transform
- uid: 5593
components:
- - pos: 17.5,-43.5
+ - pos: 9.5,-5.5
parent: 2
type: Transform
- uid: 5594
components:
- - pos: 18.5,-43.5
+ - pos: 17.5,-43.5
parent: 2
type: Transform
- uid: 5595
components:
- - pos: 16.5,-43.5
+ - pos: 18.5,-43.5
parent: 2
type: Transform
- uid: 5596
components:
- - pos: 11.5,-41.5
+ - pos: 16.5,-43.5
parent: 2
type: Transform
- uid: 5597
components:
- - pos: 33.5,-42.5
+ - pos: 11.5,-41.5
parent: 2
type: Transform
- uid: 5598
components:
- - pos: 34.5,-21.5
+ - pos: 33.5,-42.5
parent: 2
type: Transform
- uid: 5599
components:
- - pos: 32.5,-42.5
+ - pos: 34.5,-21.5
parent: 2
type: Transform
- uid: 5600
components:
- - pos: 34.5,-24.5
+ - pos: 32.5,-42.5
parent: 2
type: Transform
- uid: 5601
components:
- - pos: 34.5,-23.5
+ - pos: 34.5,-24.5
parent: 2
type: Transform
- uid: 5602
components:
- - pos: 34.5,-22.5
+ - pos: 34.5,-23.5
parent: 2
type: Transform
- uid: 5603
components:
- - pos: -7.5,5.5
+ - pos: 34.5,-22.5
parent: 2
type: Transform
- uid: 5604
components:
- - pos: 1.5,5.5
+ - pos: -7.5,5.5
parent: 2
type: Transform
- uid: 5605
components:
- - pos: 11.5,-25.5
+ - pos: 1.5,5.5
parent: 2
type: Transform
- uid: 5606
components:
- - pos: 2.5,5.5
+ - pos: 11.5,-25.5
parent: 2
type: Transform
- uid: 5607
components:
- - pos: -6.5,5.5
+ - pos: 2.5,5.5
parent: 2
type: Transform
- uid: 5608
components:
- - pos: 3.5,5.5
+ - pos: -6.5,5.5
parent: 2
type: Transform
- uid: 5609
components:
- - pos: -4.5,5.5
+ - pos: 3.5,5.5
parent: 2
type: Transform
- uid: 5610
components:
- - pos: -3.5,3.5
+ - pos: -4.5,5.5
parent: 2
type: Transform
- uid: 5611
components:
- - pos: -5.5,5.5
+ - pos: -3.5,3.5
parent: 2
type: Transform
- uid: 5612
components:
- - pos: -4.5,3.5
+ - pos: -5.5,5.5
parent: 2
type: Transform
- uid: 5613
components:
- - pos: -18.5,4.5
+ - pos: -4.5,3.5
parent: 2
type: Transform
- uid: 5614
components:
- - pos: -5.5,3.5
+ - pos: -18.5,4.5
parent: 2
type: Transform
- uid: 5615
components:
- - pos: -20.5,4.5
+ - pos: -5.5,3.5
parent: 2
type: Transform
- uid: 5616
components:
- - pos: -17.5,4.5
+ - pos: -20.5,4.5
parent: 2
type: Transform
- uid: 5617
components:
- - pos: -19.5,4.5
+ - pos: -17.5,4.5
parent: 2
type: Transform
- uid: 5618
components:
- - pos: -21.5,4.5
+ - pos: -19.5,4.5
parent: 2
type: Transform
- uid: 5619
components:
- - pos: -44.5,8.5
+ - pos: -21.5,4.5
parent: 2
type: Transform
- uid: 5620
components:
- - pos: -44.5,4.5
+ - pos: -44.5,8.5
parent: 2
type: Transform
- uid: 5621
components:
- - pos: -45.5,8.5
+ - pos: -44.5,4.5
parent: 2
type: Transform
- uid: 5622
components:
- - pos: -44.5,6.5
+ - pos: -45.5,8.5
parent: 2
type: Transform
- uid: 5623
components:
- - pos: -44.5,7.5
+ - pos: -44.5,6.5
parent: 2
type: Transform
- uid: 5624
components:
- - pos: -22.5,-9.5
+ - pos: -44.5,7.5
parent: 2
type: Transform
- uid: 5625
components:
- - pos: -48.5,10.5
+ - pos: -22.5,-9.5
parent: 2
type: Transform
- uid: 5626
components:
- - pos: -22.5,-10.5
+ - pos: -48.5,10.5
parent: 2
type: Transform
- uid: 5627
components:
- - pos: -50.5,10.5
+ - pos: -22.5,-10.5
parent: 2
type: Transform
- uid: 5628
components:
- - pos: -49.5,10.5
+ - pos: -50.5,10.5
parent: 2
type: Transform
- uid: 5629
components:
- - pos: -22.5,-11.5
+ - pos: -49.5,10.5
parent: 2
type: Transform
- uid: 5630
components:
- - pos: -2.5,-47.5
+ - pos: -22.5,-11.5
parent: 2
type: Transform
- uid: 5631
components:
- - pos: -37.5,-41.5
+ - pos: -2.5,-47.5
parent: 2
type: Transform
- uid: 5632
components:
- - pos: -3.5,-47.5
+ - pos: -37.5,-41.5
parent: 2
type: Transform
- uid: 5633
components:
- - pos: -37.5,-42.5
+ - pos: -3.5,-47.5
parent: 2
type: Transform
- uid: 5634
components:
- - pos: -38.5,-41.5
+ - pos: -37.5,-42.5
parent: 2
type: Transform
- uid: 5635
components:
- - pos: -39.5,-41.5
+ - pos: -38.5,-41.5
parent: 2
type: Transform
- uid: 5636
components:
- - pos: 52.5,-40.5
+ - pos: -39.5,-41.5
parent: 2
type: Transform
- uid: 5637
components:
- - pos: 63.5,-48.5
+ - pos: 52.5,-40.5
parent: 2
type: Transform
- uid: 5638
components:
- - pos: 52.5,-39.5
+ - pos: 63.5,-48.5
parent: 2
type: Transform
- uid: 5639
components:
- - pos: 51.5,-39.5
+ - pos: 52.5,-39.5
parent: 2
type: Transform
- uid: 5640
components:
- - pos: 68.5,-48.5
+ - pos: 51.5,-39.5
parent: 2
type: Transform
- uid: 5641
components:
- - pos: 66.5,-48.5
+ - pos: 68.5,-48.5
parent: 2
type: Transform
- uid: 5642
components:
- - pos: 52.5,-41.5
+ - pos: 66.5,-48.5
parent: 2
type: Transform
- uid: 5643
components:
- - pos: 65.5,-48.5
+ - pos: 52.5,-41.5
parent: 2
type: Transform
- uid: 5644
components:
- - pos: 64.5,-48.5
+ - pos: 65.5,-48.5
parent: 2
type: Transform
- uid: 5645
components:
- - pos: -14.5,-73.5
+ - pos: 64.5,-48.5
parent: 2
type: Transform
- uid: 5646
components:
- - pos: -14.5,-71.5
+ - pos: -14.5,-73.5
parent: 2
type: Transform
- uid: 5647
components:
- - pos: -15.5,-73.5
+ - pos: -14.5,-71.5
parent: 2
type: Transform
- uid: 5648
components:
- - pos: -15.5,-72.5
+ - pos: -15.5,-73.5
parent: 2
type: Transform
- uid: 5649
components:
- - pos: -37.5,22.5
+ - pos: -15.5,-72.5
parent: 2
type: Transform
- uid: 5650
components:
- - pos: -15.5,-71.5
+ - pos: -37.5,22.5
parent: 2
type: Transform
- uid: 5651
components:
- - pos: -11.5,-71.5
+ - pos: -15.5,-71.5
parent: 2
type: Transform
- uid: 5652
components:
- - pos: -12.5,-71.5
+ - pos: -11.5,-71.5
parent: 2
type: Transform
- uid: 5653
components:
- - pos: -13.5,-71.5
+ - pos: -12.5,-71.5
parent: 2
type: Transform
- uid: 5654
components:
- - pos: -45.5,33.5
+ - pos: -13.5,-71.5
parent: 2
type: Transform
- uid: 5655
components:
- - pos: -44.5,28.5
+ - pos: -45.5,33.5
parent: 2
type: Transform
- uid: 5656
components:
- - pos: -10.5,-71.5
+ - pos: -44.5,28.5
parent: 2
type: Transform
- uid: 5657
components:
- - pos: -45.5,28.5
+ - pos: -10.5,-71.5
parent: 2
type: Transform
- uid: 5658
components:
- - pos: -43.5,28.5
+ - pos: -45.5,28.5
parent: 2
type: Transform
- uid: 5659
components:
- - pos: -41.5,31.5
+ - pos: -43.5,28.5
parent: 2
type: Transform
- uid: 5660
components:
- - pos: -42.5,33.5
+ - pos: -41.5,31.5
parent: 2
type: Transform
- uid: 5661
components:
- - pos: -41.5,32.5
+ - pos: -42.5,33.5
parent: 2
type: Transform
- uid: 5662
components:
- - pos: -41.5,33.5
+ - pos: -41.5,32.5
parent: 2
type: Transform
- uid: 5663
components:
- - pos: -20.5,18.5
+ - pos: -41.5,33.5
parent: 2
type: Transform
- uid: 5664
components:
- - pos: -20.5,20.5
+ - pos: -20.5,18.5
parent: 2
type: Transform
- uid: 5665
components:
- - pos: -20.5,16.5
+ - pos: -20.5,20.5
parent: 2
type: Transform
- uid: 5666
components:
- - pos: -20.5,19.5
+ - pos: -20.5,16.5
parent: 2
type: Transform
- uid: 5667
components:
- - pos: -20.5,17.5
+ - pos: -20.5,19.5
parent: 2
type: Transform
- uid: 5668
components:
- - pos: -19.5,16.5
+ - pos: -20.5,17.5
parent: 2
type: Transform
- uid: 5669
components:
- - pos: 53.5,-6.5
+ - pos: -19.5,16.5
parent: 2
type: Transform
- uid: 5670
components:
- - pos: 52.5,-6.5
+ - pos: 53.5,-6.5
parent: 2
type: Transform
- uid: 5671
components:
- - pos: 51.5,-6.5
+ - pos: 52.5,-6.5
parent: 2
type: Transform
- uid: 5672
components:
- - pos: 51.5,-7.5
+ - pos: 51.5,-6.5
parent: 2
type: Transform
- uid: 5673
components:
- - pos: 5.5,21.5
+ - pos: 51.5,-7.5
parent: 2
type: Transform
- uid: 5674
components:
- - pos: 6.5,21.5
+ - pos: 5.5,21.5
parent: 2
type: Transform
- uid: 5675
components:
- - pos: 7.5,15.5
+ - pos: 6.5,21.5
parent: 2
type: Transform
- uid: 5676
components:
- - pos: 8.5,15.5
+ - pos: 7.5,15.5
parent: 2
type: Transform
- uid: 5677
components:
- - pos: 2.5,20.5
+ - pos: 8.5,15.5
parent: 2
type: Transform
- uid: 5678
components:
- - pos: 2.5,19.5
+ - pos: 2.5,20.5
parent: 2
type: Transform
- uid: 5679
components:
- - pos: 2.5,18.5
+ - pos: 2.5,19.5
parent: 2
type: Transform
- uid: 5680
components:
- - pos: 42.5,15.5
+ - pos: 2.5,18.5
parent: 2
type: Transform
- uid: 5681
components:
- - pos: 42.5,16.5
+ - pos: 42.5,15.5
parent: 2
type: Transform
- uid: 5682
components:
- - pos: 41.5,16.5
+ - pos: 42.5,16.5
parent: 2
type: Transform
- uid: 5683
components:
- - pos: 40.5,16.5
+ - pos: 41.5,16.5
parent: 2
type: Transform
- uid: 5684
components:
- - pos: 39.5,16.5
+ - pos: 40.5,16.5
parent: 2
type: Transform
- uid: 5685
components:
- - pos: 38.5,16.5
+ - pos: 39.5,16.5
parent: 2
type: Transform
- uid: 5686
components:
- - pos: 37.5,16.5
+ - pos: 38.5,16.5
parent: 2
type: Transform
- uid: 5687
components:
- - pos: 36.5,16.5
+ - pos: 37.5,16.5
parent: 2
type: Transform
- uid: 5688
components:
- - pos: 34.5,16.5
+ - pos: 36.5,16.5
parent: 2
type: Transform
- uid: 5689
components:
- - pos: 33.5,16.5
+ - pos: 34.5,16.5
parent: 2
type: Transform
- uid: 5690
components:
- - pos: 42.5,13.5
+ - pos: 33.5,16.5
parent: 2
type: Transform
- uid: 5691
components:
- - pos: 42.5,12.5
+ - pos: 42.5,13.5
parent: 2
type: Transform
- uid: 5692
components:
- - pos: 28.5,28.5
+ - pos: 42.5,12.5
parent: 2
type: Transform
- uid: 5693
components:
- - pos: 31.5,28.5
+ - pos: 28.5,28.5
parent: 2
type: Transform
- uid: 5694
components:
- - pos: 30.5,28.5
+ - pos: 31.5,28.5
parent: 2
type: Transform
- uid: 5695
components:
- - pos: -12.5,-59.5
+ - pos: 30.5,28.5
parent: 2
type: Transform
- uid: 5696
components:
- - pos: -11.5,-59.5
+ - pos: -12.5,-59.5
parent: 2
type: Transform
- uid: 5697
components:
- - pos: -10.5,-59.5
+ - pos: -11.5,-59.5
parent: 2
type: Transform
- uid: 5698
components:
- - pos: -10.5,-58.5
+ - pos: -10.5,-59.5
parent: 2
type: Transform
- uid: 5699
components:
- - pos: -9.5,-59.5
+ - pos: -10.5,-58.5
parent: 2
type: Transform
- uid: 5700
components:
- - pos: -8.5,-59.5
+ - pos: -9.5,-59.5
parent: 2
type: Transform
- uid: 5701
components:
- - pos: -7.5,-59.5
+ - pos: -8.5,-59.5
parent: 2
type: Transform
- uid: 5702
components:
- - pos: -6.5,-59.5
+ - pos: -7.5,-59.5
parent: 2
type: Transform
- uid: 5703
components:
- - pos: -51.5,-75.5
+ - pos: -6.5,-59.5
parent: 2
type: Transform
- uid: 5704
components:
- - pos: -51.5,-77.5
+ - pos: -51.5,-75.5
parent: 2
type: Transform
- uid: 5705
components:
- - pos: -51.5,-78.5
+ - pos: -51.5,-77.5
parent: 2
type: Transform
- uid: 5706
components:
- - pos: -51.5,-79.5
+ - pos: -51.5,-78.5
parent: 2
type: Transform
- uid: 5707
components:
- - pos: -52.5,-79.5
+ - pos: -51.5,-79.5
parent: 2
type: Transform
- uid: 5708
components:
- - pos: 38.5,17.5
+ - pos: -52.5,-79.5
parent: 2
type: Transform
- uid: 5709
components:
- - pos: 18.5,-31.5
+ - pos: 38.5,17.5
parent: 2
type: Transform
- uid: 5710
components:
- - pos: 52.5,10.5
+ - pos: 18.5,-31.5
parent: 2
type: Transform
- uid: 5711
components:
- - pos: 45.5,-72.5
+ - pos: 52.5,10.5
parent: 2
type: Transform
- uid: 5712
components:
- - pos: 29.5,-27.5
+ - pos: 45.5,-72.5
parent: 2
type: Transform
- uid: 5713
components:
- - pos: 29.5,-26.5
+ - pos: 29.5,-27.5
parent: 2
type: Transform
- uid: 5714
components:
- - pos: 29.5,-25.5
+ - pos: 29.5,-26.5
parent: 2
type: Transform
- uid: 5715
components:
- - pos: 31.5,-42.5
+ - pos: 29.5,-25.5
parent: 2
type: Transform
- uid: 5716
components:
- - pos: 30.5,-42.5
+ - pos: 31.5,-42.5
parent: 2
type: Transform
- uid: 5717
components:
- - pos: 28.5,-41.5
+ - pos: 30.5,-42.5
parent: 2
type: Transform
- uid: 5718
components:
- - pos: 38.5,-60.5
+ - pos: 28.5,-41.5
parent: 2
type: Transform
- uid: 5719
components:
- - pos: 38.5,-61.5
+ - pos: 38.5,-60.5
parent: 2
type: Transform
- uid: 5720
components:
- - pos: 38.5,-62.5
+ - pos: 38.5,-61.5
parent: 2
type: Transform
- uid: 5721
components:
- - pos: 38.5,-63.5
+ - pos: 38.5,-62.5
parent: 2
type: Transform
- uid: 5722
components:
- - pos: 38.5,-64.5
+ - pos: 38.5,-63.5
parent: 2
type: Transform
- uid: 5723
components:
- - pos: 38.5,-65.5
+ - pos: 38.5,-64.5
parent: 2
type: Transform
- uid: 5724
components:
- - pos: 38.5,-66.5
+ - pos: 38.5,-65.5
parent: 2
type: Transform
- uid: 5725
components:
- - pos: 38.5,-67.5
+ - pos: 38.5,-66.5
parent: 2
type: Transform
- uid: 5726
components:
- - pos: 38.5,-68.5
+ - pos: 38.5,-67.5
parent: 2
type: Transform
- uid: 5727
components:
- - pos: 38.5,-69.5
+ - pos: 38.5,-68.5
parent: 2
type: Transform
- uid: 5728
components:
- - pos: 38.5,-70.5
+ - pos: 38.5,-69.5
parent: 2
type: Transform
- uid: 5729
components:
- - pos: 38.5,-71.5
+ - pos: 38.5,-70.5
parent: 2
type: Transform
- uid: 5730
components:
- - pos: 14.5,-64.5
+ - pos: 38.5,-71.5
parent: 2
type: Transform
- uid: 5731
components:
- - pos: 14.5,-63.5
+ - pos: 14.5,-64.5
parent: 2
type: Transform
- uid: 5732
components:
- - pos: 14.5,-62.5
+ - pos: 14.5,-63.5
parent: 2
type: Transform
- uid: 5733
components:
- - pos: 14.5,-61.5
+ - pos: 14.5,-62.5
parent: 2
type: Transform
- uid: 5734
components:
- - pos: 14.5,-60.5
+ - pos: 14.5,-61.5
parent: 2
type: Transform
- uid: 5735
components:
- - pos: 14.5,-59.5
+ - pos: 14.5,-60.5
parent: 2
type: Transform
- uid: 5736
components:
- - pos: 14.5,-58.5
+ - pos: 14.5,-59.5
parent: 2
type: Transform
- uid: 5737
components:
- - pos: 10.5,-64.5
+ - pos: 14.5,-58.5
parent: 2
type: Transform
- uid: 5738
components:
- - pos: 11.5,-64.5
+ - pos: 10.5,-64.5
parent: 2
type: Transform
- uid: 5739
components:
- - pos: 12.5,-64.5
+ - pos: 11.5,-64.5
parent: 2
type: Transform
- uid: 5740
components:
- - pos: 12.5,-63.5
+ - pos: 12.5,-64.5
parent: 2
type: Transform
- uid: 5741
components:
- - pos: 12.5,-62.5
+ - pos: 12.5,-63.5
parent: 2
type: Transform
- uid: 5742
components:
- - pos: 12.5,-61.5
+ - pos: 12.5,-62.5
parent: 2
type: Transform
- uid: 5743
components:
- - pos: 12.5,-60.5
+ - pos: 12.5,-61.5
parent: 2
type: Transform
- uid: 5744
components:
- - pos: 12.5,-59.5
+ - pos: 12.5,-60.5
parent: 2
type: Transform
- uid: 5745
components:
- - pos: 12.5,-58.5
+ - pos: 12.5,-59.5
parent: 2
type: Transform
- uid: 5746
components:
- - pos: 12.5,-57.5
+ - pos: 12.5,-58.5
parent: 2
type: Transform
- uid: 5747
components:
- - pos: 12.5,-56.5
+ - pos: 12.5,-57.5
parent: 2
type: Transform
- uid: 5748
components:
- - pos: 14.5,-57.5
+ - pos: 12.5,-56.5
parent: 2
type: Transform
- uid: 5749
components:
- - pos: 13.5,-57.5
+ - pos: 14.5,-57.5
parent: 2
type: Transform
- uid: 5750
components:
- - pos: -33.5,-71.5
+ - pos: 13.5,-57.5
parent: 2
type: Transform
- uid: 5751
components:
- - pos: -33.5,-72.5
+ - pos: -33.5,-71.5
parent: 2
type: Transform
- uid: 5752
components:
- - pos: -26.5,-73.5
+ - pos: -33.5,-72.5
parent: 2
type: Transform
- uid: 5753
components:
- - pos: -28.5,-73.5
+ - pos: -26.5,-73.5
parent: 2
type: Transform
- uid: 5754
components:
- - pos: -29.5,-72.5
+ - pos: -28.5,-73.5
parent: 2
type: Transform
- uid: 5755
components:
- - pos: -29.5,-75.5
+ - pos: -29.5,-72.5
parent: 2
type: Transform
- uid: 5756
components:
- - pos: -30.5,-71.5
+ - pos: -29.5,-75.5
parent: 2
type: Transform
- uid: 5757
components:
- - pos: -30.5,-70.5
+ - pos: -30.5,-71.5
parent: 2
type: Transform
- uid: 5758
components:
- - pos: -30.5,-69.5
+ - pos: -30.5,-70.5
parent: 2
type: Transform
- uid: 5759
components:
- - pos: -29.5,-69.5
+ - pos: -30.5,-69.5
parent: 2
type: Transform
- uid: 5760
components:
- - pos: -28.5,-69.5
+ - pos: -29.5,-69.5
parent: 2
type: Transform
- uid: 5761
components:
- - pos: -27.5,-69.5
+ - pos: -28.5,-69.5
parent: 2
type: Transform
- uid: 5762
components:
- - pos: -27.5,-70.5
+ - pos: -27.5,-69.5
parent: 2
type: Transform
- uid: 5763
components:
- - pos: -27.5,-71.5
+ - pos: -27.5,-70.5
parent: 2
type: Transform
- uid: 5764
components:
- - pos: -27.5,-73.5
+ - pos: -27.5,-71.5
parent: 2
type: Transform
- uid: 5765
components:
- - pos: -27.5,-74.5
+ - pos: -27.5,-73.5
parent: 2
type: Transform
- uid: 5766
components:
- - pos: -27.5,-75.5
+ - pos: -27.5,-74.5
parent: 2
type: Transform
- uid: 5767
components:
- - pos: -28.5,-75.5
+ - pos: -27.5,-75.5
parent: 2
type: Transform
- uid: 5768
components:
- - pos: -30.5,-75.5
+ - pos: -28.5,-75.5
parent: 2
type: Transform
- uid: 5769
components:
- - pos: -30.5,-74.5
+ - pos: -30.5,-75.5
parent: 2
type: Transform
- uid: 5770
components:
- - pos: -30.5,-73.5
+ - pos: -30.5,-74.5
parent: 2
type: Transform
- uid: 5771
components:
- - pos: -28.5,-71.5
+ - pos: -30.5,-73.5
parent: 2
type: Transform
- uid: 5772
components:
- - pos: -29.5,-72.5
+ - pos: -28.5,-71.5
parent: 2
type: Transform
- uid: 5773
components:
- - pos: -29.5,-71.5
+ - pos: -29.5,-72.5
parent: 2
type: Transform
- uid: 5774
components:
- - pos: 52.5,38.5
+ - pos: -29.5,-71.5
parent: 2
type: Transform
- uid: 5775
components:
- - pos: 52.5,37.5
+ - pos: 52.5,38.5
parent: 2
type: Transform
- uid: 5776
components:
- - pos: 52.5,36.5
+ - pos: 52.5,37.5
parent: 2
type: Transform
- uid: 5777
components:
- - pos: 52.5,35.5
+ - pos: 52.5,36.5
parent: 2
type: Transform
- uid: 5778
components:
- - pos: 52.5,34.5
+ - pos: 52.5,35.5
parent: 2
type: Transform
- uid: 5779
components:
- - pos: 52.5,33.5
+ - pos: 52.5,34.5
parent: 2
type: Transform
- uid: 5780
components:
- - pos: 52.5,32.5
+ - pos: 52.5,33.5
parent: 2
type: Transform
- uid: 5781
components:
- - pos: 52.5,31.5
+ - pos: 52.5,32.5
parent: 2
type: Transform
- uid: 5782
components:
- - pos: 51.5,31.5
+ - pos: 52.5,31.5
parent: 2
type: Transform
- uid: 5783
components:
- - pos: 50.5,31.5
+ - pos: 51.5,31.5
parent: 2
type: Transform
- uid: 5784
components:
- - pos: 49.5,31.5
+ - pos: 50.5,31.5
parent: 2
type: Transform
- uid: 5785
components:
- - pos: 48.5,31.5
+ - pos: 49.5,31.5
parent: 2
type: Transform
- uid: 5786
components:
- - pos: 48.5,30.5
+ - pos: 48.5,31.5
parent: 2
type: Transform
- uid: 5787
components:
- - pos: 48.5,29.5
+ - pos: 48.5,30.5
parent: 2
type: Transform
- uid: 5788
components:
- - pos: 48.5,28.5
+ - pos: 48.5,29.5
parent: 2
type: Transform
- uid: 5789
components:
- - pos: 53.5,37.5
+ - pos: 48.5,28.5
parent: 2
type: Transform
- uid: 5790
components:
- - pos: 54.5,37.5
+ - pos: 53.5,37.5
parent: 2
type: Transform
- uid: 5791
components:
- - pos: 55.5,37.5
+ - pos: 54.5,37.5
parent: 2
type: Transform
- uid: 5792
components:
- - pos: 56.5,37.5
+ - pos: 55.5,37.5
parent: 2
type: Transform
- uid: 5793
components:
- - pos: 56.5,35.5
+ - pos: 56.5,37.5
parent: 2
type: Transform
- uid: 5794
components:
- - pos: 56.5,33.5
+ - pos: 56.5,35.5
parent: 2
type: Transform
- uid: 5795
components:
- - pos: 56.5,32.5
+ - pos: 56.5,33.5
parent: 2
type: Transform
- uid: 5796
components:
- - pos: 56.5,31.5
+ - pos: 56.5,32.5
parent: 2
type: Transform
- uid: 5797
components:
- - pos: 57.5,31.5
+ - pos: 56.5,31.5
parent: 2
type: Transform
- uid: 5798
components:
- - pos: 57.5,30.5
+ - pos: 57.5,31.5
parent: 2
type: Transform
- uid: 5799
components:
- - pos: 57.5,29.5
+ - pos: 57.5,30.5
parent: 2
type: Transform
- uid: 5800
components:
- - pos: 57.5,28.5
+ - pos: 57.5,29.5
parent: 2
type: Transform
- uid: 5801
components:
- - pos: 54.5,38.5
+ - pos: 57.5,28.5
parent: 2
type: Transform
- uid: 5802
components:
- - pos: 54.5,39.5
+ - pos: 54.5,38.5
parent: 2
type: Transform
- uid: 5803
components:
- - pos: 54.5,40.5
+ - pos: 54.5,39.5
parent: 2
type: Transform
- uid: 5804
components:
- - pos: 54.5,41.5
+ - pos: 54.5,40.5
parent: 2
type: Transform
- uid: 5805
components:
- - pos: 54.5,42.5
+ - pos: 54.5,41.5
parent: 2
type: Transform
- uid: 5806
components:
- - pos: 54.5,43.5
+ - pos: 54.5,42.5
parent: 2
type: Transform
- uid: 5807
components:
- - pos: 54.5,44.5
+ - pos: 54.5,43.5
parent: 2
type: Transform
- uid: 5808
components:
- - pos: 54.5,45.5
+ - pos: 54.5,44.5
parent: 2
type: Transform
- uid: 5809
components:
- - pos: 54.5,46.5
+ - pos: 54.5,45.5
parent: 2
type: Transform
- uid: 5810
components:
- - pos: 54.5,47.5
+ - pos: 54.5,46.5
parent: 2
type: Transform
- uid: 5811
components:
- - pos: 54.5,48.5
+ - pos: 54.5,47.5
parent: 2
type: Transform
- uid: 5812
components:
- - pos: 54.5,49.5
+ - pos: 54.5,48.5
parent: 2
type: Transform
- uid: 5813
components:
- - pos: 54.5,50.5
+ - pos: 54.5,49.5
parent: 2
type: Transform
- uid: 5814
components:
- - pos: 53.5,42.5
+ - pos: 54.5,50.5
parent: 2
type: Transform
- uid: 5815
components:
- - pos: 52.5,42.5
+ - pos: 53.5,42.5
parent: 2
type: Transform
- uid: 5816
components:
- - pos: 51.5,42.5
+ - pos: 52.5,42.5
parent: 2
type: Transform
- uid: 5817
components:
- - pos: 51.5,43.5
+ - pos: 51.5,42.5
parent: 2
type: Transform
- uid: 5818
components:
- - pos: 51.5,44.5
+ - pos: 51.5,43.5
parent: 2
type: Transform
- uid: 5819
components:
- - pos: 51.5,45.5
+ - pos: 51.5,44.5
parent: 2
type: Transform
- uid: 5820
components:
- - pos: 51.5,46.5
+ - pos: 51.5,45.5
parent: 2
type: Transform
- uid: 5821
components:
- - pos: 51.5,47.5
+ - pos: 51.5,46.5
parent: 2
type: Transform
- uid: 5822
components:
- - pos: 51.5,48.5
+ - pos: 51.5,47.5
parent: 2
type: Transform
- uid: 5823
components:
- - pos: 51.5,49.5
+ - pos: 51.5,48.5
parent: 2
type: Transform
- uid: 5824
components:
- - pos: 51.5,50.5
+ - pos: 51.5,49.5
parent: 2
type: Transform
- uid: 5825
components:
- - pos: 55.5,42.5
+ - pos: 51.5,50.5
parent: 2
type: Transform
- uid: 5826
components:
- - pos: 56.5,42.5
+ - pos: 55.5,42.5
parent: 2
type: Transform
- uid: 5827
components:
- - pos: 57.5,42.5
+ - pos: 56.5,42.5
parent: 2
type: Transform
- uid: 5828
components:
- - pos: 57.5,43.5
+ - pos: 57.5,42.5
parent: 2
type: Transform
- uid: 5829
components:
- - pos: 57.5,44.5
+ - pos: 57.5,43.5
parent: 2
type: Transform
- uid: 5830
components:
- - pos: 57.5,45.5
+ - pos: 57.5,44.5
parent: 2
type: Transform
- uid: 5831
components:
- - pos: 57.5,46.5
+ - pos: 57.5,45.5
parent: 2
type: Transform
- uid: 5832
components:
- - pos: 57.5,47.5
+ - pos: 57.5,46.5
parent: 2
type: Transform
- uid: 5833
components:
- - pos: 57.5,48.5
+ - pos: 57.5,47.5
parent: 2
type: Transform
- uid: 5834
components:
- - pos: 57.5,49.5
+ - pos: 57.5,48.5
parent: 2
type: Transform
- uid: 5835
components:
- - pos: 57.5,50.5
+ - pos: 57.5,49.5
parent: 2
type: Transform
- uid: 5836
components:
- - pos: 56.5,50.5
+ - pos: 57.5,50.5
parent: 2
type: Transform
- uid: 5837
components:
- - pos: 55.5,50.5
+ - pos: 56.5,50.5
parent: 2
type: Transform
- uid: 5838
components:
- - pos: 53.5,50.5
+ - pos: 55.5,50.5
parent: 2
type: Transform
- uid: 5839
components:
- - pos: 52.5,50.5
+ - pos: 53.5,50.5
parent: 2
type: Transform
- uid: 5840
components:
- - pos: 56.5,51.5
+ - pos: 52.5,50.5
parent: 2
type: Transform
- uid: 5841
components:
- - pos: 56.5,52.5
+ - pos: 56.5,51.5
parent: 2
type: Transform
- uid: 5842
components:
- - pos: 52.5,51.5
+ - pos: 56.5,52.5
parent: 2
type: Transform
- uid: 5843
components:
- - pos: 52.5,52.5
+ - pos: 52.5,51.5
parent: 2
type: Transform
- uid: 5844
components:
- - pos: 56.5,53.5
+ - pos: 52.5,52.5
parent: 2
type: Transform
- uid: 5845
components:
- - pos: 55.5,53.5
+ - pos: 56.5,53.5
parent: 2
type: Transform
- uid: 5846
components:
- - pos: 54.5,53.5
+ - pos: 55.5,53.5
parent: 2
type: Transform
- uid: 5847
components:
- - pos: 52.5,53.5
+ - pos: 54.5,53.5
parent: 2
type: Transform
- uid: 5848
components:
- - pos: 53.5,53.5
+ - pos: 52.5,53.5
parent: 2
type: Transform
- uid: 5849
components:
- - pos: 54.5,54.5
+ - pos: 53.5,53.5
parent: 2
type: Transform
- uid: 5850
components:
- - pos: 54.5,55.5
+ - pos: 54.5,54.5
parent: 2
type: Transform
- uid: 5851
components:
- - pos: 54.5,57.5
+ - pos: 54.5,55.5
parent: 2
type: Transform
- uid: 5852
components:
- - pos: 54.5,56.5
+ - pos: 54.5,57.5
parent: 2
type: Transform
- uid: 5853
components:
- - pos: 54.5,58.5
+ - pos: 54.5,56.5
parent: 2
type: Transform
- uid: 5854
components:
- - pos: 54.5,59.5
+ - pos: 54.5,58.5
parent: 2
type: Transform
- uid: 5855
components:
- - pos: 53.5,57.5
+ - pos: 54.5,59.5
parent: 2
type: Transform
- uid: 5856
components:
- - pos: 52.5,57.5
+ - pos: 53.5,57.5
parent: 2
type: Transform
- uid: 5857
components:
- - pos: 51.5,57.5
+ - pos: 52.5,57.5
parent: 2
type: Transform
- uid: 5858
components:
- - pos: 55.5,57.5
+ - pos: 51.5,57.5
parent: 2
type: Transform
- uid: 5859
components:
- - pos: 56.5,57.5
+ - pos: 55.5,57.5
parent: 2
type: Transform
- uid: 5860
components:
- - pos: 57.5,57.5
+ - pos: 56.5,57.5
parent: 2
type: Transform
- uid: 5861
components:
- - pos: 58.5,57.5
+ - pos: 57.5,57.5
parent: 2
type: Transform
- uid: 5862
components:
- - pos: 50.5,57.5
+ - pos: 58.5,57.5
parent: 2
type: Transform
- uid: 5863
components:
- - pos: 54.5,60.5
+ - pos: 50.5,57.5
parent: 2
type: Transform
- uid: 5864
components:
- - pos: 54.5,61.5
+ - pos: 54.5,60.5
parent: 2
type: Transform
- uid: 5865
components:
- - pos: 50.5,45.5
+ - pos: 54.5,61.5
parent: 2
type: Transform
- uid: 5866
components:
- - pos: 49.5,45.5
+ - pos: 50.5,45.5
parent: 2
type: Transform
- uid: 5867
components:
- - pos: 48.5,45.5
+ - pos: 49.5,45.5
parent: 2
type: Transform
- uid: 5868
components:
- - pos: 47.5,45.5
+ - pos: 48.5,45.5
parent: 2
type: Transform
- uid: 5869
components:
- - pos: 46.5,45.5
+ - pos: 47.5,45.5
parent: 2
type: Transform
- uid: 5870
components:
- - pos: 45.5,45.5
+ - pos: 46.5,45.5
parent: 2
type: Transform
- uid: 5871
components:
- - pos: 44.5,45.5
+ - pos: 45.5,45.5
parent: 2
type: Transform
- uid: 5872
components:
- - pos: 58.5,45.5
+ - pos: 44.5,45.5
parent: 2
type: Transform
- uid: 5873
components:
- - pos: 59.5,45.5
+ - pos: 58.5,45.5
parent: 2
type: Transform
- uid: 5874
components:
- - pos: 60.5,45.5
+ - pos: 59.5,45.5
parent: 2
type: Transform
- uid: 5875
components:
- - pos: 60.5,46.5
+ - pos: 60.5,45.5
parent: 2
type: Transform
- uid: 5876
components:
- - pos: 60.5,47.5
+ - pos: 60.5,46.5
parent: 2
type: Transform
- uid: 5877
components:
- - pos: -18.5,24.5
+ - pos: 60.5,47.5
parent: 2
type: Transform
- uid: 5878
components:
- - pos: -18.5,25.5
+ - pos: -18.5,24.5
parent: 2
type: Transform
- uid: 5879
components:
- - pos: -18.5,26.5
+ - pos: -18.5,25.5
parent: 2
type: Transform
- uid: 5880
components:
- - pos: -18.5,27.5
+ - pos: -18.5,26.5
parent: 2
type: Transform
- uid: 5881
components:
- - pos: -18.5,28.5
+ - pos: -18.5,27.5
parent: 2
type: Transform
- uid: 5882
components:
- - pos: -18.5,29.5
+ - pos: -18.5,28.5
parent: 2
type: Transform
- uid: 5883
components:
- - pos: -18.5,30.5
+ - pos: -18.5,29.5
parent: 2
type: Transform
- uid: 5884
components:
- - pos: -19.5,30.5
+ - pos: -18.5,30.5
parent: 2
type: Transform
- uid: 5885
components:
- - pos: -20.5,30.5
+ - pos: -19.5,30.5
parent: 2
type: Transform
- uid: 5886
components:
- - pos: -21.5,30.5
+ - pos: -20.5,30.5
parent: 2
type: Transform
- uid: 5887
components:
- - pos: -22.5,30.5
+ - pos: -21.5,30.5
parent: 2
type: Transform
- uid: 5888
components:
- - pos: -23.5,30.5
+ - pos: -22.5,30.5
parent: 2
type: Transform
- uid: 5889
components:
- - pos: -20.5,22.5
+ - pos: -23.5,30.5
parent: 2
type: Transform
- uid: 5890
components:
- - pos: -20.5,23.5
+ - pos: -20.5,22.5
parent: 2
type: Transform
- uid: 5891
components:
- - pos: -20.5,24.5
+ - pos: -20.5,23.5
parent: 2
type: Transform
- uid: 5892
components:
- - pos: -20.5,25.5
+ - pos: -20.5,24.5
parent: 2
type: Transform
- uid: 5893
components:
- - pos: -20.5,26.5
+ - pos: -20.5,25.5
parent: 2
type: Transform
- uid: 5894
components:
- - pos: -20.5,27.5
+ - pos: -20.5,26.5
parent: 2
type: Transform
- uid: 5895
components:
- - pos: -20.5,28.5
+ - pos: -20.5,27.5
parent: 2
type: Transform
- uid: 5896
components:
- - pos: -20.5,29.5
+ - pos: -20.5,28.5
parent: 2
type: Transform
- uid: 5897
components:
- - pos: 44.5,-13.5
+ - pos: -20.5,29.5
parent: 2
type: Transform
- uid: 5898
components:
- - pos: 45.5,-13.5
+ - pos: 44.5,-13.5
parent: 2
type: Transform
- uid: 5899
components:
- - pos: 46.5,-13.5
+ - pos: 45.5,-13.5
parent: 2
type: Transform
- uid: 5900
components:
- - pos: 47.5,-13.5
+ - pos: 46.5,-13.5
parent: 2
type: Transform
- uid: 5901
components:
- - pos: 46.5,-14.5
+ - pos: 47.5,-13.5
parent: 2
type: Transform
- uid: 5902
components:
- - pos: 46.5,-15.5
+ - pos: 46.5,-14.5
parent: 2
type: Transform
- uid: 5903
components:
- - pos: 46.5,-16.5
+ - pos: 46.5,-15.5
parent: 2
type: Transform
- uid: 5904
components:
- - pos: 37.5,-13.5
+ - pos: 46.5,-16.5
parent: 2
type: Transform
- uid: 5905
components:
- - pos: 36.5,-13.5
+ - pos: 37.5,-13.5
parent: 2
type: Transform
- uid: 5906
components:
- - pos: 61.5,26.5
+ - pos: 36.5,-13.5
parent: 2
type: Transform
- uid: 5907
components:
- - pos: 62.5,26.5
+ - pos: 61.5,26.5
parent: 2
type: Transform
- uid: 5908
components:
- - pos: 63.5,26.5
+ - pos: 62.5,26.5
parent: 2
type: Transform
- uid: 5909
components:
- - pos: 64.5,26.5
+ - pos: 63.5,26.5
parent: 2
type: Transform
- uid: 5910
components:
- - pos: 65.5,26.5
+ - pos: 64.5,26.5
parent: 2
type: Transform
- uid: 5911
components:
- - pos: 65.5,25.5
+ - pos: 65.5,26.5
parent: 2
type: Transform
- uid: 5912
components:
- - pos: 64.5,15.5
+ - pos: 65.5,25.5
parent: 2
type: Transform
- uid: 5913
components:
- - pos: 64.5,16.5
+ - pos: 64.5,15.5
parent: 2
type: Transform
- uid: 5914
components:
- - pos: 64.5,17.5
+ - pos: 64.5,16.5
parent: 2
type: Transform
- uid: 5915
components:
- - pos: 12.5,32.5
+ - pos: 64.5,17.5
parent: 2
type: Transform
- uid: 5916
components:
- - pos: 11.5,32.5
+ - pos: 12.5,32.5
parent: 2
type: Transform
- uid: 5917
components:
- - pos: 10.5,32.5
+ - pos: 11.5,32.5
parent: 2
type: Transform
- uid: 5918
components:
- - pos: 9.5,32.5
+ - pos: 10.5,32.5
parent: 2
type: Transform
- uid: 5919
components:
- - pos: 8.5,32.5
+ - pos: 9.5,32.5
parent: 2
type: Transform
- uid: 5920
components:
- - pos: 7.5,32.5
+ - pos: 8.5,32.5
parent: 2
type: Transform
- uid: 5921
components:
- - pos: 6.5,32.5
+ - pos: 7.5,32.5
parent: 2
type: Transform
- uid: 5922
components:
- - pos: 5.5,32.5
+ - pos: 6.5,32.5
parent: 2
type: Transform
- uid: 5923
components:
- - pos: 4.5,32.5
+ - pos: 5.5,32.5
parent: 2
type: Transform
- uid: 5924
components:
- - pos: 9.5,31.5
+ - pos: 4.5,32.5
parent: 2
type: Transform
- uid: 5925
components:
- - pos: 9.5,30.5
+ - pos: 9.5,31.5
parent: 2
type: Transform
- uid: 5926
components:
- - pos: 8.5,30.5
+ - pos: 9.5,30.5
parent: 2
type: Transform
- uid: 5927
components:
- - pos: 7.5,30.5
+ - pos: 8.5,30.5
parent: 2
type: Transform
- uid: 5928
components:
- - pos: 6.5,30.5
+ - pos: 7.5,30.5
parent: 2
type: Transform
- uid: 5929
components:
- - pos: 6.5,31.5
+ - pos: 6.5,30.5
parent: 2
type: Transform
- uid: 5930
components:
- - pos: 6.5,33.5
+ - pos: 6.5,31.5
parent: 2
type: Transform
- uid: 5931
components:
- - pos: 6.5,34.5
+ - pos: 6.5,33.5
parent: 2
type: Transform
- uid: 5932
components:
- - pos: 7.5,34.5
+ - pos: 6.5,34.5
parent: 2
type: Transform
- uid: 5933
components:
- - pos: 8.5,34.5
+ - pos: 7.5,34.5
parent: 2
type: Transform
- uid: 5934
components:
- - pos: 9.5,34.5
+ - pos: 8.5,34.5
parent: 2
type: Transform
- uid: 5935
components:
- - pos: 9.5,33.5
+ - pos: 9.5,34.5
parent: 2
type: Transform
- uid: 5936
components:
- - pos: 57.5,33.5
+ - pos: 9.5,33.5
parent: 2
type: Transform
- uid: 5937
components:
- - pos: 58.5,33.5
+ - pos: 57.5,33.5
parent: 2
type: Transform
- uid: 5938
components:
- - pos: 55.5,31.5
+ - pos: 58.5,33.5
parent: 2
type: Transform
- uid: 5939
components:
- - pos: 54.5,31.5
+ - pos: 55.5,31.5
parent: 2
type: Transform
- uid: 5940
components:
- - pos: -15.5,42.5
+ - pos: 54.5,31.5
parent: 2
type: Transform
- uid: 5941
components:
- - pos: -16.5,42.5
+ - pos: -15.5,42.5
parent: 2
type: Transform
- uid: 5942
components:
- - pos: -16.5,41.5
+ - pos: -16.5,42.5
parent: 2
type: Transform
- uid: 5943
components:
- - pos: -16.5,40.5
+ - pos: -16.5,41.5
parent: 2
type: Transform
- uid: 5944
components:
- - pos: -16.5,39.5
+ - pos: -16.5,40.5
parent: 2
type: Transform
- uid: 5945
components:
- - pos: -16.5,38.5
+ - pos: -16.5,39.5
parent: 2
type: Transform
- uid: 5946
components:
- - pos: -16.5,37.5
+ - pos: -16.5,38.5
parent: 2
type: Transform
- uid: 5947
components:
- - pos: -16.5,36.5
+ - pos: -16.5,37.5
parent: 2
type: Transform
- uid: 5948
components:
- - pos: -16.5,35.5
+ - pos: -16.5,36.5
parent: 2
type: Transform
- uid: 5949
components:
- - pos: -16.5,34.5
+ - pos: -16.5,35.5
parent: 2
type: Transform
- uid: 5950
components:
- - pos: -16.5,33.5
+ - pos: -16.5,34.5
parent: 2
type: Transform
- uid: 5951
components:
- - pos: -16.5,32.5
+ - pos: -16.5,33.5
parent: 2
type: Transform
- uid: 5952
components:
- - pos: -16.5,31.5
+ - pos: -16.5,32.5
parent: 2
type: Transform
- uid: 5953
components:
- - pos: -16.5,30.5
+ - pos: -16.5,31.5
parent: 2
type: Transform
- uid: 5954
components:
- - pos: -16.5,29.5
+ - pos: -16.5,30.5
parent: 2
type: Transform
- uid: 5955
components:
- - pos: -15.5,29.5
+ - pos: -16.5,29.5
parent: 2
type: Transform
- uid: 5956
components:
- - pos: -14.5,29.5
+ - pos: -15.5,29.5
parent: 2
type: Transform
- uid: 5957
components:
- - pos: -14.5,30.5
+ - pos: -14.5,29.5
parent: 2
type: Transform
- uid: 5958
components:
- - pos: -14.5,31.5
+ - pos: -14.5,30.5
parent: 2
type: Transform
- uid: 5959
components:
- - pos: -14.5,32.5
+ - pos: -14.5,31.5
parent: 2
type: Transform
- uid: 5960
components:
- - pos: -14.5,33.5
+ - pos: -14.5,32.5
parent: 2
type: Transform
- uid: 5961
components:
- - pos: -14.5,34.5
+ - pos: -14.5,33.5
parent: 2
type: Transform
- uid: 5962
components:
- - pos: -14.5,35.5
+ - pos: -14.5,34.5
parent: 2
type: Transform
- uid: 5963
components:
- - pos: -14.5,36.5
+ - pos: -14.5,35.5
parent: 2
type: Transform
- uid: 5964
components:
- - pos: -14.5,37.5
+ - pos: -14.5,36.5
parent: 2
type: Transform
- uid: 5965
components:
- - pos: -14.5,38.5
+ - pos: -14.5,37.5
parent: 2
type: Transform
- uid: 5966
components:
- - pos: -14.5,39.5
+ - pos: -14.5,38.5
parent: 2
type: Transform
- uid: 5967
components:
- - pos: -14.5,40.5
+ - pos: -14.5,39.5
parent: 2
type: Transform
- uid: 5968
components:
- - pos: -14.5,41.5
+ - pos: -14.5,40.5
parent: 2
type: Transform
- uid: 5969
components:
- - pos: -14.5,42.5
+ - pos: -14.5,41.5
parent: 2
type: Transform
- uid: 5970
components:
- - pos: -17.5,41.5
+ - pos: -14.5,42.5
parent: 2
type: Transform
- uid: 5971
components:
- - pos: -18.5,41.5
+ - pos: -17.5,41.5
parent: 2
type: Transform
- uid: 5972
components:
- - pos: -18.5,42.5
+ - pos: -18.5,41.5
parent: 2
type: Transform
- uid: 5973
components:
- - pos: -18.5,43.5
+ - pos: -18.5,42.5
parent: 2
type: Transform
- uid: 5974
components:
- - pos: -18.5,44.5
+ - pos: -18.5,43.5
parent: 2
type: Transform
- uid: 5975
components:
- - pos: -18.5,45.5
+ - pos: -18.5,44.5
parent: 2
type: Transform
- uid: 5976
components:
- - pos: -19.5,45.5
+ - pos: -18.5,45.5
parent: 2
type: Transform
- uid: 5977
components:
- - pos: -20.5,45.5
+ - pos: -19.5,45.5
parent: 2
type: Transform
- uid: 5978
components:
- - pos: -21.5,45.5
+ - pos: -20.5,45.5
parent: 2
type: Transform
- uid: 5979
components:
- - pos: -22.5,45.5
+ - pos: -21.5,45.5
parent: 2
type: Transform
- uid: 5980
components:
- - pos: -21.5,44.5
+ - pos: -22.5,45.5
parent: 2
type: Transform
- uid: 5981
components:
- - pos: -21.5,43.5
+ - pos: -21.5,44.5
parent: 2
type: Transform
- uid: 5982
components:
- - pos: -21.5,42.5
+ - pos: -21.5,43.5
parent: 2
type: Transform
- uid: 5983
components:
- - pos: -21.5,41.5
+ - pos: -21.5,42.5
parent: 2
type: Transform
- uid: 5984
components:
- - pos: -21.5,40.5
+ - pos: -21.5,41.5
parent: 2
type: Transform
- uid: 5985
components:
- - pos: -17.5,44.5
+ - pos: -21.5,40.5
parent: 2
type: Transform
- uid: 5986
components:
- - pos: -16.5,44.5
+ - pos: -17.5,44.5
parent: 2
type: Transform
- uid: 5987
components:
- - pos: -16.5,45.5
+ - pos: -16.5,44.5
parent: 2
type: Transform
- uid: 5988
components:
- - pos: -16.5,46.5
+ - pos: -16.5,45.5
parent: 2
type: Transform
- uid: 5989
components:
- - pos: -16.5,47.5
+ - pos: -16.5,46.5
parent: 2
type: Transform
- uid: 5990
components:
- - pos: -16.5,48.5
+ - pos: -16.5,47.5
parent: 2
type: Transform
- uid: 5991
components:
- - pos: -16.5,49.5
+ - pos: -16.5,48.5
parent: 2
type: Transform
- uid: 5992
components:
- - pos: -16.5,50.5
+ - pos: -16.5,49.5
parent: 2
type: Transform
- uid: 5993
components:
- - pos: -16.5,51.5
+ - pos: -16.5,50.5
parent: 2
type: Transform
- uid: 5994
components:
- - pos: -17.5,51.5
+ - pos: -16.5,51.5
parent: 2
type: Transform
- uid: 5995
components:
- - pos: -18.5,51.5
+ - pos: -17.5,51.5
parent: 2
type: Transform
- uid: 5996
components:
- - pos: -18.5,50.5
+ - pos: -18.5,51.5
parent: 2
type: Transform
- uid: 5997
components:
- - pos: -18.5,49.5
+ - pos: -18.5,50.5
parent: 2
type: Transform
- uid: 5998
components:
- - pos: -18.5,48.5
+ - pos: -18.5,49.5
parent: 2
type: Transform
- uid: 5999
components:
- - pos: -18.5,47.5
+ - pos: -18.5,48.5
parent: 2
type: Transform
- uid: 6000
components:
- - pos: -18.5,46.5
+ - pos: -18.5,47.5
parent: 2
type: Transform
- uid: 6001
components:
- - pos: -13.5,39.5
+ - pos: -18.5,46.5
parent: 2
type: Transform
- uid: 6002
components:
- - pos: -12.5,39.5
+ - pos: -13.5,39.5
parent: 2
type: Transform
- uid: 6003
components:
- - pos: -11.5,39.5
+ - pos: -12.5,39.5
parent: 2
type: Transform
- uid: 6004
components:
- - pos: -10.5,39.5
+ - pos: -11.5,39.5
parent: 2
type: Transform
- uid: 6005
components:
- - pos: -9.5,39.5
+ - pos: -10.5,39.5
parent: 2
type: Transform
- uid: 6006
components:
- - pos: -8.5,39.5
+ - pos: -9.5,39.5
parent: 2
type: Transform
- uid: 6007
components:
- - pos: -8.5,38.5
+ - pos: -8.5,39.5
parent: 2
type: Transform
- uid: 6008
components:
- - pos: -8.5,37.5
+ - pos: -8.5,38.5
parent: 2
type: Transform
- uid: 6009
components:
- - pos: -9.5,37.5
+ - pos: -8.5,37.5
parent: 2
type: Transform
- uid: 6010
components:
- - pos: -10.5,37.5
+ - pos: -9.5,37.5
parent: 2
type: Transform
- uid: 6011
components:
- - pos: -11.5,37.5
+ - pos: -10.5,37.5
parent: 2
type: Transform
- uid: 6012
components:
- - pos: -12.5,37.5
+ - pos: -11.5,37.5
parent: 2
type: Transform
- uid: 6013
components:
- - pos: -13.5,37.5
+ - pos: -12.5,37.5
parent: 2
type: Transform
- uid: 6014
components:
- - pos: -17.5,34.5
+ - pos: -13.5,37.5
parent: 2
type: Transform
- uid: 6015
components:
- - pos: -18.5,34.5
+ - pos: -17.5,34.5
parent: 2
type: Transform
- uid: 6016
components:
- - pos: -19.5,34.5
+ - pos: -18.5,34.5
parent: 2
type: Transform
- uid: 6017
components:
- - pos: -20.5,34.5
+ - pos: -19.5,34.5
parent: 2
type: Transform
- uid: 6018
components:
- - pos: -21.5,34.5
+ - pos: -20.5,34.5
parent: 2
type: Transform
- uid: 6019
components:
- - pos: -13.5,34.5
+ - pos: -21.5,34.5
parent: 2
type: Transform
- uid: 6020
components:
- - pos: -12.5,34.5
+ - pos: -13.5,34.5
parent: 2
type: Transform
- uid: 6021
components:
- - pos: -11.5,34.5
+ - pos: -12.5,34.5
parent: 2
type: Transform
- uid: 6022
components:
- - pos: -11.5,33.5
+ - pos: -11.5,34.5
parent: 2
type: Transform
- uid: 6023
components:
- - pos: -11.5,32.5
+ - pos: -11.5,33.5
parent: 2
type: Transform
- uid: 6024
components:
- - pos: -11.5,31.5
+ - pos: -11.5,32.5
parent: 2
type: Transform
- uid: 6025
components:
- - pos: -15.5,44.5
+ - pos: -11.5,31.5
parent: 2
type: Transform
- uid: 6026
components:
- - pos: -41.5,23.5
+ - pos: -15.5,44.5
parent: 2
type: Transform
- uid: 6027
components:
- - pos: -41.5,24.5
+ - pos: -41.5,23.5
parent: 2
type: Transform
- uid: 6028
components:
- - pos: -14.5,44.5
+ - pos: -41.5,24.5
parent: 2
type: Transform
- uid: 6029
components:
- - pos: -13.5,44.5
+ - pos: -14.5,44.5
parent: 2
type: Transform
- uid: 6030
components:
- - pos: -12.5,44.5
+ - pos: -13.5,44.5
parent: 2
type: Transform
- uid: 6031
components:
- - pos: -11.5,44.5
+ - pos: -12.5,44.5
parent: 2
type: Transform
- uid: 6032
components:
- - pos: -10.5,44.5
+ - pos: -11.5,44.5
parent: 2
type: Transform
- uid: 6033
components:
- - pos: -15.5,46.5
+ - pos: -10.5,44.5
parent: 2
type: Transform
- uid: 6034
components:
- - pos: -14.5,46.5
+ - pos: -15.5,46.5
parent: 2
type: Transform
- uid: 6035
components:
- - pos: -13.5,46.5
+ - pos: -14.5,46.5
parent: 2
type: Transform
- uid: 6036
components:
- - pos: -12.5,46.5
+ - pos: -13.5,46.5
parent: 2
type: Transform
- uid: 6037
components:
- - pos: -11.5,46.5
+ - pos: -12.5,46.5
parent: 2
type: Transform
- uid: 6038
components:
- - pos: -10.5,46.5
+ - pos: -11.5,46.5
parent: 2
type: Transform
- uid: 6039
components:
- - pos: 52.5,39.5
+ - pos: -10.5,46.5
parent: 2
type: Transform
- uid: 6040
components:
- - pos: 51.5,39.5
+ - pos: 52.5,39.5
parent: 2
type: Transform
- uid: 6041
components:
- - pos: 49.5,39.5
+ - pos: 51.5,39.5
parent: 2
type: Transform
- uid: 6042
components:
- - pos: 48.5,39.5
+ - pos: 49.5,39.5
parent: 2
type: Transform
- uid: 6043
components:
- - pos: 47.5,38.5
+ - pos: 48.5,39.5
parent: 2
type: Transform
- uid: 6044
components:
- - pos: 47.5,39.5
+ - pos: 47.5,38.5
parent: 2
type: Transform
- uid: 6045
components:
- - pos: 47.5,37.5
+ - pos: 47.5,39.5
parent: 2
type: Transform
- uid: 6046
components:
- - pos: 46.5,37.5
+ - pos: 47.5,37.5
parent: 2
type: Transform
- uid: 6047
components:
- - pos: 45.5,37.5
+ - pos: 46.5,37.5
parent: 2
type: Transform
- uid: 6048
components:
- - pos: 45.5,36.5
+ - pos: 45.5,37.5
parent: 2
type: Transform
- uid: 6049
components:
- - pos: 45.5,35.5
+ - pos: 45.5,36.5
parent: 2
type: Transform
- uid: 6050
components:
- - pos: 46.5,35.5
+ - pos: 45.5,35.5
parent: 2
type: Transform
- uid: 6051
components:
- - pos: 46.5,33.5
+ - pos: 46.5,35.5
parent: 2
type: Transform
- uid: 6052
components:
- - pos: 46.5,32.5
+ - pos: 46.5,33.5
parent: 2
type: Transform
- uid: 6053
components:
- - pos: 47.5,32.5
+ - pos: 46.5,32.5
parent: 2
type: Transform
- uid: 6054
components:
- - pos: 48.5,32.5
+ - pos: 47.5,32.5
parent: 2
type: Transform
- uid: 6055
components:
- - pos: 49.5,32.5
+ - pos: 48.5,32.5
parent: 2
type: Transform
- uid: 6056
components:
- - pos: 52.5,40.5
+ - pos: 49.5,32.5
parent: 2
type: Transform
- uid: 6057
components:
- - pos: 52.5,41.5
+ - pos: 52.5,40.5
parent: 2
type: Transform
- uid: 6058
components:
- - pos: 49.5,38.5
+ - pos: 52.5,41.5
parent: 2
type: Transform
- uid: 6059
components:
- - pos: 49.5,37.5
+ - pos: 49.5,38.5
parent: 2
type: Transform
- uid: 6060
components:
- - pos: 49.5,36.5
+ - pos: 49.5,37.5
parent: 2
type: Transform
- uid: 6061
components:
- - pos: 6.5,48.5
+ - pos: 49.5,36.5
parent: 2
type: Transform
- uid: 6062
components:
- - pos: 5.5,48.5
+ - pos: 6.5,48.5
parent: 2
type: Transform
- uid: 6063
components:
- - pos: 4.5,48.5
+ - pos: 5.5,48.5
parent: 2
type: Transform
- uid: 6064
components:
- - pos: 3.5,48.5
+ - pos: 4.5,48.5
parent: 2
type: Transform
- uid: 6065
components:
- - pos: 3.5,49.5
+ - pos: 3.5,48.5
parent: 2
type: Transform
- uid: 6066
components:
- - pos: 2.5,49.5
+ - pos: 3.5,49.5
parent: 2
type: Transform
- uid: 6067
components:
- - pos: 1.5,49.5
+ - pos: 2.5,49.5
parent: 2
type: Transform
- uid: 6068
components:
- - pos: 58.5,27.5
+ - pos: 1.5,49.5
parent: 2
type: Transform
- uid: 6069
components:
- - pos: 59.5,28.5
+ - pos: 58.5,27.5
parent: 2
type: Transform
- uid: 6070
components:
- - pos: 58.5,28.5
+ - pos: 59.5,28.5
parent: 2
type: Transform
- uid: 6071
components:
- - pos: 5.5,49.5
+ - pos: 58.5,28.5
parent: 2
type: Transform
- uid: 6072
components:
- - pos: 5.5,50.5
+ - pos: 5.5,49.5
parent: 2
type: Transform
- uid: 6073
components:
- - pos: 5.5,51.5
+ - pos: 5.5,50.5
parent: 2
type: Transform
- uid: 6074
components:
- - pos: 6.5,51.5
+ - pos: 5.5,51.5
parent: 2
type: Transform
- uid: 6075
components:
- - pos: 6.5,52.5
+ - pos: 6.5,51.5
parent: 2
type: Transform
- uid: 6076
components:
- - pos: 7.5,52.5
+ - pos: 6.5,52.5
parent: 2
type: Transform
- uid: 6077
components:
- - pos: 8.5,52.5
+ - pos: 7.5,52.5
parent: 2
type: Transform
- uid: 6078
components:
- - pos: 63.5,27.5
+ - pos: 8.5,52.5
parent: 2
type: Transform
- uid: 6079
components:
- - pos: 63.5,28.5
+ - pos: 63.5,27.5
parent: 2
type: Transform
- uid: 6080
components:
- - pos: 63.5,29.5
+ - pos: 63.5,28.5
parent: 2
type: Transform
- uid: 6081
components:
- - pos: 16.5,35.5
+ - pos: 63.5,29.5
parent: 2
type: Transform
- uid: 6082
components:
- - pos: 16.5,36.5
+ - pos: 16.5,35.5
parent: 2
type: Transform
- uid: 6083
components:
- - pos: 16.5,37.5
+ - pos: 16.5,36.5
parent: 2
type: Transform
- uid: 6084
components:
- - pos: 16.5,38.5
+ - pos: 16.5,37.5
parent: 2
type: Transform
- uid: 6085
components:
- - pos: 16.5,39.5
+ - pos: 16.5,38.5
parent: 2
type: Transform
- uid: 6086
components:
- - pos: 15.5,39.5
+ - pos: 16.5,39.5
parent: 2
type: Transform
- uid: 6087
components:
- - pos: 14.5,39.5
+ - pos: 15.5,39.5
parent: 2
type: Transform
- uid: 6088
components:
- - pos: 14.5,38.5
+ - pos: 14.5,39.5
parent: 2
type: Transform
- uid: 6089
components:
- - pos: 14.5,37.5
+ - pos: 14.5,38.5
parent: 2
type: Transform
- uid: 6090
components:
- - pos: 14.5,36.5
+ - pos: 14.5,37.5
parent: 2
type: Transform
- uid: 6091
components:
- - pos: 15.5,36.5
+ - pos: 14.5,36.5
parent: 2
type: Transform
- uid: 6092
components:
- - pos: 17.5,39.5
+ - pos: 15.5,36.5
parent: 2
type: Transform
- uid: 6093
components:
- - pos: 18.5,39.5
+ - pos: 17.5,39.5
parent: 2
type: Transform
- uid: 6094
components:
- - pos: 18.5,38.5
+ - pos: 18.5,39.5
parent: 2
type: Transform
- uid: 6095
components:
- - pos: 18.5,37.5
+ - pos: 18.5,38.5
parent: 2
type: Transform
- uid: 6096
components:
- - pos: 18.5,36.5
+ - pos: 18.5,37.5
parent: 2
type: Transform
- uid: 6097
components:
- - pos: 17.5,36.5
+ - pos: 18.5,36.5
parent: 2
type: Transform
- uid: 6098
components:
- - pos: 16.5,40.5
+ - pos: 17.5,36.5
parent: 2
type: Transform
- uid: 6099
components:
- - pos: 63.5,30.5
+ - pos: 16.5,40.5
parent: 2
type: Transform
- uid: 6100
components:
- - pos: 63.5,31.5
+ - pos: 63.5,30.5
parent: 2
type: Transform
- uid: 6101
components:
- - pos: 63.5,32.5
+ - pos: 63.5,31.5
parent: 2
type: Transform
- uid: 6102
components:
- - pos: 63.5,33.5
+ - pos: 63.5,32.5
parent: 2
type: Transform
- uid: 6103
components:
- - pos: 63.5,34.5
+ - pos: 63.5,33.5
parent: 2
type: Transform
- uid: 6104
components:
- - pos: 63.5,35.5
+ - pos: 63.5,34.5
parent: 2
type: Transform
- uid: 6105
components:
- - pos: 63.5,36.5
+ - pos: 63.5,35.5
parent: 2
type: Transform
- uid: 6106
components:
- - pos: 64.5,36.5
+ - pos: 63.5,36.5
parent: 2
type: Transform
- uid: 6107
components:
- - pos: 65.5,36.5
+ - pos: 64.5,36.5
parent: 2
type: Transform
- uid: 6108
components:
- - pos: 66.5,36.5
+ - pos: 65.5,36.5
parent: 2
type: Transform
- uid: 6109
components:
- - pos: 67.5,36.5
+ - pos: 66.5,36.5
parent: 2
type: Transform
- uid: 6110
components:
- - pos: 68.5,36.5
+ - pos: 67.5,36.5
parent: 2
type: Transform
- uid: 6111
components:
- - pos: 69.5,36.5
+ - pos: 68.5,36.5
parent: 2
type: Transform
- uid: 6112
components:
- - pos: 70.5,36.5
+ - pos: 69.5,36.5
parent: 2
type: Transform
- uid: 6113
components:
- - pos: 71.5,36.5
+ - pos: 70.5,36.5
parent: 2
type: Transform
- uid: 6114
components:
- - pos: 72.5,36.5
+ - pos: 71.5,36.5
parent: 2
type: Transform
- uid: 6115
components:
- - pos: 73.5,36.5
+ - pos: 72.5,36.5
parent: 2
type: Transform
- uid: 6116
components:
- - pos: 74.5,36.5
+ - pos: 73.5,36.5
parent: 2
type: Transform
- uid: 6117
components:
- - pos: 75.5,36.5
+ - pos: 74.5,36.5
parent: 2
type: Transform
- uid: 6118
components:
- - pos: 76.5,36.5
+ - pos: 75.5,36.5
parent: 2
type: Transform
- uid: 6119
components:
- - pos: 73.5,35.5
+ - pos: 76.5,36.5
parent: 2
type: Transform
- uid: 6120
components:
- - pos: 73.5,34.5
+ - pos: 73.5,35.5
parent: 2
type: Transform
- uid: 6121
components:
- - pos: 71.5,35.5
+ - pos: 73.5,34.5
parent: 2
type: Transform
- uid: 6122
components:
- - pos: 71.5,34.5
+ - pos: 71.5,35.5
parent: 2
type: Transform
- uid: 6123
components:
- - pos: 71.5,37.5
+ - pos: 71.5,34.5
parent: 2
type: Transform
- uid: 6124
components:
- - pos: 71.5,38.5
+ - pos: 71.5,37.5
parent: 2
type: Transform
- uid: 6125
components:
- - pos: 73.5,38.5
+ - pos: 71.5,38.5
parent: 2
type: Transform
- uid: 6126
components:
- - pos: 73.5,37.5
+ - pos: 73.5,38.5
parent: 2
type: Transform
- uid: 6127
components:
- - pos: 39.5,47.5
+ - pos: 73.5,37.5
parent: 2
type: Transform
- uid: 6128
components:
- - pos: 43.5,45.5
+ - pos: 39.5,47.5
parent: 2
type: Transform
- uid: 6129
components:
- - pos: 42.5,45.5
+ - pos: 43.5,45.5
parent: 2
type: Transform
- uid: 6130
components:
- - pos: 41.5,45.5
+ - pos: 42.5,45.5
parent: 2
type: Transform
- uid: 6131
components:
- - pos: 40.5,45.5
+ - pos: 41.5,45.5
parent: 2
type: Transform
- uid: 6132
components:
- - pos: 39.5,45.5
+ - pos: 40.5,45.5
parent: 2
type: Transform
- uid: 6133
components:
- - pos: 38.5,45.5
+ - pos: 39.5,45.5
parent: 2
type: Transform
- uid: 6134
components:
- - pos: 37.5,45.5
+ - pos: 38.5,45.5
parent: 2
type: Transform
- uid: 6135
components:
- - pos: 36.5,45.5
+ - pos: 37.5,45.5
parent: 2
type: Transform
- uid: 6136
components:
- - pos: 35.5,45.5
+ - pos: 36.5,45.5
parent: 2
type: Transform
- uid: 6137
components:
- - pos: 34.5,45.5
+ - pos: 35.5,45.5
parent: 2
type: Transform
- uid: 6138
components:
- - pos: 39.5,46.5
+ - pos: 34.5,45.5
parent: 2
type: Transform
- uid: 6139
components:
- - pos: 38.5,44.5
+ - pos: 39.5,46.5
parent: 2
type: Transform
- uid: 6140
components:
- - pos: 38.5,43.5
+ - pos: 38.5,44.5
parent: 2
type: Transform
- uid: 6141
components:
- - pos: 38.5,48.5
+ - pos: 38.5,43.5
parent: 2
type: Transform
- uid: 6142
components:
- - pos: 38.5,49.5
+ - pos: 38.5,48.5
parent: 2
type: Transform
- uid: 6143
components:
- - pos: 38.5,50.5
+ - pos: 38.5,49.5
parent: 2
type: Transform
- uid: 6144
components:
- - pos: 39.5,50.5
+ - pos: 38.5,50.5
parent: 2
type: Transform
- uid: 6145
components:
- - pos: 39.5,51.5
+ - pos: 39.5,50.5
parent: 2
type: Transform
- uid: 6146
components:
- - pos: 40.5,51.5
+ - pos: 39.5,51.5
parent: 2
type: Transform
- uid: 6147
components:
- - pos: 41.5,51.5
+ - pos: 40.5,51.5
parent: 2
type: Transform
- uid: 6148
components:
- - pos: 41.5,44.5
+ - pos: 41.5,51.5
parent: 2
type: Transform
- uid: 6149
components:
- - pos: 41.5,46.5
+ - pos: 41.5,44.5
parent: 2
type: Transform
- uid: 6150
components:
- - pos: 41.5,47.5
+ - pos: 41.5,46.5
parent: 2
type: Transform
- uid: 6151
components:
- - pos: 34.5,46.5
+ - pos: 41.5,47.5
parent: 2
type: Transform
- uid: 6152
components:
- - pos: 34.5,47.5
+ - pos: 34.5,46.5
parent: 2
type: Transform
- uid: 6153
components:
- - pos: 35.5,44.5
+ - pos: 34.5,47.5
parent: 2
type: Transform
- uid: 6154
components:
- - pos: 35.5,43.5
+ - pos: 35.5,44.5
parent: 2
type: Transform
- uid: 6155
components:
- - pos: 45.5,32.5
+ - pos: 35.5,43.5
parent: 2
type: Transform
- uid: 6156
components:
- - pos: 45.5,31.5
+ - pos: 45.5,32.5
parent: 2
type: Transform
- uid: 6157
components:
- - pos: 45.5,30.5
+ - pos: 45.5,31.5
parent: 2
type: Transform
- uid: 6158
components:
- - pos: 45.5,29.5
+ - pos: 45.5,30.5
parent: 2
type: Transform
- uid: 6159
components:
- - pos: 44.5,29.5
+ - pos: 45.5,29.5
parent: 2
type: Transform
- uid: 6160
components:
- - pos: 43.5,29.5
+ - pos: 44.5,29.5
parent: 2
type: Transform
- uid: 6161
components:
- - pos: 37.5,50.5
+ - pos: 43.5,29.5
parent: 2
type: Transform
- uid: 6162
components:
- - pos: -9.5,46.5
+ - pos: 37.5,50.5
parent: 2
type: Transform
- uid: 6163
components:
- - pos: -8.5,46.5
+ - pos: -9.5,46.5
parent: 2
type: Transform
- uid: 6164
components:
- - pos: -7.5,46.5
+ - pos: -8.5,46.5
parent: 2
type: Transform
- uid: 6165
components:
- - pos: -6.5,46.5
+ - pos: -7.5,46.5
parent: 2
type: Transform
- uid: 6166
components:
- - pos: -5.5,46.5
+ - pos: -6.5,46.5
parent: 2
type: Transform
- uid: 6167
components:
- - pos: -4.5,46.5
+ - pos: -5.5,46.5
parent: 2
type: Transform
- uid: 6168
components:
- - pos: -3.5,46.5
+ - pos: -4.5,46.5
parent: 2
type: Transform
- uid: 6169
components:
- - pos: -2.5,46.5
+ - pos: -3.5,46.5
parent: 2
type: Transform
- uid: 6170
components:
- - pos: -1.5,46.5
+ - pos: -2.5,46.5
parent: 2
type: Transform
- uid: 6171
components:
- - pos: -0.5,46.5
+ - pos: -1.5,46.5
parent: 2
type: Transform
- uid: 6172
components:
- - pos: -0.5,45.5
+ - pos: -0.5,46.5
parent: 2
type: Transform
- uid: 6173
components:
- - pos: -0.5,44.5
+ - pos: -0.5,45.5
parent: 2
type: Transform
- uid: 6174
components:
- - pos: -1.5,44.5
+ - pos: -0.5,44.5
parent: 2
type: Transform
- uid: 6175
components:
- - pos: -2.5,44.5
+ - pos: -1.5,44.5
parent: 2
type: Transform
- uid: 6176
components:
- - pos: -3.5,44.5
+ - pos: -2.5,44.5
parent: 2
type: Transform
- uid: 6177
components:
- - pos: -4.5,44.5
+ - pos: -3.5,44.5
parent: 2
type: Transform
- uid: 6178
components:
- - pos: -5.5,44.5
+ - pos: -4.5,44.5
parent: 2
type: Transform
- uid: 6179
components:
- - pos: -6.5,44.5
+ - pos: -5.5,44.5
parent: 2
type: Transform
- uid: 6180
components:
- - pos: -7.5,44.5
+ - pos: -6.5,44.5
parent: 2
type: Transform
- uid: 6181
components:
- - pos: -8.5,44.5
+ - pos: -7.5,44.5
parent: 2
type: Transform
- uid: 6182
components:
- - pos: -9.5,44.5
+ - pos: -8.5,44.5
parent: 2
type: Transform
- uid: 6183
components:
- - pos: 0.5,46.5
+ - pos: -9.5,44.5
parent: 2
type: Transform
- uid: 6184
components:
- - pos: 0.5,47.5
+ - pos: 0.5,46.5
parent: 2
type: Transform
- uid: 6185
components:
- - pos: -0.5,48.5
+ - pos: 0.5,47.5
parent: 2
type: Transform
- uid: 6186
components:
- - pos: -0.5,49.5
+ - pos: -0.5,48.5
parent: 2
type: Transform
- uid: 6187
components:
- - pos: -0.5,50.5
+ - pos: -0.5,49.5
parent: 2
type: Transform
- uid: 6188
components:
- - pos: -0.5,51.5
+ - pos: -0.5,50.5
parent: 2
type: Transform
- uid: 6189
components:
- - pos: -0.5,52.5
+ - pos: -0.5,51.5
parent: 2
type: Transform
- uid: 6190
components:
- - pos: -0.5,53.5
+ - pos: -0.5,52.5
parent: 2
type: Transform
- uid: 6191
components:
- - pos: -0.5,54.5
+ - pos: -0.5,53.5
parent: 2
type: Transform
- uid: 6192
components:
- - pos: 0.5,48.5
+ - pos: -0.5,54.5
parent: 2
type: Transform
- uid: 6193
components:
- - pos: 1.5,48.5
+ - pos: 0.5,48.5
parent: 2
type: Transform
- uid: 6194
components:
- - pos: 1.5,50.5
+ - pos: 1.5,48.5
parent: 2
type: Transform
- uid: 6195
components:
- - pos: 1.5,51.5
+ - pos: 1.5,50.5
parent: 2
type: Transform
- uid: 6196
components:
- - pos: 1.5,52.5
+ - pos: 1.5,51.5
parent: 2
type: Transform
- uid: 6197
components:
- - pos: 1.5,53.5
+ - pos: 1.5,52.5
parent: 2
type: Transform
- uid: 6198
components:
- - pos: 1.5,54.5
+ - pos: 1.5,53.5
parent: 2
type: Transform
- uid: 6199
components:
- - pos: -10.5,23.5
+ - pos: 1.5,54.5
parent: 2
type: Transform
- uid: 6200
components:
- - pos: -10.5,22.5
+ - pos: -10.5,23.5
parent: 2
type: Transform
- uid: 6201
components:
- - pos: -10.5,21.5
+ - pos: -10.5,22.5
parent: 2
type: Transform
- uid: 6202
components:
- - pos: -10.5,20.5
+ - pos: -10.5,21.5
parent: 2
type: Transform
- uid: 6203
components:
- - pos: -10.5,19.5
+ - pos: -10.5,20.5
parent: 2
type: Transform
- uid: 6204
components:
- - pos: -10.5,18.5
+ - pos: -10.5,19.5
parent: 2
type: Transform
- uid: 6205
components:
- - pos: -11.5,18.5
+ - pos: -10.5,18.5
parent: 2
type: Transform
- uid: 6206
components:
- - pos: -12.5,18.5
+ - pos: -11.5,18.5
parent: 2
type: Transform
- uid: 6207
components:
- - pos: -13.5,18.5
+ - pos: -12.5,18.5
parent: 2
type: Transform
- uid: 6208
components:
- - pos: -13.5,19.5
+ - pos: -13.5,18.5
parent: 2
type: Transform
- uid: 6209
components:
- - pos: -13.5,20.5
+ - pos: -13.5,19.5
parent: 2
type: Transform
- uid: 6210
components:
- - pos: -13.5,21.5
+ - pos: -13.5,20.5
parent: 2
type: Transform
- uid: 6211
components:
- - pos: -11.5,42.5
+ - pos: -13.5,21.5
parent: 2
type: Transform
- uid: 6212
components:
- - pos: -10.5,42.5
+ - pos: -11.5,42.5
parent: 2
type: Transform
- uid: 6213
components:
- - pos: -9.5,42.5
+ - pos: -10.5,42.5
parent: 2
type: Transform
- uid: 6214
components:
- - pos: -9.5,43.5
+ - pos: -9.5,42.5
parent: 2
type: Transform
- uid: 6215
components:
- - pos: 33.5,45.5
+ - pos: -9.5,43.5
parent: 2
type: Transform
- uid: 6216
components:
- - pos: 32.5,45.5
+ - pos: 33.5,45.5
parent: 2
type: Transform
- uid: 6217
components:
- - pos: 31.5,45.5
+ - pos: 32.5,45.5
parent: 2
type: Transform
- uid: 6218
components:
- - pos: 30.5,45.5
+ - pos: 31.5,45.5
parent: 2
type: Transform
- uid: 6219
components:
- - pos: 29.5,45.5
+ - pos: 30.5,45.5
parent: 2
type: Transform
- uid: 6220
components:
- - pos: 29.5,44.5
+ - pos: 29.5,45.5
parent: 2
type: Transform
- uid: 6221
components:
- - pos: 29.5,43.5
+ - pos: 29.5,44.5
parent: 2
type: Transform
- uid: 6222
components:
- - pos: 29.5,42.5
+ - pos: 29.5,43.5
parent: 2
type: Transform
- uid: 6223
components:
- - pos: 29.5,46.5
+ - pos: 29.5,42.5
parent: 2
type: Transform
- uid: 6224
components:
- - pos: 29.5,47.5
+ - pos: 29.5,46.5
parent: 2
type: Transform
- uid: 6225
components:
- - pos: -2.5,31.5
+ - pos: 29.5,47.5
parent: 2
type: Transform
- uid: 6226
components:
- - pos: -2.5,30.5
+ - pos: -2.5,31.5
parent: 2
type: Transform
- uid: 6227
components:
- - pos: -2.5,29.5
+ - pos: -2.5,30.5
parent: 2
type: Transform
- uid: 6228
components:
- - pos: -2.5,28.5
+ - pos: -2.5,29.5
parent: 2
type: Transform
- uid: 6229
components:
- - pos: -2.5,27.5
+ - pos: -2.5,28.5
parent: 2
type: Transform
- uid: 6230
components:
- - pos: -2.5,26.5
+ - pos: -2.5,27.5
parent: 2
type: Transform
- uid: 6231
components:
- - pos: -2.5,25.5
+ - pos: -2.5,26.5
parent: 2
type: Transform
- uid: 6232
components:
- - pos: 3.5,32.5
+ - pos: -2.5,25.5
parent: 2
type: Transform
- uid: 6233
components:
- - pos: -22.5,34.5
+ - pos: 3.5,32.5
parent: 2
type: Transform
- uid: 6234
components:
- - pos: -23.5,34.5
+ - pos: -22.5,34.5
parent: 2
type: Transform
- uid: 6235
components:
- - pos: -24.5,34.5
+ - pos: -23.5,34.5
parent: 2
type: Transform
- uid: 6236
components:
- - pos: -24.5,35.5
+ - pos: -24.5,34.5
parent: 2
type: Transform
- uid: 6237
components:
- - pos: -24.5,36.5
+ - pos: -24.5,35.5
parent: 2
type: Transform
- uid: 6238
components:
- - pos: -24.5,37.5
+ - pos: -24.5,36.5
parent: 2
type: Transform
- uid: 6239
components:
- - pos: -24.5,38.5
+ - pos: -24.5,37.5
parent: 2
type: Transform
- uid: 6240
components:
- - pos: -23.5,38.5
+ - pos: -24.5,38.5
parent: 2
type: Transform
- uid: 6241
components:
- - pos: -22.5,38.5
+ - pos: -23.5,38.5
parent: 2
type: Transform
- uid: 6242
components:
- - pos: -21.5,38.5
+ - pos: -22.5,38.5
parent: 2
type: Transform
- uid: 6243
components:
- - pos: -20.5,38.5
+ - pos: -21.5,38.5
parent: 2
type: Transform
- uid: 6244
components:
- - pos: -24.5,39.5
+ - pos: -20.5,38.5
parent: 2
type: Transform
- uid: 6245
components:
- - pos: -24.5,40.5
+ - pos: -24.5,39.5
parent: 2
type: Transform
- uid: 6246
components:
- - pos: -24.5,41.5
+ - pos: -24.5,40.5
parent: 2
type: Transform
- uid: 6247
components:
- - pos: -24.5,42.5
+ - pos: -24.5,41.5
parent: 2
type: Transform
- uid: 6248
components:
- - pos: -24.5,43.5
+ - pos: -24.5,42.5
parent: 2
type: Transform
- uid: 6249
components:
- - pos: -24.5,44.5
+ - pos: -24.5,43.5
parent: 2
type: Transform
- uid: 6250
components:
- - pos: -24.5,45.5
+ - pos: -24.5,44.5
parent: 2
type: Transform
- uid: 6251
components:
- - pos: -25.5,45.5
+ - pos: -24.5,45.5
parent: 2
type: Transform
- uid: 6252
components:
- - pos: -26.5,45.5
+ - pos: -25.5,45.5
parent: 2
type: Transform
- uid: 6253
components:
- - pos: -27.5,45.5
+ - pos: -26.5,45.5
parent: 2
type: Transform
- uid: 6254
components:
- - pos: -27.5,44.5
+ - pos: -27.5,45.5
parent: 2
type: Transform
- uid: 6255
components:
- - pos: -24.5,46.5
+ - pos: -27.5,44.5
parent: 2
type: Transform
- uid: 6256
components:
- - pos: -24.5,47.5
+ - pos: -24.5,46.5
parent: 2
type: Transform
- uid: 6257
components:
- - pos: -23.5,47.5
+ - pos: -24.5,47.5
parent: 2
type: Transform
- uid: 6258
components:
- - pos: -22.5,47.5
+ - pos: -23.5,47.5
parent: 2
type: Transform
- uid: 6259
components:
- - pos: -22.5,48.5
+ - pos: -22.5,47.5
parent: 2
type: Transform
- uid: 6260
components:
- - pos: -21.5,48.5
+ - pos: -22.5,48.5
parent: 2
type: Transform
- uid: 6261
components:
- - pos: -20.5,48.5
+ - pos: -21.5,48.5
parent: 2
type: Transform
- uid: 6262
components:
- - pos: -20.5,50.5
+ - pos: -20.5,48.5
parent: 2
type: Transform
- uid: 6263
components:
- - pos: -19.5,50.5
+ - pos: -20.5,50.5
parent: 2
type: Transform
- uid: 6264
components:
- - pos: -20.5,49.5
+ - pos: -19.5,50.5
parent: 2
type: Transform
- uid: 6265
components:
- - pos: -8.5,60.5
+ - pos: -20.5,49.5
parent: 2
type: Transform
- uid: 6266
components:
- - pos: -8.5,59.5
+ - pos: -8.5,60.5
parent: 2
type: Transform
- uid: 6267
components:
- - pos: -7.5,58.5
+ - pos: -8.5,59.5
parent: 2
type: Transform
- uid: 6268
components:
- - pos: -6.5,58.5
+ - pos: -7.5,58.5
parent: 2
type: Transform
- uid: 6269
components:
- - pos: -5.5,58.5
+ - pos: -6.5,58.5
parent: 2
type: Transform
- uid: 6270
components:
- - pos: -4.5,58.5
+ - pos: -5.5,58.5
parent: 2
type: Transform
- uid: 6271
components:
- - pos: -3.5,58.5
+ - pos: -4.5,58.5
parent: 2
type: Transform
- uid: 6272
components:
- - pos: -2.5,58.5
+ - pos: -3.5,58.5
parent: 2
type: Transform
- uid: 6273
components:
- - pos: -1.5,58.5
+ - pos: -2.5,58.5
parent: 2
type: Transform
- uid: 6274
components:
- - pos: -0.5,58.5
+ - pos: -1.5,58.5
parent: 2
type: Transform
- uid: 6275
components:
- - pos: 0.5,58.5
+ - pos: -0.5,58.5
parent: 2
type: Transform
- uid: 6276
components:
- - pos: 0.5,57.5
+ - pos: 0.5,58.5
parent: 2
type: Transform
- uid: 6277
components:
- - pos: 0.5,56.5
+ - pos: 0.5,57.5
parent: 2
type: Transform
- uid: 6278
components:
- - pos: 0.5,55.5
+ - pos: 0.5,56.5
parent: 2
type: Transform
- uid: 6279
components:
- - pos: -2.5,59.5
+ - pos: 0.5,55.5
parent: 2
type: Transform
- uid: 6280
components:
- - pos: -2.5,60.5
+ - pos: -2.5,59.5
parent: 2
type: Transform
- uid: 6281
components:
- - pos: -2.5,61.5
+ - pos: -2.5,60.5
parent: 2
type: Transform
- uid: 6282
components:
- - pos: -2.5,62.5
+ - pos: -2.5,61.5
parent: 2
type: Transform
- uid: 6283
components:
- - pos: -1.5,62.5
+ - pos: -2.5,62.5
parent: 2
type: Transform
- uid: 6284
components:
- - pos: -1.5,63.5
+ - pos: -1.5,62.5
parent: 2
type: Transform
- uid: 6285
components:
- - pos: -1.5,65.5
+ - pos: -1.5,63.5
parent: 2
type: Transform
- uid: 6286
components:
- - pos: -1.5,64.5
+ - pos: -1.5,65.5
parent: 2
type: Transform
- uid: 6287
components:
- - pos: -0.5,59.5
+ - pos: -1.5,64.5
parent: 2
type: Transform
- uid: 6288
components:
- - pos: -0.5,60.5
+ - pos: -0.5,59.5
parent: 2
type: Transform
- uid: 6289
components:
- - pos: -0.5,61.5
+ - pos: -0.5,60.5
parent: 2
type: Transform
- uid: 6290
components:
- - pos: -0.5,62.5
+ - pos: -0.5,61.5
parent: 2
type: Transform
- uid: 6291
components:
- - pos: -1.5,66.5
+ - pos: -0.5,62.5
parent: 2
type: Transform
- uid: 6292
components:
- - pos: -2.5,66.5
+ - pos: -1.5,66.5
parent: 2
type: Transform
- uid: 6293
components:
- - pos: -3.5,66.5
+ - pos: -2.5,66.5
parent: 2
type: Transform
- uid: 6294
components:
- - pos: -4.5,66.5
+ - pos: -3.5,66.5
parent: 2
type: Transform
- uid: 6295
components:
- - pos: -5.5,66.5
+ - pos: -4.5,66.5
parent: 2
type: Transform
- uid: 6296
components:
- - pos: -5.5,67.5
+ - pos: -5.5,66.5
parent: 2
type: Transform
- uid: 6297
components:
- - pos: -5.5,68.5
+ - pos: -5.5,67.5
parent: 2
type: Transform
- uid: 6298
components:
- - pos: -5.5,69.5
+ - pos: -5.5,68.5
parent: 2
type: Transform
- uid: 6299
components:
- - pos: -5.5,70.5
+ - pos: -5.5,69.5
parent: 2
type: Transform
- uid: 6300
components:
- - pos: -5.5,71.5
+ - pos: -5.5,70.5
parent: 2
type: Transform
- uid: 6301
components:
- - pos: -5.5,72.5
+ - pos: -5.5,71.5
parent: 2
type: Transform
- uid: 6302
components:
- - pos: -4.5,72.5
+ - pos: -5.5,72.5
parent: 2
type: Transform
- uid: 6303
components:
- - pos: -3.5,72.5
+ - pos: -4.5,72.5
parent: 2
type: Transform
- uid: 6304
components:
- - pos: -2.5,72.5
+ - pos: -3.5,72.5
parent: 2
type: Transform
- uid: 6305
components:
- - pos: -1.5,72.5
+ - pos: -2.5,72.5
parent: 2
type: Transform
- uid: 6306
components:
- - pos: -0.5,72.5
+ - pos: -1.5,72.5
parent: 2
type: Transform
- uid: 6307
components:
- - pos: 0.5,72.5
+ - pos: -0.5,72.5
parent: 2
type: Transform
- uid: 6308
components:
- - pos: 1.5,72.5
+ - pos: 0.5,72.5
parent: 2
type: Transform
- uid: 6309
components:
- - pos: 2.5,72.5
+ - pos: 1.5,72.5
parent: 2
type: Transform
- uid: 6310
components:
- - pos: 2.5,71.5
+ - pos: 2.5,72.5
parent: 2
type: Transform
- uid: 6311
components:
- - pos: 2.5,70.5
+ - pos: 2.5,71.5
parent: 2
type: Transform
- uid: 6312
components:
- - pos: 2.5,69.5
+ - pos: 2.5,70.5
parent: 2
type: Transform
- uid: 6313
components:
- - pos: 2.5,68.5
+ - pos: 2.5,69.5
parent: 2
type: Transform
- uid: 6314
components:
- - pos: 2.5,67.5
+ - pos: 2.5,68.5
parent: 2
type: Transform
- uid: 6315
components:
- - pos: 2.5,66.5
+ - pos: 2.5,67.5
parent: 2
type: Transform
- uid: 6316
components:
- - pos: 1.5,66.5
+ - pos: 2.5,66.5
parent: 2
type: Transform
- uid: 6317
components:
- - pos: 0.5,66.5
+ - pos: 1.5,66.5
parent: 2
type: Transform
- uid: 6318
components:
- - pos: -0.5,66.5
+ - pos: 0.5,66.5
parent: 2
type: Transform
- uid: 6319
components:
- - pos: -1.5,67.5
+ - pos: -0.5,66.5
parent: 2
type: Transform
- uid: 6320
components:
- - pos: -1.5,68.5
+ - pos: -1.5,67.5
parent: 2
type: Transform
- uid: 6321
components:
- - pos: -1.5,69.5
+ - pos: -1.5,68.5
parent: 2
type: Transform
- uid: 6322
components:
- - pos: -7.5,59.5
+ - pos: -1.5,69.5
parent: 2
type: Transform
- uid: 6323
components:
- - pos: -9.5,59.5
+ - pos: -7.5,59.5
parent: 2
type: Transform
- uid: 6324
components:
- - pos: -10.5,59.5
+ - pos: -9.5,59.5
parent: 2
type: Transform
- uid: 6325
components:
- - pos: -11.5,59.5
+ - pos: -10.5,59.5
parent: 2
type: Transform
- uid: 6326
components:
- - pos: -12.5,59.5
+ - pos: -11.5,59.5
parent: 2
type: Transform
- uid: 6327
components:
- - pos: -12.5,58.5
+ - pos: -12.5,59.5
parent: 2
type: Transform
- uid: 6328
components:
- - pos: -12.5,57.5
+ - pos: -12.5,58.5
parent: 2
type: Transform
- uid: 6329
components:
- - pos: -12.5,56.5
+ - pos: -12.5,57.5
parent: 2
type: Transform
- uid: 6330
components:
- - pos: -12.5,55.5
+ - pos: -12.5,56.5
parent: 2
type: Transform
- uid: 6331
components:
- - pos: -12.5,54.5
+ - pos: -12.5,55.5
parent: 2
type: Transform
- uid: 6332
components:
- - pos: -12.5,53.5
+ - pos: -12.5,54.5
parent: 2
type: Transform
- uid: 6333
components:
- - pos: -12.5,52.5
+ - pos: -12.5,53.5
parent: 2
type: Transform
- uid: 6334
components:
- - pos: -12.5,51.5
+ - pos: -12.5,52.5
parent: 2
type: Transform
- uid: 6335
components:
- - pos: -12.5,50.5
+ - pos: -12.5,51.5
parent: 2
type: Transform
- uid: 6336
components:
- - pos: -12.5,49.5
+ - pos: -12.5,50.5
parent: 2
type: Transform
- uid: 6337
components:
- - pos: -13.5,49.5
+ - pos: -12.5,49.5
parent: 2
type: Transform
- uid: 6338
components:
- - pos: -14.5,49.5
+ - pos: -13.5,49.5
parent: 2
type: Transform
- uid: 6339
components:
- - pos: -14.5,50.5
+ - pos: -14.5,49.5
parent: 2
type: Transform
- uid: 6340
components:
- - pos: -14.5,51.5
+ - pos: -14.5,50.5
parent: 2
type: Transform
- uid: 6341
components:
- - pos: -13.5,51.5
+ - pos: -14.5,51.5
parent: 2
type: Transform
- uid: 6342
components:
- - pos: -12.5,60.5
+ - pos: -13.5,51.5
parent: 2
type: Transform
- uid: 6343
components:
- - pos: -12.5,61.5
+ - pos: -12.5,60.5
parent: 2
type: Transform
- uid: 6344
components:
- - pos: -12.5,62.5
+ - pos: -12.5,61.5
parent: 2
type: Transform
- uid: 6345
components:
- - pos: -12.5,63.5
+ - pos: -12.5,62.5
parent: 2
type: Transform
- uid: 6346
components:
- - pos: -12.5,64.5
+ - pos: -12.5,63.5
parent: 2
type: Transform
- uid: 6347
components:
- - pos: -12.5,65.5
+ - pos: -12.5,64.5
parent: 2
type: Transform
- uid: 6348
components:
- - pos: -12.5,66.5
+ - pos: -12.5,65.5
parent: 2
type: Transform
- uid: 6349
components:
- - pos: -12.5,67.5
+ - pos: -12.5,66.5
parent: 2
type: Transform
- uid: 6350
components:
- - pos: -12.5,68.5
+ - pos: -12.5,67.5
parent: 2
type: Transform
- uid: 6351
components:
- - pos: -12.5,69.5
+ - pos: -12.5,68.5
parent: 2
type: Transform
- uid: 6352
components:
- - pos: -12.5,70.5
+ - pos: -12.5,69.5
parent: 2
type: Transform
- uid: 6353
components:
- - pos: -12.5,71.5
+ - pos: -12.5,70.5
parent: 2
type: Transform
- uid: 6354
components:
- - pos: -12.5,72.5
+ - pos: -12.5,71.5
parent: 2
type: Transform
- uid: 6355
components:
- - pos: -12.5,73.5
+ - pos: -12.5,72.5
parent: 2
type: Transform
- uid: 6356
components:
- - pos: -12.5,74.5
+ - pos: -12.5,73.5
parent: 2
type: Transform
- uid: 6357
components:
- - pos: -13.5,67.5
+ - pos: -12.5,74.5
parent: 2
type: Transform
- uid: 6358
components:
- - pos: -14.5,67.5
+ - pos: -13.5,67.5
parent: 2
type: Transform
- uid: 6359
components:
- - pos: -15.5,67.5
+ - pos: -14.5,67.5
parent: 2
type: Transform
- uid: 6360
components:
- - pos: -16.5,67.5
+ - pos: -15.5,67.5
parent: 2
type: Transform
- uid: 6361
components:
- - pos: -17.5,67.5
+ - pos: -16.5,67.5
parent: 2
type: Transform
- uid: 6362
components:
- - pos: -17.5,66.5
+ - pos: -17.5,67.5
parent: 2
type: Transform
- uid: 6363
components:
- - pos: -17.5,65.5
+ - pos: -17.5,66.5
parent: 2
type: Transform
- uid: 6364
components:
- - pos: -17.5,64.5
+ - pos: -17.5,65.5
parent: 2
type: Transform
- uid: 6365
components:
- - pos: -17.5,63.5
+ - pos: -17.5,64.5
parent: 2
type: Transform
- uid: 6366
components:
- - pos: -17.5,62.5
+ - pos: -17.5,63.5
parent: 2
type: Transform
- uid: 6367
components:
- - pos: -17.5,61.5
+ - pos: -17.5,62.5
parent: 2
type: Transform
- uid: 6368
components:
- - pos: -17.5,60.5
+ - pos: -17.5,61.5
parent: 2
type: Transform
- uid: 6369
components:
- - pos: -17.5,59.5
+ - pos: -17.5,60.5
parent: 2
type: Transform
- uid: 6370
components:
- - pos: -17.5,58.5
+ - pos: -17.5,59.5
parent: 2
type: Transform
- uid: 6371
components:
- - pos: -17.5,57.5
+ - pos: -17.5,58.5
parent: 2
type: Transform
- uid: 6372
components:
- - pos: -17.5,56.5
+ - pos: -17.5,57.5
parent: 2
type: Transform
- uid: 6373
components:
- - pos: -17.5,55.5
+ - pos: -17.5,56.5
parent: 2
type: Transform
- uid: 6374
components:
- - pos: -18.5,55.5
+ - pos: -17.5,55.5
parent: 2
type: Transform
- uid: 6375
components:
- - pos: -19.5,55.5
+ - pos: -18.5,55.5
parent: 2
type: Transform
- uid: 6376
components:
- - pos: -20.5,55.5
+ - pos: -19.5,55.5
parent: 2
type: Transform
- uid: 6377
components:
- - pos: -21.5,55.5
+ - pos: -20.5,55.5
parent: 2
type: Transform
- uid: 6378
components:
- - pos: -22.5,55.5
+ - pos: -21.5,55.5
parent: 2
type: Transform
- uid: 6379
components:
- - pos: -22.5,54.5
+ - pos: -22.5,55.5
parent: 2
type: Transform
- uid: 6380
components:
- - pos: -22.5,53.5
+ - pos: -22.5,54.5
parent: 2
type: Transform
- uid: 6381
components:
- - pos: -22.5,52.5
+ - pos: -22.5,53.5
parent: 2
type: Transform
- uid: 6382
components:
- - pos: -22.5,51.5
+ - pos: -22.5,52.5
parent: 2
type: Transform
- uid: 6383
components:
- - pos: -21.5,53.5
+ - pos: -22.5,51.5
parent: 2
type: Transform
- uid: 6384
components:
- - pos: -21.5,56.5
+ - pos: -21.5,53.5
parent: 2
type: Transform
- uid: 6385
components:
- - pos: -21.5,57.5
+ - pos: -21.5,56.5
parent: 2
type: Transform
- uid: 6386
components:
- - pos: -21.5,58.5
+ - pos: -21.5,57.5
parent: 2
type: Transform
- uid: 6387
components:
- - pos: -21.5,59.5
+ - pos: -21.5,58.5
parent: 2
type: Transform
- uid: 6388
components:
- - pos: -21.5,60.5
+ - pos: -21.5,59.5
parent: 2
type: Transform
- uid: 6389
components:
- - pos: -21.5,61.5
+ - pos: -21.5,60.5
parent: 2
type: Transform
- uid: 6390
components:
- - pos: -21.5,62.5
+ - pos: -21.5,61.5
parent: 2
type: Transform
- uid: 6391
components:
- - pos: -21.5,63.5
+ - pos: -21.5,62.5
parent: 2
type: Transform
- uid: 6392
components:
- - pos: -21.5,64.5
+ - pos: -21.5,63.5
parent: 2
type: Transform
- uid: 6393
components:
- - pos: -21.5,65.5
+ - pos: -21.5,64.5
parent: 2
type: Transform
- uid: 6394
components:
- - pos: -21.5,66.5
+ - pos: -21.5,65.5
parent: 2
type: Transform
- uid: 6395
components:
- - pos: -21.5,67.5
+ - pos: -21.5,66.5
parent: 2
type: Transform
- uid: 6396
components:
- - pos: -21.5,68.5
+ - pos: -21.5,67.5
parent: 2
type: Transform
- uid: 6397
components:
- - pos: -21.5,69.5
+ - pos: -21.5,68.5
parent: 2
type: Transform
- uid: 6398
components:
- - pos: -21.5,70.5
+ - pos: -21.5,69.5
parent: 2
type: Transform
- uid: 6399
components:
- - pos: -21.5,71.5
+ - pos: -21.5,70.5
parent: 2
type: Transform
- uid: 6400
components:
- - pos: -21.5,72.5
+ - pos: -21.5,71.5
parent: 2
type: Transform
- uid: 6401
components:
- - pos: -21.5,73.5
+ - pos: -21.5,72.5
parent: 2
type: Transform
- uid: 6402
components:
- - pos: -21.5,74.5
+ - pos: -21.5,73.5
parent: 2
type: Transform
- uid: 6403
components:
- - pos: -17.5,68.5
+ - pos: -21.5,74.5
parent: 2
type: Transform
- uid: 6404
components:
- - pos: -17.5,69.5
+ - pos: -17.5,68.5
parent: 2
type: Transform
- uid: 6405
components:
- - pos: -17.5,70.5
+ - pos: -17.5,69.5
parent: 2
type: Transform
- uid: 6406
components:
- - pos: -17.5,54.5
+ - pos: -17.5,70.5
parent: 2
type: Transform
- uid: 6407
components:
- - pos: -17.5,53.5
+ - pos: -17.5,54.5
parent: 2
type: Transform
- uid: 6408
components:
- - pos: -25.5,41.5
+ - pos: -17.5,53.5
parent: 2
type: Transform
- uid: 6409
components:
- - pos: -25.5,40.5
+ - pos: -25.5,41.5
parent: 2
type: Transform
- uid: 6410
components:
- - pos: -26.5,41.5
+ - pos: -25.5,40.5
parent: 2
type: Transform
- uid: 6411
components:
- - pos: -28.5,39.5
+ - pos: -26.5,41.5
parent: 2
type: Transform
- uid: 6412
components:
- - pos: -27.5,41.5
+ - pos: -28.5,39.5
parent: 2
type: Transform
- uid: 6413
components:
- - pos: -28.5,40.5
+ - pos: -27.5,41.5
parent: 2
type: Transform
- uid: 6414
components:
- - pos: -28.5,41.5
+ - pos: -28.5,40.5
parent: 2
type: Transform
- uid: 6415
components:
- - pos: -28.5,38.5
+ - pos: -28.5,41.5
parent: 2
type: Transform
- uid: 6416
components:
- - pos: -29.5,38.5
+ - pos: -28.5,38.5
parent: 2
type: Transform
- uid: 6417
components:
- - pos: -30.5,38.5
+ - pos: -29.5,38.5
parent: 2
type: Transform
- uid: 6418
components:
- - pos: -31.5,38.5
+ - pos: -30.5,38.5
parent: 2
type: Transform
- uid: 6419
components:
- - pos: -32.5,38.5
+ - pos: -31.5,38.5
parent: 2
type: Transform
- uid: 6420
components:
- - pos: -32.5,39.5
+ - pos: -32.5,38.5
parent: 2
type: Transform
- uid: 6421
components:
- - pos: -33.5,39.5
+ - pos: -32.5,39.5
parent: 2
type: Transform
- uid: 6422
components:
- - pos: -34.5,39.5
+ - pos: -33.5,39.5
parent: 2
type: Transform
- uid: 6423
components:
- - pos: -35.5,39.5
+ - pos: -34.5,39.5
parent: 2
type: Transform
- uid: 6424
components:
- - pos: -36.5,39.5
+ - pos: -35.5,39.5
parent: 2
type: Transform
- uid: 6425
components:
- - pos: -37.5,39.5
+ - pos: -36.5,39.5
parent: 2
type: Transform
- uid: 6426
components:
- - pos: -37.5,40.5
+ - pos: -37.5,39.5
parent: 2
type: Transform
- uid: 6427
components:
- - pos: -37.5,41.5
+ - pos: -37.5,40.5
parent: 2
type: Transform
- uid: 6428
components:
- - pos: -37.5,42.5
+ - pos: -37.5,41.5
parent: 2
type: Transform
- uid: 6429
components:
- - pos: -38.5,39.5
+ - pos: -37.5,42.5
parent: 2
type: Transform
- uid: 6430
components:
- - pos: -39.5,39.5
+ - pos: -38.5,39.5
parent: 2
type: Transform
- uid: 6431
components:
- - pos: -40.5,39.5
+ - pos: -39.5,39.5
parent: 2
type: Transform
- uid: 6432
components:
- - pos: -41.5,39.5
+ - pos: -40.5,39.5
parent: 2
type: Transform
- uid: 6433
components:
- - pos: -42.5,39.5
+ - pos: -41.5,39.5
parent: 2
type: Transform
- uid: 6434
components:
- - pos: -43.5,39.5
+ - pos: -42.5,39.5
parent: 2
type: Transform
- uid: 6435
components:
- - pos: -44.5,39.5
+ - pos: -43.5,39.5
parent: 2
type: Transform
- uid: 6436
components:
- - pos: -45.5,39.5
+ - pos: -44.5,39.5
parent: 2
type: Transform
- uid: 6437
components:
- - pos: -46.5,39.5
+ - pos: -45.5,39.5
parent: 2
type: Transform
- uid: 6438
components:
- - pos: -41.5,38.5
+ - pos: -46.5,39.5
parent: 2
type: Transform
- uid: 6439
components:
- - pos: -29.5,37.5
+ - pos: -41.5,38.5
parent: 2
type: Transform
- uid: 6440
components:
- - pos: -29.5,36.5
+ - pos: -29.5,37.5
parent: 2
type: Transform
- uid: 6441
components:
- - pos: -30.5,36.5
+ - pos: -29.5,36.5
parent: 2
type: Transform
- uid: 6442
components:
- - pos: -31.5,36.5
+ - pos: -30.5,36.5
parent: 2
type: Transform
- uid: 6443
components:
- - pos: -32.5,36.5
+ - pos: -31.5,36.5
parent: 2
type: Transform
- uid: 6444
components:
- - pos: -33.5,36.5
+ - pos: -32.5,36.5
parent: 2
type: Transform
- uid: 6445
components:
- - pos: -34.5,36.5
+ - pos: -33.5,36.5
parent: 2
type: Transform
- uid: 6446
components:
- - pos: -34.5,37.5
+ - pos: -34.5,36.5
parent: 2
type: Transform
- uid: 6447
components:
- - pos: -35.5,37.5
+ - pos: -34.5,37.5
parent: 2
type: Transform
- uid: 6448
components:
- - pos: -36.5,37.5
+ - pos: -35.5,37.5
parent: 2
type: Transform
- uid: 6449
components:
- - pos: -37.5,37.5
+ - pos: -36.5,37.5
parent: 2
type: Transform
- uid: 6450
components:
- - pos: -37.5,36.5
+ - pos: -37.5,37.5
parent: 2
type: Transform
- uid: 6451
components:
- - pos: -21.5,27.5
+ - pos: -37.5,36.5
parent: 2
type: Transform
- uid: 6452
components:
- - pos: -22.5,27.5
+ - pos: -21.5,27.5
parent: 2
type: Transform
- uid: 6453
components:
- - pos: -23.5,27.5
+ - pos: -22.5,27.5
parent: 2
type: Transform
- uid: 6454
components:
- - pos: -24.5,27.5
+ - pos: -23.5,27.5
parent: 2
type: Transform
- uid: 6455
components:
- - pos: -25.5,27.5
+ - pos: -24.5,27.5
parent: 2
type: Transform
- uid: 6456
components:
- - pos: -26.5,27.5
+ - pos: -25.5,27.5
parent: 2
type: Transform
- uid: 6457
components:
- - pos: -27.5,27.5
+ - pos: -26.5,27.5
parent: 2
type: Transform
- uid: 6458
components:
- - pos: -28.5,27.5
+ - pos: -27.5,27.5
parent: 2
type: Transform
- uid: 6459
components:
- - pos: -28.5,28.5
+ - pos: -28.5,27.5
parent: 2
type: Transform
- uid: 6460
components:
- - pos: -28.5,29.5
+ - pos: -28.5,28.5
parent: 2
type: Transform
- uid: 6461
components:
- - pos: -28.5,30.5
+ - pos: -28.5,29.5
parent: 2
type: Transform
- uid: 6462
components:
- - pos: -28.5,31.5
+ - pos: -28.5,30.5
parent: 2
type: Transform
- uid: 6463
components:
- - pos: -27.5,31.5
+ - pos: -28.5,31.5
parent: 2
type: Transform
- uid: 6464
components:
- - pos: -27.5,33.5
+ - pos: -27.5,31.5
parent: 2
type: Transform
- uid: 6465
components:
- - pos: -27.5,34.5
+ - pos: -27.5,33.5
parent: 2
type: Transform
- uid: 6466
components:
- - pos: -27.5,35.5
+ - pos: -27.5,34.5
parent: 2
type: Transform
- uid: 6467
components:
- - pos: -27.5,32.5
+ - pos: -27.5,35.5
parent: 2
type: Transform
- uid: 6468
components:
- - pos: -16.5,62.5
+ - pos: -27.5,32.5
parent: 2
type: Transform
- uid: 6469
components:
- - pos: -16.5,61.5
+ - pos: -16.5,62.5
parent: 2
type: Transform
- uid: 6470
components:
- - pos: -18.5,62.5
+ - pos: -16.5,61.5
parent: 2
type: Transform
- uid: 6471
components:
- - pos: -18.5,61.5
+ - pos: -18.5,62.5
parent: 2
type: Transform
- uid: 6472
components:
- - pos: 56.5,36.5
+ - pos: -18.5,61.5
parent: 2
type: Transform
- uid: 6473
components:
- - pos: 28.5,45.5
+ - pos: 56.5,36.5
parent: 2
type: Transform
- uid: 6474
components:
- - pos: 27.5,45.5
+ - pos: 28.5,45.5
parent: 2
type: Transform
- uid: 6475
components:
- - pos: 26.5,45.5
+ - pos: 27.5,45.5
parent: 2
type: Transform
- uid: 6476
components:
- - pos: 25.5,45.5
+ - pos: 26.5,45.5
parent: 2
type: Transform
- uid: 6477
components:
- - pos: 24.5,45.5
+ - pos: 25.5,45.5
parent: 2
type: Transform
- uid: 6478
components:
- - pos: 23.5,45.5
+ - pos: 24.5,45.5
parent: 2
type: Transform
- uid: 6479
components:
- - pos: 22.5,45.5
+ - pos: 23.5,45.5
parent: 2
type: Transform
- uid: 6480
components:
- - pos: 21.5,45.5
+ - pos: 22.5,45.5
parent: 2
type: Transform
- uid: 6481
components:
- - pos: -8.5,-76.5
+ - pos: 21.5,45.5
parent: 2
type: Transform
- uid: 6482
components:
- - pos: -8.5,-77.5
+ - pos: -8.5,-76.5
parent: 2
type: Transform
- uid: 6483
components:
- - pos: -8.5,-78.5
+ - pos: -8.5,-77.5
parent: 2
type: Transform
- uid: 6484
components:
- - pos: -8.5,-79.5
+ - pos: -8.5,-78.5
parent: 2
type: Transform
- uid: 6485
components:
- - pos: -8.5,-80.5
+ - pos: -8.5,-79.5
parent: 2
type: Transform
- uid: 6486
components:
- - pos: -8.5,-81.5
+ - pos: -8.5,-80.5
parent: 2
type: Transform
- uid: 6487
components:
- - pos: -8.5,-82.5
+ - pos: -8.5,-81.5
parent: 2
type: Transform
- uid: 6488
components:
- - pos: -8.5,-83.5
+ - pos: -8.5,-82.5
parent: 2
type: Transform
- uid: 6489
components:
- - pos: -8.5,-84.5
+ - pos: -8.5,-83.5
parent: 2
type: Transform
- uid: 6490
components:
- - pos: -8.5,-85.5
+ - pos: -8.5,-84.5
parent: 2
type: Transform
- uid: 6491
components:
- - pos: -8.5,-86.5
+ - pos: -8.5,-85.5
parent: 2
type: Transform
- uid: 6492
components:
- - pos: -7.5,-86.5
+ - pos: -8.5,-86.5
parent: 2
type: Transform
- uid: 6493
components:
- - pos: -7.5,-87.5
+ - pos: -7.5,-86.5
parent: 2
type: Transform
- uid: 6494
components:
- - pos: -7.5,-88.5
+ - pos: -7.5,-87.5
parent: 2
type: Transform
- uid: 6495
components:
- - pos: -7.5,-89.5
+ - pos: -7.5,-88.5
parent: 2
type: Transform
- uid: 6496
components:
- - pos: -7.5,-90.5
+ - pos: -7.5,-89.5
parent: 2
type: Transform
- uid: 6497
components:
- - pos: -7.5,-91.5
+ - pos: -7.5,-90.5
parent: 2
type: Transform
- uid: 6498
components:
- - pos: -7.5,-92.5
+ - pos: -7.5,-91.5
parent: 2
type: Transform
- uid: 6499
components:
- - pos: -7.5,-93.5
+ - pos: -7.5,-92.5
parent: 2
type: Transform
- uid: 6500
components:
- - pos: -7.5,-94.5
+ - pos: -7.5,-93.5
parent: 2
type: Transform
- uid: 6501
components:
- - pos: -7.5,-95.5
+ - pos: -7.5,-94.5
parent: 2
type: Transform
- uid: 6502
components:
- - pos: -7.5,-96.5
+ - pos: -7.5,-95.5
parent: 2
type: Transform
- uid: 6503
components:
- - pos: -7.5,-97.5
+ - pos: -7.5,-96.5
parent: 2
type: Transform
- uid: 6504
components:
- - pos: -8.5,-97.5
+ - pos: -7.5,-97.5
parent: 2
type: Transform
- uid: 6505
components:
- - pos: -9.5,-97.5
+ - pos: -8.5,-97.5
parent: 2
type: Transform
- uid: 6506
components:
- - pos: -10.5,-97.5
+ - pos: -9.5,-97.5
parent: 2
type: Transform
- uid: 6507
components:
- - pos: -11.5,-97.5
+ - pos: -10.5,-97.5
parent: 2
type: Transform
- uid: 6508
components:
- - pos: -12.5,-97.5
+ - pos: -11.5,-97.5
parent: 2
type: Transform
- uid: 6509
components:
- - pos: -13.5,-97.5
+ - pos: -12.5,-97.5
parent: 2
type: Transform
- uid: 6510
components:
- - pos: -14.5,-97.5
+ - pos: -13.5,-97.5
parent: 2
type: Transform
- uid: 6511
components:
- - pos: -15.5,-97.5
+ - pos: -14.5,-97.5
parent: 2
type: Transform
- uid: 6512
components:
- - pos: -16.5,-97.5
+ - pos: -15.5,-97.5
parent: 2
type: Transform
- uid: 6513
components:
- - pos: -17.5,-97.5
+ - pos: -16.5,-97.5
parent: 2
type: Transform
- uid: 6514
components:
- - pos: -18.5,-97.5
+ - pos: -17.5,-97.5
parent: 2
type: Transform
- uid: 6515
components:
- - pos: -19.5,-97.5
+ - pos: -18.5,-97.5
parent: 2
type: Transform
- uid: 6516
components:
- - pos: -20.5,-97.5
+ - pos: -19.5,-97.5
parent: 2
type: Transform
- uid: 6517
components:
- - pos: -20.5,-96.5
+ - pos: -20.5,-97.5
parent: 2
type: Transform
- uid: 6518
components:
- - pos: -20.5,-95.5
+ - pos: -20.5,-96.5
parent: 2
type: Transform
- uid: 6519
components:
- - pos: -21.5,-95.5
+ - pos: -20.5,-95.5
parent: 2
type: Transform
- uid: 6520
components:
- - pos: -22.5,-95.5
+ - pos: -21.5,-95.5
parent: 2
type: Transform
- uid: 6521
components:
- - pos: -23.5,-95.5
+ - pos: -22.5,-95.5
parent: 2
type: Transform
- uid: 6522
components:
- - pos: -24.5,-95.5
+ - pos: -23.5,-95.5
parent: 2
type: Transform
- uid: 6523
components:
- - pos: -24.5,-96.5
+ - pos: -24.5,-95.5
parent: 2
type: Transform
- uid: 6524
components:
- - pos: -24.5,-97.5
+ - pos: -24.5,-96.5
parent: 2
type: Transform
- uid: 6525
components:
- - pos: -24.5,-98.5
+ - pos: -24.5,-97.5
parent: 2
type: Transform
- uid: 6526
components:
- - pos: -24.5,-99.5
+ - pos: -24.5,-98.5
parent: 2
type: Transform
- uid: 6527
components:
- - pos: -23.5,-99.5
+ - pos: -24.5,-99.5
parent: 2
type: Transform
- uid: 6528
components:
- - pos: -22.5,-99.5
+ - pos: -23.5,-99.5
parent: 2
type: Transform
- uid: 6529
components:
- - pos: -21.5,-99.5
+ - pos: -22.5,-99.5
parent: 2
type: Transform
- uid: 6530
components:
- - pos: -20.5,-99.5
+ - pos: -21.5,-99.5
parent: 2
type: Transform
- uid: 6531
components:
- - pos: -20.5,-98.5
+ - pos: -20.5,-99.5
parent: 2
type: Transform
- uid: 6532
components:
- - pos: -15.5,-98.5
+ - pos: -20.5,-98.5
parent: 2
type: Transform
- uid: 6533
components:
- - pos: -6.5,-97.5
+ - pos: -15.5,-98.5
parent: 2
type: Transform
- uid: 6534
components:
- - pos: -5.5,-97.5
+ - pos: -6.5,-97.5
parent: 2
type: Transform
- uid: 6535
components:
- - pos: -4.5,-97.5
+ - pos: -5.5,-97.5
parent: 2
type: Transform
- uid: 6536
components:
- - pos: -7.5,-98.5
+ - pos: -4.5,-97.5
parent: 2
type: Transform
- uid: 6537
components:
- - pos: -7.5,-99.5
+ - pos: -7.5,-98.5
parent: 2
type: Transform
- uid: 6538
components:
- - pos: -7.5,-100.5
+ - pos: -7.5,-99.5
parent: 2
type: Transform
- uid: 6539
components:
- - pos: -8.5,-95.5
+ - pos: -7.5,-100.5
parent: 2
type: Transform
- uid: 6540
components:
- - pos: -43.5,-85.5
+ - pos: -8.5,-95.5
parent: 2
type: Transform
- uid: 6541
components:
- - pos: -43.5,-86.5
+ - pos: -43.5,-85.5
parent: 2
type: Transform
- uid: 6542
components:
- - pos: -43.5,-87.5
+ - pos: -43.5,-86.5
parent: 2
type: Transform
- uid: 6543
components:
- - pos: -43.5,-88.5
+ - pos: -43.5,-87.5
parent: 2
type: Transform
- uid: 6544
components:
- - pos: -43.5,-89.5
+ - pos: -43.5,-88.5
parent: 2
type: Transform
- uid: 6545
components:
- - pos: -38.5,-85.5
+ - pos: -43.5,-89.5
parent: 2
type: Transform
- uid: 6546
components:
- - pos: -39.5,-85.5
+ - pos: -38.5,-85.5
parent: 2
type: Transform
- uid: 6547
components:
- - pos: -40.5,-85.5
+ - pos: -39.5,-85.5
parent: 2
type: Transform
- uid: 6548
components:
- - pos: -40.5,-86.5
+ - pos: -40.5,-85.5
parent: 2
type: Transform
- uid: 6549
components:
- - pos: -40.5,-87.5
+ - pos: -40.5,-86.5
parent: 2
type: Transform
- uid: 6550
components:
- - pos: -40.5,-88.5
+ - pos: -40.5,-87.5
parent: 2
type: Transform
- uid: 6551
components:
- - pos: -40.5,-89.5
+ - pos: -40.5,-88.5
parent: 2
type: Transform
- uid: 6552
components:
- - pos: -40.5,-90.5
+ - pos: -40.5,-89.5
parent: 2
type: Transform
- uid: 6553
components:
- - pos: -25.5,-97.5
+ - pos: -40.5,-90.5
parent: 2
type: Transform
- uid: 6554
components:
- - pos: -26.5,-97.5
+ - pos: -25.5,-97.5
parent: 2
type: Transform
- uid: 6555
components:
- - pos: -40.5,-91.5
+ - pos: -26.5,-97.5
parent: 2
type: Transform
- uid: 6556
components:
- - pos: -43.5,-91.5
+ - pos: -40.5,-91.5
parent: 2
type: Transform
- uid: 6557
components:
- - pos: -43.5,-92.5
+ - pos: -43.5,-91.5
parent: 2
type: Transform
- uid: 6558
components:
- - pos: -42.5,-92.5
+ - pos: -43.5,-92.5
parent: 2
type: Transform
- uid: 6559
components:
- - pos: -40.5,-92.5
+ - pos: -42.5,-92.5
parent: 2
type: Transform
- uid: 6560
components:
- - pos: -41.5,-92.5
+ - pos: -40.5,-92.5
parent: 2
type: Transform
- uid: 6561
components:
- - pos: -41.5,-93.5
+ - pos: -41.5,-92.5
parent: 2
type: Transform
- uid: 6562
components:
- - pos: -41.5,-94.5
+ - pos: -41.5,-93.5
parent: 2
type: Transform
- uid: 6563
components:
- - pos: -41.5,-95.5
+ - pos: -41.5,-94.5
parent: 2
type: Transform
- uid: 6564
components:
- - pos: -42.5,-95.5
+ - pos: -41.5,-95.5
parent: 2
type: Transform
- uid: 6565
components:
- - pos: -43.5,-95.5
+ - pos: -42.5,-95.5
parent: 2
type: Transform
- uid: 6566
components:
- - pos: -43.5,-96.5
+ - pos: -43.5,-95.5
parent: 2
type: Transform
- uid: 6567
components:
- - pos: -43.5,-97.5
+ - pos: -43.5,-96.5
parent: 2
type: Transform
- uid: 6568
components:
- - pos: -42.5,-97.5
+ - pos: -43.5,-97.5
parent: 2
type: Transform
- uid: 6569
components:
- - pos: -41.5,-97.5
+ - pos: -42.5,-97.5
parent: 2
type: Transform
- uid: 6570
components:
- - pos: -40.5,-97.5
+ - pos: -41.5,-97.5
parent: 2
type: Transform
- uid: 6571
components:
- - pos: -39.5,-97.5
+ - pos: -40.5,-97.5
parent: 2
type: Transform
- uid: 6572
components:
- - pos: -38.5,-97.5
+ - pos: -39.5,-97.5
parent: 2
type: Transform
- uid: 6573
components:
- - pos: -37.5,-97.5
+ - pos: -38.5,-97.5
parent: 2
type: Transform
- uid: 6574
components:
- - pos: -36.5,-97.5
+ - pos: -37.5,-97.5
parent: 2
type: Transform
- uid: 6575
components:
- - pos: -35.5,-97.5
+ - pos: -36.5,-97.5
parent: 2
type: Transform
- uid: 6576
components:
- - pos: -40.5,-95.5
+ - pos: -35.5,-97.5
parent: 2
type: Transform
- uid: 6577
components:
- - pos: -39.5,-95.5
+ - pos: -40.5,-95.5
parent: 2
type: Transform
- uid: 6578
components:
- - pos: -38.5,-95.5
+ - pos: -39.5,-95.5
parent: 2
type: Transform
- uid: 6579
components:
- - pos: -37.5,-95.5
+ - pos: -38.5,-95.5
parent: 2
type: Transform
- uid: 6580
components:
- - pos: -36.5,-95.5
+ - pos: -37.5,-95.5
parent: 2
type: Transform
- uid: 6581
components:
- - pos: -35.5,-95.5
+ - pos: -36.5,-95.5
parent: 2
type: Transform
- uid: 6582
components:
- - pos: -35.5,-96.5
+ - pos: -35.5,-95.5
parent: 2
type: Transform
- uid: 6583
components:
- - pos: -34.5,-97.5
+ - pos: -35.5,-96.5
parent: 2
type: Transform
- uid: 6584
components:
- - pos: -33.5,-97.5
+ - pos: -34.5,-97.5
parent: 2
type: Transform
- uid: 6585
components:
- - pos: -32.5,-97.5
+ - pos: -33.5,-97.5
parent: 2
type: Transform
- uid: 6586
components:
- - pos: -31.5,-97.5
+ - pos: -32.5,-97.5
parent: 2
type: Transform
- uid: 6587
components:
- - pos: -30.5,-97.5
+ - pos: -31.5,-97.5
parent: 2
type: Transform
- uid: 6588
components:
- - pos: -29.5,-97.5
+ - pos: -30.5,-97.5
parent: 2
type: Transform
- uid: 6589
components:
- - pos: -28.5,-97.5
+ - pos: -29.5,-97.5
parent: 2
type: Transform
- uid: 6590
components:
- - pos: -43.5,-90.5
+ - pos: -28.5,-97.5
parent: 2
type: Transform
- uid: 6591
components:
- - pos: -35.5,-98.5
+ - pos: -43.5,-90.5
parent: 2
type: Transform
- uid: 6592
components:
- - pos: -35.5,-99.5
+ - pos: -35.5,-98.5
parent: 2
type: Transform
- uid: 6593
components:
- - pos: -35.5,-100.5
+ - pos: -35.5,-99.5
parent: 2
type: Transform
- uid: 6594
@@ -45721,1672 +45774,1672 @@ entities:
type: Transform
- uid: 6595
components:
- - pos: -35.5,-99.5
+ - pos: -35.5,-100.5
parent: 2
type: Transform
- uid: 6596
components:
- - pos: -35.5,-102.5
+ - pos: -35.5,-99.5
parent: 2
type: Transform
- uid: 6597
components:
- - pos: -35.5,-103.5
+ - pos: -35.5,-102.5
parent: 2
type: Transform
- uid: 6598
components:
- - pos: -35.5,-104.5
+ - pos: -35.5,-103.5
parent: 2
type: Transform
- uid: 6599
components:
- - pos: -35.5,-105.5
+ - pos: -35.5,-104.5
parent: 2
type: Transform
- uid: 6600
components:
- - pos: -36.5,-104.5
+ - pos: -35.5,-105.5
parent: 2
type: Transform
- uid: 6601
components:
- - pos: 37.5,-48.5
+ - pos: -36.5,-104.5
parent: 2
type: Transform
- uid: 6602
components:
- - pos: 36.5,-48.5
+ - pos: 37.5,-48.5
parent: 2
type: Transform
- uid: 6603
components:
- - pos: 36.5,-47.5
+ - pos: 36.5,-48.5
parent: 2
type: Transform
- uid: 6604
components:
- - pos: 36.5,-46.5
+ - pos: 36.5,-47.5
parent: 2
type: Transform
- uid: 6605
components:
- - pos: -71.5,-31.5
+ - pos: 36.5,-46.5
parent: 2
type: Transform
- uid: 6606
components:
- - pos: -72.5,-26.5
+ - pos: -71.5,-31.5
parent: 2
type: Transform
- uid: 6607
components:
- - pos: -72.5,-27.5
+ - pos: -72.5,-26.5
parent: 2
type: Transform
- uid: 6608
components:
- - pos: -72.5,-28.5
+ - pos: -72.5,-27.5
parent: 2
type: Transform
- uid: 6609
components:
- - pos: -72.5,-29.5
+ - pos: -72.5,-28.5
parent: 2
type: Transform
- uid: 6610
components:
- - pos: -73.5,-31.5
+ - pos: -72.5,-29.5
parent: 2
type: Transform
- uid: 6611
components:
- - pos: -72.5,-31.5
+ - pos: -73.5,-31.5
parent: 2
type: Transform
- uid: 6612
components:
- - pos: -72.5,-32.5
+ - pos: -72.5,-31.5
parent: 2
type: Transform
- uid: 6613
components:
- - pos: -72.5,-33.5
+ - pos: -72.5,-32.5
parent: 2
type: Transform
- uid: 6614
components:
- - pos: -73.5,-30.5
+ - pos: -72.5,-33.5
parent: 2
type: Transform
- uid: 6615
components:
- - pos: -73.5,-29.5
+ - pos: -73.5,-30.5
parent: 2
type: Transform
- uid: 6616
components:
- - pos: 27.5,-1.5
+ - pos: -73.5,-29.5
parent: 2
type: Transform
- uid: 6617
components:
- - pos: -12.5,-14.5
+ - pos: 27.5,-1.5
parent: 2
type: Transform
- uid: 6618
components:
- - pos: 62.5,-29.5
+ - pos: -12.5,-14.5
parent: 2
type: Transform
- uid: 6619
components:
- - pos: 74.5,-45.5
+ - pos: 62.5,-29.5
parent: 2
type: Transform
- uid: 6620
components:
- - pos: 75.5,-45.5
+ - pos: 74.5,-45.5
parent: 2
type: Transform
- uid: 6621
components:
- - pos: 76.5,-45.5
+ - pos: 75.5,-45.5
parent: 2
type: Transform
- uid: 6622
components:
- - pos: 74.5,-44.5
+ - pos: 76.5,-45.5
parent: 2
type: Transform
- uid: 6623
components:
- - pos: 74.5,-43.5
+ - pos: 74.5,-44.5
parent: 2
type: Transform
- uid: 6624
components:
- - pos: 74.5,-42.5
+ - pos: 74.5,-43.5
parent: 2
type: Transform
- uid: 6625
components:
- - pos: 74.5,-41.5
+ - pos: 74.5,-42.5
parent: 2
type: Transform
- uid: 6626
components:
- - pos: 74.5,-40.5
+ - pos: 74.5,-41.5
parent: 2
type: Transform
- uid: 6627
components:
- - pos: 74.5,-39.5
+ - pos: 74.5,-40.5
parent: 2
type: Transform
- uid: 6628
components:
- - pos: 74.5,-38.5
+ - pos: 74.5,-39.5
parent: 2
type: Transform
- uid: 6629
components:
- - pos: 76.5,-46.5
+ - pos: 74.5,-38.5
parent: 2
type: Transform
- uid: 6630
components:
- - pos: 76.5,-47.5
+ - pos: 76.5,-46.5
parent: 2
type: Transform
- uid: 6631
components:
- - pos: 76.5,-48.5
+ - pos: 76.5,-47.5
parent: 2
type: Transform
- uid: 6632
components:
- - pos: 76.5,-49.5
+ - pos: 76.5,-48.5
parent: 2
type: Transform
- uid: 6633
components:
- - pos: 73.5,-48.5
+ - pos: 76.5,-49.5
parent: 2
type: Transform
- uid: 6634
components:
- - pos: 74.5,-48.5
+ - pos: 73.5,-48.5
parent: 2
type: Transform
- uid: 6635
components:
- - pos: 74.5,-47.5
+ - pos: 74.5,-48.5
parent: 2
type: Transform
- uid: 6636
components:
- - pos: 75.5,-47.5
+ - pos: 74.5,-47.5
parent: 2
type: Transform
- uid: 6637
components:
- - pos: 74.5,-37.5
+ - pos: 75.5,-47.5
parent: 2
type: Transform
- uid: 6638
components:
- - pos: 75.5,-37.5
+ - pos: 74.5,-37.5
parent: 2
type: Transform
- uid: 6639
components:
- - pos: 76.5,-37.5
+ - pos: 75.5,-37.5
parent: 2
type: Transform
- uid: 6640
components:
- - pos: 77.5,-37.5
+ - pos: 76.5,-37.5
parent: 2
type: Transform
- uid: 6641
components:
- - pos: 78.5,-37.5
+ - pos: 77.5,-37.5
parent: 2
type: Transform
- uid: 6642
components:
- - pos: 78.5,-36.5
+ - pos: 78.5,-37.5
parent: 2
type: Transform
- uid: 6643
components:
- - pos: 78.5,-35.5
+ - pos: 78.5,-36.5
parent: 2
type: Transform
- uid: 6644
components:
- - pos: 78.5,-34.5
+ - pos: 78.5,-35.5
parent: 2
type: Transform
- uid: 6645
components:
- - pos: 78.5,-33.5
+ - pos: 78.5,-34.5
parent: 2
type: Transform
- uid: 6646
components:
- - pos: 77.5,-33.5
+ - pos: 78.5,-33.5
parent: 2
type: Transform
- uid: 6647
components:
- - pos: 76.5,-33.5
+ - pos: 77.5,-33.5
parent: 2
type: Transform
- uid: 6648
components:
- - pos: 75.5,-33.5
+ - pos: 76.5,-33.5
parent: 2
type: Transform
- uid: 6649
components:
- - pos: 74.5,-33.5
+ - pos: 75.5,-33.5
parent: 2
type: Transform
- uid: 6650
components:
- - pos: 74.5,-32.5
+ - pos: 74.5,-33.5
parent: 2
type: Transform
- uid: 6651
components:
- - pos: 73.5,-32.5
+ - pos: 74.5,-32.5
parent: 2
type: Transform
- uid: 6652
components:
- - pos: 72.5,-32.5
+ - pos: 73.5,-32.5
parent: 2
type: Transform
- uid: 6653
components:
- - pos: 71.5,-32.5
+ - pos: 72.5,-32.5
parent: 2
type: Transform
- uid: 6654
components:
- - pos: 70.5,-32.5
+ - pos: 71.5,-32.5
parent: 2
type: Transform
- uid: 6655
components:
- - pos: 70.5,-33.5
+ - pos: 70.5,-32.5
parent: 2
type: Transform
- uid: 6656
components:
- - pos: 70.5,-34.5
+ - pos: 70.5,-33.5
parent: 2
type: Transform
- uid: 6657
components:
- - pos: 70.5,-35.5
+ - pos: 70.5,-34.5
parent: 2
type: Transform
- uid: 6658
components:
- - pos: 70.5,-36.5
+ - pos: 70.5,-35.5
parent: 2
type: Transform
- uid: 6659
components:
- - pos: 71.5,-36.5
+ - pos: 70.5,-36.5
parent: 2
type: Transform
- uid: 6660
components:
- - pos: 72.5,-37.5
+ - pos: 71.5,-36.5
parent: 2
type: Transform
- uid: 6661
components:
- - pos: 73.5,-37.5
+ - pos: 72.5,-37.5
parent: 2
type: Transform
- uid: 6662
components:
- - pos: 73.5,-36.5
+ - pos: 73.5,-37.5
parent: 2
type: Transform
- uid: 6663
components:
- - pos: 73.5,-35.5
+ - pos: 73.5,-36.5
parent: 2
type: Transform
- uid: 6664
components:
- - pos: 69.5,-33.5
+ - pos: 73.5,-35.5
parent: 2
type: Transform
- uid: 6665
components:
- - pos: 68.5,-33.5
+ - pos: 69.5,-33.5
parent: 2
type: Transform
- uid: 6666
components:
- - pos: 67.5,-33.5
+ - pos: 68.5,-33.5
parent: 2
type: Transform
- uid: 6667
components:
- - pos: 66.5,-33.5
+ - pos: 67.5,-33.5
parent: 2
type: Transform
- uid: 6668
components:
- - pos: 65.5,-33.5
+ - pos: 66.5,-33.5
parent: 2
type: Transform
- uid: 6669
components:
- - pos: 62.5,-30.5
+ - pos: 65.5,-33.5
parent: 2
type: Transform
- uid: 6670
components:
- - pos: 65.5,-32.5
+ - pos: 62.5,-30.5
parent: 2
type: Transform
- uid: 6671
components:
- - pos: -21.5,-61.5
+ - pos: 65.5,-32.5
parent: 2
type: Transform
- uid: 6672
components:
- - pos: -16.5,-15.5
+ - pos: -21.5,-61.5
parent: 2
type: Transform
- uid: 6673
components:
- - pos: 70.5,-37.5
+ - pos: -16.5,-15.5
parent: 2
type: Transform
- uid: 6674
components:
- - pos: 69.5,-37.5
+ - pos: 70.5,-37.5
parent: 2
type: Transform
- uid: 6675
components:
- - pos: 68.5,-37.5
+ - pos: 69.5,-37.5
parent: 2
type: Transform
- uid: 6676
components:
- - pos: 67.5,-37.5
+ - pos: 68.5,-37.5
parent: 2
type: Transform
- uid: 6677
components:
- - pos: 67.5,-38.5
+ - pos: 67.5,-37.5
parent: 2
type: Transform
- uid: 6678
components:
- - pos: 54.5,10.5
+ - pos: 67.5,-38.5
parent: 2
type: Transform
- uid: 6679
components:
- - pos: -71.5,-29.5
+ - pos: 54.5,10.5
parent: 2
type: Transform
- uid: 6680
components:
- - pos: -55.5,-62.5
+ - pos: -71.5,-29.5
parent: 2
type: Transform
- uid: 6681
components:
- - pos: -54.5,-62.5
+ - pos: -55.5,-62.5
parent: 2
type: Transform
- uid: 6682
components:
- - pos: -53.5,-62.5
+ - pos: -54.5,-62.5
parent: 2
type: Transform
- uid: 6683
components:
- - pos: -54.5,-58.5
+ - pos: -53.5,-62.5
parent: 2
type: Transform
- uid: 6684
components:
- - pos: -53.5,-58.5
+ - pos: -54.5,-58.5
parent: 2
type: Transform
- uid: 6685
components:
- - pos: -52.5,-58.5
+ - pos: -53.5,-58.5
parent: 2
type: Transform
- uid: 6686
components:
- - pos: -51.5,-58.5
+ - pos: -52.5,-58.5
parent: 2
type: Transform
- uid: 6687
components:
- - pos: -56.5,-61.5
+ - pos: -51.5,-58.5
parent: 2
type: Transform
- uid: 6688
components:
- - pos: -54.5,-63.5
+ - pos: -56.5,-61.5
parent: 2
type: Transform
- uid: 6689
components:
- - pos: 72.5,-31.5
+ - pos: -54.5,-63.5
parent: 2
type: Transform
- uid: 6690
components:
- - pos: 72.5,-30.5
+ - pos: 72.5,-31.5
parent: 2
type: Transform
- uid: 6691
components:
- - pos: 72.5,-29.5
+ - pos: 72.5,-30.5
parent: 2
type: Transform
- uid: 6692
components:
- - pos: 72.5,-28.5
+ - pos: 72.5,-29.5
parent: 2
type: Transform
- uid: 6693
components:
- - pos: -53.5,-63.5
+ - pos: 72.5,-28.5
parent: 2
type: Transform
- uid: 6694
components:
- - pos: 56.5,34.5
+ - pos: -53.5,-63.5
parent: 2
type: Transform
- uid: 6695
components:
- - pos: -71.5,-30.5
+ - pos: 56.5,34.5
parent: 2
type: Transform
- uid: 6696
components:
- - pos: 6.5,-42.5
+ - pos: -71.5,-30.5
parent: 2
type: Transform
- uid: 6697
components:
- - pos: 7.5,-42.5
+ - pos: 6.5,-42.5
parent: 2
type: Transform
- uid: 6698
components:
- - pos: 9.5,-40.5
+ - pos: 7.5,-42.5
parent: 2
type: Transform
- uid: 6699
components:
- - pos: 9.5,-39.5
+ - pos: 9.5,-40.5
parent: 2
type: Transform
- uid: 6700
components:
- - pos: 8.5,-39.5
+ - pos: 9.5,-39.5
parent: 2
type: Transform
- uid: 6701
components:
- - pos: 8.5,-38.5
+ - pos: 8.5,-39.5
parent: 2
type: Transform
- uid: 6702
components:
- - pos: 8.5,-37.5
+ - pos: 8.5,-38.5
parent: 2
type: Transform
- uid: 6703
components:
- - pos: 8.5,-36.5
+ - pos: 8.5,-37.5
parent: 2
type: Transform
- uid: 6704
components:
- - pos: 8.5,-35.5
+ - pos: 8.5,-36.5
parent: 2
type: Transform
- uid: 6705
components:
- - pos: 8.5,-34.5
+ - pos: 8.5,-35.5
parent: 2
type: Transform
- uid: 6706
components:
- - pos: 8.5,-33.5
+ - pos: 8.5,-34.5
parent: 2
type: Transform
- uid: 6707
components:
- - pos: 8.5,-32.5
+ - pos: 8.5,-33.5
parent: 2
type: Transform
- uid: 6708
components:
- - pos: 8.5,-31.5
+ - pos: 8.5,-32.5
parent: 2
type: Transform
- uid: 6709
components:
- - pos: 8.5,-30.5
+ - pos: 8.5,-31.5
parent: 2
type: Transform
- uid: 6710
components:
- - pos: 8.5,-29.5
+ - pos: 8.5,-30.5
parent: 2
type: Transform
- uid: 6711
components:
- - pos: 9.5,-29.5
+ - pos: 8.5,-29.5
parent: 2
type: Transform
- uid: 6712
components:
- - pos: 10.5,-29.5
+ - pos: 9.5,-29.5
parent: 2
type: Transform
- uid: 6713
components:
- - pos: 11.5,-29.5
+ - pos: 10.5,-29.5
parent: 2
type: Transform
- uid: 6714
components:
- - pos: 7.5,-36.5
+ - pos: 11.5,-29.5
parent: 2
type: Transform
- uid: 6715
components:
- - pos: 6.5,-36.5
+ - pos: 7.5,-36.5
parent: 2
type: Transform
- uid: 6716
components:
- - pos: 6.5,-35.5
+ - pos: 6.5,-36.5
parent: 2
type: Transform
- uid: 6717
components:
- - pos: 6.5,-34.5
+ - pos: 6.5,-35.5
parent: 2
type: Transform
- uid: 6718
components:
- - pos: 6.5,-33.5
+ - pos: 6.5,-34.5
parent: 2
type: Transform
- uid: 6719
components:
- - pos: 6.5,-32.5
+ - pos: 6.5,-33.5
parent: 2
type: Transform
- uid: 6720
components:
- - pos: 6.5,-31.5
+ - pos: 6.5,-32.5
parent: 2
type: Transform
- uid: 6721
components:
- - pos: 5.5,-31.5
+ - pos: 6.5,-31.5
parent: 2
type: Transform
- uid: 6722
components:
- - pos: 4.5,-31.5
+ - pos: 5.5,-31.5
parent: 2
type: Transform
- uid: 6723
components:
- - pos: 3.5,-31.5
+ - pos: 4.5,-31.5
parent: 2
type: Transform
- uid: 6724
components:
- - pos: 2.5,-31.5
+ - pos: 3.5,-31.5
parent: 2
type: Transform
- uid: 6725
components:
- - pos: 4.5,-32.5
+ - pos: 2.5,-31.5
parent: 2
type: Transform
- uid: 6726
components:
- - pos: 4.5,-33.5
+ - pos: 4.5,-32.5
parent: 2
type: Transform
- uid: 6727
components:
- - pos: 55.5,-62.5
+ - pos: 4.5,-33.5
parent: 2
type: Transform
- uid: 6728
components:
- - pos: 6.5,-30.5
+ - pos: 55.5,-62.5
parent: 2
type: Transform
- uid: 6729
components:
- - pos: 54.5,-32.5
+ - pos: 6.5,-30.5
parent: 2
type: Transform
- uid: 6730
components:
- - pos: 53.5,-32.5
+ - pos: 54.5,-32.5
parent: 2
type: Transform
- uid: 6731
components:
- - pos: 52.5,-32.5
+ - pos: 53.5,-32.5
parent: 2
type: Transform
- uid: 6732
components:
- - pos: 55.5,-31.5
+ - pos: 52.5,-32.5
parent: 2
type: Transform
- uid: 6733
components:
- - pos: 55.5,-30.5
+ - pos: 55.5,-31.5
parent: 2
type: Transform
- uid: 6734
components:
- - pos: 55.5,-29.5
+ - pos: 55.5,-30.5
parent: 2
type: Transform
- uid: 6735
components:
- - pos: 55.5,-28.5
+ - pos: 55.5,-29.5
parent: 2
type: Transform
- uid: 6736
components:
- - pos: 55.5,-27.5
+ - pos: 55.5,-28.5
parent: 2
type: Transform
- uid: 6737
components:
- - pos: 55.5,-26.5
+ - pos: 55.5,-27.5
parent: 2
type: Transform
- uid: 6738
components:
- - pos: 61.5,-26.5
+ - pos: 55.5,-26.5
parent: 2
type: Transform
- uid: 6739
components:
- - pos: 60.5,-26.5
+ - pos: 61.5,-26.5
parent: 2
type: Transform
- uid: 6740
components:
- - pos: 59.5,-26.5
+ - pos: 60.5,-26.5
parent: 2
type: Transform
- uid: 6741
components:
- - pos: 58.5,-26.5
+ - pos: 59.5,-26.5
parent: 2
type: Transform
- uid: 6742
components:
- - pos: 57.5,-26.5
+ - pos: 58.5,-26.5
parent: 2
type: Transform
- uid: 6743
components:
- - pos: 57.5,-27.5
+ - pos: 57.5,-26.5
parent: 2
type: Transform
- uid: 6744
components:
- - pos: 57.5,-28.5
+ - pos: 57.5,-27.5
parent: 2
type: Transform
- uid: 6745
components:
- - pos: 58.5,-28.5
+ - pos: 57.5,-28.5
parent: 2
type: Transform
- uid: 6746
components:
- - pos: 58.5,-29.5
+ - pos: 58.5,-28.5
parent: 2
type: Transform
- uid: 6747
components:
- - pos: 55.5,-35.5
+ - pos: 58.5,-29.5
parent: 2
type: Transform
- uid: 6748
components:
- - pos: 54.5,-35.5
+ - pos: 55.5,-35.5
parent: 2
type: Transform
- uid: 6749
components:
- - pos: 54.5,-36.5
+ - pos: 54.5,-35.5
parent: 2
type: Transform
- uid: 6750
components:
- - pos: 54.5,-37.5
+ - pos: 54.5,-36.5
parent: 2
type: Transform
- uid: 6751
components:
- - pos: 55.5,-37.5
+ - pos: 54.5,-37.5
parent: 2
type: Transform
- uid: 6752
components:
- - pos: 55.5,-38.5
+ - pos: 55.5,-37.5
parent: 2
type: Transform
- uid: 6753
components:
- - pos: 57.5,-38.5
+ - pos: 55.5,-38.5
parent: 2
type: Transform
- uid: 6754
components:
- - pos: 58.5,-38.5
+ - pos: 57.5,-38.5
parent: 2
type: Transform
- uid: 6755
components:
- - pos: 59.5,-38.5
+ - pos: 58.5,-38.5
parent: 2
type: Transform
- uid: 6756
components:
- - pos: 59.5,-39.5
+ - pos: 59.5,-38.5
parent: 2
type: Transform
- uid: 6757
components:
- - pos: 59.5,-40.5
+ - pos: 59.5,-39.5
parent: 2
type: Transform
- uid: 6758
components:
- - pos: 59.5,-41.5
+ - pos: 59.5,-40.5
parent: 2
type: Transform
- uid: 6759
components:
- - pos: 59.5,-42.5
+ - pos: 59.5,-41.5
parent: 2
type: Transform
- uid: 6760
components:
- - pos: 59.5,-43.5
+ - pos: 59.5,-42.5
parent: 2
type: Transform
- uid: 6761
components:
- - pos: 36.5,-33.5
+ - pos: 59.5,-43.5
parent: 2
type: Transform
- uid: 6762
components:
- - pos: 37.5,-33.5
+ - pos: 36.5,-33.5
parent: 2
type: Transform
- uid: 6763
components:
- - pos: 38.5,-33.5
+ - pos: 37.5,-33.5
parent: 2
type: Transform
- uid: 6764
components:
- - pos: 39.5,-33.5
+ - pos: 38.5,-33.5
parent: 2
type: Transform
- uid: 6765
components:
- - pos: 40.5,-33.5
+ - pos: 39.5,-33.5
parent: 2
type: Transform
- uid: 6766
components:
- - pos: 41.5,-33.5
+ - pos: 40.5,-33.5
parent: 2
type: Transform
- uid: 6767
components:
- - pos: 42.5,-33.5
+ - pos: 41.5,-33.5
parent: 2
type: Transform
- uid: 6768
components:
- - pos: 43.5,-33.5
+ - pos: 42.5,-33.5
parent: 2
type: Transform
- uid: 6769
components:
- - pos: 44.5,-33.5
+ - pos: 43.5,-33.5
parent: 2
type: Transform
- uid: 6770
components:
- - pos: 45.5,-33.5
+ - pos: 44.5,-33.5
parent: 2
type: Transform
- uid: 6771
components:
- - pos: 46.5,-33.5
+ - pos: 45.5,-33.5
parent: 2
type: Transform
- uid: 6772
components:
- - pos: 47.5,-33.5
+ - pos: 46.5,-33.5
parent: 2
type: Transform
- uid: 6773
components:
- - pos: 48.5,-33.5
+ - pos: 47.5,-33.5
parent: 2
type: Transform
- uid: 6774
components:
- - pos: 49.5,-33.5
+ - pos: 48.5,-33.5
parent: 2
type: Transform
- uid: 6775
components:
- - pos: 49.5,-34.5
+ - pos: 49.5,-33.5
parent: 2
type: Transform
- uid: 6776
components:
- - pos: 50.5,-34.5
+ - pos: 49.5,-34.5
parent: 2
type: Transform
- uid: 6777
components:
- - pos: 51.5,-34.5
+ - pos: 50.5,-34.5
parent: 2
type: Transform
- uid: 6778
components:
- - pos: 55.5,-64.5
+ - pos: 51.5,-34.5
parent: 2
type: Transform
- uid: 6779
components:
- - pos: 55.5,-65.5
+ - pos: 55.5,-64.5
parent: 2
type: Transform
- uid: 6780
components:
- - pos: 54.5,-65.5
+ - pos: 55.5,-65.5
parent: 2
type: Transform
- uid: 6781
components:
- - pos: 53.5,-65.5
+ - pos: 54.5,-65.5
parent: 2
type: Transform
- uid: 6782
components:
- - pos: 52.5,-65.5
+ - pos: 53.5,-65.5
parent: 2
type: Transform
- uid: 6783
components:
- - pos: 51.5,-65.5
+ - pos: 52.5,-65.5
parent: 2
type: Transform
- uid: 6784
components:
- - pos: 50.5,-65.5
+ - pos: 51.5,-65.5
parent: 2
type: Transform
- uid: 6785
components:
- - pos: 49.5,-65.5
+ - pos: 50.5,-65.5
parent: 2
type: Transform
- uid: 6786
components:
- - pos: 48.5,-65.5
+ - pos: 49.5,-65.5
parent: 2
type: Transform
- uid: 6787
components:
- - pos: 47.5,-65.5
+ - pos: 48.5,-65.5
parent: 2
type: Transform
- uid: 6788
components:
- - pos: 46.5,-65.5
+ - pos: 47.5,-65.5
parent: 2
type: Transform
- uid: 6789
components:
- - pos: 45.5,-65.5
+ - pos: 46.5,-65.5
parent: 2
type: Transform
- uid: 6790
components:
- - pos: 45.5,-64.5
+ - pos: 45.5,-65.5
parent: 2
type: Transform
- uid: 6791
components:
- - pos: 44.5,-64.5
+ - pos: 45.5,-64.5
parent: 2
type: Transform
- uid: 6792
components:
- - pos: 43.5,-64.5
+ - pos: 44.5,-64.5
parent: 2
type: Transform
- uid: 6793
components:
- - pos: 45.5,-63.5
+ - pos: 43.5,-64.5
parent: 2
type: Transform
- uid: 6794
components:
- - pos: 43.5,-63.5
+ - pos: 45.5,-63.5
parent: 2
type: Transform
- uid: 6795
components:
- - pos: 56.5,-65.5
+ - pos: 43.5,-63.5
parent: 2
type: Transform
- uid: 6796
components:
- - pos: 57.5,-65.5
+ - pos: 56.5,-65.5
parent: 2
type: Transform
- uid: 6797
components:
- - pos: 58.5,-65.5
+ - pos: 57.5,-65.5
parent: 2
type: Transform
- uid: 6798
components:
- - pos: 59.5,-65.5
+ - pos: 58.5,-65.5
parent: 2
type: Transform
- uid: 6799
components:
- - pos: 60.5,-65.5
+ - pos: 59.5,-65.5
parent: 2
type: Transform
- uid: 6800
components:
- - pos: 61.5,-65.5
+ - pos: 60.5,-65.5
parent: 2
type: Transform
- uid: 6801
components:
- - pos: 61.5,-66.5
+ - pos: 61.5,-65.5
parent: 2
type: Transform
- uid: 6802
components:
- - pos: 61.5,-67.5
+ - pos: 61.5,-66.5
parent: 2
type: Transform
- uid: 6803
components:
- - pos: 61.5,-68.5
+ - pos: 61.5,-67.5
parent: 2
type: Transform
- uid: 6804
components:
- - pos: 62.5,-65.5
+ - pos: 61.5,-68.5
parent: 2
type: Transform
- uid: 6805
components:
- - pos: 63.5,-65.5
+ - pos: 62.5,-65.5
parent: 2
type: Transform
- uid: 6806
components:
- - pos: 64.5,-65.5
+ - pos: 63.5,-65.5
parent: 2
type: Transform
- uid: 6807
components:
- - pos: 65.5,-65.5
+ - pos: 64.5,-65.5
parent: 2
type: Transform
- uid: 6808
components:
- - pos: 66.5,-65.5
+ - pos: 65.5,-65.5
parent: 2
type: Transform
- uid: 6809
components:
- - pos: 61.5,-64.5
+ - pos: 66.5,-65.5
parent: 2
type: Transform
- uid: 6810
components:
- - pos: 61.5,-63.5
+ - pos: 61.5,-64.5
parent: 2
type: Transform
- uid: 6811
components:
- - pos: 61.5,-62.5
+ - pos: 61.5,-63.5
parent: 2
type: Transform
- uid: 6812
components:
- - pos: 62.5,-62.5
+ - pos: 61.5,-62.5
parent: 2
type: Transform
- uid: 6813
components:
- - pos: 60.5,-63.5
+ - pos: 62.5,-62.5
parent: 2
type: Transform
- uid: 6814
components:
- - pos: 59.5,-63.5
+ - pos: 60.5,-63.5
parent: 2
type: Transform
- uid: 6815
components:
- - pos: 57.5,-34.5
+ - pos: 59.5,-63.5
parent: 2
type: Transform
- uid: 6816
components:
- - pos: 67.5,-65.5
+ - pos: 57.5,-34.5
parent: 2
type: Transform
- uid: 6817
components:
- - pos: 68.5,-65.5
+ - pos: 67.5,-65.5
parent: 2
type: Transform
- uid: 6818
components:
- - pos: 68.5,-66.5
+ - pos: 68.5,-65.5
parent: 2
type: Transform
- uid: 6819
components:
- - pos: 68.5,-67.5
+ - pos: 68.5,-66.5
parent: 2
type: Transform
- uid: 6820
components:
- - pos: 68.5,-68.5
+ - pos: 68.5,-67.5
parent: 2
type: Transform
- uid: 6821
components:
- - pos: 68.5,-69.5
+ - pos: 68.5,-68.5
parent: 2
type: Transform
- uid: 6822
components:
- - pos: 68.5,-70.5
+ - pos: 68.5,-69.5
parent: 2
type: Transform
- uid: 6823
components:
- - pos: 68.5,-71.5
+ - pos: 68.5,-70.5
parent: 2
type: Transform
- uid: 6824
components:
- - pos: 69.5,-71.5
+ - pos: 68.5,-71.5
parent: 2
type: Transform
- uid: 6825
components:
- - pos: 70.5,-71.5
+ - pos: 69.5,-71.5
parent: 2
type: Transform
- uid: 6826
components:
- - pos: 71.5,-71.5
+ - pos: 70.5,-71.5
parent: 2
type: Transform
- uid: 6827
components:
- - pos: 72.5,-71.5
+ - pos: 71.5,-71.5
parent: 2
type: Transform
- uid: 6828
components:
- - pos: 72.5,-70.5
+ - pos: 72.5,-71.5
parent: 2
type: Transform
- uid: 6829
components:
- - pos: 72.5,-69.5
+ - pos: 72.5,-70.5
parent: 2
type: Transform
- uid: 6830
components:
- - pos: 73.5,-69.5
+ - pos: 72.5,-69.5
parent: 2
type: Transform
- uid: 6831
components:
- - pos: 74.5,-69.5
+ - pos: 73.5,-69.5
parent: 2
type: Transform
- uid: 6832
components:
- - pos: 74.5,-68.5
+ - pos: 74.5,-69.5
parent: 2
type: Transform
- uid: 6833
components:
- - pos: 74.5,-67.5
+ - pos: 74.5,-68.5
parent: 2
type: Transform
- uid: 6834
components:
- - pos: 74.5,-66.5
+ - pos: 74.5,-67.5
parent: 2
type: Transform
- uid: 6835
components:
- - pos: 74.5,-65.5
+ - pos: 74.5,-66.5
parent: 2
type: Transform
- uid: 6836
components:
- - pos: 74.5,-64.5
+ - pos: 74.5,-65.5
parent: 2
type: Transform
- uid: 6837
components:
- - pos: 74.5,-63.5
+ - pos: 74.5,-64.5
parent: 2
type: Transform
- uid: 6838
components:
- - pos: 68.5,-64.5
+ - pos: 74.5,-63.5
parent: 2
type: Transform
- uid: 6839
components:
- - pos: 68.5,-63.5
+ - pos: 68.5,-64.5
parent: 2
type: Transform
- uid: 6840
components:
- - pos: 68.5,-62.5
+ - pos: 68.5,-63.5
parent: 2
type: Transform
- uid: 6841
components:
- - pos: 68.5,-61.5
+ - pos: 68.5,-62.5
parent: 2
type: Transform
- uid: 6842
components:
- - pos: 69.5,-61.5
+ - pos: 68.5,-61.5
parent: 2
type: Transform
- uid: 6843
components:
- - pos: 70.5,-61.5
+ - pos: 69.5,-61.5
parent: 2
type: Transform
- uid: 6844
components:
- - pos: 71.5,-61.5
+ - pos: 70.5,-61.5
parent: 2
type: Transform
- uid: 6845
components:
- - pos: 71.5,-60.5
+ - pos: 71.5,-61.5
parent: 2
type: Transform
- uid: 6846
components:
- - pos: 71.5,-59.5
+ - pos: 71.5,-60.5
parent: 2
type: Transform
- uid: 6847
components:
- - pos: 71.5,-58.5
+ - pos: 71.5,-59.5
parent: 2
type: Transform
- uid: 6848
components:
- - pos: 71.5,-57.5
+ - pos: 71.5,-58.5
parent: 2
type: Transform
- uid: 6849
components:
- - pos: 72.5,-57.5
+ - pos: 71.5,-57.5
parent: 2
type: Transform
- uid: 6850
components:
- - pos: 73.5,-57.5
+ - pos: 72.5,-57.5
parent: 2
type: Transform
- uid: 6851
components:
- - pos: 74.5,-57.5
+ - pos: 73.5,-57.5
parent: 2
type: Transform
- uid: 6852
components:
- - pos: 74.5,-56.5
+ - pos: 74.5,-57.5
parent: 2
type: Transform
- uid: 6853
components:
- - pos: 74.5,-55.5
+ - pos: 74.5,-56.5
parent: 2
type: Transform
- uid: 6854
components:
- - pos: 75.5,-55.5
+ - pos: 74.5,-55.5
parent: 2
type: Transform
- uid: 6855
components:
- - pos: 75.5,-54.5
+ - pos: 75.5,-55.5
parent: 2
type: Transform
- uid: 6856
components:
- - pos: 75.5,-53.5
+ - pos: 75.5,-54.5
parent: 2
type: Transform
- uid: 6857
components:
- - pos: 75.5,-52.5
+ - pos: 75.5,-53.5
parent: 2
type: Transform
- uid: 6858
components:
- - pos: 56.5,-38.5
+ - pos: 75.5,-52.5
parent: 2
type: Transform
- uid: 6859
components:
- - pos: 55.5,-66.5
+ - pos: 56.5,-38.5
parent: 2
type: Transform
- uid: 6860
components:
- - pos: 71.5,-44.5
+ - pos: 55.5,-66.5
parent: 2
type: Transform
- uid: 6861
components:
- - pos: 71.5,-43.5
+ - pos: 71.5,-44.5
parent: 2
type: Transform
- uid: 6862
components:
- - pos: 71.5,-42.5
+ - pos: 71.5,-43.5
parent: 2
type: Transform
- uid: 6863
components:
- - pos: 61.5,-48.5
+ - pos: 71.5,-42.5
parent: 2
type: Transform
- uid: 6864
components:
- - pos: 60.5,-48.5
+ - pos: 61.5,-48.5
parent: 2
type: Transform
- uid: 6865
components:
- - pos: 59.5,-48.5
+ - pos: 60.5,-48.5
parent: 2
type: Transform
- uid: 6866
components:
- - pos: 58.5,-48.5
+ - pos: 59.5,-48.5
parent: 2
type: Transform
- uid: 6867
components:
- - pos: 57.5,-48.5
+ - pos: 58.5,-48.5
parent: 2
type: Transform
- uid: 6868
components:
- - pos: 56.5,-48.5
+ - pos: 57.5,-48.5
parent: 2
type: Transform
- uid: 6869
components:
- - pos: 55.5,-48.5
+ - pos: 56.5,-48.5
parent: 2
type: Transform
- uid: 6870
components:
- - pos: 54.5,-48.5
+ - pos: 55.5,-48.5
parent: 2
type: Transform
- uid: 6871
components:
- - pos: 43.5,-39.5
+ - pos: 54.5,-48.5
parent: 2
type: Transform
- uid: 6872
components:
- - pos: 43.5,-40.5
+ - pos: 43.5,-39.5
parent: 2
type: Transform
- uid: 6873
components:
- - pos: 43.5,-41.5
+ - pos: 43.5,-40.5
parent: 2
type: Transform
- uid: 6874
components:
- - pos: 19.5,-51.5
+ - pos: 43.5,-41.5
parent: 2
type: Transform
- uid: 6875
components:
- - pos: 16.5,10.5
+ - pos: 19.5,-51.5
parent: 2
type: Transform
- uid: 6876
components:
- - pos: 16.5,9.5
+ - pos: 16.5,10.5
parent: 2
type: Transform
- uid: 6877
components:
- - pos: 43.5,10.5
+ - pos: 16.5,9.5
parent: 2
type: Transform
- uid: 6878
components:
- - pos: 47.5,5.5
+ - pos: 43.5,10.5
parent: 2
type: Transform
- uid: 6879
components:
- - pos: 58.5,6.5
+ - pos: 47.5,5.5
parent: 2
type: Transform
- uid: 6880
components:
- - pos: 59.5,6.5
+ - pos: 58.5,6.5
parent: 2
type: Transform
- uid: 6881
components:
- - pos: 12.5,-84.5
+ - pos: 59.5,6.5
parent: 2
type: Transform
- uid: 6882
components:
- - pos: 12.5,-82.5
+ - pos: 12.5,-84.5
parent: 2
type: Transform
- uid: 6883
components:
- - pos: -15.5,24.5
+ - pos: 12.5,-82.5
parent: 2
type: Transform
- uid: 6884
components:
- - pos: 48.5,-92.5
+ - pos: -15.5,24.5
parent: 2
type: Transform
- uid: 6885
components:
- - pos: 48.5,-93.5
+ - pos: 48.5,-92.5
parent: 2
type: Transform
- uid: 6886
components:
- - pos: 48.5,-76.5
+ - pos: 48.5,-93.5
parent: 2
type: Transform
- uid: 6887
components:
- - pos: 46.5,-89.5
+ - pos: 48.5,-76.5
parent: 2
type: Transform
- uid: 6888
components:
- - pos: 47.5,-89.5
+ - pos: 46.5,-89.5
parent: 2
type: Transform
- uid: 6889
components:
- - pos: 43.5,9.5
+ - pos: 47.5,-89.5
parent: 2
type: Transform
- uid: 6890
components:
- - pos: 43.5,8.5
+ - pos: 43.5,9.5
parent: 2
type: Transform
- uid: 6891
components:
- - pos: 43.5,7.5
+ - pos: 43.5,8.5
parent: 2
type: Transform
- uid: 6892
components:
- - pos: -11.5,-18.5
+ - pos: 43.5,7.5
parent: 2
type: Transform
- uid: 6893
components:
- - pos: -11.5,-17.5
+ - pos: -11.5,-18.5
parent: 2
type: Transform
- uid: 6894
components:
- - pos: -11.5,-16.5
+ - pos: -11.5,-17.5
parent: 2
type: Transform
- uid: 6895
components:
- - pos: -11.5,-15.5
+ - pos: -11.5,-16.5
parent: 2
type: Transform
- uid: 6896
components:
- - pos: -11.5,-14.5
+ - pos: -11.5,-15.5
parent: 2
type: Transform
- uid: 6897
components:
- - pos: -11.5,-13.5
+ - pos: -11.5,-14.5
parent: 2
type: Transform
- uid: 6898
components:
- - pos: -11.5,-12.5
+ - pos: -11.5,-13.5
parent: 2
type: Transform
- uid: 6899
components:
- - pos: -11.5,-11.5
+ - pos: -11.5,-12.5
parent: 2
type: Transform
- uid: 6900
components:
- - pos: -11.5,-10.5
+ - pos: -11.5,-11.5
parent: 2
type: Transform
- uid: 6901
components:
- - pos: -12.5,-10.5
+ - pos: -11.5,-10.5
parent: 2
type: Transform
- uid: 6902
components:
- - pos: -13.5,-10.5
+ - pos: -12.5,-10.5
parent: 2
type: Transform
- uid: 6903
components:
- - pos: -14.5,-10.5
+ - pos: -13.5,-10.5
parent: 2
type: Transform
- uid: 6904
components:
- - pos: -13.5,-14.5
+ - pos: -14.5,-10.5
parent: 2
type: Transform
- uid: 6905
components:
- - pos: -14.5,-14.5
+ - pos: -13.5,-14.5
parent: 2
type: Transform
- uid: 6906
components:
- - pos: -15.5,-14.5
+ - pos: -14.5,-14.5
parent: 2
type: Transform
- uid: 6907
components:
- - pos: -16.5,-14.5
+ - pos: -15.5,-14.5
parent: 2
type: Transform
- uid: 6908
components:
- - pos: -10.5,-14.5
+ - pos: -16.5,-14.5
parent: 2
type: Transform
- uid: 6909
components:
- - pos: -9.5,-14.5
+ - pos: -10.5,-14.5
parent: 2
type: Transform
- uid: 6910
components:
- - pos: -8.5,-14.5
+ - pos: -9.5,-14.5
parent: 2
type: Transform
- uid: 6911
components:
- - pos: -8.5,-13.5
+ - pos: -8.5,-14.5
parent: 2
type: Transform
- uid: 6912
components:
- - pos: -7.5,-13.5
+ - pos: -8.5,-13.5
parent: 2
type: Transform
- uid: 6913
components:
- - pos: -7.5,-12.5
+ - pos: -7.5,-13.5
parent: 2
type: Transform
- uid: 6914
components:
- - pos: -7.5,-11.5
+ - pos: -7.5,-12.5
parent: 2
type: Transform
- uid: 6915
components:
- - pos: -7.5,-10.5
+ - pos: -7.5,-11.5
parent: 2
type: Transform
- uid: 6916
components:
- - pos: -8.5,-9.5
+ - pos: -7.5,-10.5
parent: 2
type: Transform
- uid: 6917
components:
- - pos: -7.5,-9.5
+ - pos: -8.5,-9.5
parent: 2
type: Transform
- uid: 6918
components:
- - pos: -9.5,-9.5
+ - pos: -7.5,-9.5
parent: 2
type: Transform
- uid: 6919
components:
- - pos: -10.5,-9.5
+ - pos: -9.5,-9.5
parent: 2
type: Transform
- uid: 6920
components:
- - pos: -11.5,-9.5
+ - pos: -10.5,-9.5
parent: 2
type: Transform
- uid: 6921
components:
- - pos: -12.5,-9.5
+ - pos: -11.5,-9.5
parent: 2
type: Transform
- uid: 6922
components:
- - pos: -13.5,-9.5
+ - pos: -12.5,-9.5
parent: 2
type: Transform
- uid: 6923
components:
- - pos: -14.5,-9.5
+ - pos: -13.5,-9.5
parent: 2
type: Transform
- uid: 6924
components:
- - pos: -15.5,-9.5
+ - pos: -14.5,-9.5
parent: 2
type: Transform
- uid: 6925
components:
- - pos: -42.5,17.5
+ - pos: -15.5,-9.5
parent: 2
type: Transform
- uid: 6926
components:
- - pos: -5.5,-19.5
+ - pos: -42.5,17.5
parent: 2
type: Transform
- uid: 6927
components:
- - pos: -6.5,-19.5
+ - pos: -5.5,-19.5
parent: 2
type: Transform
- uid: 6928
components:
- - pos: -7.5,-19.5
+ - pos: -9.5,-18.5
parent: 2
type: Transform
- uid: 6929
@@ -49554,12916 +49607,13026 @@ entities:
- pos: -30.5,-7.5
parent: 2
type: Transform
-- proto: CableApcStack
- entities:
- uid: 7362
components:
- - pos: -22.574043,-20.541626
+ - pos: 1.5,-12.5
parent: 2
type: Transform
- uid: 7363
components:
- - pos: -11.530048,37.577045
+ - pos: -3.5,-14.5
parent: 2
type: Transform
- uid: 7364
components:
- - pos: 77.47492,-43.4493
+ - pos: -7.5,-18.5
parent: 2
type: Transform
- uid: 7365
components:
- - pos: -66.46611,-34.373695
+ - pos: -8.5,-18.5
parent: 2
type: Transform
-- proto: CableApcStack1
- entities:
- uid: 7366
components:
- - rot: 3.141592653589793 rad
- pos: 55.427982,45.52066
+ - pos: 0.5,-12.5
parent: 2
type: Transform
- uid: 7367
components:
- - rot: 3.141592653589793 rad
- pos: 38.439327,47.51809
+ - pos: -27.5,-20.5
parent: 2
type: Transform
- uid: 7368
components:
- - pos: -14.8449135,-96.398895
+ - pos: -29.5,-20.5
parent: 2
type: Transform
- uid: 7369
components:
- - pos: 57.114487,42.493305
+ - pos: -28.5,-20.5
parent: 2
type: Transform
+- proto: CableApcStack
+ entities:
- uid: 7370
components:
- - pos: -14.677503,-33.453545
+ - pos: -22.574043,-20.541626
parent: 2
type: Transform
-- proto: CableHV
- entities:
- uid: 7371
components:
- - pos: -79.5,-38.5
+ - pos: -11.530048,37.577045
parent: 2
type: Transform
- uid: 7372
components:
- - pos: 15.5,-28.5
+ - pos: 77.47492,-43.4493
parent: 2
type: Transform
- uid: 7373
components:
- - pos: 7.5,-26.5
+ - pos: -66.46611,-34.373695
parent: 2
type: Transform
+- proto: CableApcStack1
+ entities:
- uid: 7374
components:
- - pos: 27.5,-42.5
+ - rot: 3.141592653589793 rad
+ pos: 55.427982,45.52066
parent: 2
type: Transform
- uid: 7375
components:
- - pos: 8.5,-95.5
+ - rot: 3.141592653589793 rad
+ pos: 38.439327,47.51809
parent: 2
type: Transform
- uid: 7376
components:
- - pos: -1.5,-66.5
+ - pos: -14.8449135,-96.398895
parent: 2
type: Transform
- uid: 7377
components:
- - pos: 15.5,-33.5
+ - pos: 57.114487,42.493305
parent: 2
type: Transform
- uid: 7378
components:
- - pos: 12.5,-26.5
+ - pos: -14.677503,-33.453545
parent: 2
type: Transform
+- proto: CableHV
+ entities:
- uid: 7379
components:
- - pos: -11.5,-26.5
+ - pos: -79.5,-38.5
parent: 2
type: Transform
- uid: 7380
components:
- - pos: 2.5,-42.5
+ - pos: 15.5,-28.5
parent: 2
type: Transform
- uid: 7381
components:
- - pos: 6.5,-42.5
+ - pos: 7.5,-26.5
parent: 2
type: Transform
- uid: 7382
components:
- - pos: 0.5,-42.5
+ - pos: 27.5,-42.5
parent: 2
type: Transform
- uid: 7383
components:
- - pos: 4.5,-42.5
+ - pos: 8.5,-95.5
parent: 2
type: Transform
- uid: 7384
components:
- - pos: -5.5,-39.5
+ - pos: -1.5,-66.5
parent: 2
type: Transform
- uid: 7385
components:
- - pos: 8.5,-55.5
+ - pos: 15.5,-33.5
parent: 2
type: Transform
- uid: 7386
components:
- - pos: -1.5,-42.5
+ - pos: 12.5,-26.5
parent: 2
type: Transform
- uid: 7387
components:
- - pos: -1.5,-26.5
+ - pos: -11.5,-26.5
parent: 2
type: Transform
- uid: 7388
components:
- - pos: 15.5,-26.5
+ - pos: 2.5,-42.5
parent: 2
type: Transform
- uid: 7389
components:
- - pos: -1.5,-64.5
+ - pos: 6.5,-42.5
parent: 2
type: Transform
- uid: 7390
components:
- - pos: -12.5,-75.5
+ - pos: 0.5,-42.5
parent: 2
type: Transform
- uid: 7391
components:
- - pos: 32.5,-42.5
+ - pos: 4.5,-42.5
parent: 2
type: Transform
- uid: 7392
components:
- - pos: 14.5,-46.5
+ - pos: -5.5,-39.5
parent: 2
type: Transform
- uid: 7393
components:
- - pos: 21.5,-42.5
+ - pos: 8.5,-55.5
parent: 2
type: Transform
- uid: 7394
components:
- - pos: 38.5,-30.5
+ - pos: -1.5,-42.5
parent: 2
type: Transform
- uid: 7395
components:
- - pos: -12.5,-71.5
+ - pos: -1.5,-26.5
parent: 2
type: Transform
- uid: 7396
components:
- - pos: 4.5,-16.5
+ - pos: 15.5,-26.5
parent: 2
type: Transform
- uid: 7397
components:
- - pos: 3.5,-16.5
+ - pos: -1.5,-64.5
parent: 2
type: Transform
- uid: 7398
components:
- - pos: 2.5,-16.5
+ - pos: -12.5,-75.5
parent: 2
type: Transform
- uid: 7399
components:
- - pos: 1.5,-16.5
+ - pos: 32.5,-42.5
parent: 2
type: Transform
- uid: 7400
components:
- - pos: 1.5,-17.5
+ - pos: 14.5,-46.5
parent: 2
type: Transform
- uid: 7401
components:
- - pos: 0.5,-17.5
+ - pos: 21.5,-42.5
parent: 2
type: Transform
- uid: 7402
components:
- - pos: 39.5,-28.5
+ - pos: 38.5,-30.5
parent: 2
type: Transform
- uid: 7403
components:
- - pos: 25.5,-42.5
+ - pos: -12.5,-71.5
parent: 2
type: Transform
- uid: 7404
components:
- - pos: 24.5,-42.5
+ - pos: 4.5,-16.5
parent: 2
type: Transform
- uid: 7405
components:
- - pos: 23.5,-42.5
+ - pos: 3.5,-16.5
parent: 2
type: Transform
- uid: 7406
components:
- - pos: 22.5,-42.5
+ - pos: 2.5,-16.5
parent: 2
type: Transform
- uid: 7407
components:
- - pos: 25.5,-10.5
+ - pos: 1.5,-16.5
parent: 2
type: Transform
- uid: 7408
components:
- - pos: 24.5,-5.5
+ - pos: 1.5,-17.5
parent: 2
type: Transform
- uid: 7409
components:
- - pos: 12.5,-42.5
+ - pos: 0.5,-17.5
parent: 2
type: Transform
- uid: 7410
components:
- - pos: -14.5,34.5
+ - pos: 39.5,-28.5
parent: 2
type: Transform
- uid: 7411
components:
- - pos: 8.5,-16.5
+ - pos: 25.5,-42.5
parent: 2
type: Transform
- uid: 7412
components:
- - pos: 4.5,-14.5
+ - pos: 24.5,-42.5
parent: 2
type: Transform
- uid: 7413
components:
- - pos: -4.5,-18.5
+ - pos: 23.5,-42.5
parent: 2
type: Transform
- uid: 7414
components:
- - pos: 5.5,-92.5
+ - pos: 22.5,-42.5
parent: 2
type: Transform
- uid: 7415
components:
- - pos: 4.5,-92.5
+ - pos: 25.5,-10.5
parent: 2
type: Transform
- uid: 7416
components:
- - pos: 2.5,-92.5
+ - pos: 24.5,-5.5
parent: 2
type: Transform
- uid: 7417
components:
- - pos: 12.5,-49.5
+ - pos: 12.5,-42.5
parent: 2
type: Transform
- uid: 7418
components:
- - pos: 10.5,-49.5
+ - pos: -14.5,34.5
parent: 2
type: Transform
- uid: 7419
components:
- - pos: 9.5,-52.5
+ - pos: 8.5,-16.5
parent: 2
type: Transform
- uid: 7420
components:
- - pos: 8.5,-54.5
+ - pos: 4.5,-14.5
parent: 2
type: Transform
- uid: 7421
components:
- - pos: 8.5,-53.5
+ - pos: -4.5,-18.5
parent: 2
type: Transform
- uid: 7422
components:
- - pos: 10.5,-55.5
+ - pos: 5.5,-92.5
parent: 2
type: Transform
- uid: 7423
components:
- - pos: 11.5,-55.5
+ - pos: 4.5,-92.5
parent: 2
type: Transform
- uid: 7424
components:
- - pos: 12.5,-56.5
+ - pos: 2.5,-92.5
parent: 2
type: Transform
- uid: 7425
components:
- - pos: 14.5,-57.5
+ - pos: 12.5,-49.5
parent: 2
type: Transform
- uid: 7426
components:
- - pos: 14.5,-58.5
+ - pos: 10.5,-49.5
parent: 2
type: Transform
- uid: 7427
components:
- - pos: 39.5,-29.5
+ - pos: 9.5,-52.5
parent: 2
type: Transform
- uid: 7428
components:
- - pos: 36.5,-30.5
+ - pos: 8.5,-54.5
parent: 2
type: Transform
- uid: 7429
components:
- - pos: 10.5,-92.5
+ - pos: 8.5,-53.5
parent: 2
type: Transform
- uid: 7430
components:
- - pos: -11.5,-75.5
+ - pos: 10.5,-55.5
parent: 2
type: Transform
- uid: 7431
components:
- - pos: 6.5,-92.5
+ - pos: 11.5,-55.5
parent: 2
type: Transform
- uid: 7432
components:
- - pos: -7.5,-75.5
+ - pos: 12.5,-56.5
parent: 2
type: Transform
- uid: 7433
components:
- - pos: -5.5,-75.5
+ - pos: 14.5,-57.5
parent: 2
type: Transform
- uid: 7434
components:
- - pos: 25.5,-49.5
+ - pos: 14.5,-58.5
parent: 2
type: Transform
- uid: 7435
components:
- - pos: 0.5,-89.5
+ - pos: 39.5,-29.5
parent: 2
type: Transform
- uid: 7436
components:
- - pos: -0.5,-89.5
+ - pos: 36.5,-30.5
parent: 2
type: Transform
- uid: 7437
components:
- - pos: -1.5,-89.5
+ - pos: 10.5,-92.5
parent: 2
type: Transform
- uid: 7438
components:
- - pos: -1.5,-88.5
+ - pos: -11.5,-75.5
parent: 2
type: Transform
- uid: 7439
components:
- - pos: -1.5,-87.5
+ - pos: 6.5,-92.5
parent: 2
type: Transform
- uid: 7440
components:
- - pos: 14.5,-98.5
+ - pos: -7.5,-75.5
parent: 2
type: Transform
- uid: 7441
components:
- - pos: 12.5,-95.5
+ - pos: -5.5,-75.5
parent: 2
type: Transform
- uid: 7442
components:
- - pos: -4.5,-22.5
+ - pos: 25.5,-49.5
parent: 2
type: Transform
- uid: 7443
components:
- - pos: 10.5,-95.5
+ - pos: 0.5,-89.5
parent: 2
type: Transform
- uid: 7444
components:
- - pos: 15.5,-37.5
+ - pos: -0.5,-89.5
parent: 2
type: Transform
- uid: 7445
components:
- - pos: -15.5,-71.5
+ - pos: -1.5,-89.5
parent: 2
type: Transform
- uid: 7446
components:
- - pos: 35.5,-40.5
+ - pos: -1.5,-88.5
parent: 2
type: Transform
- uid: 7447
components:
- - pos: 13.5,-45.5
+ - pos: -1.5,-87.5
parent: 2
type: Transform
- uid: 7448
components:
- - pos: -4.5,-25.5
+ - pos: 14.5,-98.5
parent: 2
type: Transform
- uid: 7449
components:
- - pos: -5.5,-30.5
+ - pos: 12.5,-95.5
parent: 2
type: Transform
- uid: 7450
components:
- - pos: 6.5,-26.5
+ - pos: -4.5,-22.5
parent: 2
type: Transform
- uid: 7451
components:
- - pos: 5.5,-26.5
+ - pos: 10.5,-95.5
parent: 2
type: Transform
- uid: 7452
components:
- - pos: 3.5,-26.5
+ - pos: 15.5,-37.5
parent: 2
type: Transform
- uid: 7453
components:
- - pos: 2.5,-26.5
+ - pos: -15.5,-71.5
parent: 2
type: Transform
- uid: 7454
components:
- - pos: 1.5,-26.5
+ - pos: 35.5,-40.5
parent: 2
type: Transform
- uid: 7455
components:
- - pos: -17.5,-26.5
+ - pos: 13.5,-45.5
parent: 2
type: Transform
- uid: 7456
components:
- - pos: 15.5,-41.5
+ - pos: -4.5,-25.5
parent: 2
type: Transform
- uid: 7457
components:
- - pos: 13.5,-42.5
+ - pos: -5.5,-30.5
parent: 2
type: Transform
- uid: 7458
components:
- - pos: 10.5,-42.5
+ - pos: 6.5,-26.5
parent: 2
type: Transform
- uid: 7459
components:
- - pos: 7.5,-42.5
+ - pos: 5.5,-26.5
parent: 2
type: Transform
- uid: 7460
components:
- - pos: 8.5,-42.5
+ - pos: 3.5,-26.5
parent: 2
type: Transform
- uid: 7461
components:
- - pos: 25.5,-6.5
+ - pos: 2.5,-26.5
parent: 2
type: Transform
- uid: 7462
components:
- - pos: 25.5,-12.5
+ - pos: 1.5,-26.5
parent: 2
type: Transform
- uid: 7463
components:
- - pos: 25.5,-13.5
+ - pos: -17.5,-26.5
parent: 2
type: Transform
- uid: 7464
components:
- - pos: 25.5,-14.5
+ - pos: 15.5,-41.5
parent: 2
type: Transform
- uid: 7465
components:
- - pos: 2.5,-71.5
+ - pos: 13.5,-42.5
parent: 2
type: Transform
- uid: 7466
components:
- - pos: -12.5,-73.5
+ - pos: 10.5,-42.5
parent: 2
type: Transform
- uid: 7467
components:
- - pos: 35.5,-34.5
+ - pos: 7.5,-42.5
parent: 2
type: Transform
- uid: 7468
components:
- - pos: 25.5,-44.5
+ - pos: 8.5,-42.5
parent: 2
type: Transform
- uid: 7469
components:
- - pos: 25.5,-43.5
+ - pos: 25.5,-6.5
parent: 2
type: Transform
- uid: 7470
components:
- - pos: 33.5,-42.5
+ - pos: 25.5,-12.5
parent: 2
type: Transform
- uid: 7471
components:
- - pos: -67.5,-25.5
+ - pos: 25.5,-13.5
parent: 2
type: Transform
- uid: 7472
components:
- - pos: -2.5,-61.5
+ - pos: 25.5,-14.5
parent: 2
type: Transform
- uid: 7473
components:
- - pos: -2.5,-59.5
+ - pos: 2.5,-71.5
parent: 2
type: Transform
- uid: 7474
components:
- - pos: -6.5,-69.5
+ - pos: -12.5,-73.5
parent: 2
type: Transform
- uid: 7475
components:
- - pos: -8.5,-19.5
+ - pos: 35.5,-34.5
parent: 2
type: Transform
- uid: 7476
components:
- - pos: -15.5,-72.5
+ - pos: 25.5,-44.5
parent: 2
type: Transform
- uid: 7477
components:
- - pos: 11.5,-92.5
+ - pos: 25.5,-43.5
parent: 2
type: Transform
- uid: 7478
components:
- - pos: 18.5,-95.5
+ - pos: 33.5,-42.5
parent: 2
type: Transform
- uid: 7479
components:
- - pos: 12.5,-98.5
+ - pos: -67.5,-25.5
parent: 2
type: Transform
- uid: 7480
components:
- - pos: -1.5,-77.5
+ - pos: -2.5,-61.5
parent: 2
type: Transform
- uid: 7481
components:
- - pos: -1.5,-80.5
+ - pos: -2.5,-59.5
parent: 2
type: Transform
- uid: 7482
components:
- - pos: -1.5,-68.5
+ - pos: -6.5,-69.5
parent: 2
type: Transform
- uid: 7483
components:
- - pos: -12.5,-69.5
+ - pos: -15.5,-72.5
parent: 2
type: Transform
- uid: 7484
components:
- - pos: 8.5,-92.5
+ - pos: 11.5,-92.5
parent: 2
type: Transform
- uid: 7485
components:
- - pos: 23.5,-17.5
+ - pos: 18.5,-95.5
parent: 2
type: Transform
- uid: 7486
components:
- - pos: -14.5,-71.5
+ - pos: 12.5,-98.5
parent: 2
type: Transform
- uid: 7487
components:
- - pos: -15.5,-73.5
+ - pos: -1.5,-77.5
parent: 2
type: Transform
- uid: 7488
components:
- - pos: 15.5,-43.5
+ - pos: -1.5,-80.5
parent: 2
type: Transform
- uid: 7489
components:
- - pos: -2.5,-63.5
+ - pos: -1.5,-68.5
parent: 2
type: Transform
- uid: 7490
components:
- - pos: 12.5,-57.5
+ - pos: -12.5,-69.5
parent: 2
type: Transform
- uid: 7491
components:
- - pos: 9.5,-55.5
+ - pos: 8.5,-92.5
parent: 2
type: Transform
- uid: 7492
components:
- - pos: 15.5,-40.5
+ - pos: 23.5,-17.5
parent: 2
type: Transform
- uid: 7493
components:
- - pos: -4.5,-69.5
+ - pos: -14.5,-71.5
parent: 2
type: Transform
- uid: 7494
components:
- - pos: -1.5,-65.5
+ - pos: -15.5,-73.5
parent: 2
type: Transform
- uid: 7495
components:
- - pos: 14.5,-47.5
+ - pos: 15.5,-43.5
parent: 2
type: Transform
- uid: 7496
components:
- - pos: 14.5,-45.5
+ - pos: -2.5,-63.5
parent: 2
type: Transform
- uid: 7497
components:
- - pos: -0.5,-42.5
+ - pos: 12.5,-57.5
parent: 2
type: Transform
- uid: 7498
components:
- - pos: 1.5,-42.5
+ - pos: 9.5,-55.5
parent: 2
type: Transform
- uid: 7499
components:
- - pos: 3.5,-42.5
+ - pos: 15.5,-40.5
parent: 2
type: Transform
- uid: 7500
components:
- - pos: 5.5,-42.5
+ - pos: -4.5,-69.5
parent: 2
type: Transform
- uid: 7501
components:
- - pos: 31.5,-5.5
+ - pos: -1.5,-65.5
parent: 2
type: Transform
- uid: 7502
components:
- - pos: 25.5,-5.5
+ - pos: 14.5,-47.5
parent: 2
type: Transform
- uid: 7503
components:
- - pos: -4.5,-24.5
+ - pos: 14.5,-45.5
parent: 2
type: Transform
- uid: 7504
components:
- - pos: -5.5,-40.5
+ - pos: -0.5,-42.5
parent: 2
type: Transform
- uid: 7505
components:
- - pos: -5.5,-38.5
+ - pos: 1.5,-42.5
parent: 2
type: Transform
- uid: 7506
components:
- - pos: -5.5,-26.5
+ - pos: 3.5,-42.5
parent: 2
type: Transform
- uid: 7507
components:
- - pos: 18.5,-29.5
+ - pos: 5.5,-42.5
parent: 2
type: Transform
- uid: 7508
components:
- - pos: -0.5,-17.5
+ - pos: 31.5,-5.5
parent: 2
type: Transform
- uid: 7509
components:
- - pos: 30.5,-3.5
+ - pos: 25.5,-5.5
parent: 2
type: Transform
- uid: 7510
components:
- - pos: 30.5,7.5
+ - pos: -4.5,-24.5
parent: 2
type: Transform
- uid: 7511
components:
- - pos: -24.5,-14.5
+ - pos: -5.5,-40.5
parent: 2
type: Transform
- uid: 7512
components:
- - pos: -6.5,-19.5
+ - pos: -5.5,-38.5
parent: 2
type: Transform
- uid: 7513
components:
- - pos: -5.5,-19.5
+ - pos: -5.5,-26.5
parent: 2
type: Transform
- uid: 7514
components:
- - pos: -4.5,-19.5
+ - pos: 18.5,-29.5
parent: 2
type: Transform
- uid: 7515
components:
- - pos: -4.5,-21.5
+ - pos: -0.5,-17.5
parent: 2
type: Transform
- uid: 7516
components:
- - pos: -7.5,-19.5
+ - pos: 30.5,-3.5
parent: 2
type: Transform
- uid: 7517
components:
- - pos: 2.5,-91.5
+ - pos: 30.5,7.5
parent: 2
type: Transform
- uid: 7518
components:
- - pos: 13.5,-47.5
+ - pos: -24.5,-14.5
parent: 2
type: Transform
- uid: 7519
components:
- - pos: 7.5,-92.5
+ - pos: -5.5,-19.5
parent: 2
type: Transform
- uid: 7520
components:
- - pos: -3.5,-75.5
+ - pos: -4.5,-19.5
parent: 2
type: Transform
- uid: 7521
components:
- - pos: 20.5,-42.5
+ - pos: -4.5,-21.5
parent: 2
type: Transform
- uid: 7522
components:
- - pos: -65.5,-25.5
+ - pos: 2.5,-91.5
parent: 2
type: Transform
- uid: 7523
components:
- - pos: -24.5,-13.5
+ - pos: 13.5,-47.5
parent: 2
type: Transform
- uid: 7524
components:
- - pos: 2.5,-89.5
+ - pos: 7.5,-92.5
parent: 2
type: Transform
- uid: 7525
components:
- - pos: -1.5,-84.5
+ - pos: -3.5,-75.5
parent: 2
type: Transform
- uid: 7526
components:
- - pos: -1.5,-85.5
+ - pos: 20.5,-42.5
parent: 2
type: Transform
- uid: 7527
components:
- - pos: 17.5,-95.5
+ - pos: -65.5,-25.5
parent: 2
type: Transform
- uid: 7528
components:
- - pos: 4.5,-95.5
+ - pos: -24.5,-13.5
parent: 2
type: Transform
- uid: 7529
components:
- - pos: 25.5,-11.5
+ - pos: 2.5,-89.5
parent: 2
type: Transform
- uid: 7530
components:
- - pos: 25.5,-9.5
+ - pos: -1.5,-84.5
parent: 2
type: Transform
- uid: 7531
components:
- - pos: 25.5,-8.5
+ - pos: -1.5,-85.5
parent: 2
type: Transform
- uid: 7532
components:
- - pos: 25.5,-7.5
+ - pos: 17.5,-95.5
parent: 2
type: Transform
- uid: 7533
components:
- - pos: 9.5,-42.5
+ - pos: 4.5,-95.5
parent: 2
type: Transform
- uid: 7534
components:
- - pos: 14.5,-42.5
+ - pos: 25.5,-11.5
parent: 2
type: Transform
- uid: 7535
components:
- - pos: 11.5,-42.5
+ - pos: 25.5,-9.5
parent: 2
type: Transform
- uid: 7536
components:
- - pos: 4.5,-26.5
+ - pos: 25.5,-8.5
parent: 2
type: Transform
- uid: 7537
components:
- - pos: -3.5,-17.5
+ - pos: 25.5,-7.5
parent: 2
type: Transform
- uid: 7538
components:
- - pos: 10.5,-98.5
+ - pos: 9.5,-42.5
parent: 2
type: Transform
- uid: 7539
components:
- - pos: 7.5,-95.5
+ - pos: 14.5,-42.5
parent: 2
type: Transform
- uid: 7540
components:
- - pos: 15.5,-42.5
+ - pos: 11.5,-42.5
parent: 2
type: Transform
- uid: 7541
components:
- - pos: 15.5,-44.5
+ - pos: 4.5,-26.5
parent: 2
type: Transform
- uid: 7542
components:
- - pos: 15.5,-36.5
+ - pos: -3.5,-17.5
parent: 2
type: Transform
- uid: 7543
components:
- - pos: 15.5,-34.5
+ - pos: 10.5,-98.5
parent: 2
type: Transform
- uid: 7544
components:
- - pos: 15.5,-32.5
+ - pos: 7.5,-95.5
parent: 2
type: Transform
- uid: 7545
components:
- - pos: -3.5,-69.5
+ - pos: 15.5,-42.5
parent: 2
type: Transform
- uid: 7546
components:
- - pos: -5.5,-69.5
+ - pos: 15.5,-44.5
parent: 2
type: Transform
- uid: 7547
components:
- - pos: 14.5,-48.5
+ - pos: 15.5,-36.5
parent: 2
type: Transform
- uid: 7548
components:
- - pos: -6.5,-71.5
+ - pos: 15.5,-34.5
parent: 2
type: Transform
- uid: 7549
components:
- - pos: -6.5,-70.5
+ - pos: 15.5,-32.5
parent: 2
type: Transform
- uid: 7550
components:
- - pos: -8.5,-71.5
+ - pos: -3.5,-69.5
parent: 2
type: Transform
- uid: 7551
components:
- - pos: -10.5,-71.5
+ - pos: -5.5,-69.5
parent: 2
type: Transform
- uid: 7552
components:
- - pos: 14.5,-49.5
+ - pos: 14.5,-48.5
parent: 2
type: Transform
- uid: 7553
components:
- - pos: 13.5,-49.5
+ - pos: -6.5,-71.5
parent: 2
type: Transform
- uid: 7554
components:
- - pos: 11.5,-49.5
+ - pos: -6.5,-70.5
parent: 2
type: Transform
- uid: 7555
components:
- - pos: -11.5,-71.5
+ - pos: -8.5,-71.5
parent: 2
type: Transform
- uid: 7556
components:
- - pos: 25.5,-17.5
+ - pos: -10.5,-71.5
parent: 2
type: Transform
- uid: 7557
components:
- - pos: 38.5,-28.5
+ - pos: 14.5,-49.5
parent: 2
type: Transform
- uid: 7558
components:
- - pos: 37.5,-30.5
+ - pos: 13.5,-49.5
parent: 2
type: Transform
- uid: 7559
components:
- - pos: 35.5,-30.5
+ - pos: 11.5,-49.5
parent: 2
type: Transform
- uid: 7560
components:
- - pos: 35.5,-29.5
+ - pos: -11.5,-71.5
parent: 2
type: Transform
- uid: 7561
components:
- - pos: 9.5,-101.5
+ - pos: 25.5,-17.5
parent: 2
type: Transform
- uid: 7562
components:
- - pos: -11.5,58.5
+ - pos: 38.5,-28.5
parent: 2
type: Transform
- uid: 7563
components:
- - pos: -12.5,58.5
+ - pos: 37.5,-30.5
parent: 2
type: Transform
- uid: 7564
components:
- - pos: -15.5,44.5
+ - pos: 35.5,-30.5
parent: 2
type: Transform
- uid: 7565
components:
- - pos: -16.5,44.5
+ - pos: 35.5,-29.5
parent: 2
type: Transform
- uid: 7566
components:
- - pos: -17.5,44.5
+ - pos: 9.5,-101.5
parent: 2
type: Transform
- uid: 7567
components:
- - pos: -17.5,45.5
+ - pos: -11.5,58.5
parent: 2
type: Transform
- uid: 7568
components:
- - pos: -17.5,46.5
+ - pos: -12.5,58.5
parent: 2
type: Transform
- uid: 7569
components:
- - pos: -17.5,47.5
+ - pos: -15.5,44.5
parent: 2
type: Transform
- uid: 7570
components:
- - pos: -17.5,48.5
+ - pos: -16.5,44.5
parent: 2
type: Transform
- uid: 7571
components:
- - pos: -17.5,49.5
+ - pos: -17.5,44.5
parent: 2
type: Transform
- uid: 7572
components:
- - pos: -17.5,50.5
+ - pos: -17.5,45.5
parent: 2
type: Transform
- uid: 7573
components:
- - pos: -16.5,50.5
+ - pos: -17.5,46.5
parent: 2
type: Transform
- uid: 7574
components:
- - pos: -13.5,50.5
+ - pos: -17.5,47.5
parent: 2
type: Transform
- uid: 7575
components:
- - pos: -15.5,50.5
+ - pos: -17.5,48.5
parent: 2
type: Transform
- uid: 7576
components:
- - pos: -14.5,50.5
+ - pos: -17.5,49.5
parent: 2
type: Transform
- uid: 7577
components:
- - pos: -13.5,58.5
+ - pos: -17.5,50.5
parent: 2
type: Transform
- uid: 7578
components:
- - pos: -13.5,57.5
+ - pos: -16.5,50.5
parent: 2
type: Transform
- uid: 7579
components:
- - pos: -13.5,51.5
+ - pos: -13.5,50.5
parent: 2
type: Transform
- uid: 7580
components:
- - pos: -13.5,52.5
+ - pos: -15.5,50.5
parent: 2
type: Transform
- uid: 7581
components:
- - pos: -13.5,53.5
+ - pos: -14.5,50.5
parent: 2
type: Transform
- uid: 7582
components:
- - pos: -13.5,54.5
+ - pos: -13.5,58.5
parent: 2
type: Transform
- uid: 7583
components:
- - pos: -13.5,55.5
+ - pos: -13.5,57.5
parent: 2
type: Transform
- uid: 7584
components:
- - pos: -13.5,56.5
+ - pos: -13.5,51.5
parent: 2
type: Transform
- uid: 7585
components:
- - pos: 15.5,-39.5
+ - pos: -13.5,52.5
parent: 2
type: Transform
- uid: 7586
components:
- - pos: -6.5,-75.5
+ - pos: -13.5,53.5
parent: 2
type: Transform
- uid: 7587
components:
- - pos: 18.5,-42.5
+ - pos: -13.5,54.5
parent: 2
type: Transform
- uid: 7588
components:
- - pos: -24.5,-15.5
+ - pos: -13.5,55.5
parent: 2
type: Transform
- uid: 7589
components:
- - pos: 17.5,-29.5
+ - pos: -13.5,56.5
parent: 2
type: Transform
- uid: 7590
components:
- - pos: 35.5,-38.5
+ - pos: 15.5,-39.5
parent: 2
type: Transform
- uid: 7591
components:
- - pos: 26.5,-42.5
+ - pos: -6.5,-75.5
parent: 2
type: Transform
- uid: 7592
components:
- - pos: -13.5,-26.5
+ - pos: 18.5,-42.5
parent: 2
type: Transform
- uid: 7593
components:
- - pos: -10.5,-26.5
+ - pos: -24.5,-15.5
parent: 2
type: Transform
- uid: 7594
components:
- - pos: -5.5,-34.5
+ - pos: 17.5,-29.5
parent: 2
type: Transform
- uid: 7595
components:
- - pos: -5.5,-41.5
+ - pos: 35.5,-38.5
parent: 2
type: Transform
- uid: 7596
components:
- - pos: 13.5,-57.5
+ - pos: 26.5,-42.5
parent: 2
type: Transform
- uid: 7597
components:
- - pos: 12.5,-55.5
+ - pos: -13.5,-26.5
parent: 2
type: Transform
- uid: 7598
components:
- - pos: 8.5,-52.5
+ - pos: -10.5,-26.5
parent: 2
type: Transform
- uid: 7599
components:
- - pos: -11.5,-42.5
+ - pos: -5.5,-34.5
parent: 2
type: Transform
- uid: 7600
components:
- - pos: -8.5,-26.5
+ - pos: -5.5,-41.5
parent: 2
type: Transform
- uid: 7601
components:
- - pos: -13.5,-73.5
+ - pos: 13.5,-57.5
parent: 2
type: Transform
- uid: 7602
components:
- - pos: 25.5,-47.5
+ - pos: 12.5,-55.5
parent: 2
type: Transform
- uid: 7603
components:
- - pos: -5.5,-31.5
+ - pos: 8.5,-52.5
parent: 2
type: Transform
- uid: 7604
components:
- - pos: -5.5,-33.5
+ - pos: -11.5,-42.5
parent: 2
type: Transform
- uid: 7605
components:
- - pos: -14.5,-26.5
+ - pos: -8.5,-26.5
parent: 2
type: Transform
- uid: 7606
components:
- - pos: -15.5,-26.5
+ - pos: -13.5,-73.5
parent: 2
type: Transform
- uid: 7607
components:
- - pos: -3.5,-26.5
+ - pos: 25.5,-47.5
parent: 2
type: Transform
- uid: 7608
components:
- - pos: -2.5,-26.5
+ - pos: -5.5,-31.5
parent: 2
type: Transform
- uid: 7609
components:
- - pos: -0.5,-26.5
+ - pos: -5.5,-33.5
parent: 2
type: Transform
- uid: 7610
components:
- - pos: 9.5,-26.5
+ - pos: -14.5,-26.5
parent: 2
type: Transform
- uid: 7611
components:
- - pos: 13.5,-26.5
+ - pos: -15.5,-26.5
parent: 2
type: Transform
- uid: 7612
components:
- - pos: 15.5,-29.5
+ - pos: -3.5,-26.5
parent: 2
type: Transform
- uid: 7613
components:
- - pos: -4.5,-42.5
+ - pos: -2.5,-26.5
parent: 2
type: Transform
- uid: 7614
components:
- - pos: -7.5,-42.5
+ - pos: -0.5,-26.5
parent: 2
type: Transform
- uid: 7615
components:
- - pos: -8.5,-42.5
+ - pos: 9.5,-26.5
parent: 2
type: Transform
- uid: 7616
components:
- - pos: -10.5,-42.5
+ - pos: 13.5,-26.5
parent: 2
type: Transform
- uid: 7617
components:
- - pos: -12.5,-42.5
+ - pos: 15.5,-29.5
parent: 2
type: Transform
- uid: 7618
components:
- - pos: -13.5,-42.5
+ - pos: -4.5,-42.5
parent: 2
type: Transform
- uid: 7619
components:
- - pos: 10.5,-51.5
+ - pos: -7.5,-42.5
parent: 2
type: Transform
- uid: 7620
components:
- - pos: -15.5,-42.5
+ - pos: -8.5,-42.5
parent: 2
type: Transform
- uid: 7621
components:
- - pos: -12.5,-70.5
+ - pos: -10.5,-42.5
parent: 2
type: Transform
- uid: 7622
components:
- - pos: -8.5,-75.5
+ - pos: -12.5,-42.5
parent: 2
type: Transform
- uid: 7623
components:
- - pos: -18.5,-42.5
+ - pos: -13.5,-42.5
parent: 2
type: Transform
- uid: 7624
components:
- - pos: 15.5,-95.5
+ - pos: 10.5,-51.5
parent: 2
type: Transform
- uid: 7625
components:
- - pos: 25.5,-50.5
+ - pos: -15.5,-42.5
parent: 2
type: Transform
- uid: 7626
components:
- - pos: 9.5,-92.5
+ - pos: -12.5,-70.5
parent: 2
type: Transform
- uid: 7627
components:
- - pos: 13.5,-95.5
+ - pos: -8.5,-75.5
parent: 2
type: Transform
- uid: 7628
components:
- - pos: 34.5,-42.5
+ - pos: -18.5,-42.5
parent: 2
type: Transform
- uid: 7629
components:
- - pos: 35.5,-42.5
+ - pos: 15.5,-95.5
parent: 2
type: Transform
- uid: 7630
components:
- - pos: 25.5,-45.5
+ - pos: 25.5,-50.5
parent: 2
type: Transform
- uid: 7631
components:
- - pos: 35.5,-32.5
+ - pos: 9.5,-92.5
parent: 2
type: Transform
- uid: 7632
components:
- - pos: 35.5,-36.5
+ - pos: 13.5,-95.5
parent: 2
type: Transform
- uid: 7633
components:
- - pos: 70.5,-46.5
+ - pos: 34.5,-42.5
parent: 2
type: Transform
- uid: 7634
components:
- - pos: -12.5,-74.5
+ - pos: 35.5,-42.5
parent: 2
type: Transform
- uid: 7635
components:
- - pos: -0.5,-72.5
+ - pos: 25.5,-45.5
parent: 2
type: Transform
- uid: 7636
components:
- - pos: 11.5,-105.5
+ - pos: 35.5,-32.5
parent: 2
type: Transform
- uid: 7637
components:
- - pos: -1.5,-86.5
+ - pos: 35.5,-36.5
parent: 2
type: Transform
- uid: 7638
components:
- - pos: -16.5,-26.5
+ - pos: 70.5,-46.5
parent: 2
type: Transform
- uid: 7639
components:
- - pos: 11.5,-26.5
+ - pos: -12.5,-74.5
parent: 2
type: Transform
- uid: 7640
components:
- - pos: -17.5,-42.5
+ - pos: -0.5,-72.5
parent: 2
type: Transform
- uid: 7641
components:
- - pos: -9.5,-71.5
+ - pos: 11.5,-105.5
parent: 2
type: Transform
- uid: 7642
components:
- - pos: 6.5,-14.5
+ - pos: -1.5,-86.5
parent: 2
type: Transform
- uid: 7643
components:
- - pos: -4.5,-19.5
+ - pos: -16.5,-26.5
parent: 2
type: Transform
- uid: 7644
components:
- - pos: -5.5,-32.5
+ - pos: 11.5,-26.5
parent: 2
type: Transform
- uid: 7645
components:
- - pos: 25.5,-48.5
+ - pos: -17.5,-42.5
parent: 2
type: Transform
- uid: 7646
components:
- - pos: -9.5,-26.5
+ - pos: -9.5,-71.5
parent: 2
type: Transform
- uid: 7647
components:
- - pos: 25.5,-46.5
+ - pos: 6.5,-14.5
parent: 2
type: Transform
- uid: 7648
components:
- - pos: -5.5,-42.5
+ - pos: -4.5,-19.5
parent: 2
type: Transform
- uid: 7649
components:
- - pos: 15.5,-38.5
+ - pos: -5.5,-32.5
parent: 2
type: Transform
- uid: 7650
components:
- - pos: -5.5,-36.5
+ - pos: 25.5,-48.5
parent: 2
type: Transform
- uid: 7651
components:
- - pos: 25.5,-51.5
+ - pos: -9.5,-26.5
parent: 2
type: Transform
- uid: 7652
components:
- - pos: 15.5,-45.5
+ - pos: 25.5,-46.5
parent: 2
type: Transform
- uid: 7653
components:
- - pos: 15.5,-31.5
+ - pos: -5.5,-42.5
parent: 2
type: Transform
- uid: 7654
components:
- - pos: 6.5,-95.5
+ - pos: 15.5,-38.5
parent: 2
type: Transform
- uid: 7655
components:
- - pos: 15.5,-35.5
+ - pos: -5.5,-36.5
parent: 2
type: Transform
- uid: 7656
components:
- - pos: -16.5,-42.5
+ - pos: 25.5,-51.5
parent: 2
type: Transform
- uid: 7657
components:
- - pos: 15.5,-30.5
+ - pos: 15.5,-45.5
parent: 2
type: Transform
- uid: 7658
components:
- - pos: 10.5,-50.5
+ - pos: 15.5,-31.5
parent: 2
type: Transform
- uid: 7659
components:
- - pos: -1.5,-63.5
+ - pos: 6.5,-95.5
parent: 2
type: Transform
- uid: 7660
components:
- - pos: -12.5,-26.5
+ - pos: 15.5,-35.5
parent: 2
type: Transform
- uid: 7661
components:
- - pos: 0.5,-26.5
+ - pos: -16.5,-42.5
parent: 2
type: Transform
- uid: 7662
components:
- - pos: 14.5,-26.5
+ - pos: 15.5,-30.5
parent: 2
type: Transform
- uid: 7663
components:
- - pos: 15.5,-27.5
+ - pos: 10.5,-50.5
parent: 2
type: Transform
- uid: 7664
components:
- - pos: -6.5,-42.5
+ - pos: -1.5,-63.5
parent: 2
type: Transform
- uid: 7665
components:
- - pos: -3.5,-42.5
+ - pos: -12.5,-26.5
parent: 2
type: Transform
- uid: 7666
components:
- - pos: -2.5,-17.5
+ - pos: 0.5,-26.5
parent: 2
type: Transform
- uid: 7667
components:
- - pos: -1.5,-17.5
+ - pos: 14.5,-26.5
parent: 2
type: Transform
- uid: 7668
components:
- - pos: 30.5,-2.5
+ - pos: 15.5,-27.5
parent: 2
type: Transform
- uid: 7669
components:
- - pos: 30.5,-4.5
+ - pos: -6.5,-42.5
parent: 2
type: Transform
- uid: 7670
components:
- - pos: -4.5,-75.5
+ - pos: -3.5,-42.5
parent: 2
type: Transform
- uid: 7671
components:
- - pos: 24.5,-17.5
+ - pos: -2.5,-17.5
parent: 2
type: Transform
- uid: 7672
components:
- - pos: 25.5,-16.5
+ - pos: -1.5,-17.5
parent: 2
type: Transform
- uid: 7673
components:
- - pos: 25.5,-15.5
+ - pos: 30.5,-2.5
parent: 2
type: Transform
- uid: 7674
components:
- - pos: 17.5,-5.5
+ - pos: 30.5,-4.5
parent: 2
type: Transform
- uid: 7675
components:
- - pos: 32.5,-17.5
+ - pos: -4.5,-75.5
parent: 2
type: Transform
- uid: 7676
components:
- - pos: 35.5,-21.5
+ - pos: 24.5,-17.5
parent: 2
type: Transform
- uid: 7677
components:
- - pos: -13.5,-71.5
+ - pos: 25.5,-16.5
parent: 2
type: Transform
- uid: 7678
components:
- - pos: 9.5,-95.5
+ - pos: 25.5,-15.5
parent: 2
type: Transform
- uid: 7679
components:
- - pos: 13.5,-98.5
+ - pos: 17.5,-5.5
parent: 2
type: Transform
- uid: 7680
components:
- - pos: -2.5,-77.5
+ - pos: 32.5,-17.5
parent: 2
type: Transform
- uid: 7681
components:
- - pos: -2.5,-78.5
+ - pos: 35.5,-21.5
parent: 2
type: Transform
- uid: 7682
components:
- - pos: -1.5,-82.5
+ - pos: -13.5,-71.5
parent: 2
type: Transform
- uid: 7683
components:
- - pos: -9.5,-75.5
+ - pos: 9.5,-95.5
parent: 2
type: Transform
- uid: 7684
components:
- - pos: 28.5,-42.5
+ - pos: 13.5,-98.5
parent: 2
type: Transform
- uid: 7685
components:
- - pos: -4.5,-23.5
+ - pos: -2.5,-77.5
parent: 2
type: Transform
- uid: 7686
components:
- - pos: -5.5,-28.5
+ - pos: -2.5,-78.5
parent: 2
type: Transform
- uid: 7687
components:
- - pos: -5.5,-35.5
+ - pos: -1.5,-82.5
parent: 2
type: Transform
- uid: 7688
components:
- - pos: 10.5,-26.5
+ - pos: -9.5,-75.5
parent: 2
type: Transform
- uid: 7689
components:
- - pos: 8.5,-26.5
+ - pos: 28.5,-42.5
parent: 2
type: Transform
- uid: 7690
components:
- - pos: -7.5,-71.5
+ - pos: -4.5,-23.5
parent: 2
type: Transform
- uid: 7691
components:
- - pos: -7.5,-26.5
+ - pos: -5.5,-28.5
parent: 2
type: Transform
- uid: 7692
components:
- - pos: -6.5,-26.5
+ - pos: -5.5,-35.5
parent: 2
type: Transform
- uid: 7693
components:
- - pos: -9.5,-42.5
+ - pos: 10.5,-26.5
parent: 2
type: Transform
- uid: 7694
components:
- - pos: 8.5,-98.5
+ - pos: 8.5,-26.5
parent: 2
type: Transform
- uid: 7695
components:
- - pos: 2.5,-90.5
+ - pos: -7.5,-71.5
parent: 2
type: Transform
- uid: 7696
components:
- - pos: 15.5,-31.5
+ - pos: -7.5,-26.5
parent: 2
type: Transform
- uid: 7697
components:
- - pos: 14.5,-95.5
+ - pos: -6.5,-26.5
parent: 2
type: Transform
- uid: 7698
components:
- - pos: -5.5,-37.5
+ - pos: -9.5,-42.5
parent: 2
type: Transform
- uid: 7699
components:
- - pos: -14.5,-73.5
+ - pos: 8.5,-98.5
parent: 2
type: Transform
- uid: 7700
components:
- - pos: 35.5,-28.5
+ - pos: 2.5,-90.5
parent: 2
type: Transform
- uid: 7701
components:
- - pos: -14.5,-42.5
+ - pos: 15.5,-31.5
parent: 2
type: Transform
- uid: 7702
components:
- - pos: 1.5,-89.5
+ - pos: 14.5,-95.5
parent: 2
type: Transform
- uid: 7703
components:
- - pos: 3.5,-92.5
+ - pos: -5.5,-37.5
parent: 2
type: Transform
- uid: 7704
components:
- - pos: 5.5,-95.5
+ - pos: -14.5,-73.5
parent: 2
type: Transform
- uid: 7705
components:
- - pos: 13.5,-101.5
+ - pos: 35.5,-28.5
parent: 2
type: Transform
- uid: 7706
components:
- - pos: 9.5,-14.5
+ - pos: -14.5,-42.5
parent: 2
type: Transform
- uid: 7707
components:
- - pos: -4.5,-20.5
+ - pos: 1.5,-89.5
parent: 2
type: Transform
- uid: 7708
components:
- - pos: 16.5,-29.5
+ - pos: 3.5,-92.5
parent: 2
type: Transform
- uid: 7709
components:
- - pos: -4.5,-26.5
+ - pos: 5.5,-95.5
parent: 2
type: Transform
- uid: 7710
components:
- - pos: 16.5,-95.5
+ - pos: 13.5,-101.5
parent: 2
type: Transform
- uid: 7711
components:
- - pos: -2.5,-42.5
+ - pos: 9.5,-14.5
parent: 2
type: Transform
- uid: 7712
components:
- - pos: 16.5,-42.5
+ - pos: -4.5,-20.5
parent: 2
type: Transform
- uid: 7713
components:
- - pos: 7.5,-14.5
+ - pos: 16.5,-29.5
parent: 2
type: Transform
- uid: 7714
components:
- - pos: 12.5,-101.5
+ - pos: -4.5,-26.5
parent: 2
type: Transform
- uid: 7715
components:
- - pos: 10.5,-101.5
+ - pos: 16.5,-95.5
parent: 2
type: Transform
- uid: 7716
components:
- - pos: 8.5,-101.5
+ - pos: -2.5,-42.5
parent: 2
type: Transform
- uid: 7717
components:
- - pos: 14.5,-101.5
+ - pos: 16.5,-42.5
parent: 2
type: Transform
- uid: 7718
components:
- - pos: 9.5,-104.5
+ - pos: 7.5,-14.5
parent: 2
type: Transform
- uid: 7719
components:
- - pos: 13.5,-104.5
+ - pos: 12.5,-101.5
parent: 2
type: Transform
- uid: 7720
components:
- - pos: 9.5,-98.5
+ - pos: 10.5,-101.5
parent: 2
type: Transform
- uid: 7721
components:
- - pos: -1.5,-83.5
+ - pos: 8.5,-101.5
parent: 2
type: Transform
- uid: 7722
components:
- - pos: -1.5,-81.5
+ - pos: 14.5,-101.5
parent: 2
type: Transform
- uid: 7723
components:
- - pos: -1.5,-79.5
+ - pos: 9.5,-104.5
parent: 2
type: Transform
- uid: 7724
components:
- - pos: -2.5,-79.5
+ - pos: 13.5,-104.5
parent: 2
type: Transform
- uid: 7725
components:
- - pos: -2.5,-75.5
+ - pos: 9.5,-98.5
parent: 2
type: Transform
- uid: 7726
components:
- - pos: -2.5,-76.5
+ - pos: -1.5,-83.5
parent: 2
type: Transform
- uid: 7727
components:
- - pos: -10.5,-75.5
+ - pos: -1.5,-81.5
parent: 2
type: Transform
- uid: 7728
components:
- - pos: 15.5,-58.5
+ - pos: -1.5,-79.5
parent: 2
type: Transform
- uid: 7729
components:
- - pos: -5.5,-27.5
+ - pos: -2.5,-79.5
parent: 2
type: Transform
- uid: 7730
components:
- - pos: -5.5,-29.5
+ - pos: -2.5,-75.5
parent: 2
type: Transform
- uid: 7731
components:
- - pos: 21.5,-17.5
+ - pos: -2.5,-76.5
parent: 2
type: Transform
- uid: 7732
components:
- - pos: 22.5,-17.5
+ - pos: -10.5,-75.5
parent: 2
type: Transform
- uid: 7733
components:
- - pos: 20.5,-17.5
+ - pos: 15.5,-58.5
parent: 2
type: Transform
- uid: 7734
components:
- - pos: 19.5,-17.5
+ - pos: -5.5,-27.5
parent: 2
type: Transform
- uid: 7735
components:
- - pos: 18.5,-17.5
+ - pos: -5.5,-29.5
parent: 2
type: Transform
- uid: 7736
components:
- - pos: 17.5,-17.5
+ - pos: 21.5,-17.5
parent: 2
type: Transform
- uid: 7737
components:
- - pos: 16.5,-17.5
+ - pos: 22.5,-17.5
parent: 2
type: Transform
- uid: 7738
components:
- - pos: 15.5,-22.5
+ - pos: 20.5,-17.5
parent: 2
type: Transform
- uid: 7739
components:
- - pos: 15.5,-17.5
+ - pos: 19.5,-17.5
parent: 2
type: Transform
- uid: 7740
components:
- - pos: 15.5,-18.5
+ - pos: 18.5,-17.5
parent: 2
type: Transform
- uid: 7741
components:
- - pos: 15.5,-19.5
+ - pos: 17.5,-17.5
parent: 2
type: Transform
- uid: 7742
components:
- - pos: 15.5,-20.5
+ - pos: 16.5,-17.5
parent: 2
type: Transform
- uid: 7743
components:
- - pos: 15.5,-21.5
+ - pos: 15.5,-22.5
parent: 2
type: Transform
- uid: 7744
components:
- - pos: 15.5,-23.5
+ - pos: 15.5,-17.5
parent: 2
type: Transform
- uid: 7745
components:
- - pos: 15.5,-24.5
+ - pos: 15.5,-18.5
parent: 2
type: Transform
- uid: 7746
components:
- - pos: 15.5,-25.5
+ - pos: 15.5,-19.5
parent: 2
type: Transform
- uid: 7747
components:
- - pos: 18.5,-5.5
+ - pos: 15.5,-20.5
parent: 2
type: Transform
- uid: 7748
components:
- - pos: 19.5,-5.5
+ - pos: 15.5,-21.5
parent: 2
type: Transform
- uid: 7749
components:
- - pos: 20.5,-5.5
+ - pos: 15.5,-23.5
parent: 2
type: Transform
- uid: 7750
components:
- - pos: 21.5,-5.5
+ - pos: 15.5,-24.5
parent: 2
type: Transform
- uid: 7751
components:
- - pos: 22.5,-5.5
+ - pos: 15.5,-25.5
parent: 2
type: Transform
- uid: 7752
components:
- - pos: 23.5,-5.5
+ - pos: 18.5,-5.5
parent: 2
type: Transform
- uid: 7753
components:
- - pos: 31.5,-17.5
+ - pos: 19.5,-5.5
parent: 2
type: Transform
- uid: 7754
components:
- - pos: 30.5,-17.5
+ - pos: 20.5,-5.5
parent: 2
type: Transform
- uid: 7755
components:
- - pos: 29.5,-17.5
+ - pos: 21.5,-5.5
parent: 2
type: Transform
- uid: 7756
components:
- - pos: 28.5,-17.5
+ - pos: 22.5,-5.5
parent: 2
type: Transform
- uid: 7757
components:
- - pos: 27.5,-17.5
+ - pos: 23.5,-5.5
parent: 2
type: Transform
- uid: 7758
components:
- - pos: 26.5,-17.5
+ - pos: 31.5,-17.5
parent: 2
type: Transform
- uid: 7759
components:
- - pos: 35.5,-20.5
+ - pos: 30.5,-17.5
parent: 2
type: Transform
- uid: 7760
components:
- - pos: 35.5,-19.5
+ - pos: 29.5,-17.5
parent: 2
type: Transform
- uid: 7761
components:
- - pos: 35.5,-18.5
+ - pos: 28.5,-17.5
parent: 2
type: Transform
- uid: 7762
components:
- - pos: 35.5,-17.5
+ - pos: 27.5,-17.5
parent: 2
type: Transform
- uid: 7763
components:
- - pos: 34.5,-17.5
+ - pos: 26.5,-17.5
parent: 2
type: Transform
- uid: 7764
components:
- - pos: 33.5,-17.5
+ - pos: 35.5,-20.5
parent: 2
type: Transform
- uid: 7765
components:
- - pos: 35.5,-27.5
+ - pos: 35.5,-19.5
parent: 2
type: Transform
- uid: 7766
components:
- - pos: 35.5,-26.5
+ - pos: 35.5,-18.5
parent: 2
type: Transform
- uid: 7767
components:
- - pos: 35.5,-25.5
+ - pos: 35.5,-17.5
parent: 2
type: Transform
- uid: 7768
components:
- - pos: 35.5,-24.5
+ - pos: 34.5,-17.5
parent: 2
type: Transform
- uid: 7769
components:
- - pos: 35.5,-23.5
+ - pos: 33.5,-17.5
parent: 2
type: Transform
- uid: 7770
components:
- - pos: 35.5,-22.5
+ - pos: 35.5,-27.5
parent: 2
type: Transform
- uid: 7771
components:
- - pos: 30.5,-5.5
+ - pos: 35.5,-26.5
parent: 2
type: Transform
- uid: 7772
components:
- - pos: 29.5,-5.5
+ - pos: 35.5,-25.5
parent: 2
type: Transform
- uid: 7773
components:
- - pos: 28.5,-5.5
+ - pos: 35.5,-24.5
parent: 2
type: Transform
- uid: 7774
components:
- - pos: 27.5,-5.5
+ - pos: 35.5,-23.5
parent: 2
type: Transform
- uid: 7775
components:
- - pos: 26.5,-5.5
+ - pos: 35.5,-22.5
parent: 2
type: Transform
- uid: 7776
components:
- - pos: 33.5,-2.5
+ - pos: 30.5,-5.5
parent: 2
type: Transform
- uid: 7777
components:
- - pos: 33.5,-3.5
+ - pos: 29.5,-5.5
parent: 2
type: Transform
- uid: 7778
components:
- - pos: 33.5,-4.5
+ - pos: 28.5,-5.5
parent: 2
type: Transform
- uid: 7779
components:
- - pos: 33.5,-5.5
+ - pos: 27.5,-5.5
parent: 2
type: Transform
- uid: 7780
components:
- - pos: 32.5,-5.5
+ - pos: 26.5,-5.5
parent: 2
type: Transform
- uid: 7781
components:
- - pos: 39.5,-30.5
+ - pos: 33.5,-2.5
parent: 2
type: Transform
- uid: 7782
components:
- - pos: 35.5,-31.5
+ - pos: 33.5,-3.5
parent: 2
type: Transform
- uid: 7783
components:
- - pos: 35.5,-33.5
+ - pos: 33.5,-4.5
parent: 2
type: Transform
- uid: 7784
components:
- - pos: 35.5,-35.5
+ - pos: 33.5,-5.5
parent: 2
type: Transform
- uid: 7785
components:
- - pos: 35.5,-37.5
+ - pos: 32.5,-5.5
parent: 2
type: Transform
- uid: 7786
components:
- - pos: 35.5,-39.5
+ - pos: 39.5,-30.5
parent: 2
type: Transform
- uid: 7787
components:
- - pos: 35.5,-41.5
+ - pos: 35.5,-31.5
parent: 2
type: Transform
- uid: 7788
components:
- - pos: 17.5,-42.5
+ - pos: 35.5,-33.5
parent: 2
type: Transform
- uid: 7789
components:
- - pos: 19.5,-42.5
+ - pos: 35.5,-35.5
parent: 2
type: Transform
- uid: 7790
components:
- - pos: 10.5,-52.5
+ - pos: 35.5,-37.5
parent: 2
type: Transform
- uid: 7791
components:
- - pos: 33.5,-1.5
+ - pos: 35.5,-39.5
parent: 2
type: Transform
- uid: 7792
components:
- - pos: 33.5,-0.5
+ - pos: 35.5,-41.5
parent: 2
type: Transform
- uid: 7793
components:
- - pos: 33.5,0.5
+ - pos: 17.5,-42.5
parent: 2
type: Transform
- uid: 7794
components:
- - pos: 33.5,1.5
+ - pos: 19.5,-42.5
parent: 2
type: Transform
- uid: 7795
components:
- - pos: 33.5,2.5
+ - pos: 10.5,-52.5
parent: 2
type: Transform
- uid: 7796
components:
- - pos: 33.5,3.5
+ - pos: 33.5,-1.5
parent: 2
type: Transform
- uid: 7797
components:
- - pos: 33.5,4.5
+ - pos: 33.5,-0.5
parent: 2
type: Transform
- uid: 7798
components:
- - pos: 33.5,5.5
+ - pos: 33.5,0.5
parent: 2
type: Transform
- uid: 7799
components:
- - pos: 33.5,6.5
+ - pos: 33.5,1.5
parent: 2
type: Transform
- uid: 7800
components:
- - pos: 33.5,7.5
+ - pos: 33.5,2.5
parent: 2
type: Transform
- uid: 7801
components:
- - pos: 32.5,7.5
+ - pos: 33.5,3.5
parent: 2
type: Transform
- uid: 7802
components:
- - pos: 31.5,7.5
+ - pos: 33.5,4.5
parent: 2
type: Transform
- uid: 7803
components:
- - pos: 29.5,7.5
+ - pos: 33.5,5.5
parent: 2
type: Transform
- uid: 7804
components:
- - pos: 28.5,7.5
+ - pos: 33.5,6.5
parent: 2
type: Transform
- uid: 7805
components:
- - pos: 27.5,7.5
+ - pos: 33.5,7.5
parent: 2
type: Transform
- uid: 7806
components:
- - pos: 26.5,7.5
+ - pos: 32.5,7.5
parent: 2
type: Transform
- uid: 7807
components:
- - pos: 25.5,7.5
+ - pos: 31.5,7.5
parent: 2
type: Transform
- uid: 7808
components:
- - pos: 24.5,7.5
+ - pos: 29.5,7.5
parent: 2
type: Transform
- uid: 7809
components:
- - pos: 23.5,7.5
+ - pos: 28.5,7.5
parent: 2
type: Transform
- uid: 7810
components:
- - pos: 22.5,7.5
+ - pos: 27.5,7.5
parent: 2
type: Transform
- uid: 7811
components:
- - pos: 21.5,7.5
+ - pos: 26.5,7.5
parent: 2
type: Transform
- uid: 7812
components:
- - pos: 20.5,7.5
+ - pos: 25.5,7.5
parent: 2
type: Transform
- uid: 7813
components:
- - pos: 19.5,7.5
+ - pos: 24.5,7.5
parent: 2
type: Transform
- uid: 7814
components:
- - pos: 18.5,7.5
+ - pos: 23.5,7.5
parent: 2
type: Transform
- uid: 7815
components:
- - pos: 17.5,7.5
+ - pos: 22.5,7.5
parent: 2
type: Transform
- uid: 7816
components:
- - pos: 17.5,6.5
+ - pos: 21.5,7.5
parent: 2
type: Transform
- uid: 7817
components:
- - pos: 17.5,5.5
+ - pos: 20.5,7.5
parent: 2
type: Transform
- uid: 7818
components:
- - pos: 17.5,4.5
+ - pos: 19.5,7.5
parent: 2
type: Transform
- uid: 7819
components:
- - pos: 17.5,3.5
+ - pos: 18.5,7.5
parent: 2
type: Transform
- uid: 7820
components:
- - pos: 17.5,2.5
+ - pos: 17.5,7.5
parent: 2
type: Transform
- uid: 7821
components:
- - pos: 17.5,1.5
+ - pos: 17.5,6.5
parent: 2
type: Transform
- uid: 7822
components:
- - pos: 17.5,0.5
+ - pos: 17.5,5.5
parent: 2
type: Transform
- uid: 7823
components:
- - pos: 17.5,-0.5
+ - pos: 17.5,4.5
parent: 2
type: Transform
- uid: 7824
components:
- - pos: 17.5,-1.5
+ - pos: 17.5,3.5
parent: 2
type: Transform
- uid: 7825
components:
- - pos: 17.5,-2.5
+ - pos: 17.5,2.5
parent: 2
type: Transform
- uid: 7826
components:
- - pos: 17.5,-3.5
+ - pos: 17.5,1.5
parent: 2
type: Transform
- uid: 7827
components:
- - pos: 17.5,-4.5
+ - pos: 17.5,0.5
parent: 2
type: Transform
- uid: 7828
components:
- - pos: -4.5,-17.5
+ - pos: 17.5,-0.5
parent: 2
type: Transform
- uid: 7829
components:
- - pos: -4.5,-16.5
+ - pos: 17.5,-1.5
parent: 2
type: Transform
- uid: 7830
components:
- - pos: -4.5,-15.5
+ - pos: 17.5,-2.5
parent: 2
type: Transform
- uid: 7831
components:
- - pos: -4.5,-14.5
+ - pos: 17.5,-3.5
parent: 2
type: Transform
- uid: 7832
components:
- - pos: -4.5,-13.5
+ - pos: 17.5,-4.5
parent: 2
type: Transform
- uid: 7833
components:
- - pos: -4.5,-12.5
+ - pos: -4.5,-17.5
parent: 2
type: Transform
- uid: 7834
components:
- - pos: -4.5,-11.5
+ - pos: -4.5,-16.5
parent: 2
type: Transform
- uid: 7835
components:
- - pos: -4.5,-10.5
+ - pos: -4.5,-15.5
parent: 2
type: Transform
- uid: 7836
components:
- - pos: -4.5,-9.5
+ - pos: -4.5,-14.5
parent: 2
type: Transform
- uid: 7837
components:
- - pos: -4.5,-8.5
+ - pos: -4.5,-13.5
parent: 2
type: Transform
- uid: 7838
components:
- - pos: -4.5,-7.5
+ - pos: -4.5,-12.5
parent: 2
type: Transform
- uid: 7839
components:
- - pos: -4.5,-6.5
+ - pos: -4.5,-11.5
parent: 2
type: Transform
- uid: 7840
components:
- - pos: -4.5,-5.5
+ - pos: -4.5,-10.5
parent: 2
type: Transform
- uid: 7841
components:
- - pos: -4.5,-4.5
+ - pos: -4.5,-9.5
parent: 2
type: Transform
- uid: 7842
components:
- - pos: -4.5,-3.5
+ - pos: -4.5,-8.5
parent: 2
type: Transform
- uid: 7843
components:
- - pos: -4.5,-2.5
+ - pos: -4.5,-7.5
parent: 2
type: Transform
- uid: 7844
components:
- - pos: -4.5,-1.5
+ - pos: -4.5,-6.5
parent: 2
type: Transform
- uid: 7845
components:
- - pos: -4.5,-0.5
+ - pos: -4.5,-5.5
parent: 2
type: Transform
- uid: 7846
components:
- - pos: -4.5,0.5
+ - pos: -4.5,-4.5
parent: 2
type: Transform
- uid: 7847
components:
- - pos: -4.5,1.5
+ - pos: -4.5,-3.5
parent: 2
type: Transform
- uid: 7848
components:
- - pos: 25.5,8.5
+ - pos: -4.5,-2.5
parent: 2
type: Transform
- uid: 7849
components:
- - pos: 25.5,9.5
+ - pos: -4.5,-1.5
parent: 2
type: Transform
- uid: 7850
components:
- - pos: 24.5,9.5
+ - pos: -4.5,-0.5
parent: 2
type: Transform
- uid: 7851
components:
- - pos: 24.5,10.5
+ - pos: -4.5,0.5
parent: 2
type: Transform
- uid: 7852
components:
- - pos: 24.5,11.5
+ - pos: -4.5,1.5
parent: 2
type: Transform
- uid: 7853
components:
- - pos: 24.5,12.5
+ - pos: 25.5,8.5
parent: 2
type: Transform
- uid: 7854
components:
- - pos: 24.5,13.5
+ - pos: 25.5,9.5
parent: 2
type: Transform
- uid: 7855
components:
- - pos: 24.5,14.5
+ - pos: 24.5,9.5
parent: 2
type: Transform
- uid: 7856
components:
- - pos: 24.5,15.5
+ - pos: 24.5,10.5
parent: 2
type: Transform
- uid: 7857
components:
- - pos: 24.5,16.5
+ - pos: 24.5,11.5
parent: 2
type: Transform
- uid: 7858
components:
- - pos: 23.5,16.5
+ - pos: 24.5,12.5
parent: 2
type: Transform
- uid: 7859
components:
- - pos: 22.5,16.5
+ - pos: 24.5,13.5
parent: 2
type: Transform
- uid: 7860
components:
- - pos: 24.5,17.5
+ - pos: 24.5,14.5
parent: 2
type: Transform
- uid: 7861
components:
- - pos: 24.5,18.5
+ - pos: 24.5,15.5
parent: 2
type: Transform
- uid: 7862
components:
- - pos: 25.5,18.5
+ - pos: 24.5,16.5
parent: 2
type: Transform
- uid: 7863
components:
- - pos: 26.5,18.5
+ - pos: 23.5,16.5
parent: 2
type: Transform
- uid: 7864
components:
- - pos: 27.5,18.5
+ - pos: 22.5,16.5
parent: 2
type: Transform
- uid: 7865
components:
- - pos: 28.5,18.5
+ - pos: 24.5,17.5
parent: 2
type: Transform
- uid: 7866
components:
- - pos: 29.5,18.5
+ - pos: 24.5,18.5
parent: 2
type: Transform
- uid: 7867
components:
- - pos: 29.5,20.5
+ - pos: 25.5,18.5
parent: 2
type: Transform
- uid: 7868
components:
- - pos: 29.5,19.5
+ - pos: 26.5,18.5
parent: 2
type: Transform
- uid: 7869
components:
- - pos: 29.5,21.5
+ - pos: 27.5,18.5
parent: 2
type: Transform
- uid: 7870
components:
- - pos: 30.5,21.5
+ - pos: 28.5,18.5
parent: 2
type: Transform
- uid: 7871
components:
- - pos: 31.5,21.5
+ - pos: 29.5,18.5
parent: 2
type: Transform
- uid: 7872
components:
- - pos: 32.5,21.5
+ - pos: 29.5,20.5
parent: 2
type: Transform
- uid: 7873
components:
- - pos: 32.5,22.5
+ - pos: 29.5,19.5
parent: 2
type: Transform
- uid: 7874
components:
- - pos: 32.5,23.5
+ - pos: 29.5,21.5
parent: 2
type: Transform
- uid: 7875
components:
- - pos: 32.5,24.5
+ - pos: 30.5,21.5
parent: 2
type: Transform
- uid: 7876
components:
- - pos: 32.5,25.5
+ - pos: 31.5,21.5
parent: 2
type: Transform
- uid: 7877
components:
- - pos: 22.5,17.5
+ - pos: 32.5,21.5
parent: 2
type: Transform
- uid: 7878
components:
- - pos: 22.5,18.5
+ - pos: 32.5,22.5
parent: 2
type: Transform
- uid: 7879
components:
- - pos: 22.5,19.5
+ - pos: 32.5,23.5
parent: 2
type: Transform
- uid: 7880
components:
- - pos: 22.5,20.5
+ - pos: 32.5,24.5
parent: 2
type: Transform
- uid: 7881
components:
- - pos: 22.5,21.5
+ - pos: 32.5,25.5
parent: 2
type: Transform
- uid: 7882
components:
- - pos: 22.5,22.5
+ - pos: 22.5,17.5
parent: 2
type: Transform
- uid: 7883
components:
- - pos: 21.5,22.5
+ - pos: 22.5,18.5
parent: 2
type: Transform
- uid: 7884
components:
- - pos: 21.5,23.5
+ - pos: 22.5,19.5
parent: 2
type: Transform
- uid: 7885
components:
- - pos: 21.5,24.5
+ - pos: 22.5,20.5
parent: 2
type: Transform
- uid: 7886
components:
- - pos: 21.5,25.5
+ - pos: 22.5,21.5
parent: 2
type: Transform
- uid: 7887
components:
- - pos: 20.5,25.5
+ - pos: 22.5,22.5
parent: 2
type: Transform
- uid: 7888
components:
- - pos: 18.5,25.5
+ - pos: 21.5,22.5
parent: 2
type: Transform
- uid: 7889
components:
- - pos: 19.5,25.5
+ - pos: 21.5,23.5
parent: 2
type: Transform
- uid: 7890
components:
- - pos: 33.5,25.5
+ - pos: 21.5,24.5
parent: 2
type: Transform
- uid: 7891
components:
- - pos: -4.5,2.5
+ - pos: 21.5,25.5
parent: 2
type: Transform
- uid: 7892
components:
- - pos: -5.5,2.5
+ - pos: 20.5,25.5
parent: 2
type: Transform
- uid: 7893
components:
- - pos: -6.5,2.5
+ - pos: 18.5,25.5
parent: 2
type: Transform
- uid: 7894
components:
- - pos: -7.5,2.5
+ - pos: 19.5,25.5
parent: 2
type: Transform
- uid: 7895
components:
- - pos: -8.5,2.5
+ - pos: 33.5,25.5
parent: 2
type: Transform
- uid: 7896
components:
- - pos: -9.5,2.5
+ - pos: -4.5,2.5
parent: 2
type: Transform
- uid: 7897
components:
- - pos: -10.5,2.5
+ - pos: -5.5,2.5
parent: 2
type: Transform
- uid: 7898
components:
- - pos: -11.5,2.5
+ - pos: -6.5,2.5
parent: 2
type: Transform
- uid: 7899
components:
- - pos: -12.5,2.5
+ - pos: -7.5,2.5
parent: 2
type: Transform
- uid: 7900
components:
- - pos: -13.5,2.5
+ - pos: -8.5,2.5
parent: 2
type: Transform
- uid: 7901
components:
- - pos: -2.5,-62.5
+ - pos: -9.5,2.5
parent: 2
type: Transform
- uid: 7902
components:
- - pos: 34.5,1.5
+ - pos: -10.5,2.5
parent: 2
type: Transform
- uid: 7903
components:
- - pos: 35.5,1.5
+ - pos: -11.5,2.5
parent: 2
type: Transform
- uid: 7904
components:
- - pos: 36.5,1.5
+ - pos: -12.5,2.5
parent: 2
type: Transform
- uid: 7905
components:
- - pos: 36.5,2.5
+ - pos: -13.5,2.5
parent: 2
type: Transform
- uid: 7906
components:
- - pos: 37.5,2.5
+ - pos: -2.5,-62.5
parent: 2
type: Transform
- uid: 7907
components:
- - pos: 38.5,2.5
+ - pos: 34.5,1.5
parent: 2
type: Transform
- uid: 7908
components:
- - pos: 39.5,2.5
+ - pos: 35.5,1.5
parent: 2
type: Transform
- uid: 7909
components:
- - pos: 40.5,2.5
+ - pos: 36.5,1.5
parent: 2
type: Transform
- uid: 7910
components:
- - pos: 41.5,2.5
+ - pos: 36.5,2.5
parent: 2
type: Transform
- uid: 7911
components:
- - pos: 42.5,2.5
+ - pos: 37.5,2.5
parent: 2
type: Transform
- uid: 7912
components:
- - pos: 44.5,2.5
+ - pos: 38.5,2.5
parent: 2
type: Transform
- uid: 7913
components:
- - pos: 43.5,2.5
+ - pos: 39.5,2.5
parent: 2
type: Transform
- uid: 7914
components:
- - pos: -10.5,26.5
+ - pos: 40.5,2.5
parent: 2
type: Transform
- uid: 7915
components:
- - pos: -14.5,35.5
+ - pos: 41.5,2.5
parent: 2
type: Transform
- uid: 7916
components:
- - pos: -9.5,26.5
+ - pos: 42.5,2.5
parent: 2
type: Transform
- uid: 7917
components:
- - pos: -20.5,29.5
+ - pos: 44.5,2.5
parent: 2
type: Transform
- uid: 7918
components:
- - pos: -18.5,29.5
+ - pos: 43.5,2.5
parent: 2
type: Transform
- uid: 7919
components:
- - pos: -20.5,28.5
+ - pos: -10.5,26.5
parent: 2
type: Transform
- uid: 7920
components:
- - pos: -14.5,31.5
+ - pos: -14.5,35.5
parent: 2
type: Transform
- uid: 7921
components:
- - pos: -19.5,29.5
+ - pos: -9.5,26.5
parent: 2
type: Transform
- uid: 7922
components:
- - pos: -14.5,33.5
+ - pos: -20.5,29.5
parent: 2
type: Transform
- uid: 7923
components:
- - pos: -20.5,26.5
+ - pos: -18.5,29.5
parent: 2
type: Transform
- uid: 7924
components:
- - pos: -20.5,27.5
+ - pos: -20.5,28.5
parent: 2
type: Transform
- uid: 7925
components:
- - pos: -14.5,39.5
+ - pos: -14.5,31.5
parent: 2
type: Transform
- uid: 7926
components:
- - pos: -14.5,40.5
+ - pos: -19.5,29.5
parent: 2
type: Transform
- uid: 7927
components:
- - pos: -9.5,27.5
+ - pos: -14.5,33.5
parent: 2
type: Transform
- uid: 7928
components:
- - pos: -9.5,29.5
+ - pos: -20.5,26.5
parent: 2
type: Transform
- uid: 7929
components:
- - pos: -8.5,29.5
+ - pos: -20.5,27.5
parent: 2
type: Transform
- uid: 7930
components:
- - pos: -8.5,30.5
+ - pos: -14.5,39.5
parent: 2
type: Transform
- uid: 7931
components:
- - pos: -8.5,31.5
+ - pos: -14.5,40.5
parent: 2
type: Transform
- uid: 7932
components:
- - pos: 16.5,27.5
+ - pos: -9.5,27.5
parent: 2
type: Transform
- uid: 7933
components:
- - pos: 16.5,26.5
+ - pos: -9.5,29.5
parent: 2
type: Transform
- uid: 7934
components:
- - pos: 16.5,25.5
+ - pos: -8.5,29.5
parent: 2
type: Transform
- uid: 7935
components:
- - pos: 17.5,25.5
+ - pos: -8.5,30.5
parent: 2
type: Transform
- uid: 7936
components:
- - pos: 45.5,2.5
+ - pos: -8.5,31.5
parent: 2
type: Transform
- uid: 7937
components:
- - pos: 46.5,2.5
+ - pos: 16.5,27.5
parent: 2
type: Transform
- uid: 7938
components:
- - pos: 47.5,2.5
+ - pos: 16.5,26.5
parent: 2
type: Transform
- uid: 7939
components:
- - pos: 48.5,2.5
+ - pos: 16.5,25.5
parent: 2
type: Transform
- uid: 7940
components:
- - pos: 49.5,2.5
+ - pos: 17.5,25.5
parent: 2
type: Transform
- uid: 7941
components:
- - pos: 50.5,2.5
+ - pos: 45.5,2.5
parent: 2
type: Transform
- uid: 7942
components:
- - pos: 51.5,2.5
+ - pos: 46.5,2.5
parent: 2
type: Transform
- uid: 7943
components:
- - pos: 52.5,2.5
+ - pos: 47.5,2.5
parent: 2
type: Transform
- uid: 7944
components:
- - pos: 52.5,1.5
+ - pos: 48.5,2.5
parent: 2
type: Transform
- uid: 7945
components:
- - pos: 52.5,0.5
+ - pos: 49.5,2.5
parent: 2
type: Transform
- uid: 7946
components:
- - pos: 52.5,-0.5
+ - pos: 50.5,2.5
parent: 2
type: Transform
- uid: 7947
components:
- - pos: 53.5,1.5
+ - pos: 51.5,2.5
parent: 2
type: Transform
- uid: 7948
components:
- - pos: 54.5,1.5
+ - pos: 52.5,2.5
parent: 2
type: Transform
- uid: 7949
components:
- - pos: 55.5,1.5
+ - pos: 52.5,1.5
parent: 2
type: Transform
- uid: 7950
components:
- - pos: 56.5,1.5
+ - pos: 52.5,0.5
parent: 2
type: Transform
- uid: 7951
components:
- - pos: 57.5,1.5
+ - pos: 52.5,-0.5
parent: 2
type: Transform
- uid: 7952
components:
- - pos: 58.5,1.5
+ - pos: 53.5,1.5
parent: 2
type: Transform
- uid: 7953
components:
- - pos: 59.5,1.5
+ - pos: 54.5,1.5
parent: 2
type: Transform
- uid: 7954
components:
- - pos: 60.5,1.5
+ - pos: 55.5,1.5
parent: 2
type: Transform
- uid: 7955
components:
- - pos: 61.5,1.5
+ - pos: 56.5,1.5
parent: 2
type: Transform
- uid: 7956
components:
- - pos: 62.5,1.5
+ - pos: 57.5,1.5
parent: 2
type: Transform
- uid: 7957
components:
- - pos: 62.5,2.5
+ - pos: 58.5,1.5
parent: 2
type: Transform
- uid: 7958
components:
- - pos: 62.5,3.5
+ - pos: 59.5,1.5
parent: 2
type: Transform
- uid: 7959
components:
- - pos: 62.5,4.5
+ - pos: 60.5,1.5
parent: 2
type: Transform
- uid: 7960
components:
- - pos: 62.5,5.5
+ - pos: 61.5,1.5
parent: 2
type: Transform
- uid: 7961
components:
- - pos: 62.5,6.5
+ - pos: 62.5,1.5
parent: 2
type: Transform
- uid: 7962
components:
- - pos: 62.5,7.5
+ - pos: 62.5,2.5
parent: 2
type: Transform
- uid: 7963
components:
- - pos: 63.5,7.5
+ - pos: 62.5,3.5
parent: 2
type: Transform
- uid: 7964
components:
- - pos: 25.5,-52.5
+ - pos: 62.5,4.5
parent: 2
type: Transform
- uid: 7965
components:
- - pos: 25.5,-53.5
+ - pos: 62.5,5.5
parent: 2
type: Transform
- uid: 7966
components:
- - pos: 25.5,-54.5
+ - pos: 62.5,6.5
parent: 2
type: Transform
- uid: 7967
components:
- - pos: 25.5,-55.5
+ - pos: 62.5,7.5
parent: 2
type: Transform
- uid: 7968
components:
- - pos: 25.5,-56.5
+ - pos: 63.5,7.5
parent: 2
type: Transform
- uid: 7969
components:
- - pos: 25.5,-57.5
+ - pos: 25.5,-52.5
parent: 2
type: Transform
- uid: 7970
components:
- - pos: 25.5,-58.5
+ - pos: 25.5,-53.5
parent: 2
type: Transform
- uid: 7971
components:
- - pos: 25.5,-59.5
+ - pos: 25.5,-54.5
parent: 2
type: Transform
- uid: 7972
components:
- - pos: 26.5,-59.5
+ - pos: 25.5,-55.5
parent: 2
type: Transform
- uid: 7973
components:
- - pos: 27.5,-59.5
+ - pos: 25.5,-56.5
parent: 2
type: Transform
- uid: 7974
components:
- - pos: 28.5,-59.5
+ - pos: 25.5,-57.5
parent: 2
type: Transform
- uid: 7975
components:
- - pos: 29.5,-59.5
+ - pos: 25.5,-58.5
parent: 2
type: Transform
- uid: 7976
components:
- - pos: 30.5,-59.5
+ - pos: 25.5,-59.5
parent: 2
type: Transform
- uid: 7977
components:
- - pos: 31.5,-59.5
+ - pos: 26.5,-59.5
parent: 2
type: Transform
- uid: 7978
components:
- - pos: 32.5,-59.5
+ - pos: 27.5,-59.5
parent: 2
type: Transform
- uid: 7979
components:
- - pos: 33.5,-59.5
+ - pos: 28.5,-59.5
parent: 2
type: Transform
- uid: 7980
components:
- - pos: 34.5,-59.5
+ - pos: 29.5,-59.5
parent: 2
type: Transform
- uid: 7981
components:
- - pos: -13.5,1.5
+ - pos: 30.5,-59.5
parent: 2
type: Transform
- uid: 7982
components:
- - pos: -13.5,0.5
+ - pos: 31.5,-59.5
parent: 2
type: Transform
- uid: 7983
components:
- - pos: -13.5,-0.5
+ - pos: 32.5,-59.5
parent: 2
type: Transform
- uid: 7984
components:
- - pos: -13.5,-1.5
+ - pos: 33.5,-59.5
parent: 2
type: Transform
- uid: 7985
components:
- - pos: -13.5,-2.5
+ - pos: 34.5,-59.5
parent: 2
type: Transform
- uid: 7986
components:
- - pos: -13.5,-3.5
+ - pos: -13.5,1.5
parent: 2
type: Transform
- uid: 7987
components:
- - pos: -13.5,-4.5
+ - pos: -13.5,0.5
parent: 2
type: Transform
- uid: 7988
components:
- - pos: -13.5,-5.5
+ - pos: -13.5,-0.5
parent: 2
type: Transform
- uid: 7989
components:
- - pos: -14.5,-5.5
+ - pos: -13.5,-1.5
parent: 2
type: Transform
- uid: 7990
components:
- - pos: -15.5,-5.5
+ - pos: -13.5,-2.5
parent: 2
type: Transform
- uid: 7991
components:
- - pos: -16.5,-5.5
+ - pos: -13.5,-3.5
parent: 2
type: Transform
- uid: 7992
components:
- - pos: -17.5,-5.5
+ - pos: -13.5,-4.5
parent: 2
type: Transform
- uid: 7993
components:
- - pos: -18.5,-5.5
+ - pos: -13.5,-5.5
parent: 2
type: Transform
- uid: 7994
components:
- - pos: -19.5,-5.5
+ - pos: -14.5,-5.5
parent: 2
type: Transform
- uid: 7995
components:
- - pos: -19.5,-6.5
+ - pos: -15.5,-5.5
parent: 2
type: Transform
- uid: 7996
components:
- - pos: -19.5,-7.5
+ - pos: -16.5,-5.5
parent: 2
type: Transform
- uid: 7997
components:
- - pos: -19.5,-8.5
+ - pos: -17.5,-5.5
parent: 2
type: Transform
- uid: 7998
components:
- - pos: -19.5,-9.5
+ - pos: -18.5,-5.5
parent: 2
type: Transform
- uid: 7999
components:
- - pos: -19.5,-10.5
+ - pos: -19.5,-5.5
parent: 2
type: Transform
- uid: 8000
components:
- - pos: -19.5,-11.5
+ - pos: -19.5,-6.5
parent: 2
type: Transform
- uid: 8001
components:
- - pos: -19.5,-12.5
+ - pos: -19.5,-7.5
parent: 2
type: Transform
- uid: 8002
components:
- - pos: -19.5,-13.5
+ - pos: -19.5,-8.5
parent: 2
type: Transform
- uid: 8003
components:
- - pos: -19.5,-14.5
+ - pos: -19.5,-9.5
parent: 2
type: Transform
- uid: 8004
components:
- - pos: -19.5,-15.5
+ - pos: -19.5,-10.5
parent: 2
type: Transform
- uid: 8005
components:
- - pos: -19.5,-16.5
+ - pos: -19.5,-11.5
parent: 2
type: Transform
- uid: 8006
components:
- - pos: -19.5,-17.5
+ - pos: -19.5,-12.5
parent: 2
type: Transform
- uid: 8007
components:
- - pos: -19.5,-18.5
+ - pos: -19.5,-13.5
parent: 2
type: Transform
- uid: 8008
components:
- - pos: -19.5,-19.5
+ - pos: -19.5,-14.5
parent: 2
type: Transform
- uid: 8009
components:
- - pos: -19.5,-20.5
+ - pos: -19.5,-15.5
parent: 2
type: Transform
- uid: 8010
components:
- - pos: -19.5,-21.5
+ - pos: -19.5,-16.5
parent: 2
type: Transform
- uid: 8011
components:
- - pos: -19.5,-22.5
+ - pos: -19.5,-17.5
parent: 2
type: Transform
- uid: 8012
components:
- - pos: -19.5,-23.5
+ - pos: -19.5,-18.5
parent: 2
type: Transform
- uid: 8013
components:
- - pos: -19.5,-24.5
+ - pos: -19.5,-19.5
parent: 2
type: Transform
- uid: 8014
components:
- - pos: -19.5,-25.5
+ - pos: -19.5,-20.5
parent: 2
type: Transform
- uid: 8015
components:
- - pos: -19.5,-26.5
+ - pos: -19.5,-21.5
parent: 2
type: Transform
- uid: 8016
components:
- - pos: -19.5,-27.5
+ - pos: -19.5,-22.5
parent: 2
type: Transform
- uid: 8017
components:
- - pos: -18.5,-26.5
+ - pos: -19.5,-23.5
parent: 2
type: Transform
- uid: 8018
components:
- - pos: 4.5,-15.5
+ - pos: -19.5,-24.5
parent: 2
type: Transform
- uid: 8019
components:
- - pos: 52.5,-1.5
+ - pos: -19.5,-25.5
parent: 2
type: Transform
- uid: 8020
components:
- - pos: 52.5,-2.5
+ - pos: -19.5,-26.5
parent: 2
type: Transform
- uid: 8021
components:
- - pos: 52.5,-3.5
+ - pos: -19.5,-27.5
parent: 2
type: Transform
- uid: 8022
components:
- - pos: 52.5,-4.5
+ - pos: -18.5,-26.5
parent: 2
type: Transform
- uid: 8023
components:
- - pos: 52.5,-5.5
+ - pos: 4.5,-15.5
parent: 2
type: Transform
- uid: 8024
components:
- - pos: 52.5,-6.5
+ - pos: 52.5,-1.5
parent: 2
type: Transform
- uid: 8025
components:
- - pos: 52.5,-7.5
+ - pos: 52.5,-2.5
parent: 2
type: Transform
- uid: 8026
components:
- - pos: 51.5,-7.5
+ - pos: 52.5,-3.5
parent: 2
type: Transform
- uid: 8027
components:
- - pos: 50.5,-7.5
+ - pos: 52.5,-4.5
parent: 2
type: Transform
- uid: 8028
components:
- - pos: 51.5,-1.5
+ - pos: 52.5,-5.5
parent: 2
type: Transform
- uid: 8029
components:
- - pos: 50.5,-1.5
+ - pos: 52.5,-6.5
parent: 2
type: Transform
- uid: 8030
components:
- - pos: 49.5,-1.5
+ - pos: 52.5,-7.5
parent: 2
type: Transform
- uid: 8031
components:
- - pos: 48.5,-1.5
+ - pos: 51.5,-7.5
parent: 2
type: Transform
- uid: 8032
components:
- - pos: 48.5,-2.5
+ - pos: 50.5,-7.5
parent: 2
type: Transform
- uid: 8033
components:
- - pos: 48.5,-3.5
+ - pos: 51.5,-1.5
parent: 2
type: Transform
- uid: 8034
components:
- - pos: 47.5,-3.5
+ - pos: 50.5,-1.5
parent: 2
type: Transform
- uid: 8035
components:
- - pos: 71.5,-46.5
+ - pos: 49.5,-1.5
parent: 2
type: Transform
- uid: 8036
components:
- - pos: 49.5,-7.5
+ - pos: 48.5,-1.5
parent: 2
type: Transform
- uid: 8037
components:
- - pos: 49.5,-6.5
+ - pos: 48.5,-2.5
parent: 2
type: Transform
- uid: 8038
components:
- - pos: 49.5,-5.5
+ - pos: 48.5,-3.5
parent: 2
type: Transform
- uid: 8039
components:
- - pos: 48.5,-5.5
+ - pos: 47.5,-3.5
parent: 2
type: Transform
- uid: 8040
components:
- - pos: 38.5,-44.5
+ - pos: 71.5,-46.5
parent: 2
type: Transform
- uid: 8041
components:
- - pos: -24.5,-16.5
+ - pos: 49.5,-7.5
parent: 2
type: Transform
- uid: 8042
components:
- - pos: 36.5,-42.5
+ - pos: 49.5,-6.5
parent: 2
type: Transform
- uid: 8043
components:
- - pos: 37.5,-42.5
+ - pos: 49.5,-5.5
parent: 2
type: Transform
- uid: 8044
components:
- - pos: 38.5,-42.5
+ - pos: 48.5,-5.5
parent: 2
type: Transform
- uid: 8045
components:
- - pos: 39.5,-42.5
+ - pos: 38.5,-44.5
parent: 2
type: Transform
- uid: 8046
components:
- - pos: 40.5,-42.5
+ - pos: -24.5,-16.5
parent: 2
type: Transform
- uid: 8047
components:
- - pos: 41.5,-42.5
+ - pos: 36.5,-42.5
parent: 2
type: Transform
- uid: 8048
components:
- - pos: 42.5,-42.5
+ - pos: 37.5,-42.5
parent: 2
type: Transform
- uid: 8049
components:
- - pos: 43.5,-42.5
+ - pos: 38.5,-42.5
parent: 2
type: Transform
- uid: 8050
components:
- - pos: 44.5,-42.5
+ - pos: 39.5,-42.5
parent: 2
type: Transform
- uid: 8051
components:
- - pos: 45.5,-42.5
+ - pos: 40.5,-42.5
parent: 2
type: Transform
- uid: 8052
components:
- - pos: 46.5,-42.5
+ - pos: 41.5,-42.5
parent: 2
type: Transform
- uid: 8053
components:
- - pos: 47.5,-42.5
+ - pos: 42.5,-42.5
parent: 2
type: Transform
- uid: 8054
components:
- - pos: 48.5,-42.5
+ - pos: 43.5,-42.5
parent: 2
type: Transform
- uid: 8055
components:
- - pos: 49.5,-42.5
+ - pos: 44.5,-42.5
parent: 2
type: Transform
- uid: 8056
components:
- - pos: 49.5,-43.5
+ - pos: 45.5,-42.5
parent: 2
type: Transform
- uid: 8057
components:
- - pos: 49.5,-44.5
+ - pos: 46.5,-42.5
parent: 2
type: Transform
- uid: 8058
components:
- - pos: 38.5,-45.5
+ - pos: 47.5,-42.5
parent: 2
type: Transform
- uid: 8059
components:
- - pos: 38.5,-43.5
+ - pos: 48.5,-42.5
parent: 2
type: Transform
- uid: 8060
components:
- - pos: 38.5,-46.5
+ - pos: 49.5,-42.5
parent: 2
type: Transform
- uid: 8061
components:
- - pos: -19.5,-4.5
+ - pos: 49.5,-43.5
parent: 2
type: Transform
- uid: 8062
components:
- - pos: -19.5,-3.5
+ - pos: 49.5,-44.5
parent: 2
type: Transform
- uid: 8063
components:
- - pos: -19.5,-2.5
+ - pos: 38.5,-45.5
parent: 2
type: Transform
- uid: 8064
components:
- - pos: -19.5,-1.5
+ - pos: 38.5,-43.5
parent: 2
type: Transform
- uid: 8065
components:
- - pos: -19.5,-0.5
+ - pos: 38.5,-46.5
parent: 2
type: Transform
- uid: 8066
components:
- - pos: -18.5,-0.5
+ - pos: -19.5,-4.5
parent: 2
type: Transform
- uid: 8067
components:
- - pos: -17.5,-0.5
+ - pos: -19.5,-3.5
parent: 2
type: Transform
- uid: 8068
components:
- - pos: -16.5,-0.5
+ - pos: -19.5,-2.5
parent: 2
type: Transform
- uid: 8069
components:
- - pos: -20.5,-12.5
+ - pos: -19.5,-1.5
parent: 2
type: Transform
- uid: 8070
components:
- - pos: -21.5,-12.5
+ - pos: -19.5,-0.5
parent: 2
type: Transform
- uid: 8071
components:
- - pos: -23.5,-12.5
+ - pos: -18.5,-0.5
parent: 2
type: Transform
- uid: 8072
components:
- - pos: -22.5,-12.5
+ - pos: -17.5,-0.5
parent: 2
type: Transform
- uid: 8073
components:
- - pos: -24.5,-17.5
+ - pos: -16.5,-0.5
parent: 2
type: Transform
- uid: 8074
components:
- - pos: -25.5,-17.5
+ - pos: -20.5,-12.5
parent: 2
type: Transform
- uid: 8075
components:
- - pos: -26.5,-17.5
+ - pos: -21.5,-12.5
parent: 2
type: Transform
- uid: 8076
components:
- - pos: -27.5,-17.5
+ - pos: -23.5,-12.5
parent: 2
type: Transform
- uid: 8077
components:
- - pos: -28.5,-17.5
+ - pos: -22.5,-12.5
parent: 2
type: Transform
- uid: 8078
components:
- - pos: -29.5,-17.5
+ - pos: -24.5,-17.5
parent: 2
type: Transform
- uid: 8079
components:
- - pos: -30.5,-17.5
+ - pos: -25.5,-17.5
parent: 2
type: Transform
- uid: 8080
components:
- - pos: -31.5,-17.5
+ - pos: -26.5,-17.5
parent: 2
type: Transform
- uid: 8081
components:
- - pos: -20.5,-22.5
+ - pos: -27.5,-17.5
parent: 2
type: Transform
- uid: 8082
components:
- - pos: -21.5,-22.5
+ - pos: -28.5,-17.5
parent: 2
type: Transform
- uid: 8083
components:
- - pos: -22.5,-22.5
+ - pos: -29.5,-17.5
parent: 2
type: Transform
- uid: 8084
components:
- - pos: -23.5,-22.5
+ - pos: -30.5,-17.5
parent: 2
type: Transform
- uid: 8085
components:
- - pos: -24.5,-22.5
+ - pos: -31.5,-17.5
parent: 2
type: Transform
- uid: 8086
components:
- - pos: -25.5,-22.5
+ - pos: -20.5,-22.5
parent: 2
type: Transform
- uid: 8087
components:
- - pos: -26.5,-22.5
+ - pos: -21.5,-22.5
parent: 2
type: Transform
- uid: 8088
components:
- - pos: -27.5,-22.5
+ - pos: -22.5,-22.5
parent: 2
type: Transform
- uid: 8089
components:
- - pos: -28.5,-22.5
+ - pos: -23.5,-22.5
parent: 2
type: Transform
- uid: 8090
components:
- - pos: -28.5,-23.5
+ - pos: -24.5,-22.5
parent: 2
type: Transform
- uid: 8091
components:
- - pos: -24.5,-12.5
+ - pos: -25.5,-22.5
parent: 2
type: Transform
- uid: 8092
components:
- - pos: 35.5,-59.5
+ - pos: -26.5,-22.5
parent: 2
type: Transform
- uid: 8093
components:
- - pos: 36.5,-59.5
+ - pos: -27.5,-22.5
parent: 2
type: Transform
- uid: 8094
components:
- - pos: 37.5,-59.5
+ - pos: -28.5,-22.5
parent: 2
type: Transform
- uid: 8095
components:
- - pos: -18.5,-41.5
+ - pos: -28.5,-23.5
parent: 2
type: Transform
- uid: 8096
components:
- - pos: -18.5,-40.5
+ - pos: -24.5,-12.5
parent: 2
type: Transform
- uid: 8097
components:
- - pos: -18.5,-39.5
+ - pos: 35.5,-59.5
parent: 2
type: Transform
- uid: 8098
components:
- - pos: -18.5,-38.5
+ - pos: 36.5,-59.5
parent: 2
type: Transform
- uid: 8099
components:
- - pos: -18.5,-37.5
+ - pos: 37.5,-59.5
parent: 2
type: Transform
- uid: 8100
components:
- - pos: -18.5,-36.5
+ - pos: -18.5,-41.5
parent: 2
type: Transform
- uid: 8101
components:
- - pos: -18.5,-35.5
+ - pos: -18.5,-40.5
parent: 2
type: Transform
- uid: 8102
components:
- - pos: -18.5,-34.5
+ - pos: -18.5,-39.5
parent: 2
type: Transform
- uid: 8103
components:
- - pos: -18.5,-33.5
+ - pos: -18.5,-38.5
parent: 2
type: Transform
- uid: 8104
components:
- - pos: -18.5,-32.5
+ - pos: -18.5,-37.5
parent: 2
type: Transform
- uid: 8105
components:
- - pos: -18.5,-31.5
+ - pos: -18.5,-36.5
parent: 2
type: Transform
- uid: 8106
components:
- - pos: -18.5,-30.5
+ - pos: -18.5,-35.5
parent: 2
type: Transform
- uid: 8107
components:
- - pos: -19.5,-30.5
+ - pos: -18.5,-34.5
parent: 2
type: Transform
- uid: 8108
components:
- - pos: -19.5,-29.5
+ - pos: -18.5,-33.5
parent: 2
type: Transform
- uid: 8109
components:
- - pos: -19.5,-28.5
+ - pos: -18.5,-32.5
parent: 2
type: Transform
- uid: 8110
components:
- - pos: 38.5,-59.5
+ - pos: -18.5,-31.5
parent: 2
type: Transform
- uid: 8111
components:
- - pos: 39.5,-59.5
+ - pos: -18.5,-30.5
parent: 2
type: Transform
- uid: 8112
components:
- - pos: 40.5,-59.5
+ - pos: -19.5,-30.5
parent: 2
type: Transform
- uid: 8113
components:
- - pos: 40.5,-60.5
+ - pos: -19.5,-29.5
parent: 2
type: Transform
- uid: 8114
components:
- - pos: 40.5,-61.5
+ - pos: -19.5,-28.5
parent: 2
type: Transform
- uid: 8115
components:
- - pos: 40.5,-62.5
+ - pos: 38.5,-59.5
parent: 2
type: Transform
- uid: 8116
components:
- - pos: 40.5,-63.5
+ - pos: 39.5,-59.5
parent: 2
type: Transform
- uid: 8117
components:
- - pos: 40.5,-64.5
+ - pos: 40.5,-59.5
parent: 2
type: Transform
- uid: 8118
components:
- - pos: 40.5,-65.5
+ - pos: 40.5,-60.5
parent: 2
type: Transform
- uid: 8119
components:
- - pos: 40.5,-66.5
+ - pos: 40.5,-61.5
parent: 2
type: Transform
- uid: 8120
components:
- - pos: 40.5,-67.5
+ - pos: 40.5,-62.5
parent: 2
type: Transform
- uid: 8121
components:
- - pos: 40.5,-68.5
+ - pos: 40.5,-63.5
parent: 2
type: Transform
- uid: 8122
components:
- - pos: 41.5,-59.5
+ - pos: 40.5,-64.5
parent: 2
type: Transform
- uid: 8123
components:
- - pos: 42.5,-59.5
+ - pos: 40.5,-65.5
parent: 2
type: Transform
- uid: 8124
components:
- - pos: 43.5,-59.5
+ - pos: 40.5,-66.5
parent: 2
type: Transform
- uid: 8125
components:
- - pos: 43.5,-58.5
+ - pos: 40.5,-67.5
parent: 2
type: Transform
- uid: 8126
components:
- - pos: -31.5,-16.5
+ - pos: 40.5,-68.5
parent: 2
type: Transform
- uid: 8127
components:
- - pos: -31.5,-15.5
+ - pos: 41.5,-59.5
parent: 2
type: Transform
- uid: 8128
components:
- - pos: -31.5,-14.5
+ - pos: 42.5,-59.5
parent: 2
type: Transform
- uid: 8129
components:
- - pos: -31.5,-13.5
+ - pos: 43.5,-59.5
parent: 2
type: Transform
- uid: 8130
components:
- - pos: -31.5,-12.5
+ - pos: 43.5,-58.5
parent: 2
type: Transform
- uid: 8131
components:
- - pos: -31.5,-11.5
+ - pos: -31.5,-16.5
parent: 2
type: Transform
- uid: 8132
components:
- - pos: -32.5,-11.5
+ - pos: -31.5,-15.5
parent: 2
type: Transform
- uid: 8133
components:
- - pos: -33.5,-11.5
+ - pos: -31.5,-14.5
parent: 2
type: Transform
- uid: 8134
components:
- - pos: -34.5,-11.5
+ - pos: -31.5,-13.5
parent: 2
type: Transform
- uid: 8135
components:
- - pos: -35.5,-11.5
+ - pos: -31.5,-12.5
parent: 2
type: Transform
- uid: 8136
components:
- - pos: -36.5,-11.5
+ - pos: -31.5,-11.5
parent: 2
type: Transform
- uid: 8137
components:
- - pos: -37.5,-11.5
+ - pos: -32.5,-11.5
parent: 2
type: Transform
- uid: 8138
components:
- - pos: -38.5,-11.5
+ - pos: -33.5,-11.5
parent: 2
type: Transform
- uid: 8139
components:
- - pos: -39.5,-11.5
+ - pos: -34.5,-11.5
parent: 2
type: Transform
- uid: 8140
components:
- - pos: -40.5,-11.5
+ - pos: -35.5,-11.5
parent: 2
type: Transform
- uid: 8141
components:
- - pos: -41.5,-11.5
+ - pos: -36.5,-11.5
parent: 2
type: Transform
- uid: 8142
components:
- - pos: -42.5,-11.5
+ - pos: -37.5,-11.5
parent: 2
type: Transform
- uid: 8143
components:
- - pos: -2.5,-69.5
+ - pos: -38.5,-11.5
parent: 2
type: Transform
- uid: 8144
components:
- - pos: -1.5,-69.5
+ - pos: -39.5,-11.5
parent: 2
type: Transform
- uid: 8145
components:
- - pos: -1.5,-67.5
+ - pos: -40.5,-11.5
parent: 2
type: Transform
- uid: 8146
components:
- - pos: -2.5,-60.5
+ - pos: -41.5,-11.5
parent: 2
type: Transform
- uid: 8147
components:
- - pos: -2.5,-58.5
+ - pos: -42.5,-11.5
parent: 2
type: Transform
- uid: 8148
components:
- - pos: -42.5,-6.5
+ - pos: -2.5,-69.5
parent: 2
type: Transform
- uid: 8149
components:
- - pos: -42.5,-10.5
+ - pos: -1.5,-69.5
parent: 2
type: Transform
- uid: 8150
components:
- - pos: -42.5,-7.5
+ - pos: -1.5,-67.5
parent: 2
type: Transform
- uid: 8151
components:
- - pos: -42.5,-8.5
+ - pos: -2.5,-60.5
parent: 2
type: Transform
- uid: 8152
components:
- - pos: -46.5,-11.5
+ - pos: -2.5,-58.5
parent: 2
type: Transform
- uid: 8153
components:
- - pos: -46.5,-12.5
+ - pos: -42.5,-6.5
parent: 2
type: Transform
- uid: 8154
components:
- - pos: -46.5,-13.5
+ - pos: -42.5,-10.5
parent: 2
type: Transform
- uid: 8155
components:
- - pos: -46.5,-14.5
+ - pos: -42.5,-7.5
parent: 2
type: Transform
- uid: 8156
components:
- - pos: -46.5,-10.5
+ - pos: -42.5,-8.5
parent: 2
type: Transform
- uid: 8157
components:
- - pos: -46.5,-9.5
+ - pos: -46.5,-11.5
parent: 2
type: Transform
- uid: 8158
components:
- - pos: -46.5,-15.5
+ - pos: -46.5,-12.5
parent: 2
type: Transform
- uid: 8159
components:
- - pos: -46.5,-16.5
+ - pos: -46.5,-13.5
parent: 2
type: Transform
- uid: 8160
components:
- - pos: -42.5,-9.5
+ - pos: -46.5,-14.5
parent: 2
type: Transform
- uid: 8161
components:
- - pos: -46.5,-17.5
+ - pos: -46.5,-10.5
parent: 2
type: Transform
- uid: 8162
components:
- - pos: -46.5,-18.5
+ - pos: -46.5,-9.5
parent: 2
type: Transform
- uid: 8163
components:
- - pos: -46.5,-19.5
+ - pos: -46.5,-15.5
parent: 2
type: Transform
- uid: 8164
components:
- - pos: -47.5,-19.5
+ - pos: -46.5,-16.5
parent: 2
type: Transform
- uid: 8165
components:
- - pos: -48.5,-19.5
+ - pos: -42.5,-9.5
parent: 2
type: Transform
- uid: 8166
components:
- - pos: -48.5,-20.5
+ - pos: -46.5,-17.5
parent: 2
type: Transform
- uid: 8167
components:
- - pos: -46.5,-20.5
+ - pos: -46.5,-18.5
parent: 2
type: Transform
- uid: 8168
components:
- - pos: -45.5,-19.5
+ - pos: -46.5,-19.5
parent: 2
type: Transform
- uid: 8169
components:
- - pos: -44.5,-19.5
+ - pos: -47.5,-19.5
parent: 2
type: Transform
- uid: 8170
components:
- - pos: -44.5,-20.5
+ - pos: -48.5,-19.5
parent: 2
type: Transform
- uid: 8171
components:
- - pos: -46.5,-21.5
+ - pos: -48.5,-20.5
parent: 2
type: Transform
- uid: 8172
components:
- - pos: -48.5,-21.5
+ - pos: -46.5,-20.5
parent: 2
type: Transform
- uid: 8173
components:
- - pos: -44.5,-21.5
+ - pos: -45.5,-19.5
parent: 2
type: Transform
- uid: 8174
components:
- - pos: -46.5,-22.5
+ - pos: -44.5,-19.5
parent: 2
type: Transform
- uid: 8175
components:
- - pos: -48.5,-22.5
+ - pos: -44.5,-20.5
parent: 2
type: Transform
- uid: 8176
components:
- - pos: -44.5,-22.5
+ - pos: -46.5,-21.5
parent: 2
type: Transform
- uid: 8177
components:
- - pos: -48.5,-23.5
+ - pos: -48.5,-21.5
parent: 2
type: Transform
- uid: 8178
components:
- - pos: -47.5,-23.5
+ - pos: -44.5,-21.5
parent: 2
type: Transform
- uid: 8179
components:
- - pos: -46.5,-23.5
+ - pos: -46.5,-22.5
parent: 2
type: Transform
- uid: 8180
components:
- - pos: -44.5,-23.5
+ - pos: -48.5,-22.5
parent: 2
type: Transform
- uid: 8181
components:
- - pos: -45.5,-23.5
+ - pos: -44.5,-22.5
parent: 2
type: Transform
- uid: 8182
components:
- - pos: -49.5,-23.5
+ - pos: -48.5,-23.5
parent: 2
type: Transform
- uid: 8183
components:
- - pos: -50.5,-23.5
+ - pos: -47.5,-23.5
parent: 2
type: Transform
- uid: 8184
components:
- - pos: -51.5,-24.5
+ - pos: -46.5,-23.5
parent: 2
type: Transform
- uid: 8185
components:
- - pos: -51.5,-23.5
+ - pos: -44.5,-23.5
parent: 2
type: Transform
- uid: 8186
components:
- - pos: -43.5,-22.5
+ - pos: -45.5,-23.5
parent: 2
type: Transform
- uid: 8187
components:
- - pos: -42.5,-22.5
+ - pos: -49.5,-23.5
parent: 2
type: Transform
- uid: 8188
components:
- - pos: -41.5,-22.5
+ - pos: -50.5,-23.5
parent: 2
type: Transform
- uid: 8189
components:
- - pos: -41.5,-21.5
+ - pos: -51.5,-24.5
parent: 2
type: Transform
- uid: 8190
components:
- - pos: -41.5,-20.5
+ - pos: -51.5,-23.5
parent: 2
type: Transform
- uid: 8191
components:
- - pos: -43.5,-6.5
+ - pos: -43.5,-22.5
parent: 2
type: Transform
- uid: 8192
components:
- - pos: -44.5,-6.5
+ - pos: -42.5,-22.5
parent: 2
type: Transform
- uid: 8193
components:
- - pos: -45.5,-6.5
+ - pos: -41.5,-22.5
parent: 2
type: Transform
- uid: 8194
components:
- - pos: -46.5,-6.5
+ - pos: -41.5,-21.5
parent: 2
type: Transform
- uid: 8195
components:
- - pos: -47.5,-6.5
+ - pos: -41.5,-20.5
parent: 2
type: Transform
- uid: 8196
components:
- - pos: -48.5,-6.5
+ - pos: -43.5,-6.5
parent: 2
type: Transform
- uid: 8197
components:
- - pos: -49.5,-6.5
+ - pos: -44.5,-6.5
parent: 2
type: Transform
- uid: 8198
components:
- - pos: -50.5,-6.5
+ - pos: -45.5,-6.5
parent: 2
type: Transform
- uid: 8199
components:
- - pos: -51.5,-6.5
+ - pos: -46.5,-6.5
parent: 2
type: Transform
- uid: 8200
components:
- - pos: -52.5,-6.5
+ - pos: -47.5,-6.5
parent: 2
type: Transform
- uid: 8201
components:
- - pos: -52.5,-7.5
+ - pos: -48.5,-6.5
parent: 2
type: Transform
- uid: 8202
components:
- - pos: -52.5,-8.5
+ - pos: -49.5,-6.5
parent: 2
type: Transform
- uid: 8203
components:
- - pos: -52.5,-9.5
+ - pos: -50.5,-6.5
parent: 2
type: Transform
- uid: 8204
components:
- - pos: -41.5,-12.5
+ - pos: -51.5,-6.5
parent: 2
type: Transform
- uid: 8205
components:
- - pos: -41.5,-13.5
+ - pos: -52.5,-6.5
parent: 2
type: Transform
- uid: 8206
components:
- - pos: -41.5,-14.5
+ - pos: -52.5,-7.5
parent: 2
type: Transform
- uid: 8207
components:
- - pos: -41.5,-15.5
+ - pos: -52.5,-8.5
parent: 2
type: Transform
- uid: 8208
components:
- - pos: -41.5,-18.5
+ - pos: -52.5,-9.5
parent: 2
type: Transform
- uid: 8209
components:
- - pos: -41.5,-17.5
+ - pos: -41.5,-12.5
parent: 2
type: Transform
- uid: 8210
components:
- - pos: -41.5,-19.5
+ - pos: -41.5,-13.5
parent: 2
type: Transform
- uid: 8211
components:
- - pos: -41.5,-16.5
+ - pos: -41.5,-14.5
parent: 2
type: Transform
- uid: 8212
components:
- - pos: -51.5,-9.5
+ - pos: -41.5,-15.5
parent: 2
type: Transform
- uid: 8213
components:
- - pos: -50.5,-9.5
+ - pos: -41.5,-18.5
parent: 2
type: Transform
- uid: 8214
components:
- - pos: -50.5,-8.5
+ - pos: -41.5,-17.5
parent: 2
type: Transform
- uid: 8215
components:
- - pos: -57.5,-20.5
+ - pos: -41.5,-19.5
parent: 2
type: Transform
- uid: 8216
components:
- - pos: -14.5,45.5
+ - pos: -41.5,-16.5
parent: 2
type: Transform
- uid: 8217
components:
- - pos: -14.5,44.5
+ - pos: -51.5,-9.5
parent: 2
type: Transform
- uid: 8218
components:
- - pos: -56.5,-24.5
+ - pos: -50.5,-9.5
parent: 2
type: Transform
- uid: 8219
components:
- - pos: -65.5,-25.5
+ - pos: -50.5,-8.5
parent: 2
type: Transform
- uid: 8220
components:
- - pos: -53.5,-19.5
+ - pos: -57.5,-20.5
parent: 2
type: Transform
- uid: 8221
components:
- - pos: -66.5,-25.5
+ - pos: -14.5,45.5
parent: 2
type: Transform
- uid: 8222
components:
- - pos: -53.5,-21.5
+ - pos: -14.5,44.5
parent: 2
type: Transform
- uid: 8223
components:
- - pos: -57.5,-13.5
+ - pos: -56.5,-24.5
parent: 2
type: Transform
- uid: 8224
components:
- - pos: -64.5,-28.5
+ - pos: -65.5,-25.5
parent: 2
type: Transform
- uid: 8225
components:
- - pos: -65.5,-28.5
+ - pos: -53.5,-19.5
parent: 2
type: Transform
- uid: 8226
components:
- - pos: -66.5,-28.5
+ - pos: -66.5,-25.5
parent: 2
type: Transform
- uid: 8227
components:
- - pos: -66.5,-27.5
+ - pos: -53.5,-21.5
parent: 2
type: Transform
- uid: 8228
components:
- - pos: -66.5,-26.5
+ - pos: -57.5,-13.5
parent: 2
type: Transform
- uid: 8229
components:
- - pos: -64.5,-25.5
+ - pos: -64.5,-28.5
parent: 2
type: Transform
- uid: 8230
components:
- - pos: -14.5,36.5
+ - pos: -65.5,-28.5
parent: 2
type: Transform
- uid: 8231
components:
- - pos: -56.5,-23.5
+ - pos: -66.5,-28.5
parent: 2
type: Transform
- uid: 8232
components:
- - pos: -56.5,-22.5
+ - pos: -66.5,-27.5
parent: 2
type: Transform
- uid: 8233
components:
- - pos: -56.5,-21.5
+ - pos: -66.5,-26.5
parent: 2
type: Transform
- uid: 8234
components:
- - pos: -56.5,-20.5
+ - pos: -64.5,-25.5
parent: 2
type: Transform
- uid: 8235
components:
- - pos: -64.5,-29.5
+ - pos: -14.5,36.5
parent: 2
type: Transform
- uid: 8236
components:
- - pos: -64.5,-30.5
+ - pos: -56.5,-23.5
parent: 2
type: Transform
- uid: 8237
components:
- - pos: -63.5,-30.5
+ - pos: -56.5,-22.5
parent: 2
type: Transform
- uid: 8238
components:
- - pos: -62.5,-30.5
+ - pos: -56.5,-21.5
parent: 2
type: Transform
- uid: 8239
components:
- - pos: -61.5,-30.5
+ - pos: -56.5,-20.5
parent: 2
type: Transform
- uid: 8240
components:
- - pos: -60.5,-30.5
+ - pos: -64.5,-29.5
parent: 2
type: Transform
- uid: 8241
components:
- - pos: -64.5,-31.5
+ - pos: -64.5,-30.5
parent: 2
type: Transform
- uid: 8242
components:
- - pos: -68.5,-31.5
+ - pos: -63.5,-30.5
parent: 2
type: Transform
- uid: 8243
components:
- - pos: -65.5,-31.5
+ - pos: -62.5,-30.5
parent: 2
type: Transform
- uid: 8244
components:
- - pos: -14.5,42.5
+ - pos: -61.5,-30.5
parent: 2
type: Transform
- uid: 8245
components:
- - pos: -60.5,-29.5
+ - pos: -60.5,-30.5
parent: 2
type: Transform
- uid: 8246
components:
- - pos: -60.5,-26.5
+ - pos: -64.5,-31.5
parent: 2
type: Transform
- uid: 8247
components:
- - pos: -60.5,-25.5
+ - pos: -68.5,-31.5
parent: 2
type: Transform
- uid: 8248
components:
- - pos: -59.5,-25.5
+ - pos: -65.5,-31.5
parent: 2
type: Transform
- uid: 8249
components:
- - pos: -58.5,-25.5
+ - pos: -14.5,42.5
parent: 2
type: Transform
- uid: 8250
components:
- - pos: -56.5,-13.5
+ - pos: -60.5,-29.5
parent: 2
type: Transform
- uid: 8251
components:
- - pos: -58.5,-13.5
+ - pos: -60.5,-26.5
parent: 2
type: Transform
- uid: 8252
components:
- - pos: -52.5,-19.5
+ - pos: -60.5,-25.5
parent: 2
type: Transform
- uid: 8253
components:
- - pos: -51.5,-19.5
+ - pos: -59.5,-25.5
parent: 2
type: Transform
- uid: 8254
components:
- - pos: -50.5,-19.5
+ - pos: -58.5,-25.5
parent: 2
type: Transform
- uid: 8255
components:
- - pos: -49.5,-19.5
+ - pos: -56.5,-13.5
parent: 2
type: Transform
- uid: 8256
components:
- - pos: -31.5,-18.5
+ - pos: -58.5,-13.5
parent: 2
type: Transform
- uid: 8257
components:
- - pos: -31.5,-19.5
+ - pos: -52.5,-19.5
parent: 2
type: Transform
- uid: 8258
components:
- - pos: -31.5,-20.5
+ - pos: -51.5,-19.5
parent: 2
type: Transform
- uid: 8259
components:
- - pos: -31.5,-21.5
+ - pos: -50.5,-19.5
parent: 2
type: Transform
- uid: 8260
components:
- - pos: -31.5,-22.5
+ - pos: -49.5,-19.5
parent: 2
type: Transform
- uid: 8261
components:
- - pos: -31.5,-23.5
+ - pos: -31.5,-18.5
parent: 2
type: Transform
- uid: 8262
components:
- - pos: -31.5,-24.5
+ - pos: -31.5,-19.5
parent: 2
type: Transform
- uid: 8263
components:
- - pos: -31.5,-25.5
+ - pos: -31.5,-20.5
parent: 2
type: Transform
- uid: 8264
components:
- - pos: -31.5,-26.5
+ - pos: -31.5,-21.5
parent: 2
type: Transform
- uid: 8265
components:
- - pos: -31.5,-27.5
+ - pos: -31.5,-22.5
parent: 2
type: Transform
- uid: 8266
components:
- - pos: -31.5,-28.5
+ - pos: -31.5,-23.5
parent: 2
type: Transform
- uid: 8267
components:
- - pos: -31.5,-29.5
+ - pos: -31.5,-24.5
parent: 2
type: Transform
- uid: 8268
components:
- - pos: -31.5,-30.5
+ - pos: -31.5,-25.5
parent: 2
type: Transform
- uid: 8269
components:
- - pos: -31.5,-31.5
+ - pos: -31.5,-26.5
parent: 2
type: Transform
- uid: 8270
components:
- - pos: -31.5,-32.5
+ - pos: -31.5,-27.5
parent: 2
type: Transform
- uid: 8271
components:
- - pos: -31.5,-33.5
+ - pos: -31.5,-28.5
parent: 2
type: Transform
- uid: 8272
components:
- - pos: -31.5,-34.5
+ - pos: -31.5,-29.5
parent: 2
type: Transform
- uid: 8273
components:
- - pos: -30.5,-34.5
+ - pos: -31.5,-30.5
parent: 2
type: Transform
- uid: 8274
components:
- - pos: -29.5,-34.5
+ - pos: -31.5,-31.5
parent: 2
type: Transform
- uid: 8275
components:
- - pos: -28.5,-34.5
+ - pos: -31.5,-32.5
parent: 2
type: Transform
- uid: 8276
components:
- - pos: -28.5,-35.5
+ - pos: -31.5,-33.5
parent: 2
type: Transform
- uid: 8277
components:
- - pos: -28.5,-36.5
+ - pos: -31.5,-34.5
parent: 2
type: Transform
- uid: 8278
components:
- - pos: -28.5,-37.5
+ - pos: -30.5,-34.5
parent: 2
type: Transform
- uid: 8279
components:
- - pos: -27.5,-37.5
+ - pos: -29.5,-34.5
parent: 2
type: Transform
- uid: 8280
components:
- - pos: -60.5,-28.5
+ - pos: -28.5,-34.5
parent: 2
type: Transform
- uid: 8281
components:
- - pos: -71.5,-22.5
+ - pos: -28.5,-35.5
parent: 2
type: Transform
- uid: 8282
components:
- - pos: -72.5,-22.5
+ - pos: -28.5,-36.5
parent: 2
type: Transform
- uid: 8283
components:
- - pos: -73.5,-22.5
+ - pos: -28.5,-37.5
parent: 2
type: Transform
- uid: 8284
components:
- - pos: -74.5,-22.5
+ - pos: -27.5,-37.5
parent: 2
type: Transform
- uid: 8285
components:
- - pos: -75.5,-22.5
+ - pos: -60.5,-28.5
parent: 2
type: Transform
- uid: 8286
components:
- - pos: -76.5,-22.5
+ - pos: -71.5,-22.5
parent: 2
type: Transform
- uid: 8287
components:
- - pos: -76.5,-21.5
+ - pos: -72.5,-22.5
parent: 2
type: Transform
- uid: 8288
components:
- - pos: -76.5,-20.5
+ - pos: -73.5,-22.5
parent: 2
type: Transform
- uid: 8289
components:
- - pos: -76.5,-19.5
+ - pos: -74.5,-22.5
parent: 2
type: Transform
- uid: 8290
components:
- - pos: -76.5,-18.5
+ - pos: -75.5,-22.5
parent: 2
type: Transform
- uid: 8291
components:
- - pos: -76.5,-17.5
+ - pos: -76.5,-22.5
parent: 2
type: Transform
- uid: 8292
components:
- - pos: -76.5,-16.5
+ - pos: -76.5,-21.5
parent: 2
type: Transform
- uid: 8293
components:
- - pos: -76.5,-15.5
+ - pos: -76.5,-20.5
parent: 2
type: Transform
- uid: 8294
components:
- - pos: -76.5,-14.5
+ - pos: -76.5,-19.5
parent: 2
type: Transform
- uid: 8295
components:
- - pos: -76.5,-13.5
+ - pos: -76.5,-18.5
parent: 2
type: Transform
- uid: 8296
components:
- - pos: -76.5,-12.5
+ - pos: -76.5,-17.5
parent: 2
type: Transform
- uid: 8297
components:
- - pos: -76.5,-11.5
+ - pos: -76.5,-16.5
parent: 2
type: Transform
- uid: 8298
components:
- - pos: -76.5,-10.5
+ - pos: -76.5,-15.5
parent: 2
type: Transform
- uid: 8299
components:
- - pos: -76.5,-9.5
+ - pos: -76.5,-14.5
parent: 2
type: Transform
- uid: 8300
components:
- - pos: -76.5,-8.5
+ - pos: -76.5,-13.5
parent: 2
type: Transform
- uid: 8301
components:
- - pos: -76.5,-7.5
+ - pos: -76.5,-12.5
parent: 2
type: Transform
- uid: 8302
components:
- - pos: -76.5,-6.5
+ - pos: -76.5,-11.5
parent: 2
type: Transform
- uid: 8303
components:
- - pos: -76.5,-5.5
+ - pos: -76.5,-10.5
parent: 2
type: Transform
- uid: 8304
components:
- - pos: -76.5,-4.5
+ - pos: -76.5,-9.5
parent: 2
type: Transform
- uid: 8305
components:
- - pos: -76.5,-3.5
+ - pos: -76.5,-8.5
parent: 2
type: Transform
- uid: 8306
components:
- - pos: -75.5,-3.5
+ - pos: -76.5,-7.5
parent: 2
type: Transform
- uid: 8307
components:
- - pos: -74.5,-3.5
+ - pos: -76.5,-6.5
parent: 2
type: Transform
- uid: 8308
components:
- - pos: -73.5,-3.5
+ - pos: -76.5,-5.5
parent: 2
type: Transform
- uid: 8309
components:
- - pos: -72.5,-3.5
+ - pos: -76.5,-4.5
parent: 2
type: Transform
- uid: 8310
components:
- - pos: -71.5,-3.5
+ - pos: -76.5,-3.5
parent: 2
type: Transform
- uid: 8311
components:
- - pos: -70.5,-3.5
+ - pos: -75.5,-3.5
parent: 2
type: Transform
- uid: 8312
components:
- - pos: -69.5,-3.5
+ - pos: -74.5,-3.5
parent: 2
type: Transform
- uid: 8313
components:
- - pos: -68.5,-3.5
+ - pos: -73.5,-3.5
parent: 2
type: Transform
- uid: 8314
components:
- - pos: -67.5,-3.5
+ - pos: -72.5,-3.5
parent: 2
type: Transform
- uid: 8315
components:
- - pos: -66.5,-3.5
+ - pos: -71.5,-3.5
parent: 2
type: Transform
- uid: 8316
components:
- - pos: -65.5,-3.5
+ - pos: -70.5,-3.5
parent: 2
type: Transform
- uid: 8317
components:
- - pos: -64.5,-3.5
+ - pos: -69.5,-3.5
parent: 2
type: Transform
- uid: 8318
components:
- - pos: -63.5,-3.5
+ - pos: -68.5,-3.5
parent: 2
type: Transform
- uid: 8319
components:
- - pos: -62.5,-3.5
+ - pos: -67.5,-3.5
parent: 2
type: Transform
- uid: 8320
components:
- - pos: -61.5,-3.5
+ - pos: -66.5,-3.5
parent: 2
type: Transform
- uid: 8321
components:
- - pos: -60.5,-3.5
+ - pos: -65.5,-3.5
parent: 2
type: Transform
- uid: 8322
components:
- - pos: -59.5,-3.5
+ - pos: -64.5,-3.5
parent: 2
type: Transform
- uid: 8323
components:
- - pos: -58.5,-3.5
+ - pos: -63.5,-3.5
parent: 2
type: Transform
- uid: 8324
components:
- - pos: -57.5,-3.5
+ - pos: -62.5,-3.5
parent: 2
type: Transform
- uid: 8325
components:
- - pos: -56.5,-3.5
+ - pos: -61.5,-3.5
parent: 2
type: Transform
- uid: 8326
components:
- - pos: -56.5,-4.5
+ - pos: -60.5,-3.5
parent: 2
type: Transform
- uid: 8327
components:
- - pos: -56.5,-6.5
+ - pos: -59.5,-3.5
parent: 2
type: Transform
- uid: 8328
components:
- - pos: -56.5,-5.5
+ - pos: -58.5,-3.5
parent: 2
type: Transform
- uid: 8329
components:
- - pos: -76.5,-23.5
+ - pos: -57.5,-3.5
parent: 2
type: Transform
- uid: 8330
components:
- - pos: -76.5,-24.5
+ - pos: -56.5,-3.5
parent: 2
type: Transform
- uid: 8331
components:
- - pos: -76.5,-25.5
+ - pos: -56.5,-4.5
parent: 2
type: Transform
- uid: 8332
components:
- - pos: -53.5,-25.5
+ - pos: -56.5,-6.5
parent: 2
type: Transform
- uid: 8333
components:
- - pos: -51.5,-25.5
+ - pos: -56.5,-5.5
parent: 2
type: Transform
- uid: 8334
components:
- - pos: -71.5,-21.5
+ - pos: -76.5,-23.5
parent: 2
type: Transform
- uid: 8335
components:
- - pos: -19.5,-42.5
+ - pos: -76.5,-24.5
parent: 2
type: Transform
- uid: 8336
components:
- - pos: -20.5,-42.5
+ - pos: -76.5,-25.5
parent: 2
type: Transform
- uid: 8337
components:
- - pos: -21.5,-42.5
+ - pos: -53.5,-25.5
parent: 2
type: Transform
- uid: 8338
components:
- - pos: -22.5,-42.5
+ - pos: -51.5,-25.5
parent: 2
type: Transform
- uid: 8339
components:
- - pos: -23.5,-42.5
+ - pos: -71.5,-21.5
parent: 2
type: Transform
- uid: 8340
components:
- - pos: -23.5,-43.5
+ - pos: -19.5,-42.5
parent: 2
type: Transform
- uid: 8341
components:
- - pos: -23.5,-44.5
+ - pos: -20.5,-42.5
parent: 2
type: Transform
- uid: 8342
components:
- - pos: -23.5,-45.5
+ - pos: -21.5,-42.5
parent: 2
type: Transform
- uid: 8343
components:
- - pos: -23.5,-46.5
+ - pos: -22.5,-42.5
parent: 2
type: Transform
- uid: 8344
components:
- - pos: -23.5,-47.5
+ - pos: -23.5,-42.5
parent: 2
type: Transform
- uid: 8345
components:
- - pos: -23.5,-48.5
+ - pos: -23.5,-43.5
parent: 2
type: Transform
- uid: 8346
components:
- - pos: -23.5,-49.5
+ - pos: -23.5,-44.5
parent: 2
type: Transform
- uid: 8347
components:
- - pos: -24.5,-49.5
+ - pos: -23.5,-45.5
parent: 2
type: Transform
- uid: 8348
components:
- - pos: -25.5,-49.5
+ - pos: -23.5,-46.5
parent: 2
type: Transform
- uid: 8349
components:
- - pos: -26.5,-49.5
+ - pos: -23.5,-47.5
parent: 2
type: Transform
- uid: 8350
components:
- - pos: -27.5,-49.5
+ - pos: -23.5,-48.5
parent: 2
type: Transform
- uid: 8351
components:
- - pos: -27.5,-48.5
+ - pos: -23.5,-49.5
parent: 2
type: Transform
- uid: 8352
components:
- - pos: -27.5,-47.5
+ - pos: -24.5,-49.5
parent: 2
type: Transform
- uid: 8353
components:
- - pos: -27.5,-46.5
+ - pos: -25.5,-49.5
parent: 2
type: Transform
- uid: 8354
components:
- - pos: -27.5,-45.5
+ - pos: -26.5,-49.5
parent: 2
type: Transform
- uid: 8355
components:
- - pos: -27.5,-44.5
+ - pos: -27.5,-49.5
parent: 2
type: Transform
- uid: 8356
components:
- - pos: -28.5,-44.5
+ - pos: -27.5,-48.5
parent: 2
type: Transform
- uid: 8357
components:
- - pos: -29.5,-44.5
+ - pos: -27.5,-47.5
parent: 2
type: Transform
- uid: 8358
components:
- - pos: -30.5,-44.5
+ - pos: -27.5,-46.5
parent: 2
type: Transform
- uid: 8359
components:
- - pos: -31.5,-44.5
+ - pos: -27.5,-45.5
parent: 2
type: Transform
- uid: 8360
components:
- - pos: -31.5,-45.5
+ - pos: -27.5,-44.5
parent: 2
type: Transform
- uid: 8361
components:
- - pos: -31.5,-46.5
+ - pos: -28.5,-44.5
parent: 2
type: Transform
- uid: 8362
components:
- - pos: -31.5,-47.5
+ - pos: -29.5,-44.5
parent: 2
type: Transform
- uid: 8363
components:
- - pos: -30.5,-47.5
+ - pos: -30.5,-44.5
parent: 2
type: Transform
- uid: 8364
components:
- - pos: -30.5,-48.5
+ - pos: -31.5,-44.5
parent: 2
type: Transform
- uid: 8365
components:
- - pos: -30.5,-49.5
+ - pos: -31.5,-45.5
parent: 2
type: Transform
- uid: 8366
components:
- - pos: -30.5,-50.5
+ - pos: -31.5,-46.5
parent: 2
type: Transform
- uid: 8367
components:
- - pos: -30.5,-51.5
+ - pos: -31.5,-47.5
parent: 2
type: Transform
- uid: 8368
components:
- - pos: -30.5,-52.5
+ - pos: -30.5,-47.5
parent: 2
type: Transform
- uid: 8369
components:
- - pos: -30.5,-53.5
+ - pos: -30.5,-48.5
parent: 2
type: Transform
- uid: 8370
components:
- - pos: -31.5,-53.5
+ - pos: -30.5,-49.5
parent: 2
type: Transform
- uid: 8371
components:
- - pos: -31.5,-54.5
+ - pos: -30.5,-50.5
parent: 2
type: Transform
- uid: 8372
components:
- - pos: -58.5,-88.5
+ - pos: -30.5,-51.5
parent: 2
type: Transform
- uid: 8373
components:
- - pos: -57.5,-88.5
+ - pos: -30.5,-52.5
parent: 2
type: Transform
- uid: 8374
components:
- - pos: -58.5,-87.5
+ - pos: -30.5,-53.5
parent: 2
type: Transform
- uid: 8375
components:
- - pos: -56.5,-88.5
+ - pos: -31.5,-53.5
parent: 2
type: Transform
- uid: 8376
components:
- - pos: -9.5,28.5
+ - pos: -31.5,-54.5
parent: 2
type: Transform
- uid: 8377
components:
- - pos: 14.5,32.5
+ - pos: -58.5,-88.5
parent: 2
type: Transform
- uid: 8378
components:
- - pos: 13.5,32.5
+ - pos: -57.5,-88.5
parent: 2
type: Transform
- uid: 8379
components:
- - pos: 2.5,32.5
+ - pos: -58.5,-87.5
parent: 2
type: Transform
- uid: 8380
components:
- - pos: 1.5,32.5
+ - pos: -56.5,-88.5
parent: 2
type: Transform
- uid: 8381
components:
- - pos: 0.5,32.5
+ - pos: -9.5,28.5
parent: 2
type: Transform
- uid: 8382
components:
- - pos: -0.5,32.5
+ - pos: 14.5,32.5
parent: 2
type: Transform
- uid: 8383
components:
- - pos: -1.5,32.5
+ - pos: 13.5,32.5
parent: 2
type: Transform
- uid: 8384
components:
- - pos: -2.5,32.5
+ - pos: 2.5,32.5
parent: 2
type: Transform
- uid: 8385
components:
- - pos: -3.5,32.5
+ - pos: 1.5,32.5
parent: 2
type: Transform
- uid: 8386
components:
- - pos: -4.5,32.5
+ - pos: 0.5,32.5
parent: 2
type: Transform
- uid: 8387
components:
- - pos: -5.5,32.5
+ - pos: -0.5,32.5
parent: 2
type: Transform
- uid: 8388
components:
- - pos: -6.5,32.5
+ - pos: -1.5,32.5
parent: 2
type: Transform
- uid: 8389
components:
- - pos: -7.5,32.5
+ - pos: -2.5,32.5
parent: 2
type: Transform
- uid: 8390
components:
- - pos: -8.5,32.5
+ - pos: -3.5,32.5
parent: 2
type: Transform
- uid: 8391
components:
- - pos: -8.5,33.5
+ - pos: -4.5,32.5
parent: 2
type: Transform
- uid: 8392
components:
- - pos: -8.5,34.5
+ - pos: -5.5,32.5
parent: 2
type: Transform
- uid: 8393
components:
- - pos: -8.5,35.5
+ - pos: -6.5,32.5
parent: 2
type: Transform
- uid: 8394
components:
- - pos: -14.5,32.5
+ - pos: -7.5,32.5
parent: 2
type: Transform
- uid: 8395
components:
- - pos: -14.5,30.5
+ - pos: -8.5,32.5
parent: 2
type: Transform
- uid: 8396
components:
- - pos: -14.5,29.5
+ - pos: -8.5,33.5
parent: 2
type: Transform
- uid: 8397
components:
- - pos: -16.5,29.5
+ - pos: -8.5,34.5
parent: 2
type: Transform
- uid: 8398
components:
- - pos: -22.5,17.5
+ - pos: -8.5,35.5
parent: 2
type: Transform
- uid: 8399
components:
- - pos: -21.5,17.5
+ - pos: -14.5,32.5
parent: 2
type: Transform
- uid: 8400
components:
- - pos: -20.5,17.5
+ - pos: -14.5,30.5
parent: 2
type: Transform
- uid: 8401
components:
- - pos: -22.5,16.5
+ - pos: -14.5,29.5
parent: 2
type: Transform
- uid: 8402
components:
- - pos: -23.5,16.5
+ - pos: -16.5,29.5
parent: 2
type: Transform
- uid: 8403
components:
- - pos: -23.5,15.5
+ - pos: -22.5,17.5
parent: 2
type: Transform
- uid: 8404
components:
- - pos: -13.5,3.5
+ - pos: -21.5,17.5
parent: 2
type: Transform
- uid: 8405
components:
- - pos: -13.5,4.5
+ - pos: -20.5,17.5
parent: 2
type: Transform
- uid: 8406
components:
- - pos: -13.5,5.5
+ - pos: -22.5,16.5
parent: 2
type: Transform
- uid: 8407
components:
- - pos: -13.5,6.5
+ - pos: -23.5,16.5
parent: 2
type: Transform
- uid: 8408
components:
- - pos: -13.5,7.5
+ - pos: -23.5,15.5
parent: 2
type: Transform
- uid: 8409
components:
- - pos: -14.5,7.5
+ - pos: -13.5,3.5
parent: 2
type: Transform
- uid: 8410
components:
- - pos: -15.5,7.5
+ - pos: -13.5,4.5
parent: 2
type: Transform
- uid: 8411
components:
- - pos: -16.5,7.5
+ - pos: -13.5,5.5
parent: 2
type: Transform
- uid: 8412
components:
- - pos: -17.5,7.5
+ - pos: -13.5,6.5
parent: 2
type: Transform
- uid: 8413
components:
- - pos: -18.5,7.5
+ - pos: -13.5,7.5
parent: 2
type: Transform
- uid: 8414
components:
- - pos: -19.5,7.5
+ - pos: -14.5,7.5
parent: 2
type: Transform
- uid: 8415
components:
- - pos: -20.5,7.5
+ - pos: -15.5,7.5
parent: 2
type: Transform
- uid: 8416
components:
- - pos: -20.5,8.5
+ - pos: -16.5,7.5
parent: 2
type: Transform
- uid: 8417
components:
- - pos: -20.5,9.5
+ - pos: -17.5,7.5
parent: 2
type: Transform
- uid: 8418
components:
- - pos: -20.5,10.5
+ - pos: -18.5,7.5
parent: 2
type: Transform
- uid: 8419
components:
- - pos: -20.5,11.5
+ - pos: -19.5,7.5
parent: 2
type: Transform
- uid: 8420
components:
- - pos: -20.5,12.5
+ - pos: -20.5,7.5
parent: 2
type: Transform
- uid: 8421
components:
- - pos: -20.5,13.5
+ - pos: -20.5,8.5
parent: 2
type: Transform
- uid: 8422
components:
- - pos: -20.5,14.5
+ - pos: -20.5,9.5
parent: 2
type: Transform
- uid: 8423
components:
- - pos: -20.5,15.5
+ - pos: -20.5,10.5
parent: 2
type: Transform
- uid: 8424
components:
- - pos: -20.5,16.5
+ - pos: -20.5,11.5
parent: 2
type: Transform
- uid: 8425
components:
- - pos: -71.5,-20.5
+ - pos: -20.5,12.5
parent: 2
type: Transform
- uid: 8426
components:
- - pos: -72.5,-20.5
+ - pos: -20.5,13.5
parent: 2
type: Transform
- uid: 8427
components:
- - pos: -73.5,-20.5
+ - pos: -20.5,14.5
parent: 2
type: Transform
- uid: 8428
components:
- - pos: -73.5,-19.5
+ - pos: -20.5,15.5
parent: 2
type: Transform
- uid: 8429
components:
- - pos: -73.5,-18.5
+ - pos: -20.5,16.5
parent: 2
type: Transform
- uid: 8430
components:
- - pos: -73.5,-17.5
+ - pos: -71.5,-20.5
parent: 2
type: Transform
- uid: 8431
components:
- - pos: -73.5,-16.5
+ - pos: -72.5,-20.5
parent: 2
type: Transform
- uid: 8432
components:
- - pos: -73.5,-15.5
+ - pos: -73.5,-20.5
parent: 2
type: Transform
- uid: 8433
components:
- - pos: -73.5,-14.5
+ - pos: -73.5,-19.5
parent: 2
type: Transform
- uid: 8434
components:
- - pos: -73.5,-13.5
+ - pos: -73.5,-18.5
parent: 2
type: Transform
- uid: 8435
components:
- - pos: -73.5,-12.5
+ - pos: -73.5,-17.5
parent: 2
type: Transform
- uid: 8436
components:
- - pos: -73.5,-11.5
+ - pos: -73.5,-16.5
parent: 2
type: Transform
- uid: 8437
components:
- - pos: -73.5,-10.5
+ - pos: -73.5,-15.5
parent: 2
type: Transform
- uid: 8438
components:
- - pos: -73.5,-9.5
+ - pos: -73.5,-14.5
parent: 2
type: Transform
- uid: 8439
components:
- - pos: -73.5,-8.5
+ - pos: -73.5,-13.5
parent: 2
type: Transform
- uid: 8440
components:
- - pos: -73.5,-7.5
+ - pos: -73.5,-12.5
parent: 2
type: Transform
- uid: 8441
components:
- - pos: -73.5,-6.5
+ - pos: -73.5,-11.5
parent: 2
type: Transform
- uid: 8442
components:
- - pos: -72.5,-6.5
+ - pos: -73.5,-10.5
parent: 2
type: Transform
- uid: 8443
components:
- - pos: -71.5,-6.5
+ - pos: -73.5,-9.5
parent: 2
type: Transform
- uid: 8444
components:
- - pos: -70.5,-6.5
+ - pos: -73.5,-8.5
parent: 2
type: Transform
- uid: 8445
components:
- - pos: -69.5,-6.5
+ - pos: -73.5,-7.5
parent: 2
type: Transform
- uid: 8446
components:
- - pos: -68.5,-6.5
+ - pos: -73.5,-6.5
parent: 2
type: Transform
- uid: 8447
components:
- - pos: -67.5,-6.5
+ - pos: -72.5,-6.5
parent: 2
type: Transform
- uid: 8448
components:
- - pos: -66.5,-6.5
+ - pos: -71.5,-6.5
parent: 2
type: Transform
- uid: 8449
components:
- - pos: -65.5,-6.5
+ - pos: -70.5,-6.5
parent: 2
type: Transform
- uid: 8450
components:
- - pos: -64.5,-6.5
+ - pos: -69.5,-6.5
parent: 2
type: Transform
- uid: 8451
components:
- - pos: -63.5,-6.5
+ - pos: -68.5,-6.5
parent: 2
type: Transform
- uid: 8452
components:
- - pos: -62.5,-6.5
+ - pos: -67.5,-6.5
parent: 2
type: Transform
- uid: 8453
components:
- - pos: -61.5,-6.5
+ - pos: -66.5,-6.5
parent: 2
type: Transform
- uid: 8454
components:
- - pos: -60.5,-6.5
+ - pos: -65.5,-6.5
parent: 2
type: Transform
- uid: 8455
components:
- - pos: -59.5,-6.5
+ - pos: -64.5,-6.5
parent: 2
type: Transform
- uid: 8456
components:
- - pos: -59.5,-7.5
+ - pos: -63.5,-6.5
parent: 2
type: Transform
- uid: 8457
components:
- - pos: -59.5,-8.5
+ - pos: -62.5,-6.5
parent: 2
type: Transform
- uid: 8458
components:
- - pos: -59.5,-9.5
+ - pos: -61.5,-6.5
parent: 2
type: Transform
- uid: 8459
components:
- - pos: -59.5,-10.5
+ - pos: -60.5,-6.5
parent: 2
type: Transform
- uid: 8460
components:
- - pos: -59.5,-11.5
+ - pos: -59.5,-6.5
parent: 2
type: Transform
- uid: 8461
components:
- - pos: -59.5,-12.5
+ - pos: -59.5,-7.5
parent: 2
type: Transform
- uid: 8462
components:
- - pos: -59.5,-13.5
+ - pos: -59.5,-8.5
parent: 2
type: Transform
- uid: 8463
components:
- - pos: -59.5,-14.5
+ - pos: -59.5,-9.5
parent: 2
type: Transform
- uid: 8464
components:
- - pos: -59.5,-15.5
+ - pos: -59.5,-10.5
parent: 2
type: Transform
- uid: 8465
components:
- - pos: -59.5,-16.5
+ - pos: -59.5,-11.5
parent: 2
type: Transform
- uid: 8466
components:
- - pos: -59.5,-17.5
+ - pos: -59.5,-12.5
parent: 2
type: Transform
- uid: 8467
components:
- - pos: -59.5,-18.5
+ - pos: -59.5,-13.5
parent: 2
type: Transform
- uid: 8468
components:
- - pos: -59.5,-19.5
+ - pos: -59.5,-14.5
parent: 2
type: Transform
- uid: 8469
components:
- - pos: -59.5,-20.5
+ - pos: -59.5,-15.5
parent: 2
type: Transform
- uid: 8470
components:
- - pos: -60.5,-20.5
+ - pos: -59.5,-16.5
parent: 2
type: Transform
- uid: 8471
components:
- - pos: -61.5,-20.5
+ - pos: -59.5,-17.5
parent: 2
type: Transform
- uid: 8472
components:
- - pos: -62.5,-20.5
+ - pos: -59.5,-18.5
parent: 2
type: Transform
- uid: 8473
components:
- - pos: -63.5,-20.5
+ - pos: -59.5,-19.5
parent: 2
type: Transform
- uid: 8474
components:
- - pos: -64.5,-20.5
+ - pos: -59.5,-20.5
parent: 2
type: Transform
- uid: 8475
components:
- - pos: -65.5,-20.5
+ - pos: -60.5,-20.5
parent: 2
type: Transform
- uid: 8476
components:
- - pos: -66.5,-20.5
+ - pos: -61.5,-20.5
parent: 2
type: Transform
- uid: 8477
components:
- - pos: -67.5,-20.5
+ - pos: -62.5,-20.5
parent: 2
type: Transform
- uid: 8478
components:
- - pos: -68.5,-20.5
+ - pos: -63.5,-20.5
parent: 2
type: Transform
- uid: 8479
components:
- - pos: -69.5,-20.5
+ - pos: -64.5,-20.5
parent: 2
type: Transform
- uid: 8480
components:
- - pos: -70.5,-20.5
+ - pos: -65.5,-20.5
parent: 2
type: Transform
- uid: 8481
components:
- - pos: -20.5,-5.5
+ - pos: -66.5,-20.5
parent: 2
type: Transform
- uid: 8482
components:
- - pos: -21.5,-5.5
+ - pos: -67.5,-20.5
parent: 2
type: Transform
- uid: 8483
components:
- - pos: -22.5,-5.5
+ - pos: -68.5,-20.5
parent: 2
type: Transform
- uid: 8484
components:
- - pos: -23.5,-5.5
+ - pos: -69.5,-20.5
parent: 2
type: Transform
- uid: 8485
components:
- - pos: -24.5,-5.5
+ - pos: -70.5,-20.5
parent: 2
type: Transform
- uid: 8486
components:
- - pos: -25.5,-5.5
+ - pos: -20.5,-5.5
parent: 2
type: Transform
- uid: 8487
components:
- - pos: -25.5,-4.5
+ - pos: -21.5,-5.5
parent: 2
type: Transform
- uid: 8488
components:
- - pos: -25.5,-3.5
+ - pos: -22.5,-5.5
parent: 2
type: Transform
- uid: 8489
components:
- - pos: -25.5,-2.5
+ - pos: -23.5,-5.5
parent: 2
type: Transform
- uid: 8490
components:
- - pos: -25.5,-1.5
+ - pos: -24.5,-5.5
parent: 2
type: Transform
- uid: 8491
components:
- - pos: -25.5,-0.5
+ - pos: -25.5,-5.5
parent: 2
type: Transform
- uid: 8492
components:
- - pos: -26.5,-0.5
+ - pos: -25.5,-4.5
parent: 2
type: Transform
- uid: 8493
components:
- - pos: -27.5,-0.5
+ - pos: -25.5,-3.5
parent: 2
type: Transform
- uid: 8494
components:
- - pos: -28.5,-0.5
+ - pos: -25.5,-2.5
parent: 2
type: Transform
- uid: 8495
components:
- - pos: -29.5,-0.5
+ - pos: -25.5,-1.5
parent: 2
type: Transform
- uid: 8496
components:
- - pos: -30.5,-0.5
+ - pos: -25.5,-0.5
parent: 2
type: Transform
- uid: 8497
components:
- - pos: -31.5,-0.5
+ - pos: -26.5,-0.5
parent: 2
type: Transform
- uid: 8498
components:
- - pos: -32.5,-0.5
+ - pos: -27.5,-0.5
parent: 2
type: Transform
- uid: 8499
components:
- - pos: -33.5,-0.5
+ - pos: -28.5,-0.5
parent: 2
type: Transform
- uid: 8500
components:
- - pos: -34.5,-0.5
+ - pos: -29.5,-0.5
parent: 2
type: Transform
- uid: 8501
components:
- - pos: -35.5,-0.5
+ - pos: -30.5,-0.5
parent: 2
type: Transform
- uid: 8502
components:
- - pos: -36.5,-0.5
+ - pos: -31.5,-0.5
parent: 2
type: Transform
- uid: 8503
components:
- - pos: -37.5,-0.5
+ - pos: -32.5,-0.5
parent: 2
type: Transform
- uid: 8504
components:
- - pos: -37.5,-1.5
+ - pos: -33.5,-0.5
parent: 2
type: Transform
- uid: 8505
components:
- - pos: -37.5,-2.5
+ - pos: -34.5,-0.5
parent: 2
type: Transform
- uid: 8506
components:
- - pos: -36.5,-2.5
+ - pos: -35.5,-0.5
parent: 2
type: Transform
- uid: 8507
components:
- - pos: -35.5,-2.5
+ - pos: -36.5,-0.5
parent: 2
type: Transform
- uid: 8508
components:
- - pos: -34.5,-2.5
+ - pos: -37.5,-0.5
parent: 2
type: Transform
- uid: 8509
components:
- - pos: -34.5,-3.5
+ - pos: -37.5,-1.5
parent: 2
type: Transform
- uid: 8510
components:
- - pos: -20.5,18.5
+ - pos: -37.5,-2.5
parent: 2
type: Transform
- uid: 8511
components:
- - pos: -20.5,19.5
+ - pos: -36.5,-2.5
parent: 2
type: Transform
- uid: 8512
components:
- - pos: -20.5,20.5
+ - pos: -35.5,-2.5
parent: 2
type: Transform
- uid: 8513
components:
- - pos: -20.5,21.5
+ - pos: -34.5,-2.5
parent: 2
type: Transform
- uid: 8514
components:
- - pos: -20.5,22.5
+ - pos: -34.5,-3.5
parent: 2
type: Transform
- uid: 8515
components:
- - pos: -20.5,23.5
+ - pos: -20.5,18.5
parent: 2
type: Transform
- uid: 8516
components:
- - pos: -20.5,24.5
+ - pos: -20.5,19.5
parent: 2
type: Transform
- uid: 8517
components:
- - pos: -20.5,25.5
+ - pos: -20.5,20.5
parent: 2
type: Transform
- uid: 8518
components:
- - pos: 8.5,-104.5
+ - pos: -20.5,21.5
parent: 2
type: Transform
- uid: 8519
components:
- - pos: 7.5,-104.5
+ - pos: -20.5,22.5
parent: 2
type: Transform
- uid: 8520
components:
- - pos: 6.5,-104.5
+ - pos: -20.5,23.5
parent: 2
type: Transform
- uid: 8521
components:
- - pos: 5.5,-104.5
+ - pos: -20.5,24.5
parent: 2
type: Transform
- uid: 8522
components:
- - pos: 4.5,-104.5
+ - pos: -20.5,25.5
parent: 2
type: Transform
- uid: 8523
components:
- - pos: 14.5,-104.5
+ - pos: 8.5,-104.5
parent: 2
type: Transform
- uid: 8524
components:
- - pos: 15.5,-104.5
+ - pos: 7.5,-104.5
parent: 2
type: Transform
- uid: 8525
components:
- - pos: 16.5,-104.5
+ - pos: 6.5,-104.5
parent: 2
type: Transform
- uid: 8526
components:
- - pos: 17.5,-104.5
+ - pos: 5.5,-104.5
parent: 2
type: Transform
- uid: 8527
components:
- - pos: 18.5,-104.5
+ - pos: 4.5,-104.5
parent: 2
type: Transform
- uid: 8528
components:
- - pos: 15.5,-101.5
+ - pos: 14.5,-104.5
parent: 2
type: Transform
- uid: 8529
components:
- - pos: 16.5,-101.5
+ - pos: 15.5,-104.5
parent: 2
type: Transform
- uid: 8530
components:
- - pos: 17.5,-101.5
+ - pos: 16.5,-104.5
parent: 2
type: Transform
- uid: 8531
components:
- - pos: 18.5,-101.5
+ - pos: 17.5,-104.5
parent: 2
type: Transform
- uid: 8532
components:
- - pos: 7.5,-101.5
+ - pos: 18.5,-104.5
parent: 2
type: Transform
- uid: 8533
components:
- - pos: 6.5,-101.5
+ - pos: 15.5,-101.5
parent: 2
type: Transform
- uid: 8534
components:
- - pos: 5.5,-101.5
+ - pos: 16.5,-101.5
parent: 2
type: Transform
- uid: 8535
components:
- - pos: 4.5,-101.5
+ - pos: 17.5,-101.5
parent: 2
type: Transform
- uid: 8536
components:
- - pos: 4.5,-98.5
+ - pos: 18.5,-101.5
parent: 2
type: Transform
- uid: 8537
components:
- - pos: 5.5,-98.5
+ - pos: 7.5,-101.5
parent: 2
type: Transform
- uid: 8538
components:
- - pos: 6.5,-98.5
+ - pos: 6.5,-101.5
parent: 2
type: Transform
- uid: 8539
components:
- - pos: 7.5,-98.5
+ - pos: 5.5,-101.5
parent: 2
type: Transform
- uid: 8540
components:
- - pos: 18.5,-98.5
+ - pos: 4.5,-101.5
parent: 2
type: Transform
- uid: 8541
components:
- - pos: 17.5,-98.5
+ - pos: 4.5,-98.5
parent: 2
type: Transform
- uid: 8542
components:
- - pos: 16.5,-98.5
+ - pos: 5.5,-98.5
parent: 2
type: Transform
- uid: 8543
components:
- - pos: 15.5,-98.5
+ - pos: 6.5,-98.5
parent: 2
type: Transform
- uid: 8544
components:
- - pos: -2.5,-57.5
+ - pos: 7.5,-98.5
parent: 2
type: Transform
- uid: 8545
components:
- - pos: -2.5,-56.5
+ - pos: 18.5,-98.5
parent: 2
type: Transform
- uid: 8546
components:
- - pos: -2.5,-55.5
+ - pos: 17.5,-98.5
parent: 2
type: Transform
- uid: 8547
components:
- - pos: -2.5,-54.5
+ - pos: 16.5,-98.5
parent: 2
type: Transform
- uid: 8548
components:
- - pos: -2.5,-53.5
+ - pos: 15.5,-98.5
parent: 2
type: Transform
- uid: 8549
components:
- - pos: -1.5,-53.5
+ - pos: -2.5,-57.5
parent: 2
type: Transform
- uid: 8550
components:
- - pos: -0.5,-53.5
+ - pos: -2.5,-56.5
parent: 2
type: Transform
- uid: 8551
components:
- - pos: -0.5,-52.5
+ - pos: -2.5,-55.5
parent: 2
type: Transform
- uid: 8552
components:
- - pos: -0.5,-51.5
+ - pos: -2.5,-54.5
parent: 2
type: Transform
- uid: 8553
components:
- - pos: -0.5,-50.5
+ - pos: -2.5,-53.5
parent: 2
type: Transform
- uid: 8554
components:
- - pos: -0.5,-49.5
+ - pos: -1.5,-53.5
parent: 2
type: Transform
- uid: 8555
components:
- - pos: -0.5,-48.5
+ - pos: -0.5,-53.5
parent: 2
type: Transform
- uid: 8556
components:
- - pos: -0.5,-47.5
+ - pos: -0.5,-52.5
parent: 2
type: Transform
- uid: 8557
components:
- - pos: -0.5,-46.5
+ - pos: -0.5,-51.5
parent: 2
type: Transform
- uid: 8558
components:
- - pos: -0.5,-45.5
+ - pos: -0.5,-50.5
parent: 2
type: Transform
- uid: 8559
components:
- - pos: -0.5,-44.5
+ - pos: -0.5,-49.5
parent: 2
type: Transform
- uid: 8560
components:
- - pos: -0.5,-43.5
+ - pos: -0.5,-48.5
parent: 2
type: Transform
- uid: 8561
components:
- - pos: -53.5,-18.5
+ - pos: -0.5,-47.5
parent: 2
type: Transform
- uid: 8562
components:
- - pos: -53.5,-17.5
+ - pos: -0.5,-46.5
parent: 2
type: Transform
- uid: 8563
components:
- - pos: -53.5,-16.5
+ - pos: -0.5,-45.5
parent: 2
type: Transform
- uid: 8564
components:
- - pos: -53.5,-15.5
+ - pos: -0.5,-44.5
parent: 2
type: Transform
- uid: 8565
components:
- - pos: -53.5,-14.5
+ - pos: -0.5,-43.5
parent: 2
type: Transform
- uid: 8566
components:
- - pos: -53.5,-13.5
+ - pos: -53.5,-18.5
parent: 2
type: Transform
- uid: 8567
components:
- - pos: -54.5,-13.5
+ - pos: -53.5,-17.5
parent: 2
type: Transform
- uid: 8568
components:
- - pos: -55.5,-13.5
+ - pos: -53.5,-16.5
parent: 2
type: Transform
- uid: 8569
components:
- - pos: -55.5,-25.5
+ - pos: -53.5,-15.5
parent: 2
type: Transform
- uid: 8570
components:
- - pos: -56.5,-25.5
+ - pos: -53.5,-14.5
parent: 2
type: Transform
- uid: 8571
components:
- - pos: -57.5,-25.5
+ - pos: -53.5,-13.5
parent: 2
type: Transform
- uid: 8572
components:
- - pos: -60.5,-27.5
+ - pos: -54.5,-13.5
parent: 2
type: Transform
- uid: 8573
components:
- - pos: -54.5,-25.5
+ - pos: -55.5,-13.5
parent: 2
type: Transform
- uid: 8574
components:
- - pos: -52.5,-25.5
+ - pos: -55.5,-25.5
parent: 2
type: Transform
- uid: 8575
components:
- - pos: -0.5,-79.5
+ - pos: -56.5,-25.5
parent: 2
type: Transform
- uid: 8576
components:
- - pos: -14.5,38.5
+ - pos: -57.5,-25.5
parent: 2
type: Transform
- uid: 8577
components:
- - pos: -14.5,43.5
+ - pos: -60.5,-27.5
parent: 2
type: Transform
- uid: 8578
components:
- - pos: -14.5,41.5
+ - pos: -54.5,-25.5
parent: 2
type: Transform
- uid: 8579
components:
- - pos: -17.5,29.5
+ - pos: -52.5,-25.5
parent: 2
type: Transform
- uid: 8580
components:
- - pos: -14.5,37.5
+ - pos: -0.5,-79.5
parent: 2
type: Transform
- uid: 8581
components:
- - pos: -15.5,29.5
+ - pos: -14.5,38.5
parent: 2
type: Transform
- uid: 8582
components:
- - pos: -0.5,-78.5
+ - pos: -14.5,43.5
parent: 2
type: Transform
- uid: 8583
components:
- - pos: -0.5,-77.5
+ - pos: -14.5,41.5
parent: 2
type: Transform
- uid: 8584
components:
- - pos: 12.5,-104.5
+ - pos: -17.5,29.5
parent: 2
type: Transform
- uid: 8585
components:
- - pos: 10.5,-104.5
+ - pos: -14.5,37.5
parent: 2
type: Transform
- uid: 8586
components:
- - pos: -74.5,-38.5
+ - pos: -15.5,29.5
parent: 2
type: Transform
- uid: 8587
components:
- - pos: -75.5,-38.5
+ - pos: -0.5,-78.5
parent: 2
type: Transform
- uid: 8588
components:
- - pos: -79.5,-37.5
+ - pos: -0.5,-77.5
parent: 2
type: Transform
- uid: 8589
components:
- - pos: 5.5,-14.5
+ - pos: 12.5,-104.5
parent: 2
type: Transform
- uid: 8590
components:
- - pos: 8.5,-14.5
+ - pos: 10.5,-104.5
parent: 2
type: Transform
- uid: 8591
components:
- - pos: 33.5,22.5
+ - pos: -74.5,-38.5
parent: 2
type: Transform
- uid: 8592
components:
- - pos: 34.5,22.5
+ - pos: -75.5,-38.5
parent: 2
type: Transform
- uid: 8593
components:
- - pos: 35.5,22.5
+ - pos: -79.5,-37.5
parent: 2
type: Transform
- uid: 8594
components:
- - pos: 36.5,22.5
+ - pos: 5.5,-14.5
parent: 2
type: Transform
- uid: 8595
components:
- - pos: 36.5,23.5
+ - pos: 8.5,-14.5
parent: 2
type: Transform
- uid: 8596
components:
- - pos: 37.5,23.5
+ - pos: 33.5,22.5
parent: 2
type: Transform
- uid: 8597
components:
- - pos: 38.5,23.5
+ - pos: 34.5,22.5
parent: 2
type: Transform
- uid: 8598
components:
- - pos: 39.5,23.5
+ - pos: 35.5,22.5
parent: 2
type: Transform
- uid: 8599
components:
- - pos: 40.5,23.5
+ - pos: 36.5,22.5
parent: 2
type: Transform
- uid: 8600
components:
- - pos: 41.5,23.5
+ - pos: 36.5,23.5
parent: 2
type: Transform
- uid: 8601
components:
- - pos: 42.5,23.5
+ - pos: 37.5,23.5
parent: 2
type: Transform
- uid: 8602
components:
- - pos: 43.5,23.5
+ - pos: 38.5,23.5
parent: 2
type: Transform
- uid: 8603
components:
- - pos: 44.5,23.5
+ - pos: 39.5,23.5
parent: 2
type: Transform
- uid: 8604
components:
- - pos: 44.5,24.5
+ - pos: 40.5,23.5
parent: 2
type: Transform
- uid: 8605
components:
- - pos: 44.5,25.5
+ - pos: 41.5,23.5
parent: 2
type: Transform
- uid: 8606
components:
- - pos: 44.5,26.5
+ - pos: 42.5,23.5
parent: 2
type: Transform
- uid: 8607
components:
- - pos: 45.5,26.5
+ - pos: 43.5,23.5
parent: 2
type: Transform
- uid: 8608
components:
- - pos: 46.5,26.5
+ - pos: 44.5,23.5
parent: 2
type: Transform
- uid: 8609
components:
- - pos: 47.5,26.5
+ - pos: 44.5,24.5
parent: 2
type: Transform
- uid: 8610
components:
- - pos: 48.5,26.5
+ - pos: 44.5,25.5
parent: 2
type: Transform
- uid: 8611
components:
- - pos: 48.5,27.5
+ - pos: 44.5,26.5
parent: 2
type: Transform
- uid: 8612
components:
- - pos: 48.5,28.5
+ - pos: 45.5,26.5
parent: 2
type: Transform
- uid: 8613
components:
- - pos: 49.5,28.5
+ - pos: 46.5,26.5
parent: 2
type: Transform
- uid: 8614
components:
- - pos: 50.5,28.5
+ - pos: 47.5,26.5
parent: 2
type: Transform
- uid: 8615
components:
- - pos: 50.5,29.5
+ - pos: 48.5,26.5
parent: 2
type: Transform
- uid: 8616
components:
- - pos: 91.5,36.5
+ - pos: 48.5,27.5
parent: 2
type: Transform
- uid: 8617
components:
- - pos: 77.5,36.5
+ - pos: 48.5,28.5
parent: 2
type: Transform
- uid: 8618
components:
- - pos: 76.5,36.5
+ - pos: 49.5,28.5
parent: 2
type: Transform
- uid: 8619
components:
- - pos: 75.5,36.5
+ - pos: 50.5,28.5
parent: 2
type: Transform
- uid: 8620
components:
- - pos: 74.5,36.5
+ - pos: 50.5,29.5
parent: 2
type: Transform
- uid: 8621
components:
- - pos: 78.5,44.5
+ - pos: 91.5,36.5
parent: 2
type: Transform
- uid: 8622
components:
- - pos: 78.5,43.5
+ - pos: 77.5,36.5
parent: 2
type: Transform
- uid: 8623
components:
- - pos: 78.5,42.5
+ - pos: 76.5,36.5
parent: 2
type: Transform
- uid: 8624
components:
- - pos: 78.5,41.5
+ - pos: 75.5,36.5
parent: 2
type: Transform
- uid: 8625
components:
- - pos: 78.5,40.5
+ - pos: 74.5,36.5
parent: 2
type: Transform
- uid: 8626
components:
- - pos: 78.5,39.5
+ - pos: 78.5,44.5
parent: 2
type: Transform
- uid: 8627
components:
- - pos: 78.5,38.5
+ - pos: 78.5,43.5
parent: 2
type: Transform
- uid: 8628
components:
- - pos: 78.5,37.5
+ - pos: 78.5,42.5
parent: 2
type: Transform
- uid: 8629
components:
- - pos: 78.5,35.5
+ - pos: 78.5,41.5
parent: 2
type: Transform
- uid: 8630
components:
- - pos: 78.5,34.5
+ - pos: 78.5,40.5
parent: 2
type: Transform
- uid: 8631
components:
- - pos: 78.5,33.5
+ - pos: 78.5,39.5
parent: 2
type: Transform
- uid: 8632
components:
- - pos: 78.5,32.5
+ - pos: 78.5,38.5
parent: 2
type: Transform
- uid: 8633
components:
- - pos: 78.5,31.5
+ - pos: 78.5,37.5
parent: 2
type: Transform
- uid: 8634
components:
- - pos: 78.5,30.5
+ - pos: 78.5,35.5
parent: 2
type: Transform
- uid: 8635
components:
- - pos: 78.5,29.5
+ - pos: 78.5,34.5
parent: 2
type: Transform
- uid: 8636
components:
- - pos: 78.5,28.5
+ - pos: 78.5,33.5
parent: 2
type: Transform
- uid: 8637
components:
- - pos: 81.5,28.5
+ - pos: 78.5,32.5
parent: 2
type: Transform
- uid: 8638
components:
- - pos: 81.5,29.5
+ - pos: 78.5,31.5
parent: 2
type: Transform
- uid: 8639
components:
- - pos: 81.5,30.5
+ - pos: 78.5,30.5
parent: 2
type: Transform
- uid: 8640
components:
- - pos: 81.5,31.5
+ - pos: 78.5,29.5
parent: 2
type: Transform
- uid: 8641
components:
- - pos: 81.5,32.5
+ - pos: 78.5,28.5
parent: 2
type: Transform
- uid: 8642
components:
- - pos: 81.5,33.5
+ - pos: 81.5,28.5
parent: 2
type: Transform
- uid: 8643
components:
- - pos: 81.5,34.5
+ - pos: 81.5,29.5
parent: 2
type: Transform
- uid: 8644
components:
- - pos: 81.5,35.5
+ - pos: 81.5,30.5
parent: 2
type: Transform
- uid: 8645
components:
- - pos: 81.5,37.5
+ - pos: 81.5,31.5
parent: 2
type: Transform
- uid: 8646
components:
- - pos: 81.5,38.5
+ - pos: 81.5,32.5
parent: 2
type: Transform
- uid: 8647
components:
- - pos: 81.5,39.5
+ - pos: 81.5,33.5
parent: 2
type: Transform
- uid: 8648
components:
- - pos: 81.5,40.5
+ - pos: 81.5,34.5
parent: 2
type: Transform
- uid: 8649
components:
- - pos: 81.5,41.5
+ - pos: 81.5,35.5
parent: 2
type: Transform
- uid: 8650
components:
- - pos: 81.5,42.5
+ - pos: 81.5,37.5
parent: 2
type: Transform
- uid: 8651
components:
- - pos: 81.5,43.5
+ - pos: 81.5,38.5
parent: 2
type: Transform
- uid: 8652
components:
- - pos: 81.5,44.5
+ - pos: 81.5,39.5
parent: 2
type: Transform
- uid: 8653
components:
- - pos: 84.5,44.5
+ - pos: 81.5,40.5
parent: 2
type: Transform
- uid: 8654
components:
- - pos: 84.5,43.5
+ - pos: 81.5,41.5
parent: 2
type: Transform
- uid: 8655
components:
- - pos: 84.5,42.5
+ - pos: 81.5,42.5
parent: 2
type: Transform
- uid: 8656
components:
- - pos: 84.5,41.5
+ - pos: 81.5,43.5
parent: 2
type: Transform
- uid: 8657
components:
- - pos: 84.5,40.5
+ - pos: 81.5,44.5
parent: 2
type: Transform
- uid: 8658
components:
- - pos: 84.5,39.5
+ - pos: 84.5,44.5
parent: 2
type: Transform
- uid: 8659
components:
- - pos: 84.5,38.5
+ - pos: 84.5,43.5
parent: 2
type: Transform
- uid: 8660
components:
- - pos: 84.5,37.5
+ - pos: 84.5,42.5
parent: 2
type: Transform
- uid: 8661
components:
- - pos: 84.5,35.5
+ - pos: 84.5,41.5
parent: 2
type: Transform
- uid: 8662
components:
- - pos: 84.5,34.5
+ - pos: 84.5,40.5
parent: 2
type: Transform
- uid: 8663
components:
- - pos: 84.5,33.5
+ - pos: 84.5,39.5
parent: 2
type: Transform
- uid: 8664
components:
- - pos: 84.5,32.5
+ - pos: 84.5,38.5
parent: 2
type: Transform
- uid: 8665
components:
- - pos: 84.5,31.5
+ - pos: 84.5,37.5
parent: 2
type: Transform
- uid: 8666
components:
- - pos: 84.5,30.5
+ - pos: 84.5,35.5
parent: 2
type: Transform
- uid: 8667
components:
- - pos: 84.5,29.5
+ - pos: 84.5,34.5
parent: 2
type: Transform
- uid: 8668
components:
- - pos: 84.5,28.5
+ - pos: 84.5,33.5
parent: 2
type: Transform
- uid: 8669
components:
- - pos: 87.5,28.5
+ - pos: 84.5,32.5
parent: 2
type: Transform
- uid: 8670
components:
- - pos: 87.5,29.5
+ - pos: 84.5,31.5
parent: 2
type: Transform
- uid: 8671
components:
- - pos: 87.5,30.5
+ - pos: 84.5,30.5
parent: 2
type: Transform
- uid: 8672
components:
- - pos: 87.5,31.5
+ - pos: 84.5,29.5
parent: 2
type: Transform
- uid: 8673
components:
- - pos: 87.5,32.5
+ - pos: 84.5,28.5
parent: 2
type: Transform
- uid: 8674
components:
- - pos: 87.5,33.5
+ - pos: 87.5,28.5
parent: 2
type: Transform
- uid: 8675
components:
- - pos: 87.5,34.5
+ - pos: 87.5,29.5
parent: 2
type: Transform
- uid: 8676
components:
- - pos: 87.5,35.5
+ - pos: 87.5,30.5
parent: 2
type: Transform
- uid: 8677
components:
- - pos: 87.5,37.5
+ - pos: 87.5,31.5
parent: 2
type: Transform
- uid: 8678
components:
- - pos: 87.5,38.5
+ - pos: 87.5,32.5
parent: 2
type: Transform
- uid: 8679
components:
- - pos: 87.5,39.5
+ - pos: 87.5,33.5
parent: 2
type: Transform
- uid: 8680
components:
- - pos: 87.5,40.5
+ - pos: 87.5,34.5
parent: 2
type: Transform
- uid: 8681
components:
- - pos: 87.5,41.5
+ - pos: 87.5,35.5
parent: 2
type: Transform
- uid: 8682
components:
- - pos: 87.5,42.5
+ - pos: 87.5,37.5
parent: 2
type: Transform
- uid: 8683
components:
- - pos: 87.5,43.5
+ - pos: 87.5,38.5
parent: 2
type: Transform
- uid: 8684
components:
- - pos: 87.5,44.5
+ - pos: 87.5,39.5
parent: 2
type: Transform
- uid: 8685
components:
- - pos: 90.5,44.5
+ - pos: 87.5,40.5
parent: 2
type: Transform
- uid: 8686
components:
- - pos: 90.5,43.5
+ - pos: 87.5,41.5
parent: 2
type: Transform
- uid: 8687
components:
- - pos: 90.5,42.5
+ - pos: 87.5,42.5
parent: 2
type: Transform
- uid: 8688
components:
- - pos: 90.5,41.5
+ - pos: 87.5,43.5
parent: 2
type: Transform
- uid: 8689
components:
- - pos: 90.5,40.5
+ - pos: 87.5,44.5
parent: 2
type: Transform
- uid: 8690
components:
- - pos: 90.5,39.5
+ - pos: 90.5,44.5
parent: 2
type: Transform
- uid: 8691
components:
- - pos: 90.5,38.5
+ - pos: 90.5,43.5
parent: 2
type: Transform
- uid: 8692
components:
- - pos: 90.5,37.5
+ - pos: 90.5,42.5
parent: 2
type: Transform
- uid: 8693
components:
- - pos: 90.5,35.5
+ - pos: 90.5,41.5
parent: 2
type: Transform
- uid: 8694
components:
- - pos: 90.5,34.5
+ - pos: 90.5,40.5
parent: 2
type: Transform
- uid: 8695
components:
- - pos: 90.5,33.5
+ - pos: 90.5,39.5
parent: 2
type: Transform
- uid: 8696
components:
- - pos: 90.5,32.5
+ - pos: 90.5,38.5
parent: 2
type: Transform
- uid: 8697
components:
- - pos: 90.5,31.5
+ - pos: 90.5,37.5
parent: 2
type: Transform
- uid: 8698
components:
- - pos: 90.5,30.5
+ - pos: 90.5,35.5
parent: 2
type: Transform
- uid: 8699
components:
- - pos: 90.5,29.5
+ - pos: 90.5,34.5
parent: 2
type: Transform
- uid: 8700
components:
- - pos: 90.5,28.5
+ - pos: 90.5,33.5
parent: 2
type: Transform
- uid: 8701
components:
- - pos: 74.5,37.5
+ - pos: 90.5,32.5
parent: 2
type: Transform
- uid: 8702
components:
- - pos: 74.5,38.5
+ - pos: 90.5,31.5
parent: 2
type: Transform
- uid: 8703
components:
- - pos: 73.5,38.5
+ - pos: 90.5,30.5
parent: 2
type: Transform
- uid: 8704
components:
- - pos: 72.5,38.5
+ - pos: 90.5,29.5
parent: 2
type: Transform
- uid: 8705
components:
- - pos: 74.5,35.5
+ - pos: 90.5,28.5
parent: 2
type: Transform
- uid: 8706
components:
- - pos: 74.5,34.5
+ - pos: 74.5,37.5
parent: 2
type: Transform
- uid: 8707
components:
- - pos: 73.5,34.5
+ - pos: 74.5,38.5
parent: 2
type: Transform
- uid: 8708
components:
- - pos: 72.5,34.5
+ - pos: 73.5,38.5
parent: 2
type: Transform
- uid: 8709
components:
- - pos: 71.5,34.5
+ - pos: 72.5,38.5
parent: 2
type: Transform
- uid: 8710
components:
- - pos: 70.5,34.5
+ - pos: 74.5,35.5
parent: 2
type: Transform
- uid: 8711
components:
- - pos: 70.5,35.5
+ - pos: 74.5,34.5
parent: 2
type: Transform
- uid: 8712
components:
- - pos: 70.5,36.5
+ - pos: 73.5,34.5
parent: 2
type: Transform
- uid: 8713
components:
- - pos: 69.5,36.5
+ - pos: 72.5,34.5
parent: 2
type: Transform
- uid: 8714
components:
- - pos: 71.5,38.5
+ - pos: 71.5,34.5
parent: 2
type: Transform
- uid: 8715
components:
- - pos: 70.5,38.5
+ - pos: 70.5,34.5
parent: 2
type: Transform
- uid: 8716
components:
- - pos: 70.5,37.5
+ - pos: 70.5,35.5
parent: 2
type: Transform
- uid: 8717
components:
- - pos: 68.5,36.5
+ - pos: 70.5,36.5
parent: 2
type: Transform
- uid: 8718
components:
- - pos: 67.5,36.5
+ - pos: 69.5,36.5
parent: 2
type: Transform
- uid: 8719
components:
- - pos: 66.5,36.5
+ - pos: 71.5,38.5
parent: 2
type: Transform
- uid: 8720
components:
- - pos: 65.5,36.5
+ - pos: 70.5,38.5
parent: 2
type: Transform
- uid: 8721
components:
- - pos: 64.5,36.5
+ - pos: 70.5,37.5
parent: 2
type: Transform
- uid: 8722
components:
- - pos: 63.5,36.5
+ - pos: 68.5,36.5
parent: 2
type: Transform
- uid: 8723
components:
- - pos: 63.5,35.5
+ - pos: 67.5,36.5
parent: 2
type: Transform
- uid: 8724
components:
- - pos: 63.5,34.5
+ - pos: 66.5,36.5
parent: 2
type: Transform
- uid: 8725
components:
- - pos: 63.5,33.5
+ - pos: 65.5,36.5
parent: 2
type: Transform
- uid: 8726
components:
- - pos: 63.5,32.5
+ - pos: 64.5,36.5
parent: 2
type: Transform
- uid: 8727
components:
- - pos: 63.5,31.5
+ - pos: 63.5,36.5
parent: 2
type: Transform
- uid: 8728
components:
- - pos: 63.5,30.5
+ - pos: 63.5,35.5
parent: 2
type: Transform
- uid: 8729
components:
- - pos: 63.5,29.5
+ - pos: 63.5,34.5
parent: 2
type: Transform
- uid: 8730
components:
- - pos: 63.5,28.5
+ - pos: 63.5,33.5
parent: 2
type: Transform
- uid: 8731
components:
- - pos: 63.5,27.5
+ - pos: 63.5,32.5
parent: 2
type: Transform
- uid: 8732
components:
- - pos: 63.5,26.5
+ - pos: 63.5,31.5
parent: 2
type: Transform
- uid: 8733
components:
- - pos: 62.5,26.5
+ - pos: 63.5,30.5
parent: 2
type: Transform
- uid: 8734
components:
- - pos: 61.5,26.5
+ - pos: 63.5,29.5
parent: 2
type: Transform
- uid: 8735
components:
- - pos: 60.5,26.5
+ - pos: 63.5,28.5
parent: 2
type: Transform
- uid: 8736
components:
- - pos: 59.5,26.5
+ - pos: 63.5,27.5
parent: 2
type: Transform
- uid: 8737
components:
- - pos: 58.5,26.5
+ - pos: 63.5,26.5
parent: 2
type: Transform
- uid: 8738
components:
- - pos: 57.5,26.5
+ - pos: 62.5,26.5
parent: 2
type: Transform
- uid: 8739
components:
- - pos: 56.5,26.5
+ - pos: 61.5,26.5
parent: 2
type: Transform
- uid: 8740
components:
- - pos: 55.5,26.5
+ - pos: 60.5,26.5
parent: 2
type: Transform
- uid: 8741
components:
- - pos: 54.5,26.5
+ - pos: 59.5,26.5
parent: 2
type: Transform
- uid: 8742
components:
- - pos: 53.5,26.5
+ - pos: 58.5,26.5
parent: 2
type: Transform
- uid: 8743
components:
- - pos: 52.5,26.5
+ - pos: 57.5,26.5
parent: 2
type: Transform
- uid: 8744
components:
- - pos: 51.5,26.5
+ - pos: 56.5,26.5
parent: 2
type: Transform
- uid: 8745
components:
- - pos: 50.5,26.5
+ - pos: 55.5,26.5
parent: 2
type: Transform
- uid: 8746
components:
- - pos: 49.5,26.5
+ - pos: 54.5,26.5
parent: 2
type: Transform
- uid: 8747
components:
- - pos: -11.5,26.5
+ - pos: 53.5,26.5
parent: 2
type: Transform
- uid: 8748
components:
- - pos: -12.5,26.5
+ - pos: 52.5,26.5
parent: 2
type: Transform
- uid: 8749
components:
- - pos: -13.5,26.5
+ - pos: 51.5,26.5
parent: 2
type: Transform
- uid: 8750
components:
- - pos: -14.5,26.5
+ - pos: 50.5,26.5
parent: 2
type: Transform
- uid: 8751
components:
- - pos: -15.5,26.5
+ - pos: 49.5,26.5
parent: 2
type: Transform
- uid: 8752
components:
- - pos: -15.5,27.5
+ - pos: -11.5,26.5
parent: 2
type: Transform
- uid: 8753
components:
- - pos: -15.5,28.5
+ - pos: -12.5,26.5
parent: 2
type: Transform
- uid: 8754
components:
- - pos: -1.5,69.5
+ - pos: -13.5,26.5
parent: 2
type: Transform
- uid: 8755
components:
- - pos: -1.5,68.5
+ - pos: -14.5,26.5
parent: 2
type: Transform
- uid: 8756
components:
- - pos: -1.5,67.5
+ - pos: -15.5,26.5
parent: 2
type: Transform
- uid: 8757
components:
- - pos: -1.5,66.5
+ - pos: -15.5,27.5
parent: 2
type: Transform
- uid: 8758
components:
- - pos: -1.5,65.5
+ - pos: -15.5,28.5
parent: 2
type: Transform
- uid: 8759
components:
- - pos: -1.5,64.5
+ - pos: -1.5,69.5
parent: 2
type: Transform
- uid: 8760
components:
- - pos: -1.5,63.5
+ - pos: -1.5,68.5
parent: 2
type: Transform
- uid: 8761
components:
- - pos: -1.5,62.5
+ - pos: -1.5,67.5
parent: 2
type: Transform
- uid: 8762
components:
- - pos: -1.5,61.5
+ - pos: -1.5,66.5
parent: 2
type: Transform
- uid: 8763
components:
- - pos: -1.5,60.5
+ - pos: -1.5,65.5
parent: 2
type: Transform
- uid: 8764
components:
- - pos: -1.5,59.5
+ - pos: -1.5,64.5
parent: 2
type: Transform
- uid: 8765
components:
- - pos: -1.5,58.5
+ - pos: -1.5,63.5
parent: 2
type: Transform
- uid: 8766
components:
- - pos: -2.5,58.5
+ - pos: -1.5,62.5
parent: 2
type: Transform
- uid: 8767
components:
- - pos: -3.5,58.5
+ - pos: -1.5,61.5
parent: 2
type: Transform
- uid: 8768
components:
- - pos: -4.5,58.5
+ - pos: -1.5,60.5
parent: 2
type: Transform
- uid: 8769
components:
- - pos: -5.5,58.5
+ - pos: -1.5,59.5
parent: 2
type: Transform
- uid: 8770
components:
- - pos: -6.5,58.5
+ - pos: -1.5,58.5
parent: 2
type: Transform
- uid: 8771
components:
- - pos: -7.5,58.5
+ - pos: -2.5,58.5
parent: 2
type: Transform
- uid: 8772
components:
- - pos: -8.5,58.5
+ - pos: -3.5,58.5
parent: 2
type: Transform
- uid: 8773
components:
- - pos: -9.5,58.5
+ - pos: -4.5,58.5
parent: 2
type: Transform
- uid: 8774
components:
- - pos: -10.5,58.5
+ - pos: -5.5,58.5
parent: 2
type: Transform
- uid: 8775
components:
- - pos: -10.5,59.5
+ - pos: -6.5,58.5
parent: 2
type: Transform
- uid: 8776
components:
- - pos: -10.5,60.5
+ - pos: -7.5,58.5
parent: 2
type: Transform
- uid: 8777
components:
- - pos: -10.5,61.5
+ - pos: -8.5,58.5
parent: 2
type: Transform
- uid: 8778
components:
- - pos: -10.5,62.5
+ - pos: -9.5,58.5
parent: 2
type: Transform
- uid: 8779
components:
- - pos: -71.5,-23.5
+ - pos: -10.5,58.5
parent: 2
type: Transform
- uid: 8780
components:
- - pos: -71.5,-24.5
+ - pos: -10.5,59.5
parent: 2
type: Transform
- uid: 8781
components:
- - pos: -71.5,-25.5
+ - pos: -10.5,60.5
parent: 2
type: Transform
- uid: 8782
components:
- - pos: -72.5,-25.5
+ - pos: -10.5,61.5
parent: 2
type: Transform
- uid: 8783
components:
- - pos: -72.5,-26.5
+ - pos: -10.5,62.5
parent: 2
type: Transform
- uid: 8784
components:
- - pos: -72.5,-27.5
+ - pos: -71.5,-23.5
parent: 2
type: Transform
- uid: 8785
components:
- - pos: -72.5,-28.5
+ - pos: -71.5,-24.5
parent: 2
type: Transform
- uid: 8786
components:
- - pos: -71.5,-28.5
+ - pos: -71.5,-25.5
parent: 2
type: Transform
- uid: 8787
components:
- - pos: -70.5,-28.5
+ - pos: -72.5,-25.5
parent: 2
type: Transform
- uid: 8788
components:
- - pos: -70.5,-29.5
+ - pos: -72.5,-26.5
parent: 2
type: Transform
- uid: 8789
components:
- - pos: -72.5,-29.5
+ - pos: -72.5,-27.5
parent: 2
type: Transform
- uid: 8790
components:
- - pos: -73.5,-28.5
+ - pos: -72.5,-28.5
parent: 2
type: Transform
- uid: 8791
components:
- - pos: -74.5,-28.5
+ - pos: -71.5,-28.5
parent: 2
type: Transform
- uid: 8792
components:
- - pos: -74.5,-29.5
+ - pos: -70.5,-28.5
parent: 2
type: Transform
- uid: 8793
components:
- - pos: -74.5,-30.5
+ - pos: -70.5,-29.5
parent: 2
type: Transform
- uid: 8794
components:
- - pos: -72.5,-30.5
+ - pos: -72.5,-29.5
parent: 2
type: Transform
- uid: 8795
components:
- - pos: -70.5,-30.5
+ - pos: -73.5,-28.5
parent: 2
type: Transform
- uid: 8796
components:
- - pos: -70.5,-31.5
+ - pos: -74.5,-28.5
parent: 2
type: Transform
- uid: 8797
components:
- - pos: -72.5,-38.5
+ - pos: -74.5,-29.5
parent: 2
type: Transform
- uid: 8798
components:
- - pos: -72.5,-32.5
+ - pos: -74.5,-30.5
parent: 2
type: Transform
- uid: 8799
components:
- - pos: -74.5,-31.5
+ - pos: -72.5,-30.5
parent: 2
type: Transform
- uid: 8800
components:
- - pos: -74.5,-32.5
+ - pos: -70.5,-30.5
parent: 2
type: Transform
- uid: 8801
components:
- - pos: -72.5,-31.5
+ - pos: -70.5,-31.5
parent: 2
type: Transform
- uid: 8802
components:
- - pos: -72.5,-33.5
+ - pos: -72.5,-38.5
parent: 2
type: Transform
- uid: 8803
components:
- - pos: -69.5,-34.5
+ - pos: -72.5,-32.5
parent: 2
type: Transform
- uid: 8804
components:
- - pos: -69.5,-35.5
+ - pos: -74.5,-31.5
parent: 2
type: Transform
- uid: 8805
components:
- - pos: -76.5,-38.5
+ - pos: -74.5,-32.5
parent: 2
type: Transform
- uid: 8806
components:
- - pos: -73.5,-38.5
+ - pos: -72.5,-31.5
parent: 2
type: Transform
- uid: 8807
components:
- - pos: -79.5,-35.5
+ - pos: -72.5,-33.5
parent: 2
type: Transform
- uid: 8808
components:
- - pos: 68.5,-46.5
+ - pos: -69.5,-34.5
parent: 2
type: Transform
- uid: 8809
components:
- - pos: 67.5,-46.5
+ - pos: -69.5,-35.5
parent: 2
type: Transform
- uid: 8810
components:
- - pos: 66.5,-46.5
+ - pos: -76.5,-38.5
parent: 2
type: Transform
- uid: 8811
components:
- - pos: 65.5,-46.5
+ - pos: -73.5,-38.5
parent: 2
type: Transform
- uid: 8812
components:
- - pos: 64.5,-46.5
+ - pos: -79.5,-35.5
parent: 2
type: Transform
- uid: 8813
components:
- - pos: 64.5,-45.5
+ - pos: 68.5,-46.5
parent: 2
type: Transform
- uid: 8814
components:
- - pos: 64.5,-44.5
+ - pos: 67.5,-46.5
parent: 2
type: Transform
- uid: 8815
components:
- - pos: 63.5,-44.5
+ - pos: 66.5,-46.5
parent: 2
type: Transform
- uid: 8816
components:
- - pos: 62.5,-44.5
+ - pos: 65.5,-46.5
parent: 2
type: Transform
- uid: 8817
components:
- - pos: 61.5,-44.5
+ - pos: 64.5,-46.5
parent: 2
type: Transform
- uid: 8818
components:
- - pos: 60.5,-44.5
+ - pos: 64.5,-45.5
parent: 2
type: Transform
- uid: 8819
components:
- - pos: 59.5,-44.5
+ - pos: 64.5,-44.5
parent: 2
type: Transform
- uid: 8820
components:
- - pos: 58.5,-44.5
+ - pos: 63.5,-44.5
parent: 2
type: Transform
- uid: 8821
components:
- - pos: 57.5,-44.5
+ - pos: 62.5,-44.5
parent: 2
type: Transform
- uid: 8822
components:
- - pos: 56.5,-44.5
+ - pos: 61.5,-44.5
parent: 2
type: Transform
- uid: 8823
components:
- - pos: 55.5,-44.5
+ - pos: 60.5,-44.5
parent: 2
type: Transform
- uid: 8824
components:
- - pos: 54.5,-44.5
+ - pos: 59.5,-44.5
parent: 2
type: Transform
- uid: 8825
components:
- - pos: 53.5,-44.5
+ - pos: 58.5,-44.5
parent: 2
type: Transform
- uid: 8826
components:
- - pos: 52.5,-44.5
+ - pos: 57.5,-44.5
parent: 2
type: Transform
- uid: 8827
components:
- - pos: 51.5,-44.5
+ - pos: 56.5,-44.5
parent: 2
type: Transform
- uid: 8828
components:
- - pos: 50.5,-44.5
+ - pos: 55.5,-44.5
parent: 2
type: Transform
- uid: 8829
components:
- - pos: 69.5,-46.5
+ - pos: 54.5,-44.5
parent: 2
type: Transform
- uid: 8830
components:
- - pos: 72.5,-46.5
+ - pos: 53.5,-44.5
parent: 2
type: Transform
- uid: 8831
components:
- - pos: 73.5,-46.5
+ - pos: 52.5,-44.5
parent: 2
type: Transform
- uid: 8832
components:
- - pos: 74.5,-46.5
+ - pos: 51.5,-44.5
parent: 2
type: Transform
- uid: 8833
components:
- - pos: 75.5,-46.5
+ - pos: 50.5,-44.5
parent: 2
type: Transform
- uid: 8834
components:
- - pos: 75.5,-47.5
+ - pos: 69.5,-46.5
parent: 2
type: Transform
- uid: 8835
components:
- - pos: 75.5,-48.5
+ - pos: 72.5,-46.5
parent: 2
type: Transform
- uid: 8836
components:
- - pos: 75.5,-49.5
+ - pos: 73.5,-46.5
parent: 2
type: Transform
- uid: 8837
components:
- - pos: 75.5,-50.5
+ - pos: 74.5,-46.5
parent: 2
type: Transform
- uid: 8838
components:
- - pos: 75.5,-51.5
+ - pos: 75.5,-46.5
parent: 2
type: Transform
- uid: 8839
components:
- - pos: 75.5,-52.5
+ - pos: 75.5,-47.5
parent: 2
type: Transform
- uid: 8840
components:
- - pos: 75.5,-53.5
+ - pos: 75.5,-48.5
parent: 2
type: Transform
- uid: 8841
components:
- - pos: 75.5,-54.5
+ - pos: 75.5,-49.5
parent: 2
type: Transform
- uid: 8842
components:
- - pos: 75.5,-55.5
+ - pos: 75.5,-50.5
parent: 2
type: Transform
- uid: 8843
components:
- - pos: 75.5,-56.5
+ - pos: 75.5,-51.5
parent: 2
type: Transform
- uid: 8844
components:
- - pos: 74.5,-56.5
+ - pos: 75.5,-52.5
parent: 2
type: Transform
- uid: 8845
components:
- - pos: 74.5,-57.5
+ - pos: 75.5,-53.5
parent: 2
type: Transform
- uid: 8846
components:
- - pos: 73.5,-57.5
+ - pos: 75.5,-54.5
parent: 2
type: Transform
- uid: 8847
components:
- - pos: 72.5,-57.5
+ - pos: 75.5,-55.5
parent: 2
type: Transform
- uid: 8848
components:
- - pos: 71.5,-57.5
+ - pos: 75.5,-56.5
parent: 2
type: Transform
- uid: 8849
components:
- - pos: 71.5,-58.5
+ - pos: 74.5,-56.5
parent: 2
type: Transform
- uid: 8850
components:
- - pos: 71.5,-59.5
+ - pos: 74.5,-57.5
parent: 2
type: Transform
- uid: 8851
components:
- - pos: 71.5,-60.5
+ - pos: 73.5,-57.5
parent: 2
type: Transform
- uid: 8852
components:
- - pos: 71.5,-61.5
+ - pos: 72.5,-57.5
parent: 2
type: Transform
- uid: 8853
components:
- - pos: 70.5,-61.5
+ - pos: 71.5,-57.5
parent: 2
type: Transform
- uid: 8854
components:
- - pos: 69.5,-61.5
+ - pos: 71.5,-58.5
parent: 2
type: Transform
- uid: 8855
components:
- - pos: 68.5,-61.5
+ - pos: 71.5,-59.5
parent: 2
type: Transform
- uid: 8856
components:
- - pos: 68.5,-60.5
+ - pos: 71.5,-60.5
parent: 2
type: Transform
- uid: 8857
components:
- - pos: 68.5,-59.5
+ - pos: 71.5,-61.5
parent: 2
type: Transform
- uid: 8858
components:
- - pos: 69.5,-59.5
+ - pos: 70.5,-61.5
parent: 2
type: Transform
- uid: 8859
components:
- - pos: 12.5,-92.5
+ - pos: 69.5,-61.5
parent: 2
type: Transform
- uid: 8860
components:
- - pos: 12.5,-91.5
+ - pos: 68.5,-61.5
parent: 2
type: Transform
- uid: 8861
components:
- - pos: 12.5,-90.5
+ - pos: 68.5,-60.5
parent: 2
type: Transform
- uid: 8862
components:
- - pos: 12.5,-89.5
+ - pos: 68.5,-59.5
parent: 2
type: Transform
- uid: 8863
components:
- - pos: 11.5,-89.5
+ - pos: 69.5,-59.5
parent: 2
type: Transform
- uid: 8864
components:
- - pos: 10.5,-89.5
+ - pos: 12.5,-92.5
parent: 2
type: Transform
- uid: 8865
components:
- - pos: 9.5,-89.5
+ - pos: 12.5,-91.5
parent: 2
type: Transform
- uid: 8866
components:
- - pos: 8.5,-89.5
+ - pos: 12.5,-90.5
parent: 2
type: Transform
- uid: 8867
components:
- - pos: 7.5,-89.5
+ - pos: 12.5,-89.5
parent: 2
type: Transform
- uid: 8868
components:
- - pos: 6.5,-89.5
+ - pos: 11.5,-89.5
parent: 2
type: Transform
- uid: 8869
components:
- - pos: 5.5,-89.5
+ - pos: 10.5,-89.5
parent: 2
type: Transform
- uid: 8870
components:
- - pos: 4.5,-89.5
+ - pos: 9.5,-89.5
parent: 2
type: Transform
- uid: 8871
components:
- - pos: 3.5,-89.5
+ - pos: 8.5,-89.5
parent: 2
type: Transform
- uid: 8872
components:
- - pos: 16.5,-24.5
+ - pos: 7.5,-89.5
parent: 2
type: Transform
- uid: 8873
components:
- - pos: 17.5,-24.5
+ - pos: 6.5,-89.5
parent: 2
type: Transform
- uid: 8874
components:
- - pos: 18.5,-24.5
+ - pos: 5.5,-89.5
parent: 2
type: Transform
- uid: 8875
components:
- - pos: 19.5,-24.5
+ - pos: 4.5,-89.5
parent: 2
type: Transform
- uid: 8876
components:
- - pos: 20.5,-24.5
+ - pos: 3.5,-89.5
parent: 2
type: Transform
- uid: 8877
components:
- - pos: 21.5,-24.5
+ - pos: 16.5,-24.5
parent: 2
type: Transform
- uid: 8878
components:
- - pos: 21.5,-23.5
+ - pos: 17.5,-24.5
parent: 2
type: Transform
- uid: 8879
components:
- - pos: 21.5,-22.5
+ - pos: 18.5,-24.5
parent: 2
type: Transform
- uid: 8880
components:
- - pos: 21.5,-21.5
+ - pos: 19.5,-24.5
parent: 2
type: Transform
- uid: 8881
components:
- - pos: -30.5,-13.5
+ - pos: 20.5,-24.5
parent: 2
type: Transform
- uid: 8882
components:
- - pos: -29.5,-13.5
+ - pos: 21.5,-24.5
parent: 2
type: Transform
- uid: 8883
components:
- - pos: -28.5,-13.5
+ - pos: 21.5,-23.5
parent: 2
type: Transform
- uid: 8884
components:
- - pos: -27.5,-13.5
+ - pos: 21.5,-22.5
parent: 2
type: Transform
- uid: 8885
components:
- - pos: 4.5,-21.5
+ - pos: 21.5,-21.5
parent: 2
type: Transform
- uid: 8886
components:
- - pos: 4.5,-22.5
+ - pos: -30.5,-13.5
parent: 2
type: Transform
- uid: 8887
components:
- - pos: 4.5,-19.5
+ - pos: -29.5,-13.5
parent: 2
type: Transform
- uid: 8888
components:
- - pos: 4.5,-20.5
+ - pos: -28.5,-13.5
parent: 2
type: Transform
- uid: 8889
components:
- - pos: 10.5,-14.5
+ - pos: -27.5,-13.5
parent: 2
type: Transform
- uid: 8890
components:
- - pos: 11.5,-14.5
+ - pos: 4.5,-21.5
parent: 2
type: Transform
- uid: 8891
components:
- - pos: 12.5,-14.5
+ - pos: 4.5,-22.5
parent: 2
type: Transform
- uid: 8892
components:
- - pos: 12.5,-15.5
+ - pos: 4.5,-19.5
parent: 2
type: Transform
- uid: 8893
components:
- - pos: 12.5,-16.5
+ - pos: 4.5,-20.5
parent: 2
type: Transform
- uid: 8894
components:
- - pos: 11.5,-16.5
+ - pos: 10.5,-14.5
parent: 2
type: Transform
- uid: 8895
components:
- - pos: 10.5,-16.5
+ - pos: 11.5,-14.5
parent: 2
type: Transform
- uid: 8896
components:
- - pos: 9.5,-16.5
+ - pos: 12.5,-14.5
parent: 2
type: Transform
- uid: 8897
components:
- - pos: -76.5,-26.5
+ - pos: 12.5,-15.5
parent: 2
type: Transform
- uid: 8898
components:
- - pos: 4.5,-23.5
+ - pos: 12.5,-16.5
parent: 2
type: Transform
- uid: 8899
components:
- - pos: 31.5,-16.5
+ - pos: 11.5,-16.5
parent: 2
type: Transform
- uid: 8900
components:
- - pos: 31.5,-15.5
+ - pos: 10.5,-16.5
parent: 2
type: Transform
- uid: 8901
components:
- - pos: 33.5,-16.5
+ - pos: 9.5,-16.5
parent: 2
type: Transform
- uid: 8902
components:
- - pos: 33.5,-15.5
+ - pos: -76.5,-26.5
parent: 2
type: Transform
- uid: 8903
components:
- - pos: -65.5,-51.5
+ - pos: 4.5,-23.5
parent: 2
type: Transform
- uid: 8904
components:
- - pos: -65.5,-52.5
+ - pos: 31.5,-16.5
parent: 2
type: Transform
- uid: 8905
components:
- - pos: -65.5,-53.5
+ - pos: 31.5,-15.5
parent: 2
type: Transform
- uid: 8906
components:
- - pos: -65.5,-54.5
+ - pos: 33.5,-16.5
parent: 2
type: Transform
- uid: 8907
components:
- - pos: -71.5,-35.5
+ - pos: 33.5,-15.5
parent: 2
type: Transform
- uid: 8908
components:
- - pos: -69.5,-44.5
+ - pos: -65.5,-51.5
parent: 2
type: Transform
- uid: 8909
components:
- - pos: -69.5,-43.5
+ - pos: -65.5,-52.5
parent: 2
type: Transform
- uid: 8910
components:
- - pos: -69.5,-42.5
+ - pos: -65.5,-53.5
parent: 2
type: Transform
- uid: 8911
components:
- - pos: -69.5,-41.5
+ - pos: -65.5,-54.5
parent: 2
type: Transform
- uid: 8912
components:
- - pos: -69.5,-40.5
+ - pos: -71.5,-35.5
parent: 2
type: Transform
- uid: 8913
components:
- - pos: -70.5,-40.5
+ - pos: -69.5,-44.5
parent: 2
type: Transform
- uid: 8914
components:
- - pos: -71.5,-40.5
+ - pos: -69.5,-43.5
parent: 2
type: Transform
- uid: 8915
components:
- - pos: -71.5,-39.5
+ - pos: -69.5,-42.5
parent: 2
type: Transform
- uid: 8916
components:
- - pos: -71.5,-38.5
+ - pos: -69.5,-41.5
parent: 2
type: Transform
- uid: 8917
components:
- - pos: -78.5,-38.5
+ - pos: -69.5,-40.5
parent: 2
type: Transform
- uid: 8918
components:
- - pos: -77.5,-38.5
+ - pos: -70.5,-40.5
parent: 2
type: Transform
- uid: 8919
components:
- - pos: -69.5,-31.5
+ - pos: -71.5,-40.5
parent: 2
type: Transform
- uid: 8920
components:
- - pos: -72.5,-34.5
+ - pos: -71.5,-39.5
parent: 2
type: Transform
- uid: 8921
components:
- - pos: -72.5,-35.5
+ - pos: -71.5,-38.5
parent: 2
type: Transform
- uid: 8922
components:
- - pos: -79.5,-36.5
+ - pos: -78.5,-38.5
parent: 2
type: Transform
- uid: 8923
components:
- - pos: -79.5,-34.5
+ - pos: -77.5,-38.5
parent: 2
type: Transform
- uid: 8924
components:
- - pos: -79.5,-33.5
+ - pos: -69.5,-31.5
parent: 2
type: Transform
- uid: 8925
components:
- - pos: -79.5,-32.5
+ - pos: -72.5,-34.5
parent: 2
type: Transform
- uid: 8926
components:
- - pos: -79.5,-31.5
+ - pos: -72.5,-35.5
parent: 2
type: Transform
- uid: 8927
components:
- - pos: -79.5,-30.5
+ - pos: -79.5,-36.5
parent: 2
type: Transform
- uid: 8928
components:
- - pos: -79.5,-29.5
+ - pos: -79.5,-34.5
parent: 2
type: Transform
- uid: 8929
components:
- - pos: -79.5,-28.5
+ - pos: -79.5,-33.5
parent: 2
type: Transform
- uid: 8930
components:
- - pos: -78.5,-28.5
+ - pos: -79.5,-32.5
parent: 2
type: Transform
- uid: 8931
components:
- - pos: -77.5,-28.5
+ - pos: -79.5,-31.5
parent: 2
type: Transform
- uid: 8932
components:
- - pos: -76.5,-28.5
+ - pos: -79.5,-30.5
parent: 2
type: Transform
- uid: 8933
components:
- - pos: -75.5,-28.5
+ - pos: -79.5,-29.5
parent: 2
type: Transform
- uid: 8934
components:
- - pos: -73.5,-31.5
+ - pos: -79.5,-28.5
parent: 2
type: Transform
- uid: 8935
components:
- - pos: -71.5,-31.5
+ - pos: -78.5,-28.5
parent: 2
type: Transform
- uid: 8936
components:
- - pos: -67.5,-31.5
+ - pos: -77.5,-28.5
parent: 2
type: Transform
- uid: 8937
components:
- - pos: -66.5,-31.5
+ - pos: -76.5,-28.5
parent: 2
type: Transform
- uid: 8938
components:
- - pos: 18.5,-28.5
+ - pos: -75.5,-28.5
parent: 2
type: Transform
- uid: 8939
components:
- - pos: 18.5,-27.5
+ - pos: -73.5,-31.5
parent: 2
type: Transform
- uid: 8940
components:
- - pos: 5.5,-23.5
+ - pos: -71.5,-31.5
parent: 2
type: Transform
- uid: 8941
components:
- - pos: 7.5,-23.5
+ - pos: -67.5,-31.5
parent: 2
type: Transform
- uid: 8942
components:
- - pos: 6.5,-23.5
+ - pos: -66.5,-31.5
parent: 2
type: Transform
- uid: 8943
components:
- - pos: 8.5,-23.5
+ - pos: 18.5,-28.5
parent: 2
type: Transform
- uid: 8944
components:
- - pos: 9.5,-23.5
+ - pos: 18.5,-27.5
parent: 2
type: Transform
- uid: 8945
components:
- - pos: 10.5,-23.5
+ - pos: 5.5,-23.5
parent: 2
type: Transform
- uid: 8946
components:
- - pos: 11.5,-23.5
+ - pos: 7.5,-23.5
parent: 2
type: Transform
- uid: 8947
components:
- - pos: 12.5,-23.5
+ - pos: 6.5,-23.5
parent: 2
type: Transform
- uid: 8948
components:
- - pos: 12.5,-22.5
+ - pos: 8.5,-23.5
parent: 2
type: Transform
- uid: 8949
components:
- - pos: 12.5,-21.5
+ - pos: 9.5,-23.5
parent: 2
type: Transform
- uid: 8950
components:
- - pos: 13.5,-21.5
+ - pos: 10.5,-23.5
parent: 2
type: Transform
- uid: 8951
components:
- - pos: 14.5,-21.5
+ - pos: 11.5,-23.5
parent: 2
type: Transform
- uid: 8952
components:
- - pos: -71.5,-35.5
+ - pos: 12.5,-23.5
parent: 2
type: Transform
- uid: 8953
components:
- - pos: -56.5,-86.5
+ - pos: 12.5,-22.5
parent: 2
type: Transform
- uid: 8954
components:
- - pos: -56.5,-87.5
+ - pos: 12.5,-21.5
parent: 2
type: Transform
-- proto: CableHVStack
- entities:
- uid: 8955
components:
- - pos: -39.402794,-17.87967
+ - pos: 13.5,-21.5
parent: 2
type: Transform
- uid: 8956
components:
- - pos: 71.74222,36.65267
+ - pos: 14.5,-21.5
parent: 2
type: Transform
- uid: 8957
components:
- - pos: -0.5088408,-77.44958
+ - pos: -71.5,-35.5
parent: 2
type: Transform
-- proto: CableMV
- entities:
- uid: 8958
components:
- - pos: 6.5,-47.5
+ - pos: -56.5,-86.5
parent: 2
type: Transform
- uid: 8959
components:
- - pos: -57.5,-21.5
+ - pos: -56.5,-87.5
parent: 2
type: Transform
- uid: 8960
components:
- - pos: 22.5,-39.5
+ - pos: -3.5,-14.5
parent: 2
type: Transform
- uid: 8961
components:
- - pos: 18.5,-31.5
+ - pos: -2.5,-14.5
parent: 2
type: Transform
- uid: 8962
components:
- - pos: 1.5,-5.5
+ - pos: -1.5,-14.5
parent: 2
type: Transform
- uid: 8963
components:
- - pos: 18.5,-27.5
+ - pos: -0.5,-14.5
parent: 2
type: Transform
+- proto: CableHVStack
+ entities:
- uid: 8964
components:
- - pos: 18.5,-29.5
+ - pos: -39.402794,-17.87967
parent: 2
type: Transform
- uid: 8965
components:
- - pos: 18.5,-30.5
+ - pos: 71.74222,36.65267
parent: 2
type: Transform
- uid: 8966
components:
- - pos: 3.5,-3.5
+ - pos: -0.5088408,-77.44958
parent: 2
type: Transform
+- proto: CableMV
+ entities:
- uid: 8967
components:
- - pos: 20.5,-32.5
+ - pos: -7.5,-18.5
parent: 2
type: Transform
- uid: 8968
components:
- - pos: 9.5,-4.5
+ - pos: -7.5,-19.5
parent: 2
type: Transform
- uid: 8969
components:
- - pos: 10.5,-2.5
+ - pos: 6.5,-47.5
parent: 2
type: Transform
- uid: 8970
components:
- - pos: 18.5,-32.5
+ - pos: -57.5,-21.5
parent: 2
type: Transform
- uid: 8971
components:
- - pos: 19.5,-32.5
+ - pos: 22.5,-39.5
parent: 2
type: Transform
- uid: 8972
components:
- - pos: 10.5,-1.5
+ - pos: 18.5,-31.5
parent: 2
type: Transform
- uid: 8973
components:
- - pos: 8.5,-1.5
+ - pos: 1.5,-5.5
parent: 2
type: Transform
- uid: 8974
components:
- - pos: 22.5,-36.5
+ - pos: 18.5,-27.5
parent: 2
type: Transform
- uid: 8975
components:
- - pos: 22.5,-32.5
+ - pos: 18.5,-29.5
parent: 2
type: Transform
- uid: 8976
components:
- - pos: 22.5,-34.5
+ - pos: 18.5,-30.5
parent: 2
type: Transform
- uid: 8977
components:
- - pos: 9.5,-1.5
+ - pos: 3.5,-3.5
parent: 2
type: Transform
- uid: 8978
components:
- - pos: 22.5,-37.5
+ - pos: 20.5,-32.5
parent: 2
type: Transform
- uid: 8979
components:
- - pos: 22.5,-33.5
+ - pos: 9.5,-4.5
parent: 2
type: Transform
- uid: 8980
components:
- - pos: 22.5,-35.5
+ - pos: 10.5,-2.5
parent: 2
type: Transform
- uid: 8981
components:
- - pos: 21.5,-32.5
+ - pos: 18.5,-32.5
parent: 2
type: Transform
- uid: 8982
components:
- - pos: 7.5,-1.5
+ - pos: 19.5,-32.5
parent: 2
type: Transform
- uid: 8983
components:
- - pos: 22.5,-38.5
+ - pos: 10.5,-1.5
parent: 2
type: Transform
- uid: 8984
components:
- - pos: 6.5,-1.5
+ - pos: 8.5,-1.5
parent: 2
type: Transform
- uid: 8985
components:
- - pos: 5.5,-1.5
+ - pos: 22.5,-36.5
parent: 2
type: Transform
- uid: 8986
components:
- - pos: -72.5,-38.5
+ - pos: 22.5,-32.5
parent: 2
type: Transform
- uid: 8987
components:
- - pos: -10.5,15.5
+ - pos: 22.5,-34.5
parent: 2
type: Transform
- uid: 8988
components:
- - pos: -6.5,-70.5
+ - pos: 9.5,-1.5
parent: 2
type: Transform
- uid: 8989
components:
- - pos: 18.5,-52.5
+ - pos: 22.5,-37.5
parent: 2
type: Transform
- uid: 8990
components:
- - pos: 10.5,-55.5
+ - pos: 22.5,-33.5
parent: 2
type: Transform
- uid: 8991
components:
- - pos: 37.5,21.5
+ - pos: 22.5,-35.5
parent: 2
type: Transform
- uid: 8992
components:
- - pos: 3.5,-49.5
+ - pos: 21.5,-32.5
parent: 2
type: Transform
- uid: 8993
components:
- - pos: 32.5,0.5
+ - pos: 7.5,-1.5
parent: 2
type: Transform
- uid: 8994
components:
- - pos: 32.5,1.5
+ - pos: 22.5,-38.5
parent: 2
type: Transform
- uid: 8995
components:
- - pos: -2.5,-51.5
+ - pos: 6.5,-1.5
parent: 2
type: Transform
- uid: 8996
components:
- - pos: -2.5,-52.5
+ - pos: 5.5,-1.5
parent: 2
type: Transform
- uid: 8997
components:
- - pos: -2.5,-53.5
+ - pos: -72.5,-38.5
parent: 2
type: Transform
- uid: 8998
components:
- - pos: 40.5,-26.5
+ - pos: -10.5,15.5
parent: 2
type: Transform
- uid: 8999
components:
- - pos: 31.5,2.5
+ - pos: -6.5,-70.5
parent: 2
type: Transform
- uid: 9000
components:
- - pos: -6.5,-71.5
+ - pos: 18.5,-52.5
parent: 2
type: Transform
- uid: 9001
components:
- - pos: -6.5,-69.5
+ - pos: 10.5,-55.5
parent: 2
type: Transform
- uid: 9002
components:
- - pos: 27.5,-28.5
+ - pos: 37.5,21.5
parent: 2
type: Transform
- uid: 9003
components:
- - pos: 4.5,-49.5
+ - pos: 3.5,-49.5
parent: 2
type: Transform
- uid: 9004
components:
- - pos: 3.5,-52.5
+ - pos: 32.5,0.5
parent: 2
type: Transform
- uid: 9005
components:
- - pos: -0.5,-53.5
+ - pos: 32.5,1.5
parent: 2
type: Transform
- uid: 9006
components:
- - pos: 8.5,-43.5
+ - pos: -2.5,-51.5
parent: 2
type: Transform
- uid: 9007
components:
- - pos: -14.5,-69.5
+ - pos: -2.5,-52.5
parent: 2
type: Transform
- uid: 9008
components:
- - pos: 9.5,-43.5
+ - pos: -2.5,-53.5
parent: 2
type: Transform
- uid: 9009
components:
- - pos: 24.5,-28.5
+ - pos: 40.5,-26.5
parent: 2
type: Transform
- uid: 9010
components:
- - pos: 45.5,-64.5
+ - pos: 31.5,2.5
parent: 2
type: Transform
- uid: 9011
components:
- - pos: 5.5,-45.5
+ - pos: -6.5,-71.5
parent: 2
type: Transform
- uid: 9012
components:
- - pos: 5.5,-44.5
+ - pos: -6.5,-69.5
parent: 2
type: Transform
- uid: 9013
components:
- - pos: 4.5,-43.5
+ - pos: 27.5,-28.5
parent: 2
type: Transform
- uid: 9014
components:
- - pos: 3.5,-43.5
+ - pos: 4.5,-49.5
parent: 2
type: Transform
- uid: 9015
components:
- - pos: 3.5,-42.5
+ - pos: 3.5,-52.5
parent: 2
type: Transform
- uid: 9016
components:
- - pos: 2.5,-42.5
+ - pos: -0.5,-53.5
parent: 2
type: Transform
- uid: 9017
components:
- - pos: 1.5,-42.5
+ - pos: 8.5,-43.5
parent: 2
type: Transform
- uid: 9018
components:
- - pos: 0.5,-42.5
+ - pos: -14.5,-69.5
parent: 2
type: Transform
- uid: 9019
components:
- - pos: 0.5,-41.5
+ - pos: 9.5,-43.5
parent: 2
type: Transform
- uid: 9020
components:
- - pos: 0.5,-40.5
+ - pos: 24.5,-28.5
parent: 2
type: Transform
- uid: 9021
components:
- - pos: 15.5,-58.5
+ - pos: 45.5,-64.5
parent: 2
type: Transform
- uid: 9022
components:
- - pos: 15.5,-57.5
+ - pos: 5.5,-45.5
parent: 2
type: Transform
- uid: 9023
components:
- - pos: 14.5,-57.5
+ - pos: 5.5,-44.5
parent: 2
type: Transform
- uid: 9024
components:
- - pos: 12.5,-57.5
+ - pos: 4.5,-43.5
parent: 2
type: Transform
- uid: 9025
components:
- - pos: 12.5,-56.5
+ - pos: 3.5,-43.5
parent: 2
type: Transform
- uid: 9026
components:
- - pos: 11.5,-55.5
+ - pos: 3.5,-42.5
parent: 2
type: Transform
- uid: 9027
components:
- - pos: 12.5,-55.5
+ - pos: 2.5,-42.5
parent: 2
type: Transform
- uid: 9028
components:
- - pos: 8.5,-55.5
+ - pos: 1.5,-42.5
parent: 2
type: Transform
- uid: 9029
components:
- - pos: 8.5,-54.5
+ - pos: 0.5,-42.5
parent: 2
type: Transform
- uid: 9030
components:
- - pos: 8.5,-53.5
+ - pos: 0.5,-41.5
parent: 2
type: Transform
- uid: 9031
components:
- - pos: 7.5,-53.5
+ - pos: 0.5,-40.5
parent: 2
type: Transform
- uid: 9032
components:
- - pos: 16.5,-52.5
+ - pos: 15.5,-58.5
parent: 2
type: Transform
- uid: 9033
components:
- - pos: 43.5,-26.5
+ - pos: 15.5,-57.5
parent: 2
type: Transform
- uid: 9034
components:
- - pos: 0.5,14.5
+ - pos: 14.5,-57.5
parent: 2
type: Transform
- uid: 9035
components:
- - pos: 37.5,13.5
+ - pos: 12.5,-57.5
parent: 2
type: Transform
- uid: 9036
components:
- - pos: 38.5,14.5
+ - pos: 12.5,-56.5
parent: 2
type: Transform
- uid: 9037
components:
- - pos: -5.5,-69.5
+ - pos: 11.5,-55.5
parent: 2
type: Transform
- uid: 9038
components:
- - pos: 38.5,-28.5
+ - pos: 12.5,-55.5
parent: 2
type: Transform
- uid: 9039
components:
- - pos: 35.5,-29.5
+ - pos: 8.5,-55.5
parent: 2
type: Transform
- uid: 9040
components:
- - pos: 37.5,-30.5
+ - pos: 8.5,-54.5
parent: 2
type: Transform
- uid: 9041
components:
- - pos: -11.5,-70.5
+ - pos: 8.5,-53.5
parent: 2
type: Transform
- uid: 9042
components:
- - pos: 21.5,15.5
+ - pos: 7.5,-53.5
parent: 2
type: Transform
- uid: 9043
components:
- - pos: 5.5,-48.5
+ - pos: 16.5,-52.5
parent: 2
type: Transform
- uid: 9044
components:
- - pos: 29.5,-26.5
+ - pos: 43.5,-26.5
parent: 2
type: Transform
- uid: 9045
components:
- - pos: 0.5,11.5
+ - pos: 0.5,14.5
parent: 2
type: Transform
- uid: 9046
components:
- - pos: 28.5,18.5
+ - pos: 37.5,13.5
parent: 2
type: Transform
- uid: 9047
components:
- - pos: -11.5,-71.5
+ - pos: 38.5,14.5
parent: 2
type: Transform
- uid: 9048
components:
- - pos: -7.5,-71.5
+ - pos: -5.5,-69.5
parent: 2
type: Transform
- uid: 9049
components:
- - pos: -3.5,-68.5
+ - pos: 38.5,-28.5
parent: 2
type: Transform
- uid: 9050
components:
- - pos: -1.5,-53.5
+ - pos: 35.5,-29.5
parent: 2
type: Transform
- uid: 9051
components:
- - pos: -19.5,25.5
+ - pos: 37.5,-30.5
parent: 2
type: Transform
- uid: 9052
components:
- - pos: 1.5,9.5
+ - pos: -11.5,-70.5
parent: 2
type: Transform
- uid: 9053
components:
- - pos: -11.5,-69.5
+ - pos: 21.5,15.5
parent: 2
type: Transform
- uid: 9054
components:
- - pos: -8.5,-71.5
+ - pos: 5.5,-48.5
parent: 2
type: Transform
- uid: 9055
components:
- - pos: -10.5,-71.5
+ - pos: 29.5,-26.5
parent: 2
type: Transform
- uid: 9056
components:
- - pos: 21.5,-9.5
+ - pos: 0.5,11.5
parent: 2
type: Transform
- uid: 9057
components:
- - pos: 29.5,18.5
+ - pos: 28.5,18.5
parent: 2
type: Transform
- uid: 9058
components:
- - pos: 29.5,19.5
+ - pos: -11.5,-71.5
parent: 2
type: Transform
- uid: 9059
components:
- - pos: 21.5,17.5
+ - pos: -7.5,-71.5
parent: 2
type: Transform
- uid: 9060
components:
- - pos: 32.5,2.5
+ - pos: -3.5,-68.5
parent: 2
type: Transform
- uid: 9061
components:
- - pos: 32.5,-0.5
+ - pos: -1.5,-53.5
parent: 2
type: Transform
- uid: 9062
components:
- - pos: 32.5,-1.5
+ - pos: -19.5,25.5
parent: 2
type: Transform
- uid: 9063
components:
- - pos: 5.5,-46.5
+ - pos: 1.5,9.5
parent: 2
type: Transform
- uid: 9064
components:
- - pos: 3.5,-50.5
+ - pos: -11.5,-69.5
parent: 2
type: Transform
- uid: 9065
components:
- - pos: 13.5,-14.5
+ - pos: -8.5,-71.5
parent: 2
type: Transform
- uid: 9066
components:
- - pos: 5.5,-49.5
+ - pos: -10.5,-71.5
parent: 2
type: Transform
- uid: 9067
components:
- - pos: 9.5,-55.5
+ - pos: 21.5,-9.5
parent: 2
type: Transform
- uid: 9068
components:
- - pos: -3.5,14.5
+ - pos: 29.5,18.5
parent: 2
type: Transform
- uid: 9069
components:
- - pos: -2.5,14.5
+ - pos: 29.5,19.5
parent: 2
type: Transform
- uid: 9070
components:
- - pos: -1.5,14.5
+ - pos: 21.5,17.5
parent: 2
type: Transform
- uid: 9071
components:
- - pos: -0.5,14.5
+ - pos: 32.5,2.5
parent: 2
type: Transform
- uid: 9072
components:
- - pos: -5.5,14.5
+ - pos: 32.5,-0.5
parent: 2
type: Transform
- uid: 9073
components:
- - pos: -6.5,14.5
+ - pos: 32.5,-1.5
parent: 2
type: Transform
- uid: 9074
components:
- - pos: 1.5,10.5
+ - pos: 5.5,-46.5
parent: 2
type: Transform
- uid: 9075
components:
- - pos: 0.5,10.5
+ - pos: 3.5,-50.5
parent: 2
type: Transform
- uid: 9076
components:
- - pos: 18.5,-28.5
+ - pos: 13.5,-14.5
parent: 2
type: Transform
- uid: 9077
components:
- - pos: 21.5,16.5
+ - pos: 5.5,-49.5
parent: 2
type: Transform
- uid: 9078
components:
- - pos: -19.5,24.5
+ - pos: 9.5,-55.5
parent: 2
type: Transform
- uid: 9079
components:
- - pos: 12.5,-15.5
+ - pos: -3.5,14.5
parent: 2
type: Transform
- uid: 9080
components:
- - pos: 31.5,-4.5
+ - pos: -2.5,14.5
parent: 2
type: Transform
- uid: 9081
components:
- - pos: 30.5,-4.5
+ - pos: -1.5,14.5
parent: 2
type: Transform
- uid: 9082
components:
- - pos: 30.5,-3.5
+ - pos: -0.5,14.5
parent: 2
type: Transform
- uid: 9083
components:
- - pos: 30.5,-2.5
+ - pos: -5.5,14.5
parent: 2
type: Transform
- uid: 9084
components:
- - pos: -9.5,-21.5
+ - pos: -6.5,14.5
parent: 2
type: Transform
- uid: 9085
components:
- - pos: -8.5,-19.5
+ - pos: 1.5,10.5
parent: 2
type: Transform
- uid: 9086
components:
- - pos: -8.5,-20.5
+ - pos: 0.5,10.5
parent: 2
type: Transform
- uid: 9087
components:
- - pos: -8.5,-21.5
+ - pos: 18.5,-28.5
parent: 2
type: Transform
- uid: 9088
components:
- - pos: -10.5,-21.5
+ - pos: 21.5,16.5
parent: 2
type: Transform
- uid: 9089
components:
- - pos: -10.5,-20.5
+ - pos: -19.5,24.5
parent: 2
type: Transform
- uid: 9090
components:
- - pos: 13.5,-46.5
+ - pos: 12.5,-15.5
parent: 2
type: Transform
- uid: 9091
components:
- - pos: 3.5,-51.5
+ - pos: 31.5,-4.5
parent: 2
type: Transform
- uid: 9092
components:
- - pos: 3.5,-53.5
+ - pos: 30.5,-4.5
parent: 2
type: Transform
- uid: 9093
components:
- - pos: 1.5,-53.5
+ - pos: 30.5,-3.5
parent: 2
type: Transform
- uid: 9094
components:
- - pos: 0.5,-53.5
+ - pos: 30.5,-2.5
parent: 2
type: Transform
- uid: 9095
components:
- - pos: 7.5,-43.5
+ - pos: -9.5,-21.5
parent: 2
type: Transform
- uid: 9096
components:
- - pos: -20.5,-69.5
+ - pos: -8.5,-19.5
parent: 2
type: Transform
- uid: 9097
components:
- - pos: -21.5,-68.5
+ - pos: -8.5,-20.5
parent: 2
type: Transform
- uid: 9098
components:
- - pos: -9.5,-71.5
+ - pos: -8.5,-21.5
parent: 2
type: Transform
- uid: 9099
components:
- - pos: -3.5,-69.5
+ - pos: -10.5,-21.5
parent: 2
type: Transform
- uid: 9100
components:
- - pos: 2.5,-53.5
+ - pos: -10.5,-20.5
parent: 2
type: Transform
- uid: 9101
components:
- - pos: 18.5,-11.5
+ - pos: 13.5,-46.5
parent: 2
type: Transform
- uid: 9102
components:
- - pos: 17.5,-11.5
+ - pos: 3.5,-51.5
parent: 2
type: Transform
- uid: 9103
components:
- - pos: 44.5,-64.5
+ - pos: 3.5,-53.5
parent: 2
type: Transform
- uid: 9104
components:
- - pos: 46.5,-65.5
+ - pos: 1.5,-53.5
parent: 2
type: Transform
- uid: 9105
components:
- - pos: 38.5,-30.5
+ - pos: 0.5,-53.5
parent: 2
type: Transform
- uid: 9106
components:
- - pos: 36.5,-30.5
+ - pos: 7.5,-43.5
parent: 2
type: Transform
- uid: 9107
components:
- - pos: 28.5,-28.5
+ - pos: -20.5,-69.5
parent: 2
type: Transform
- uid: 9108
components:
- - pos: 35.5,-27.5
+ - pos: -21.5,-68.5
parent: 2
type: Transform
- uid: 9109
components:
- - pos: 35.5,-26.5
+ - pos: -9.5,-71.5
parent: 2
type: Transform
- uid: 9110
components:
- - pos: 36.5,-26.5
+ - pos: -3.5,-69.5
parent: 2
type: Transform
- uid: 9111
components:
- - pos: 37.5,-26.5
+ - pos: 2.5,-53.5
parent: 2
type: Transform
- uid: 9112
components:
- - pos: 38.5,-26.5
+ - pos: 18.5,-11.5
parent: 2
type: Transform
- uid: 9113
components:
- - pos: 39.5,-26.5
+ - pos: 17.5,-11.5
parent: 2
type: Transform
- uid: 9114
components:
- - pos: 41.5,-26.5
+ - pos: 44.5,-64.5
parent: 2
type: Transform
- uid: 9115
components:
- - pos: 42.5,-26.5
+ - pos: 46.5,-65.5
parent: 2
type: Transform
- uid: 9116
components:
- - pos: 0.5,12.5
+ - pos: 38.5,-30.5
parent: 2
type: Transform
- uid: 9117
components:
- - pos: 0.5,13.5
+ - pos: 36.5,-30.5
parent: 2
type: Transform
- uid: 9118
components:
- - pos: 38.5,-29.5
+ - pos: 28.5,-28.5
parent: 2
type: Transform
- uid: 9119
components:
- - pos: 6.5,-19.5
+ - pos: 35.5,-27.5
parent: 2
type: Transform
- uid: 9120
components:
- - pos: 6.5,-11.5
+ - pos: 35.5,-26.5
parent: 2
type: Transform
- uid: 9121
components:
- - pos: 7.5,-11.5
+ - pos: 36.5,-26.5
parent: 2
type: Transform
- uid: 9122
components:
- - pos: 8.5,-11.5
+ - pos: 37.5,-26.5
parent: 2
type: Transform
- uid: 9123
components:
- - pos: 8.5,-10.5
+ - pos: 38.5,-26.5
parent: 2
type: Transform
- uid: 9124
components:
- - pos: 8.5,-9.5
+ - pos: 39.5,-26.5
parent: 2
type: Transform
- uid: 9125
components:
- - pos: 8.5,-7.5
+ - pos: 41.5,-26.5
parent: 2
type: Transform
- uid: 9126
components:
- - pos: 8.5,-5.5
+ - pos: 42.5,-26.5
parent: 2
type: Transform
- uid: 9127
components:
- - pos: 8.5,-4.5
+ - pos: 0.5,12.5
parent: 2
type: Transform
- uid: 9128
components:
- - pos: 8.5,-3.5
+ - pos: 0.5,13.5
parent: 2
type: Transform
- uid: 9129
components:
- - pos: -21.5,-69.5
+ - pos: 38.5,-29.5
parent: 2
type: Transform
- uid: 9130
components:
- - pos: 10.5,-14.5
+ - pos: 6.5,-19.5
parent: 2
type: Transform
- uid: 9131
components:
- - pos: -19.5,-69.5
+ - pos: 6.5,-11.5
parent: 2
type: Transform
- uid: 9132
components:
- - pos: 9.5,-14.5
+ - pos: 7.5,-11.5
parent: 2
type: Transform
- uid: 9133
components:
- - pos: 15.5,-14.5
+ - pos: 8.5,-11.5
parent: 2
type: Transform
- uid: 9134
components:
- - pos: 12.5,-14.5
+ - pos: 8.5,-10.5
parent: 2
type: Transform
- uid: 9135
components:
- - pos: -16.5,-69.5
+ - pos: 8.5,-9.5
parent: 2
type: Transform
- uid: 9136
components:
- - pos: 8.5,-6.5
+ - pos: 8.5,-7.5
parent: 2
type: Transform
- uid: 9137
components:
- - pos: 8.5,-8.5
+ - pos: 8.5,-5.5
parent: 2
type: Transform
- uid: 9138
components:
- - pos: -4.5,14.5
+ - pos: 8.5,-4.5
parent: 2
type: Transform
- uid: 9139
components:
- - pos: 10.5,-49.5
+ - pos: 8.5,-3.5
parent: 2
type: Transform
- uid: 9140
components:
- - pos: 19.5,-51.5
+ - pos: -21.5,-69.5
parent: 2
type: Transform
- uid: 9141
components:
- - pos: 17.5,-52.5
+ - pos: 10.5,-14.5
parent: 2
type: Transform
- uid: 9142
components:
- - pos: 15.5,-52.5
+ - pos: -19.5,-69.5
parent: 2
type: Transform
- uid: 9143
components:
- - pos: 14.5,-51.5
+ - pos: 9.5,-14.5
parent: 2
type: Transform
- uid: 9144
components:
- - pos: 14.5,-50.5
+ - pos: 15.5,-14.5
parent: 2
type: Transform
- uid: 9145
components:
- - pos: 14.5,-49.5
+ - pos: 12.5,-14.5
parent: 2
type: Transform
- uid: 9146
components:
- - pos: 13.5,-49.5
+ - pos: -16.5,-69.5
parent: 2
type: Transform
- uid: 9147
components:
- - pos: 11.5,-49.5
+ - pos: 8.5,-6.5
parent: 2
type: Transform
- uid: 9148
components:
- - pos: 16.5,-14.5
+ - pos: 8.5,-8.5
parent: 2
type: Transform
- uid: 9149
components:
- - pos: 17.5,-14.5
+ - pos: -4.5,14.5
parent: 2
type: Transform
- uid: 9150
components:
- - pos: 17.5,-13.5
+ - pos: 10.5,-49.5
parent: 2
type: Transform
- uid: 9151
components:
- - pos: 17.5,-12.5
+ - pos: 19.5,-51.5
parent: 2
type: Transform
- uid: 9152
components:
- - pos: 19.5,-11.5
+ - pos: 17.5,-52.5
parent: 2
type: Transform
- uid: 9153
components:
- - pos: 21.5,-11.5
+ - pos: 15.5,-52.5
parent: 2
type: Transform
- uid: 9154
components:
- - pos: 5.5,-47.5
+ - pos: 14.5,-51.5
parent: 2
type: Transform
- uid: 9155
components:
- - pos: 19.5,-52.5
+ - pos: 14.5,-50.5
parent: 2
type: Transform
- uid: 9156
components:
- - pos: 32.5,-4.5
+ - pos: 14.5,-49.5
parent: 2
type: Transform
- uid: 9157
components:
- - pos: 6.5,-43.5
+ - pos: 13.5,-49.5
parent: 2
type: Transform
- uid: 9158
components:
- - pos: 14.5,-14.5
+ - pos: 11.5,-49.5
parent: 2
type: Transform
- uid: 9159
components:
- - pos: 6.5,-14.5
+ - pos: 16.5,-14.5
parent: 2
type: Transform
- uid: 9160
components:
- - pos: 7.5,-14.5
+ - pos: 17.5,-14.5
parent: 2
type: Transform
- uid: 9161
components:
- - pos: 8.5,-14.5
+ - pos: 17.5,-13.5
parent: 2
type: Transform
- uid: 9162
components:
- - pos: 8.5,-16.5
+ - pos: 17.5,-12.5
parent: 2
type: Transform
- uid: 9163
components:
- - pos: 21.5,-28.5
+ - pos: 19.5,-11.5
parent: 2
type: Transform
- uid: 9164
components:
- - pos: 21.5,-10.5
+ - pos: 21.5,-11.5
parent: 2
type: Transform
- uid: 9165
components:
- - pos: 12.5,-49.5
+ - pos: 5.5,-47.5
parent: 2
type: Transform
- uid: 9166
components:
- - pos: 13.5,-57.5
+ - pos: 19.5,-52.5
parent: 2
type: Transform
- uid: 9167
components:
- - pos: 14.5,-52.5
+ - pos: 32.5,-4.5
parent: 2
type: Transform
- uid: 9168
components:
- - pos: 32.5,-2.5
+ - pos: 6.5,-43.5
parent: 2
type: Transform
- uid: 9169
components:
- - pos: -4.5,-69.5
+ - pos: 14.5,-14.5
parent: 2
type: Transform
- uid: 9170
components:
- - pos: 5.5,-43.5
+ - pos: 6.5,-14.5
parent: 2
type: Transform
- uid: 9171
components:
- - pos: 38.5,16.5
+ - pos: 7.5,-14.5
parent: 2
type: Transform
- uid: 9172
components:
- - pos: 37.5,14.5
+ - pos: 8.5,-14.5
parent: 2
type: Transform
- uid: 9173
components:
- - pos: 27.5,18.5
+ - pos: 8.5,-16.5
parent: 2
type: Transform
- uid: 9174
components:
- - pos: 32.5,-3.5
+ - pos: 21.5,-28.5
parent: 2
type: Transform
- uid: 9175
components:
- - pos: -18.5,-69.5
+ - pos: 21.5,-10.5
parent: 2
type: Transform
- uid: 9176
components:
- - pos: -13.5,-69.5
+ - pos: 12.5,-49.5
parent: 2
type: Transform
- uid: 9177
components:
- - pos: 26.5,-28.5
+ - pos: 13.5,-57.5
parent: 2
type: Transform
- uid: 9178
components:
- - pos: 25.5,-28.5
+ - pos: 14.5,-52.5
parent: 2
type: Transform
- uid: 9179
components:
- - pos: 23.5,-28.5
+ - pos: 32.5,-2.5
parent: 2
type: Transform
- uid: 9180
components:
- - pos: 22.5,-28.5
+ - pos: -4.5,-69.5
parent: 2
type: Transform
- uid: 9181
components:
- - pos: 20.5,-28.5
+ - pos: 5.5,-43.5
parent: 2
type: Transform
- uid: 9182
components:
- - pos: 11.5,-14.5
+ - pos: 38.5,16.5
parent: 2
type: Transform
- uid: 9183
components:
- - pos: 20.5,-11.5
+ - pos: 37.5,14.5
parent: 2
type: Transform
- uid: 9184
components:
- - pos: -17.5,-69.5
+ - pos: 27.5,18.5
parent: 2
type: Transform
- uid: 9185
components:
- - pos: 22.5,17.5
+ - pos: 32.5,-3.5
parent: 2
type: Transform
- uid: 9186
components:
- - pos: 23.5,17.5
+ - pos: -18.5,-69.5
parent: 2
type: Transform
- uid: 9187
components:
- - pos: 23.5,18.5
+ - pos: -13.5,-69.5
parent: 2
type: Transform
- uid: 9188
components:
- - pos: 24.5,18.5
+ - pos: 26.5,-28.5
parent: 2
type: Transform
- uid: 9189
components:
- - pos: 25.5,18.5
+ - pos: 25.5,-28.5
parent: 2
type: Transform
- uid: 9190
components:
- - pos: 26.5,18.5
+ - pos: 23.5,-28.5
parent: 2
type: Transform
- uid: 9191
components:
- - pos: 35.5,-28.5
+ - pos: 22.5,-28.5
parent: 2
type: Transform
- uid: 9192
components:
- - pos: 35.5,-30.5
+ - pos: 20.5,-28.5
parent: 2
type: Transform
- uid: 9193
components:
- - pos: -15.5,-69.5
+ - pos: 11.5,-14.5
parent: 2
type: Transform
- uid: 9194
components:
- - pos: -12.5,-69.5
+ - pos: 20.5,-11.5
parent: 2
type: Transform
- uid: 9195
components:
- - pos: 33.5,23.5
+ - pos: -17.5,-69.5
parent: 2
type: Transform
- uid: 9196
components:
- - pos: 29.5,20.5
+ - pos: 22.5,17.5
parent: 2
type: Transform
- uid: 9197
components:
- - pos: 29.5,21.5
+ - pos: 23.5,17.5
parent: 2
type: Transform
- uid: 9198
components:
- - pos: 28.5,21.5
+ - pos: 23.5,18.5
parent: 2
type: Transform
- uid: 9199
components:
- - pos: 27.5,21.5
+ - pos: 24.5,18.5
parent: 2
type: Transform
- uid: 9200
components:
- - pos: 26.5,21.5
+ - pos: 25.5,18.5
parent: 2
type: Transform
- uid: 9201
components:
- - pos: 25.5,21.5
+ - pos: 26.5,18.5
parent: 2
type: Transform
- uid: 9202
components:
- - pos: 25.5,22.5
+ - pos: 35.5,-28.5
parent: 2
type: Transform
- uid: 9203
components:
- - pos: 25.5,23.5
+ - pos: 35.5,-30.5
parent: 2
type: Transform
- uid: 9204
components:
- - pos: 25.5,24.5
+ - pos: -15.5,-69.5
parent: 2
type: Transform
- uid: 9205
components:
- - pos: 24.5,24.5
+ - pos: -12.5,-69.5
parent: 2
type: Transform
- uid: 9206
components:
- - pos: 30.5,21.5
+ - pos: 33.5,23.5
parent: 2
type: Transform
- uid: 9207
components:
- - pos: 31.5,21.5
+ - pos: 29.5,20.5
parent: 2
type: Transform
- uid: 9208
components:
- - pos: 32.5,21.5
+ - pos: 29.5,21.5
parent: 2
type: Transform
- uid: 9209
components:
- - pos: 32.5,22.5
+ - pos: 28.5,21.5
parent: 2
type: Transform
- uid: 9210
components:
- - pos: 32.5,23.5
+ - pos: 27.5,21.5
parent: 2
type: Transform
- uid: 9211
components:
- - pos: 33.5,24.5
+ - pos: 26.5,21.5
parent: 2
type: Transform
- uid: 9212
components:
- - pos: 33.5,25.5
+ - pos: 25.5,21.5
parent: 2
type: Transform
- uid: 9213
components:
- - pos: 46.5,-64.5
+ - pos: 25.5,22.5
parent: 2
type: Transform
- uid: 9214
components:
- - pos: -13.5,42.5
+ - pos: 25.5,23.5
parent: 2
type: Transform
- uid: 9215
components:
- - pos: -14.5,42.5
+ - pos: 25.5,24.5
parent: 2
type: Transform
- uid: 9216
components:
- - pos: -19.5,23.5
+ - pos: 24.5,24.5
parent: 2
type: Transform
- uid: 9217
components:
- - pos: -19.5,22.5
+ - pos: 30.5,21.5
parent: 2
type: Transform
- uid: 9218
components:
- - pos: 32.5,-9.5
+ - pos: 31.5,21.5
parent: 2
type: Transform
- uid: 9219
components:
- - pos: 63.5,7.5
+ - pos: 32.5,21.5
parent: 2
type: Transform
- uid: 9220
components:
- - pos: 63.5,6.5
+ - pos: 32.5,22.5
parent: 2
type: Transform
- uid: 9221
components:
- - pos: 63.5,5.5
+ - pos: 32.5,23.5
parent: 2
type: Transform
- uid: 9222
components:
- - pos: 63.5,4.5
+ - pos: 33.5,24.5
parent: 2
type: Transform
- uid: 9223
components:
- - pos: 62.5,4.5
+ - pos: 33.5,25.5
parent: 2
type: Transform
- uid: 9224
components:
- - pos: 61.5,4.5
+ - pos: 46.5,-64.5
parent: 2
type: Transform
- uid: 9225
components:
- - pos: 60.5,4.5
+ - pos: -13.5,42.5
parent: 2
type: Transform
- uid: 9226
components:
- - pos: 60.5,5.5
+ - pos: -14.5,42.5
parent: 2
type: Transform
- uid: 9227
components:
- - pos: 60.5,6.5
+ - pos: -19.5,23.5
parent: 2
type: Transform
- uid: 9228
components:
- - pos: 60.5,7.5
+ - pos: -19.5,22.5
parent: 2
type: Transform
- uid: 9229
components:
- - pos: 60.5,8.5
+ - pos: 32.5,-9.5
parent: 2
type: Transform
- uid: 9230
components:
- - pos: 60.5,9.5
+ - pos: 63.5,7.5
parent: 2
type: Transform
- uid: 9231
components:
- - pos: 59.5,9.5
+ - pos: 63.5,6.5
parent: 2
type: Transform
- uid: 9232
components:
- - pos: 58.5,9.5
+ - pos: 63.5,5.5
parent: 2
type: Transform
- uid: 9233
components:
- - pos: 58.5,10.5
+ - pos: 63.5,4.5
parent: 2
type: Transform
- uid: 9234
components:
- - pos: 58.5,11.5
+ - pos: 62.5,4.5
parent: 2
type: Transform
- uid: 9235
components:
- - pos: 38.5,15.5
+ - pos: 61.5,4.5
parent: 2
type: Transform
- uid: 9236
components:
- - pos: 22.5,-8.5
+ - pos: 60.5,4.5
parent: 2
type: Transform
- uid: 9237
components:
- - pos: 23.5,-8.5
+ - pos: 60.5,5.5
parent: 2
type: Transform
- uid: 9238
components:
- - pos: 24.5,-8.5
+ - pos: 60.5,6.5
parent: 2
type: Transform
- uid: 9239
components:
- - pos: 25.5,-8.5
+ - pos: 60.5,7.5
parent: 2
type: Transform
- uid: 9240
components:
- - pos: 26.5,-8.5
+ - pos: 60.5,8.5
parent: 2
type: Transform
- uid: 9241
components:
- - pos: 27.5,-8.5
+ - pos: 60.5,9.5
parent: 2
type: Transform
- uid: 9242
components:
- - pos: 29.5,-8.5
+ - pos: 59.5,9.5
parent: 2
type: Transform
- uid: 9243
components:
- - pos: 28.5,-8.5
+ - pos: 58.5,9.5
parent: 2
type: Transform
- uid: 9244
components:
- - pos: 30.5,-8.5
+ - pos: 58.5,10.5
parent: 2
type: Transform
- uid: 9245
components:
- - pos: 31.5,-8.5
+ - pos: 58.5,11.5
parent: 2
type: Transform
- uid: 9246
components:
- - pos: 32.5,-8.5
+ - pos: 38.5,15.5
parent: 2
type: Transform
- uid: 9247
components:
- - pos: 47.5,-3.5
+ - pos: 22.5,-8.5
parent: 2
type: Transform
- uid: 9248
components:
- - pos: 47.5,-2.5
+ - pos: 23.5,-8.5
parent: 2
type: Transform
- uid: 9249
components:
- - pos: 47.5,-1.5
+ - pos: 24.5,-8.5
parent: 2
type: Transform
- uid: 9250
components:
- - pos: 46.5,-1.5
+ - pos: 25.5,-8.5
parent: 2
type: Transform
- uid: 9251
components:
- - pos: 46.5,-0.5
+ - pos: 26.5,-8.5
parent: 2
type: Transform
- uid: 9252
components:
- - pos: 46.5,0.5
+ - pos: 27.5,-8.5
parent: 2
type: Transform
- uid: 9253
components:
- - pos: 47.5,0.5
+ - pos: 29.5,-8.5
parent: 2
type: Transform
- uid: 9254
components:
- - pos: 48.5,0.5
+ - pos: 28.5,-8.5
parent: 2
type: Transform
- uid: 9255
components:
- - pos: 49.5,0.5
+ - pos: 30.5,-8.5
parent: 2
type: Transform
- uid: 9256
components:
- - pos: 49.5,1.5
+ - pos: 31.5,-8.5
parent: 2
type: Transform
- uid: 9257
components:
- - pos: 49.5,2.5
+ - pos: 32.5,-8.5
parent: 2
type: Transform
- uid: 9258
components:
- - pos: 49.5,3.5
+ - pos: 47.5,-3.5
parent: 2
type: Transform
- uid: 9259
components:
- - pos: 48.5,-5.5
+ - pos: 47.5,-2.5
parent: 2
type: Transform
- uid: 9260
components:
- - pos: 47.5,-5.5
+ - pos: 47.5,-1.5
parent: 2
type: Transform
- uid: 9261
components:
- - pos: 47.5,-6.5
+ - pos: 46.5,-1.5
parent: 2
type: Transform
- uid: 9262
components:
- - pos: 47.5,-7.5
+ - pos: 46.5,-0.5
parent: 2
type: Transform
- uid: 9263
components:
- - pos: 47.5,-8.5
+ - pos: 46.5,0.5
parent: 2
type: Transform
- uid: 9264
components:
- - pos: 48.5,-8.5
+ - pos: 47.5,0.5
parent: 2
type: Transform
- uid: 9265
components:
- - pos: 49.5,-8.5
+ - pos: 48.5,0.5
parent: 2
type: Transform
- uid: 9266
components:
- - pos: 50.5,-8.5
+ - pos: 49.5,0.5
parent: 2
type: Transform
- uid: 9267
components:
- - pos: 51.5,-8.5
+ - pos: 49.5,1.5
parent: 2
type: Transform
- uid: 9268
components:
- - pos: 52.5,-8.5
+ - pos: 49.5,2.5
parent: 2
type: Transform
- uid: 9269
components:
- - pos: 52.5,-7.5
+ - pos: 49.5,3.5
parent: 2
type: Transform
- uid: 9270
components:
- - pos: 52.5,-6.5
+ - pos: 48.5,-5.5
parent: 2
type: Transform
- uid: 9271
components:
- - pos: 53.5,-6.5
+ - pos: 47.5,-5.5
parent: 2
type: Transform
- uid: 9272
components:
- - pos: 53.5,-5.5
+ - pos: 47.5,-6.5
parent: 2
type: Transform
- uid: 9273
components:
- - pos: 54.5,-5.5
+ - pos: 47.5,-7.5
parent: 2
type: Transform
- uid: 9274
components:
- - pos: 55.5,-5.5
+ - pos: 47.5,-8.5
parent: 2
type: Transform
- uid: 9275
components:
- - pos: 56.5,-5.5
+ - pos: 48.5,-8.5
parent: 2
type: Transform
- uid: 9276
components:
- - pos: 57.5,-5.5
+ - pos: 49.5,-8.5
parent: 2
type: Transform
- uid: 9277
components:
- - pos: 58.5,-5.5
+ - pos: 50.5,-8.5
parent: 2
type: Transform
- uid: 9278
components:
- - pos: 59.5,-5.5
+ - pos: 51.5,-8.5
parent: 2
type: Transform
- uid: 9279
components:
- - pos: 59.5,-4.5
+ - pos: 52.5,-8.5
parent: 2
type: Transform
- uid: 9280
components:
- - pos: 43.5,-64.5
+ - pos: 52.5,-7.5
parent: 2
type: Transform
- uid: 9281
components:
- - pos: 38.5,-46.5
+ - pos: 52.5,-6.5
parent: 2
type: Transform
- uid: 9282
components:
- - pos: 38.5,-45.5
+ - pos: 53.5,-6.5
parent: 2
type: Transform
- uid: 9283
components:
- - pos: 38.5,-44.5
+ - pos: 53.5,-5.5
parent: 2
type: Transform
- uid: 9284
components:
- - pos: 38.5,-43.5
+ - pos: 54.5,-5.5
parent: 2
type: Transform
- uid: 9285
components:
- - pos: 39.5,-43.5
+ - pos: 55.5,-5.5
parent: 2
type: Transform
- uid: 9286
components:
- - pos: 40.5,-43.5
+ - pos: 56.5,-5.5
parent: 2
type: Transform
- uid: 9287
components:
- - pos: 41.5,-43.5
+ - pos: 57.5,-5.5
parent: 2
type: Transform
- uid: 9288
components:
- - pos: 42.5,-43.5
+ - pos: 58.5,-5.5
parent: 2
type: Transform
- uid: 9289
components:
- - pos: 43.5,-43.5
+ - pos: 59.5,-5.5
parent: 2
type: Transform
- uid: 9290
components:
- - pos: 44.5,-43.5
+ - pos: 59.5,-4.5
parent: 2
type: Transform
- uid: 9291
components:
- - pos: 45.5,-43.5
+ - pos: 43.5,-64.5
parent: 2
type: Transform
- uid: 9292
components:
- - pos: 46.5,-43.5
+ - pos: 38.5,-46.5
parent: 2
type: Transform
- uid: 9293
components:
- - pos: 47.5,-43.5
+ - pos: 38.5,-45.5
parent: 2
type: Transform
- uid: 9294
components:
- - pos: 48.5,-43.5
+ - pos: 38.5,-44.5
parent: 2
type: Transform
- uid: 9295
components:
- - pos: 49.5,-43.5
+ - pos: 38.5,-43.5
parent: 2
type: Transform
- uid: 9296
components:
- - pos: 49.5,-44.5
+ - pos: 39.5,-43.5
parent: 2
type: Transform
- uid: 9297
components:
- - pos: 49.5,-45.5
+ - pos: 40.5,-43.5
parent: 2
type: Transform
- uid: 9298
components:
- - pos: 50.5,-45.5
+ - pos: 41.5,-43.5
parent: 2
type: Transform
- uid: 9299
components:
- - pos: 51.5,-45.5
+ - pos: 42.5,-43.5
parent: 2
type: Transform
- uid: 9300
components:
- - pos: 52.5,-45.5
+ - pos: 43.5,-43.5
parent: 2
type: Transform
- uid: 9301
components:
- - pos: 53.5,-45.5
+ - pos: 44.5,-43.5
parent: 2
type: Transform
- uid: 9302
components:
- - pos: 54.5,-45.5
+ - pos: 45.5,-43.5
parent: 2
type: Transform
- uid: 9303
components:
- - pos: 55.5,-45.5
+ - pos: 46.5,-43.5
parent: 2
type: Transform
- uid: 9304
components:
- - pos: 55.5,-44.5
+ - pos: 47.5,-43.5
parent: 2
type: Transform
- uid: 9305
components:
- - pos: 55.5,-43.5
+ - pos: 48.5,-43.5
parent: 2
type: Transform
- uid: 9306
components:
- - pos: 68.5,-59.5
+ - pos: 49.5,-43.5
parent: 2
type: Transform
- uid: 9307
components:
- - pos: 69.5,-59.5
+ - pos: 49.5,-44.5
parent: 2
type: Transform
- uid: 9308
components:
- - pos: 40.5,-62.5
+ - pos: 49.5,-45.5
parent: 2
type: Transform
- uid: 9309
components:
- - pos: 40.5,-60.5
+ - pos: 50.5,-45.5
parent: 2
type: Transform
- uid: 9310
components:
- - pos: 42.5,-64.5
+ - pos: 51.5,-45.5
parent: 2
type: Transform
- uid: 9311
components:
- - pos: -16.5,-0.5
+ - pos: 52.5,-45.5
parent: 2
type: Transform
- uid: 9312
components:
- - pos: -17.5,-0.5
+ - pos: 53.5,-45.5
parent: 2
type: Transform
- uid: 9313
components:
- - pos: -18.5,-0.5
+ - pos: 54.5,-45.5
parent: 2
type: Transform
- uid: 9314
components:
- - pos: -19.5,-0.5
+ - pos: 55.5,-45.5
parent: 2
type: Transform
- uid: 9315
components:
- - pos: -20.5,-0.5
+ - pos: 55.5,-44.5
parent: 2
type: Transform
- uid: 9316
components:
- - pos: -20.5,0.5
+ - pos: 55.5,-43.5
parent: 2
type: Transform
- uid: 9317
components:
- - pos: -29.5,-8.5
+ - pos: 68.5,-59.5
parent: 2
type: Transform
- uid: 9318
components:
- - pos: -28.5,-23.5
+ - pos: 69.5,-59.5
parent: 2
type: Transform
- uid: 9319
components:
- - pos: -28.5,-22.5
+ - pos: 40.5,-62.5
parent: 2
type: Transform
- uid: 9320
components:
- - pos: -28.5,-21.5
+ - pos: 40.5,-60.5
parent: 2
type: Transform
- uid: 9321
components:
- - pos: -29.5,-21.5
+ - pos: 42.5,-64.5
parent: 2
type: Transform
- uid: 9322
components:
- - pos: -30.5,-21.5
+ - pos: -16.5,-0.5
parent: 2
type: Transform
- uid: 9323
components:
- - pos: -31.5,-21.5
+ - pos: -17.5,-0.5
parent: 2
type: Transform
- uid: 9324
components:
- - pos: -31.5,-20.5
+ - pos: -18.5,-0.5
parent: 2
type: Transform
- uid: 9325
components:
- - pos: -31.5,-19.5
+ - pos: -19.5,-0.5
parent: 2
type: Transform
- uid: 9326
components:
- - pos: -31.5,-18.5
+ - pos: -20.5,-0.5
parent: 2
type: Transform
- uid: 9327
components:
- - pos: -31.5,-17.5
+ - pos: -20.5,0.5
parent: 2
type: Transform
- uid: 9328
components:
- - pos: -31.5,-16.5
+ - pos: -29.5,-8.5
parent: 2
type: Transform
- uid: 9329
components:
- - pos: -31.5,-15.5
+ - pos: -28.5,-23.5
parent: 2
type: Transform
- uid: 9330
components:
- - pos: -31.5,-14.5
+ - pos: -28.5,-22.5
parent: 2
type: Transform
- uid: 9331
components:
- - pos: -31.5,-13.5
+ - pos: -28.5,-21.5
parent: 2
type: Transform
- uid: 9332
components:
- - pos: -31.5,-12.5
+ - pos: -29.5,-21.5
parent: 2
type: Transform
- uid: 9333
components:
- - pos: -31.5,-11.5
+ - pos: -30.5,-21.5
parent: 2
type: Transform
- uid: 9334
components:
- - pos: -31.5,-10.5
+ - pos: -31.5,-21.5
parent: 2
type: Transform
- uid: 9335
components:
- - pos: -30.5,-10.5
+ - pos: -31.5,-20.5
parent: 2
type: Transform
- uid: 9336
components:
- - pos: -29.5,-10.5
+ - pos: -31.5,-19.5
parent: 2
type: Transform
- uid: 9337
components:
- - pos: -29.5,-9.5
+ - pos: -31.5,-18.5
parent: 2
type: Transform
- uid: 9338
components:
- - pos: 43.5,-58.5
+ - pos: -31.5,-17.5
parent: 2
type: Transform
- uid: 9339
components:
- - pos: 43.5,-59.5
+ - pos: -31.5,-16.5
parent: 2
type: Transform
- uid: 9340
components:
- - pos: 42.5,-59.5
+ - pos: -31.5,-15.5
parent: 2
type: Transform
- uid: 9341
components:
- - pos: 41.5,-59.5
+ - pos: -31.5,-14.5
parent: 2
type: Transform
- uid: 9342
components:
- - pos: 40.5,-59.5
+ - pos: -31.5,-13.5
parent: 2
type: Transform
- uid: 9343
components:
- - pos: 39.5,-59.5
+ - pos: -31.5,-12.5
parent: 2
type: Transform
- uid: 9344
components:
- - pos: 38.5,-59.5
+ - pos: -31.5,-11.5
parent: 2
type: Transform
- uid: 9345
components:
- - pos: 37.5,-59.5
+ - pos: -31.5,-10.5
parent: 2
type: Transform
- uid: 9346
components:
- - pos: 37.5,-58.5
+ - pos: -30.5,-10.5
parent: 2
type: Transform
- uid: 9347
components:
- - pos: 37.5,-57.5
+ - pos: -29.5,-10.5
parent: 2
type: Transform
- uid: 9348
components:
- - pos: 56.5,-45.5
+ - pos: -29.5,-9.5
parent: 2
type: Transform
- uid: 9349
components:
- - pos: 57.5,-45.5
+ - pos: 43.5,-58.5
parent: 2
type: Transform
- uid: 9350
components:
- - pos: 58.5,-45.5
+ - pos: 43.5,-59.5
parent: 2
type: Transform
- uid: 9351
components:
- - pos: 59.5,-45.5
+ - pos: 42.5,-59.5
parent: 2
type: Transform
- uid: 9352
components:
- - pos: 60.5,-45.5
+ - pos: 41.5,-59.5
parent: 2
type: Transform
- uid: 9353
components:
- - pos: 61.5,-45.5
+ - pos: 40.5,-59.5
parent: 2
type: Transform
- uid: 9354
components:
- - pos: 61.5,-46.5
+ - pos: 39.5,-59.5
parent: 2
type: Transform
- uid: 9355
components:
- - pos: 61.5,-47.5
+ - pos: 38.5,-59.5
parent: 2
type: Transform
- uid: 9356
components:
- - pos: 61.5,-48.5
+ - pos: 37.5,-59.5
parent: 2
type: Transform
- uid: 9357
components:
- - pos: 61.5,-49.5
+ - pos: 37.5,-58.5
parent: 2
type: Transform
- uid: 9358
components:
- - pos: 61.5,-50.5
+ - pos: 37.5,-57.5
parent: 2
type: Transform
- uid: 9359
components:
- - pos: 61.5,-51.5
+ - pos: 56.5,-45.5
parent: 2
type: Transform
- uid: 9360
components:
- - pos: 60.5,-51.5
+ - pos: 57.5,-45.5
parent: 2
type: Transform
- uid: 9361
components:
- - pos: 59.5,-51.5
+ - pos: 58.5,-45.5
parent: 2
type: Transform
- uid: 9362
components:
- - pos: 58.5,-51.5
+ - pos: 59.5,-45.5
parent: 2
type: Transform
- uid: 9363
components:
- - pos: 58.5,-52.5
+ - pos: 60.5,-45.5
parent: 2
type: Transform
- uid: 9364
components:
- - pos: 58.5,-53.5
+ - pos: 61.5,-45.5
parent: 2
type: Transform
- uid: 9365
components:
- - pos: 59.5,-53.5
+ - pos: 61.5,-46.5
parent: 2
type: Transform
- uid: 9366
components:
- - pos: 59.5,-54.5
+ - pos: 61.5,-47.5
parent: 2
type: Transform
- uid: 9367
components:
- - pos: 59.5,-55.5
+ - pos: 61.5,-48.5
parent: 2
type: Transform
- uid: 9368
components:
- - pos: 60.5,-55.5
+ - pos: 61.5,-49.5
parent: 2
type: Transform
- uid: 9369
components:
- - pos: 60.5,-56.5
+ - pos: 61.5,-50.5
parent: 2
type: Transform
- uid: 9370
components:
- - pos: 61.5,-56.5
+ - pos: 61.5,-51.5
parent: 2
type: Transform
- uid: 9371
components:
- - pos: 62.5,-56.5
+ - pos: 60.5,-51.5
parent: 2
type: Transform
- uid: 9372
components:
- - pos: 63.5,-56.5
+ - pos: 59.5,-51.5
parent: 2
type: Transform
- uid: 9373
components:
- - pos: 64.5,-56.5
+ - pos: 58.5,-51.5
parent: 2
type: Transform
- uid: 9374
components:
- - pos: 64.5,-55.5
+ - pos: 58.5,-52.5
parent: 2
type: Transform
- uid: 9375
components:
- - pos: 65.5,-55.5
+ - pos: 58.5,-53.5
parent: 2
type: Transform
- uid: 9376
components:
- - pos: 65.5,-54.5
+ - pos: 59.5,-53.5
parent: 2
type: Transform
- uid: 9377
components:
- - pos: 65.5,-53.5
+ - pos: 59.5,-54.5
parent: 2
type: Transform
- uid: 9378
components:
- - pos: 66.5,-53.5
+ - pos: 59.5,-55.5
parent: 2
type: Transform
- uid: 9379
components:
- - pos: 66.5,-52.5
+ - pos: 60.5,-55.5
parent: 2
type: Transform
- uid: 9380
components:
- - pos: 66.5,-51.5
+ - pos: 60.5,-56.5
parent: 2
type: Transform
- uid: 9381
components:
- - pos: 66.5,-50.5
+ - pos: 61.5,-56.5
parent: 2
type: Transform
- uid: 9382
components:
- - pos: 65.5,-50.5
+ - pos: 62.5,-56.5
parent: 2
type: Transform
- uid: 9383
components:
- - pos: 47.5,-65.5
+ - pos: 63.5,-56.5
parent: 2
type: Transform
- uid: 9384
components:
- - pos: -59.5,-20.5
+ - pos: 64.5,-56.5
parent: 2
type: Transform
- uid: 9385
components:
- - pos: -57.5,-20.5
+ - pos: 64.5,-55.5
parent: 2
type: Transform
- uid: 9386
components:
- - pos: -56.5,-21.5
+ - pos: 65.5,-55.5
parent: 2
type: Transform
- uid: 9387
components:
- - pos: -60.5,-20.5
+ - pos: 65.5,-54.5
parent: 2
type: Transform
- uid: 9388
components:
- - pos: -61.5,-20.5
+ - pos: 65.5,-53.5
parent: 2
type: Transform
- uid: 9389
components:
- - pos: -62.5,-20.5
+ - pos: 66.5,-53.5
parent: 2
type: Transform
- uid: 9390
components:
- - pos: -63.5,-20.5
+ - pos: 66.5,-52.5
parent: 2
type: Transform
- uid: 9391
components:
- - pos: -64.5,-20.5
+ - pos: 66.5,-51.5
parent: 2
type: Transform
- uid: 9392
components:
- - pos: -65.5,-20.5
+ - pos: 66.5,-50.5
parent: 2
type: Transform
- uid: 9393
components:
- - pos: -66.5,-20.5
+ - pos: 65.5,-50.5
parent: 2
type: Transform
- uid: 9394
components:
- - pos: -67.5,-20.5
+ - pos: 47.5,-65.5
parent: 2
type: Transform
- uid: 9395
components:
- - pos: -68.5,-20.5
+ - pos: -59.5,-20.5
parent: 2
type: Transform
- uid: 9396
components:
- - pos: -69.5,-20.5
+ - pos: -57.5,-20.5
parent: 2
type: Transform
- uid: 9397
components:
- - pos: -70.5,-20.5
+ - pos: -56.5,-21.5
parent: 2
type: Transform
- uid: 9398
components:
- - pos: -71.5,-20.5
+ - pos: -60.5,-20.5
parent: 2
type: Transform
- uid: 9399
components:
- - pos: -72.5,-20.5
+ - pos: -61.5,-20.5
parent: 2
type: Transform
- uid: 9400
components:
- - pos: -73.5,-20.5
+ - pos: -62.5,-20.5
parent: 2
type: Transform
- uid: 9401
components:
- - pos: -73.5,-19.5
+ - pos: -63.5,-20.5
parent: 2
type: Transform
- uid: 9402
components:
- - pos: -73.5,-18.5
+ - pos: -64.5,-20.5
parent: 2
type: Transform
- uid: 9403
components:
- - pos: -73.5,-17.5
+ - pos: -65.5,-20.5
parent: 2
type: Transform
- uid: 9404
components:
- - pos: -73.5,-16.5
+ - pos: -66.5,-20.5
parent: 2
type: Transform
- uid: 9405
components:
- - pos: -73.5,-15.5
+ - pos: -67.5,-20.5
parent: 2
type: Transform
- uid: 9406
components:
- - pos: -73.5,-14.5
+ - pos: -68.5,-20.5
parent: 2
type: Transform
- uid: 9407
components:
- - pos: -73.5,-13.5
+ - pos: -69.5,-20.5
parent: 2
type: Transform
- uid: 9408
components:
- - pos: -73.5,-12.5
+ - pos: -70.5,-20.5
parent: 2
type: Transform
- uid: 9409
components:
- - pos: -73.5,-11.5
+ - pos: -71.5,-20.5
parent: 2
type: Transform
- uid: 9410
components:
- - pos: -73.5,-10.5
+ - pos: -72.5,-20.5
parent: 2
type: Transform
- uid: 9411
components:
- - pos: -73.5,-9.5
+ - pos: -73.5,-20.5
parent: 2
type: Transform
- uid: 9412
components:
- - pos: -73.5,-8.5
+ - pos: -73.5,-19.5
parent: 2
type: Transform
- uid: 9413
components:
- - pos: -73.5,-7.5
+ - pos: -73.5,-18.5
parent: 2
type: Transform
- uid: 9414
components:
- - pos: -73.5,-6.5
+ - pos: -73.5,-17.5
parent: 2
type: Transform
- uid: 9415
components:
- - pos: -72.5,-6.5
+ - pos: -73.5,-16.5
parent: 2
type: Transform
- uid: 9416
components:
- - pos: -71.5,-6.5
+ - pos: -73.5,-15.5
parent: 2
type: Transform
- uid: 9417
components:
- - pos: -70.5,-6.5
+ - pos: -73.5,-14.5
parent: 2
type: Transform
- uid: 9418
components:
- - pos: -69.5,-6.5
+ - pos: -73.5,-13.5
parent: 2
type: Transform
- uid: 9419
components:
- - pos: -68.5,-6.5
+ - pos: -73.5,-12.5
parent: 2
type: Transform
- uid: 9420
components:
- - pos: -67.5,-6.5
+ - pos: -73.5,-11.5
parent: 2
type: Transform
- uid: 9421
components:
- - pos: -66.5,-6.5
+ - pos: -73.5,-10.5
parent: 2
type: Transform
- uid: 9422
components:
- - pos: -65.5,-6.5
+ - pos: -73.5,-9.5
parent: 2
type: Transform
- uid: 9423
components:
- - pos: -64.5,-6.5
+ - pos: -73.5,-8.5
parent: 2
type: Transform
- uid: 9424
components:
- - pos: -63.5,-6.5
+ - pos: -73.5,-7.5
parent: 2
type: Transform
- uid: 9425
components:
- - pos: -62.5,-6.5
+ - pos: -73.5,-6.5
parent: 2
type: Transform
- uid: 9426
components:
- - pos: -61.5,-6.5
+ - pos: -72.5,-6.5
parent: 2
type: Transform
- uid: 9427
components:
- - pos: -60.5,-6.5
+ - pos: -71.5,-6.5
parent: 2
type: Transform
- uid: 9428
components:
- - pos: -59.5,-6.5
+ - pos: -70.5,-6.5
parent: 2
type: Transform
- uid: 9429
components:
- - pos: -59.5,-7.5
+ - pos: -69.5,-6.5
parent: 2
type: Transform
- uid: 9430
components:
- - pos: -59.5,-8.5
+ - pos: -68.5,-6.5
parent: 2
type: Transform
- uid: 9431
components:
- - pos: -59.5,-9.5
+ - pos: -67.5,-6.5
parent: 2
type: Transform
- uid: 9432
components:
- - pos: -59.5,-10.5
+ - pos: -66.5,-6.5
parent: 2
type: Transform
- uid: 9433
components:
- - pos: -59.5,-11.5
+ - pos: -65.5,-6.5
parent: 2
type: Transform
- uid: 9434
components:
- - pos: -59.5,-12.5
+ - pos: -64.5,-6.5
parent: 2
type: Transform
- uid: 9435
components:
- - pos: -59.5,-13.5
+ - pos: -63.5,-6.5
parent: 2
type: Transform
- uid: 9436
components:
- - pos: -59.5,-14.5
+ - pos: -62.5,-6.5
parent: 2
type: Transform
- uid: 9437
components:
- - pos: -59.5,-15.5
+ - pos: -61.5,-6.5
parent: 2
type: Transform
- uid: 9438
components:
- - pos: -59.5,-16.5
+ - pos: -60.5,-6.5
parent: 2
type: Transform
- uid: 9439
components:
- - pos: -59.5,-17.5
+ - pos: -59.5,-6.5
parent: 2
type: Transform
- uid: 9440
components:
- - pos: -59.5,-18.5
+ - pos: -59.5,-7.5
parent: 2
type: Transform
- uid: 9441
components:
- - pos: -59.5,-19.5
+ - pos: -59.5,-8.5
parent: 2
type: Transform
- uid: 9442
components:
- - pos: -50.5,-8.5
+ - pos: -59.5,-9.5
parent: 2
type: Transform
- uid: 9443
components:
- - pos: -51.5,-8.5
+ - pos: -59.5,-10.5
parent: 2
type: Transform
- uid: 9444
components:
- - pos: -52.5,-8.5
+ - pos: -59.5,-11.5
parent: 2
type: Transform
- uid: 9445
components:
- - pos: -53.5,-8.5
+ - pos: -59.5,-12.5
parent: 2
type: Transform
- uid: 9446
components:
- - pos: -53.5,-9.5
+ - pos: -59.5,-13.5
parent: 2
type: Transform
- uid: 9447
components:
- - pos: -53.5,-10.5
+ - pos: -59.5,-14.5
parent: 2
type: Transform
- uid: 9448
components:
- - pos: -53.5,-11.5
+ - pos: -59.5,-15.5
parent: 2
type: Transform
- uid: 9449
components:
- - pos: -53.5,-12.5
+ - pos: -59.5,-16.5
parent: 2
type: Transform
- uid: 9450
components:
- - pos: -53.5,-13.5
+ - pos: -59.5,-17.5
parent: 2
type: Transform
- uid: 9451
components:
- - pos: -53.5,-14.5
+ - pos: -59.5,-18.5
parent: 2
type: Transform
- uid: 9452
components:
- - pos: -53.5,-15.5
+ - pos: -59.5,-19.5
parent: 2
type: Transform
- uid: 9453
components:
- - pos: -53.5,-16.5
+ - pos: -50.5,-8.5
parent: 2
type: Transform
- uid: 9454
components:
- - pos: -51.5,-16.5
+ - pos: -51.5,-8.5
parent: 2
type: Transform
- uid: 9455
components:
- - pos: -52.5,-16.5
+ - pos: -52.5,-8.5
parent: 2
type: Transform
- uid: 9456
components:
- - pos: -50.5,-16.5
+ - pos: -53.5,-8.5
parent: 2
type: Transform
- uid: 9457
components:
- - pos: -50.5,-15.5
+ - pos: -53.5,-9.5
parent: 2
type: Transform
- uid: 9458
components:
- - pos: -27.5,-37.5
+ - pos: -53.5,-10.5
parent: 2
type: Transform
- uid: 9459
components:
- - pos: -27.5,-36.5
+ - pos: -53.5,-11.5
parent: 2
type: Transform
- uid: 9460
components:
- - pos: -27.5,-35.5
+ - pos: -53.5,-12.5
parent: 2
type: Transform
- uid: 9461
components:
- - pos: -27.5,-34.5
+ - pos: -53.5,-13.5
parent: 2
type: Transform
- uid: 9462
components:
- - pos: -28.5,-34.5
+ - pos: -53.5,-14.5
parent: 2
type: Transform
- uid: 9463
components:
- - pos: -29.5,-34.5
+ - pos: -53.5,-15.5
parent: 2
type: Transform
- uid: 9464
components:
- - pos: -30.5,-34.5
+ - pos: -53.5,-16.5
parent: 2
type: Transform
- uid: 9465
components:
- - pos: -31.5,-34.5
+ - pos: -51.5,-16.5
parent: 2
type: Transform
- uid: 9466
components:
- - pos: -32.5,-34.5
+ - pos: -52.5,-16.5
parent: 2
type: Transform
- uid: 9467
components:
- - pos: -33.5,-34.5
+ - pos: -50.5,-16.5
parent: 2
type: Transform
- uid: 9468
components:
- - pos: -34.5,-34.5
+ - pos: -50.5,-15.5
parent: 2
type: Transform
- uid: 9469
components:
- - pos: -35.5,-34.5
+ - pos: -27.5,-37.5
parent: 2
type: Transform
- uid: 9470
components:
- - pos: -35.5,-33.5
+ - pos: -27.5,-36.5
parent: 2
type: Transform
- uid: 9471
components:
- - pos: -35.5,-32.5
+ - pos: -27.5,-35.5
parent: 2
type: Transform
- uid: 9472
components:
- - pos: -35.5,-31.5
+ - pos: -27.5,-34.5
parent: 2
type: Transform
- uid: 9473
components:
- - pos: -54.5,-13.5
+ - pos: -28.5,-34.5
parent: 2
type: Transform
- uid: 9474
components:
- - pos: -31.5,-54.5
+ - pos: -29.5,-34.5
parent: 2
type: Transform
- uid: 9475
components:
- - pos: -31.5,-55.5
+ - pos: -30.5,-34.5
parent: 2
type: Transform
- uid: 9476
components:
- - pos: -30.5,-55.5
+ - pos: -31.5,-34.5
parent: 2
type: Transform
- uid: 9477
components:
- - pos: -29.5,-55.5
+ - pos: -32.5,-34.5
parent: 2
type: Transform
- uid: 9478
components:
- - pos: -28.5,-55.5
+ - pos: -33.5,-34.5
parent: 2
type: Transform
- uid: 9479
components:
- - pos: -28.5,-56.5
+ - pos: -34.5,-34.5
parent: 2
type: Transform
- uid: 9480
components:
- - pos: -28.5,-57.5
+ - pos: -35.5,-34.5
parent: 2
type: Transform
- uid: 9481
components:
- - pos: -28.5,-58.5
+ - pos: -35.5,-33.5
parent: 2
type: Transform
- uid: 9482
components:
- - pos: -28.5,-59.5
+ - pos: -35.5,-32.5
parent: 2
type: Transform
- uid: 9483
components:
- - pos: -28.5,-60.5
+ - pos: -35.5,-31.5
parent: 2
type: Transform
- uid: 9484
components:
- - pos: -28.5,-61.5
+ - pos: -54.5,-13.5
parent: 2
type: Transform
- uid: 9485
components:
- - pos: -28.5,-62.5
+ - pos: -31.5,-54.5
parent: 2
type: Transform
- uid: 9486
components:
- - pos: -28.5,-63.5
+ - pos: -31.5,-55.5
parent: 2
type: Transform
- uid: 9487
components:
- - pos: -29.5,-63.5
+ - pos: -30.5,-55.5
parent: 2
type: Transform
- uid: 9488
components:
- - pos: -29.5,-64.5
+ - pos: -29.5,-55.5
parent: 2
type: Transform
- uid: 9489
components:
- - pos: -30.5,-63.5
+ - pos: -28.5,-55.5
parent: 2
type: Transform
- uid: 9490
components:
- - pos: 21.5,-8.5
+ - pos: -28.5,-56.5
parent: 2
type: Transform
- uid: 9491
components:
- - pos: 29.5,-28.5
+ - pos: -28.5,-57.5
parent: 2
type: Transform
- uid: 9492
components:
- - pos: -56.5,-86.5
+ - pos: -28.5,-58.5
parent: 2
type: Transform
- uid: 9493
components:
- - pos: -56.5,-85.5
+ - pos: -28.5,-59.5
parent: 2
type: Transform
- uid: 9494
components:
- - pos: -8.5,35.5
+ - pos: -28.5,-60.5
parent: 2
type: Transform
- uid: 9495
components:
- - pos: -8.5,33.5
+ - pos: -28.5,-61.5
parent: 2
type: Transform
- uid: 9496
components:
- - pos: -8.5,34.5
+ - pos: -28.5,-62.5
parent: 2
type: Transform
- uid: 9497
components:
- - pos: -8.5,31.5
+ - pos: -28.5,-63.5
parent: 2
type: Transform
- uid: 9498
components:
- - pos: -8.5,32.5
+ - pos: -29.5,-63.5
parent: 2
type: Transform
- uid: 9499
components:
- - pos: -7.5,32.5
+ - pos: -29.5,-64.5
parent: 2
type: Transform
- uid: 9500
components:
- - pos: -6.5,32.5
+ - pos: -30.5,-63.5
parent: 2
type: Transform
- uid: 9501
components:
- - pos: -5.5,32.5
+ - pos: 21.5,-8.5
parent: 2
type: Transform
- uid: 9502
components:
- - pos: -4.5,32.5
+ - pos: 29.5,-28.5
parent: 2
type: Transform
- uid: 9503
components:
- - pos: -3.5,32.5
+ - pos: -56.5,-86.5
parent: 2
type: Transform
- uid: 9504
components:
- - pos: -2.5,32.5
+ - pos: -56.5,-85.5
parent: 2
type: Transform
- uid: 9505
components:
- - pos: -1.5,32.5
+ - pos: -8.5,35.5
parent: 2
type: Transform
- uid: 9506
components:
- - pos: -0.5,32.5
+ - pos: -8.5,33.5
parent: 2
type: Transform
- uid: 9507
components:
- - pos: 0.5,32.5
+ - pos: -8.5,34.5
parent: 2
type: Transform
- uid: 9508
components:
- - pos: 0.5,33.5
+ - pos: -8.5,31.5
parent: 2
type: Transform
- uid: 9509
components:
- - pos: 0.5,34.5
+ - pos: -8.5,32.5
parent: 2
type: Transform
- uid: 9510
components:
- - pos: 0.5,35.5
+ - pos: -7.5,32.5
parent: 2
type: Transform
- uid: 9511
components:
- - pos: -23.5,15.5
+ - pos: -6.5,32.5
parent: 2
type: Transform
- uid: 9512
components:
- - pos: -22.5,15.5
+ - pos: -5.5,32.5
parent: 2
type: Transform
- uid: 9513
components:
- - pos: -21.5,15.5
+ - pos: -4.5,32.5
parent: 2
type: Transform
- uid: 9514
components:
- - pos: -20.5,15.5
+ - pos: -3.5,32.5
parent: 2
type: Transform
- uid: 9515
components:
- - pos: -19.5,15.5
+ - pos: -2.5,32.5
parent: 2
type: Transform
- uid: 9516
components:
- - pos: -19.5,16.5
+ - pos: -1.5,32.5
parent: 2
type: Transform
- uid: 9517
components:
- - pos: -19.5,17.5
+ - pos: -0.5,32.5
parent: 2
type: Transform
- uid: 9518
components:
- - pos: -19.5,18.5
+ - pos: 0.5,32.5
parent: 2
type: Transform
- uid: 9519
components:
- - pos: -19.5,19.5
+ - pos: 0.5,33.5
parent: 2
type: Transform
- uid: 9520
components:
- - pos: -19.5,20.5
+ - pos: 0.5,34.5
parent: 2
type: Transform
- uid: 9521
components:
- - pos: -19.5,21.5
+ - pos: 0.5,35.5
parent: 2
type: Transform
- uid: 9522
components:
- - pos: -20.5,21.5
+ - pos: -23.5,15.5
parent: 2
type: Transform
- uid: 9523
components:
- - pos: -21.5,21.5
+ - pos: -22.5,15.5
parent: 2
type: Transform
- uid: 9524
components:
- - pos: -22.5,21.5
+ - pos: -21.5,15.5
parent: 2
type: Transform
- uid: 9525
components:
- - pos: -23.5,21.5
+ - pos: -20.5,15.5
parent: 2
type: Transform
- uid: 9526
components:
- - pos: -23.5,22.5
+ - pos: -19.5,15.5
parent: 2
type: Transform
- uid: 9527
components:
- - pos: -23.5,23.5
+ - pos: -19.5,16.5
parent: 2
type: Transform
- uid: 9528
components:
- - pos: -23.5,24.5
+ - pos: -19.5,17.5
parent: 2
type: Transform
- uid: 9529
components:
- - pos: -23.5,25.5
+ - pos: -19.5,18.5
parent: 2
type: Transform
- uid: 9530
components:
- - pos: -23.5,26.5
+ - pos: -19.5,19.5
parent: 2
type: Transform
- uid: 9531
components:
- - pos: -9.5,26.5
+ - pos: -19.5,20.5
parent: 2
type: Transform
- uid: 9532
components:
- - pos: -34.5,-3.5
+ - pos: -19.5,21.5
parent: 2
type: Transform
- uid: 9533
components:
- - pos: -34.5,-2.5
+ - pos: -20.5,21.5
parent: 2
type: Transform
- uid: 9534
components:
- - pos: -35.5,-2.5
+ - pos: -21.5,21.5
parent: 2
type: Transform
- uid: 9535
components:
- - pos: -36.5,-2.5
+ - pos: -22.5,21.5
parent: 2
type: Transform
- uid: 9536
components:
- - pos: -37.5,-2.5
+ - pos: -23.5,21.5
parent: 2
type: Transform
- uid: 9537
components:
- - pos: -37.5,-1.5
+ - pos: -23.5,22.5
parent: 2
type: Transform
- uid: 9538
components:
- - pos: -37.5,-0.5
+ - pos: -23.5,23.5
parent: 2
type: Transform
- uid: 9539
components:
- - pos: -37.5,0.5
+ - pos: -23.5,24.5
parent: 2
type: Transform
- uid: 9540
components:
- - pos: -38.5,0.5
+ - pos: -23.5,25.5
parent: 2
type: Transform
- uid: 9541
components:
- - pos: -39.5,0.5
+ - pos: -23.5,26.5
parent: 2
type: Transform
- uid: 9542
components:
- - pos: -40.5,0.5
+ - pos: -9.5,26.5
parent: 2
type: Transform
- uid: 9543
components:
- - pos: -41.5,0.5
+ - pos: -34.5,-3.5
parent: 2
type: Transform
- uid: 9544
components:
- - pos: -42.5,0.5
+ - pos: -34.5,-2.5
parent: 2
type: Transform
- uid: 9545
components:
- - pos: -42.5,1.5
+ - pos: -35.5,-2.5
parent: 2
type: Transform
- uid: 9546
components:
- - pos: -42.5,2.5
+ - pos: -36.5,-2.5
parent: 2
type: Transform
- uid: 9547
components:
- - pos: -9.5,25.5
+ - pos: -37.5,-2.5
parent: 2
type: Transform
- uid: 9548
components:
- - pos: -6.5,15.5
+ - pos: -37.5,-1.5
parent: 2
type: Transform
- uid: 9549
components:
- - pos: -10.5,16.5
+ - pos: -37.5,-0.5
parent: 2
type: Transform
- uid: 9550
components:
- - pos: -10.5,18.5
+ - pos: -37.5,0.5
parent: 2
type: Transform
- uid: 9551
components:
- - pos: -11.5,18.5
+ - pos: -38.5,0.5
parent: 2
type: Transform
- uid: 9552
components:
- - pos: -12.5,18.5
+ - pos: -39.5,0.5
parent: 2
type: Transform
- uid: 9553
components:
- - pos: -12.5,19.5
+ - pos: -40.5,0.5
parent: 2
type: Transform
- uid: 9554
components:
- - pos: -12.5,20.5
+ - pos: -41.5,0.5
parent: 2
type: Transform
- uid: 9555
components:
- - pos: -12.5,21.5
+ - pos: -42.5,0.5
parent: 2
type: Transform
- uid: 9556
components:
- - pos: -12.5,22.5
+ - pos: -42.5,1.5
parent: 2
type: Transform
- uid: 9557
components:
- - pos: -12.5,23.5
+ - pos: -42.5,2.5
parent: 2
type: Transform
- uid: 9558
components:
- - pos: -12.5,24.5
+ - pos: -9.5,25.5
parent: 2
type: Transform
- uid: 9559
components:
- - pos: -11.5,24.5
+ - pos: -6.5,15.5
parent: 2
type: Transform
- uid: 9560
components:
- - pos: -10.5,24.5
+ - pos: -10.5,16.5
parent: 2
type: Transform
- uid: 9561
components:
- - pos: -9.5,24.5
+ - pos: -10.5,18.5
parent: 2
type: Transform
- uid: 9562
components:
- - pos: -8.5,26.5
+ - pos: -11.5,18.5
parent: 2
type: Transform
- uid: 9563
components:
- - pos: -8.5,27.5
+ - pos: -12.5,18.5
parent: 2
type: Transform
- uid: 9564
components:
- - pos: -8.5,28.5
+ - pos: -12.5,19.5
parent: 2
type: Transform
- uid: 9565
components:
- - pos: -8.5,29.5
+ - pos: -12.5,20.5
parent: 2
type: Transform
- uid: 9566
components:
- - pos: -8.5,30.5
+ - pos: -12.5,21.5
parent: 2
type: Transform
- uid: 9567
components:
- - pos: -55.5,-13.5
+ - pos: -12.5,22.5
parent: 2
type: Transform
- uid: 9568
components:
- - pos: 33.5,26.5
+ - pos: -12.5,23.5
parent: 2
type: Transform
- uid: 9569
components:
- - pos: 33.5,27.5
+ - pos: -12.5,24.5
parent: 2
type: Transform
- uid: 9570
components:
- - pos: 33.5,28.5
+ - pos: -11.5,24.5
parent: 2
type: Transform
- uid: 9571
components:
- - pos: 34.5,28.5
+ - pos: -10.5,24.5
parent: 2
type: Transform
- uid: 9572
components:
- - pos: 35.5,28.5
+ - pos: -9.5,24.5
parent: 2
type: Transform
- uid: 9573
components:
- - pos: 36.5,28.5
+ - pos: -8.5,26.5
parent: 2
type: Transform
- uid: 9574
components:
- - pos: 36.5,29.5
+ - pos: -8.5,27.5
parent: 2
type: Transform
- uid: 9575
components:
- - pos: 36.5,30.5
+ - pos: -8.5,28.5
parent: 2
type: Transform
- uid: 9576
components:
- - pos: 36.5,31.5
+ - pos: -8.5,29.5
parent: 2
type: Transform
- uid: 9577
components:
- - pos: 36.5,32.5
+ - pos: -8.5,30.5
parent: 2
type: Transform
- uid: 9578
components:
- - pos: 35.5,32.5
+ - pos: -55.5,-13.5
parent: 2
type: Transform
- uid: 9579
components:
- - pos: 34.5,32.5
+ - pos: 33.5,26.5
parent: 2
type: Transform
- uid: 9580
components:
- - pos: 36.5,33.5
+ - pos: 33.5,27.5
parent: 2
type: Transform
- uid: 9581
components:
- - pos: 34.5,33.5
+ - pos: 33.5,28.5
parent: 2
type: Transform
- uid: 9582
components:
- - pos: 34.5,34.5
+ - pos: 34.5,28.5
parent: 2
type: Transform
- uid: 9583
components:
- - pos: 33.5,34.5
+ - pos: 35.5,28.5
parent: 2
type: Transform
- uid: 9584
components:
- - pos: 32.5,34.5
+ - pos: 36.5,28.5
parent: 2
type: Transform
- uid: 9585
components:
- - pos: 32.5,35.5
+ - pos: 36.5,29.5
parent: 2
type: Transform
- uid: 9586
components:
- - pos: 32.5,36.5
+ - pos: 36.5,30.5
parent: 2
type: Transform
- uid: 9587
components:
- - pos: 32.5,37.5
+ - pos: 36.5,31.5
parent: 2
type: Transform
- uid: 9588
components:
- - pos: 33.5,37.5
+ - pos: 36.5,32.5
parent: 2
type: Transform
- uid: 9589
components:
- - pos: 31.5,37.5
+ - pos: 35.5,32.5
parent: 2
type: Transform
- uid: 9590
components:
- - pos: 30.5,37.5
+ - pos: 34.5,32.5
parent: 2
type: Transform
- uid: 9591
components:
- - pos: 29.5,37.5
+ - pos: 36.5,33.5
parent: 2
type: Transform
- uid: 9592
components:
- - pos: 28.5,37.5
+ - pos: 34.5,33.5
parent: 2
type: Transform
- uid: 9593
components:
- - pos: 27.5,37.5
+ - pos: 34.5,34.5
parent: 2
type: Transform
- uid: 9594
components:
- - pos: 26.5,37.5
+ - pos: 33.5,34.5
parent: 2
type: Transform
- uid: 9595
components:
- - pos: 25.5,37.5
+ - pos: 32.5,34.5
parent: 2
type: Transform
- uid: 9596
components:
- - pos: 24.5,37.5
+ - pos: 32.5,35.5
parent: 2
type: Transform
- uid: 9597
components:
- - pos: 23.5,37.5
+ - pos: 32.5,36.5
parent: 2
type: Transform
- uid: 9598
components:
- - pos: 22.5,37.5
+ - pos: 32.5,37.5
parent: 2
type: Transform
- uid: 9599
components:
- - pos: 21.5,37.5
+ - pos: 33.5,37.5
parent: 2
type: Transform
- uid: 9600
components:
- - pos: 26.5,36.5
+ - pos: 31.5,37.5
parent: 2
type: Transform
- uid: 9601
components:
- - pos: 26.5,35.5
+ - pos: 30.5,37.5
parent: 2
type: Transform
- uid: 9602
components:
- - pos: 26.5,34.5
+ - pos: 29.5,37.5
parent: 2
type: Transform
- uid: 9603
components:
- - pos: 25.5,34.5
+ - pos: 28.5,37.5
parent: 2
type: Transform
- uid: 9604
components:
- - pos: 24.5,34.5
+ - pos: 27.5,37.5
parent: 2
type: Transform
- uid: 9605
components:
- - pos: 23.5,34.5
+ - pos: 26.5,37.5
parent: 2
type: Transform
- uid: 9606
components:
- - pos: 22.5,34.5
+ - pos: 25.5,37.5
parent: 2
type: Transform
- uid: 9607
components:
- - pos: 22.5,33.5
+ - pos: 24.5,37.5
parent: 2
type: Transform
- uid: 9608
components:
- - pos: 22.5,32.5
+ - pos: 23.5,37.5
parent: 2
type: Transform
- uid: 9609
components:
- - pos: 22.5,31.5
+ - pos: 22.5,37.5
parent: 2
type: Transform
- uid: 9610
components:
- - pos: 22.5,30.5
+ - pos: 21.5,37.5
parent: 2
type: Transform
- uid: 9611
components:
- - pos: 22.5,29.5
+ - pos: 26.5,36.5
parent: 2
type: Transform
- uid: 9612
components:
- - pos: 22.5,28.5
+ - pos: 26.5,35.5
parent: 2
type: Transform
- uid: 9613
components:
- - pos: 22.5,27.5
+ - pos: 26.5,34.5
parent: 2
type: Transform
- uid: 9614
components:
- - pos: 22.5,26.5
+ - pos: 25.5,34.5
parent: 2
type: Transform
- uid: 9615
components:
- - pos: 34.5,37.5
+ - pos: 24.5,34.5
parent: 2
type: Transform
- uid: 9616
components:
- - pos: 35.5,37.5
+ - pos: 23.5,34.5
parent: 2
type: Transform
- uid: 9617
components:
- - pos: 36.5,37.5
+ - pos: 22.5,34.5
parent: 2
type: Transform
- uid: 9618
components:
- - pos: 36.5,36.5
+ - pos: 22.5,33.5
parent: 2
type: Transform
- uid: 9619
components:
- - pos: 49.5,-46.5
+ - pos: 22.5,32.5
parent: 2
type: Transform
- uid: 9620
components:
- - pos: 49.5,-47.5
+ - pos: 22.5,31.5
parent: 2
type: Transform
- uid: 9621
components:
- - pos: 49.5,-48.5
+ - pos: 22.5,30.5
parent: 2
type: Transform
- uid: 9622
components:
- - pos: 48.5,-48.5
+ - pos: 22.5,29.5
parent: 2
type: Transform
- uid: 9623
components:
- - pos: -31.5,-63.5
+ - pos: 22.5,28.5
parent: 2
type: Transform
- uid: 9624
components:
- - pos: -32.5,-63.5
+ - pos: 22.5,27.5
parent: 2
type: Transform
- uid: 9625
components:
- - pos: -33.5,-63.5
+ - pos: 22.5,26.5
parent: 2
type: Transform
- uid: 9626
components:
- - pos: -34.5,-63.5
+ - pos: 34.5,37.5
parent: 2
type: Transform
- uid: 9627
components:
- - pos: -34.5,-64.5
+ - pos: 35.5,37.5
parent: 2
type: Transform
- uid: 9628
components:
- - pos: -34.5,-65.5
+ - pos: 36.5,37.5
parent: 2
type: Transform
- uid: 9629
components:
- - pos: -35.5,-65.5
+ - pos: 36.5,36.5
parent: 2
type: Transform
- uid: 9630
components:
- - pos: -36.5,-65.5
+ - pos: 49.5,-46.5
parent: 2
type: Transform
- uid: 9631
components:
- - pos: -37.5,-65.5
+ - pos: 49.5,-47.5
parent: 2
type: Transform
- uid: 9632
components:
- - pos: -37.5,-66.5
+ - pos: 49.5,-48.5
parent: 2
type: Transform
- uid: 9633
components:
- - pos: -37.5,-67.5
+ - pos: 48.5,-48.5
parent: 2
type: Transform
- uid: 9634
components:
- - pos: -37.5,-68.5
+ - pos: -31.5,-63.5
parent: 2
type: Transform
- uid: 9635
components:
- - pos: -38.5,-68.5
+ - pos: -32.5,-63.5
parent: 2
type: Transform
- uid: 9636
components:
- - pos: -39.5,-68.5
+ - pos: -33.5,-63.5
parent: 2
type: Transform
- uid: 9637
components:
- - pos: -39.5,-69.5
+ - pos: -34.5,-63.5
parent: 2
type: Transform
- uid: 9638
components:
- - pos: -10.5,-58.5
+ - pos: -34.5,-64.5
parent: 2
type: Transform
- uid: 9639
components:
- - pos: -9.5,-58.5
+ - pos: -34.5,-65.5
parent: 2
type: Transform
- uid: 9640
components:
- - pos: -8.5,-58.5
+ - pos: -35.5,-65.5
parent: 2
type: Transform
- uid: 9641
components:
- - pos: -8.5,-57.5
+ - pos: -36.5,-65.5
parent: 2
type: Transform
- uid: 9642
components:
- - pos: -8.5,-56.5
+ - pos: -37.5,-65.5
parent: 2
type: Transform
- uid: 9643
components:
- - pos: -7.5,-56.5
+ - pos: -37.5,-66.5
parent: 2
type: Transform
- uid: 9644
components:
- - pos: -6.5,-56.5
+ - pos: -37.5,-67.5
parent: 2
type: Transform
- uid: 9645
components:
- - pos: -5.5,-56.5
+ - pos: -37.5,-68.5
parent: 2
type: Transform
- uid: 9646
components:
- - pos: -4.5,-56.5
+ - pos: -38.5,-68.5
parent: 2
type: Transform
- uid: 9647
components:
- - pos: -3.5,-56.5
+ - pos: -39.5,-68.5
parent: 2
type: Transform
- uid: 9648
components:
- - pos: -2.5,-56.5
+ - pos: -39.5,-69.5
parent: 2
type: Transform
- uid: 9649
components:
- - pos: -1.5,-56.5
+ - pos: -10.5,-58.5
parent: 2
type: Transform
- uid: 9650
components:
- - pos: -0.5,-56.5
+ - pos: -9.5,-58.5
parent: 2
type: Transform
- uid: 9651
components:
- - pos: 0.5,-56.5
+ - pos: -8.5,-58.5
parent: 2
type: Transform
- uid: 9652
components:
- - pos: 1.5,-56.5
+ - pos: -8.5,-57.5
parent: 2
type: Transform
- uid: 9653
components:
- - pos: 2.5,-56.5
+ - pos: -8.5,-56.5
parent: 2
type: Transform
- uid: 9654
components:
- - pos: 3.5,-56.5
+ - pos: -7.5,-56.5
parent: 2
type: Transform
- uid: 9655
components:
- - pos: 4.5,-56.5
+ - pos: -6.5,-56.5
parent: 2
type: Transform
- uid: 9656
components:
- - pos: 5.5,-56.5
+ - pos: -5.5,-56.5
parent: 2
type: Transform
- uid: 9657
components:
- - pos: 6.5,-56.5
+ - pos: -4.5,-56.5
parent: 2
type: Transform
- uid: 9658
components:
- - pos: 6.5,-55.5
+ - pos: -3.5,-56.5
parent: 2
type: Transform
- uid: 9659
components:
- - pos: 6.5,-54.5
+ - pos: -2.5,-56.5
parent: 2
type: Transform
- uid: 9660
components:
- - pos: 6.5,-53.5
+ - pos: -1.5,-56.5
parent: 2
type: Transform
- uid: 9661
components:
- - pos: 34.5,23.5
+ - pos: -0.5,-56.5
parent: 2
type: Transform
- uid: 9662
components:
- - pos: 35.5,23.5
+ - pos: 0.5,-56.5
parent: 2
type: Transform
- uid: 9663
components:
- - pos: 35.5,22.5
+ - pos: 1.5,-56.5
parent: 2
type: Transform
- uid: 9664
components:
- - pos: 36.5,22.5
+ - pos: 2.5,-56.5
parent: 2
type: Transform
- uid: 9665
components:
- - pos: 37.5,22.5
+ - pos: 3.5,-56.5
parent: 2
type: Transform
- uid: 9666
components:
- - pos: 37.5,20.5
+ - pos: 4.5,-56.5
parent: 2
type: Transform
- uid: 9667
components:
- - pos: 37.5,19.5
+ - pos: 5.5,-56.5
parent: 2
type: Transform
- uid: 9668
components:
- - pos: 37.5,18.5
+ - pos: 6.5,-56.5
parent: 2
type: Transform
- uid: 9669
components:
- - pos: 38.5,18.5
+ - pos: 6.5,-55.5
parent: 2
type: Transform
- uid: 9670
components:
- - pos: 38.5,17.5
+ - pos: 6.5,-54.5
parent: 2
type: Transform
- uid: 9671
components:
- - pos: 29.5,-27.5
+ - pos: 6.5,-53.5
parent: 2
type: Transform
- uid: 9672
components:
- - pos: 50.5,29.5
+ - pos: 34.5,23.5
parent: 2
type: Transform
- uid: 9673
components:
- - pos: 50.5,28.5
+ - pos: 35.5,23.5
parent: 2
type: Transform
- uid: 9674
components:
- - pos: 49.5,28.5
+ - pos: 35.5,22.5
parent: 2
type: Transform
- uid: 9675
components:
- - pos: 48.5,28.5
+ - pos: 36.5,22.5
parent: 2
type: Transform
- uid: 9676
components:
- - pos: 48.5,29.5
+ - pos: 37.5,22.5
parent: 2
type: Transform
- uid: 9677
components:
- - pos: 48.5,30.5
+ - pos: 37.5,20.5
parent: 2
type: Transform
- uid: 9678
components:
- - pos: 48.5,31.5
+ - pos: 37.5,19.5
parent: 2
type: Transform
- uid: 9679
components:
- - pos: 49.5,31.5
+ - pos: 37.5,18.5
parent: 2
type: Transform
- uid: 9680
components:
- - pos: 50.5,31.5
+ - pos: 38.5,18.5
parent: 2
type: Transform
- uid: 9681
components:
- - pos: 51.5,31.5
+ - pos: 38.5,17.5
parent: 2
type: Transform
- uid: 9682
components:
- - pos: 52.5,31.5
+ - pos: 29.5,-27.5
parent: 2
type: Transform
- uid: 9683
components:
- - pos: 52.5,32.5
+ - pos: 50.5,29.5
parent: 2
type: Transform
- uid: 9684
components:
- - pos: 52.5,33.5
+ - pos: 50.5,28.5
parent: 2
type: Transform
- uid: 9685
components:
- - pos: 52.5,34.5
+ - pos: 49.5,28.5
parent: 2
type: Transform
- uid: 9686
components:
- - pos: 52.5,35.5
+ - pos: 48.5,28.5
parent: 2
type: Transform
- uid: 9687
components:
- - pos: 52.5,36.5
+ - pos: 48.5,29.5
parent: 2
type: Transform
- uid: 9688
components:
- - pos: 52.5,37.5
+ - pos: 48.5,30.5
parent: 2
type: Transform
- uid: 9689
components:
- - pos: 52.5,38.5
+ - pos: 48.5,31.5
parent: 2
type: Transform
- uid: 9690
components:
- - pos: 52.5,39.5
+ - pos: 49.5,31.5
parent: 2
type: Transform
- uid: 9691
components:
- - pos: 52.5,40.5
+ - pos: 50.5,31.5
parent: 2
type: Transform
- uid: 9692
components:
- - pos: 52.5,41.5
+ - pos: 51.5,31.5
parent: 2
type: Transform
- uid: 9693
components:
- - pos: 52.5,42.5
+ - pos: 52.5,31.5
parent: 2
type: Transform
- uid: 9694
components:
- - pos: 53.5,42.5
+ - pos: 52.5,32.5
parent: 2
type: Transform
- uid: 9695
components:
- - pos: 54.5,42.5
+ - pos: 52.5,33.5
parent: 2
type: Transform
- uid: 9696
components:
- - pos: 55.5,42.5
+ - pos: 52.5,34.5
parent: 2
type: Transform
- uid: 9697
components:
- - pos: 56.5,42.5
+ - pos: 52.5,35.5
parent: 2
type: Transform
- uid: 9698
components:
- - pos: 57.5,42.5
+ - pos: 52.5,36.5
parent: 2
type: Transform
- uid: 9699
components:
- - pos: 58.5,42.5
+ - pos: 52.5,37.5
parent: 2
type: Transform
- uid: 9700
components:
- - pos: 58.5,43.5
+ - pos: 52.5,38.5
parent: 2
type: Transform
- uid: 9701
components:
- - pos: 59.5,43.5
+ - pos: 52.5,39.5
parent: 2
type: Transform
- uid: 9702
components:
- - pos: -19.5,26.5
+ - pos: 52.5,40.5
parent: 2
type: Transform
- uid: 9703
components:
- - pos: -19.5,27.5
+ - pos: 52.5,41.5
parent: 2
type: Transform
- uid: 9704
components:
- - pos: -19.5,28.5
+ - pos: 52.5,42.5
parent: 2
type: Transform
- uid: 9705
components:
- - pos: -19.5,29.5
+ - pos: 53.5,42.5
parent: 2
type: Transform
- uid: 9706
components:
- - pos: -18.5,29.5
+ - pos: 54.5,42.5
parent: 2
type: Transform
- uid: 9707
components:
- - pos: -17.5,29.5
+ - pos: 55.5,42.5
parent: 2
type: Transform
- uid: 9708
components:
- - pos: -16.5,29.5
+ - pos: 56.5,42.5
parent: 2
type: Transform
- uid: 9709
components:
- - pos: -15.5,29.5
+ - pos: 57.5,42.5
parent: 2
type: Transform
- uid: 9710
components:
- - pos: -15.5,30.5
+ - pos: 58.5,42.5
parent: 2
type: Transform
- uid: 9711
components:
- - pos: -15.5,31.5
+ - pos: 58.5,43.5
parent: 2
type: Transform
- uid: 9712
components:
- - pos: -15.5,32.5
+ - pos: 59.5,43.5
parent: 2
type: Transform
- uid: 9713
components:
- - pos: -15.5,33.5
+ - pos: -19.5,26.5
parent: 2
type: Transform
- uid: 9714
components:
- - pos: -15.5,34.5
+ - pos: -19.5,27.5
parent: 2
type: Transform
- uid: 9715
components:
- - pos: -15.5,35.5
+ - pos: -19.5,28.5
parent: 2
type: Transform
- uid: 9716
components:
- - pos: -15.5,36.5
+ - pos: -19.5,29.5
parent: 2
type: Transform
- uid: 9717
components:
- - pos: -15.5,37.5
+ - pos: -18.5,29.5
parent: 2
type: Transform
- uid: 9718
components:
- - pos: -15.5,38.5
+ - pos: -17.5,29.5
parent: 2
type: Transform
- uid: 9719
components:
- - pos: -15.5,39.5
+ - pos: -16.5,29.5
parent: 2
type: Transform
- uid: 9720
components:
- - pos: -15.5,40.5
+ - pos: -15.5,29.5
parent: 2
type: Transform
- uid: 9721
components:
- - pos: -15.5,41.5
+ - pos: -15.5,30.5
parent: 2
type: Transform
- uid: 9722
components:
- - pos: -15.5,42.5
+ - pos: -15.5,31.5
parent: 2
type: Transform
- uid: 9723
components:
- - pos: -10.5,62.5
+ - pos: -15.5,32.5
parent: 2
type: Transform
- uid: 9724
components:
- - pos: -10.5,61.5
+ - pos: -15.5,33.5
parent: 2
type: Transform
- uid: 9725
components:
- - pos: -10.5,60.5
+ - pos: -15.5,34.5
parent: 2
type: Transform
- uid: 9726
components:
- - pos: -10.5,59.5
+ - pos: -15.5,35.5
parent: 2
type: Transform
- uid: 9727
components:
- - pos: -9.5,59.5
+ - pos: -15.5,36.5
parent: 2
type: Transform
- uid: 9728
components:
- - pos: -8.5,59.5
+ - pos: -15.5,37.5
parent: 2
type: Transform
- uid: 9729
components:
- - pos: -8.5,60.5
+ - pos: -15.5,38.5
parent: 2
type: Transform
- uid: 9730
components:
- - pos: 40.5,-61.5
+ - pos: -15.5,39.5
parent: 2
type: Transform
- uid: 9731
components:
- - pos: 40.5,-63.5
+ - pos: -15.5,40.5
parent: 2
type: Transform
- uid: 9732
components:
- - pos: 48.5,-65.5
+ - pos: -15.5,41.5
parent: 2
type: Transform
- uid: 9733
components:
- - pos: 51.5,-65.5
+ - pos: -15.5,42.5
parent: 2
type: Transform
- uid: 9734
components:
- - pos: 50.5,-65.5
+ - pos: -10.5,62.5
parent: 2
type: Transform
- uid: 9735
components:
- - pos: 49.5,-65.5
+ - pos: -10.5,61.5
parent: 2
type: Transform
- uid: 9736
components:
- - pos: 40.5,-64.5
+ - pos: -10.5,60.5
parent: 2
type: Transform
- uid: 9737
components:
- - pos: 41.5,-64.5
+ - pos: -10.5,59.5
parent: 2
type: Transform
- uid: 9738
components:
- - pos: 52.5,-65.5
+ - pos: -9.5,59.5
parent: 2
type: Transform
- uid: 9739
components:
- - pos: 53.5,-65.5
+ - pos: -8.5,59.5
parent: 2
type: Transform
- uid: 9740
components:
- - pos: 54.5,-65.5
+ - pos: -8.5,60.5
parent: 2
type: Transform
- uid: 9741
components:
- - pos: 55.5,-65.5
+ - pos: 40.5,-61.5
parent: 2
type: Transform
- uid: 9742
components:
- - pos: 55.5,-64.5
+ - pos: 40.5,-63.5
parent: 2
type: Transform
- uid: 9743
components:
- - pos: 55.5,-63.5
+ - pos: 48.5,-65.5
parent: 2
type: Transform
- uid: 9744
components:
- - pos: 55.5,-62.5
+ - pos: 51.5,-65.5
parent: 2
type: Transform
- uid: 9745
components:
- - pos: 68.5,-60.5
+ - pos: 50.5,-65.5
parent: 2
type: Transform
- uid: 9746
components:
- - pos: 68.5,-61.5
+ - pos: 49.5,-65.5
parent: 2
type: Transform
- uid: 9747
components:
- - pos: 69.5,-61.5
+ - pos: 40.5,-64.5
parent: 2
type: Transform
- uid: 9748
components:
- - pos: 70.5,-61.5
+ - pos: 41.5,-64.5
parent: 2
type: Transform
- uid: 9749
components:
- - pos: 71.5,-61.5
+ - pos: 52.5,-65.5
parent: 2
type: Transform
- uid: 9750
components:
- - pos: 71.5,-60.5
+ - pos: 53.5,-65.5
parent: 2
type: Transform
- uid: 9751
components:
- - pos: 71.5,-59.5
+ - pos: 54.5,-65.5
parent: 2
type: Transform
- uid: 9752
components:
- - pos: 71.5,-58.5
+ - pos: 55.5,-65.5
parent: 2
type: Transform
- uid: 9753
components:
- - pos: 71.5,-57.5
+ - pos: 55.5,-64.5
parent: 2
type: Transform
- uid: 9754
components:
- - pos: 72.5,-57.5
+ - pos: 55.5,-63.5
parent: 2
type: Transform
- uid: 9755
components:
- - pos: 73.5,-57.5
+ - pos: 55.5,-62.5
parent: 2
type: Transform
- uid: 9756
components:
- - pos: 74.5,-57.5
+ - pos: 68.5,-60.5
parent: 2
type: Transform
- uid: 9757
components:
- - pos: 74.5,-56.5
+ - pos: 68.5,-61.5
parent: 2
type: Transform
- uid: 9758
components:
- - pos: 74.5,-55.5
+ - pos: 69.5,-61.5
parent: 2
type: Transform
- uid: 9759
components:
- - pos: 74.5,-54.5
+ - pos: 70.5,-61.5
parent: 2
type: Transform
- uid: 9760
components:
- - pos: 75.5,-54.5
+ - pos: 71.5,-61.5
parent: 2
type: Transform
- uid: 9761
components:
- - pos: 75.5,-53.5
+ - pos: 71.5,-60.5
parent: 2
type: Transform
- uid: 9762
components:
- - pos: 75.5,-52.5
+ - pos: 71.5,-59.5
parent: 2
type: Transform
- uid: 9763
components:
- - pos: 75.5,-51.5
+ - pos: 71.5,-58.5
parent: 2
type: Transform
- uid: 9764
components:
- - pos: 75.5,-50.5
+ - pos: 71.5,-57.5
parent: 2
type: Transform
- uid: 9765
components:
- - pos: 75.5,-49.5
+ - pos: 72.5,-57.5
parent: 2
type: Transform
- uid: 9766
components:
- - pos: 75.5,-48.5
+ - pos: 73.5,-57.5
parent: 2
type: Transform
- uid: 9767
components:
- - pos: 75.5,-47.5
+ - pos: 74.5,-57.5
parent: 2
type: Transform
- uid: 9768
components:
- - pos: 75.5,-46.5
+ - pos: 74.5,-56.5
parent: 2
type: Transform
- uid: 9769
components:
- - pos: 75.5,-45.5
+ - pos: 74.5,-55.5
parent: 2
type: Transform
- uid: 9770
components:
- - pos: 74.5,-45.5
+ - pos: 74.5,-54.5
parent: 2
type: Transform
- uid: 9771
components:
- - pos: 73.5,-45.5
+ - pos: 75.5,-54.5
parent: 2
type: Transform
- uid: 9772
components:
- - pos: 72.5,-45.5
+ - pos: 75.5,-53.5
parent: 2
type: Transform
- uid: 9773
components:
- - pos: 71.5,-45.5
+ - pos: 75.5,-52.5
parent: 2
type: Transform
- uid: 9774
components:
- - pos: 71.5,-44.5
+ - pos: 75.5,-51.5
parent: 2
type: Transform
- uid: 9775
components:
- - pos: 71.5,-43.5
+ - pos: 75.5,-50.5
parent: 2
type: Transform
- uid: 9776
components:
- - pos: 71.5,-42.5
+ - pos: 75.5,-49.5
parent: 2
type: Transform
- uid: 9777
components:
- - pos: 4.5,-19.5
+ - pos: 75.5,-48.5
parent: 2
type: Transform
- uid: 9778
components:
- - pos: 7.5,-19.5
+ - pos: 75.5,-47.5
parent: 2
type: Transform
- uid: 9779
components:
- - pos: 5.5,-19.5
+ - pos: 75.5,-46.5
parent: 2
type: Transform
- uid: 9780
components:
- - pos: 7.5,-20.5
+ - pos: 75.5,-45.5
parent: 2
type: Transform
- uid: 9781
components:
- - pos: 8.5,-20.5
+ - pos: 74.5,-45.5
parent: 2
type: Transform
- uid: 9782
components:
- - pos: 9.5,-20.5
+ - pos: 73.5,-45.5
parent: 2
type: Transform
- uid: 9783
components:
- - pos: 10.5,-20.5
+ - pos: 72.5,-45.5
parent: 2
type: Transform
- uid: 9784
components:
- - pos: 11.5,-20.5
+ - pos: 71.5,-45.5
parent: 2
type: Transform
- uid: 9785
components:
- - pos: 11.5,-19.5
+ - pos: 71.5,-44.5
parent: 2
type: Transform
- uid: 9786
components:
- - pos: 11.5,-18.5
+ - pos: 71.5,-43.5
parent: 2
type: Transform
- uid: 9787
components:
- - pos: 6.5,-49.5
+ - pos: 71.5,-42.5
parent: 2
type: Transform
- uid: 9788
components:
- - pos: 7.5,-49.5
+ - pos: 4.5,-19.5
parent: 2
type: Transform
- uid: 9789
components:
- - pos: 9.5,-49.5
+ - pos: 7.5,-19.5
parent: 2
type: Transform
- uid: 9790
components:
- - pos: 8.5,-49.5
+ - pos: 5.5,-19.5
parent: 2
type: Transform
- uid: 9791
components:
- - pos: 31.5,35.5
+ - pos: 7.5,-20.5
parent: 2
type: Transform
- uid: 9792
components:
- - pos: 30.5,35.5
+ - pos: 8.5,-20.5
parent: 2
type: Transform
- uid: 9793
components:
- - pos: 29.5,35.5
+ - pos: 9.5,-20.5
parent: 2
type: Transform
- uid: 9794
components:
- - pos: 28.5,35.5
+ - pos: 10.5,-20.5
parent: 2
type: Transform
- uid: 9795
components:
- - pos: 27.5,35.5
+ - pos: 11.5,-20.5
parent: 2
type: Transform
- uid: 9796
components:
- - pos: -10.5,17.5
+ - pos: 11.5,-19.5
parent: 2
type: Transform
- uid: 9797
components:
- - pos: -8.5,15.5
+ - pos: 11.5,-18.5
parent: 2
type: Transform
- uid: 9798
components:
- - pos: -9.5,15.5
+ - pos: 6.5,-49.5
parent: 2
type: Transform
- uid: 9799
components:
- - pos: -7.5,15.5
+ - pos: 7.5,-49.5
parent: 2
type: Transform
- uid: 9800
components:
- - pos: -65.5,-54.5
+ - pos: 9.5,-49.5
parent: 2
type: Transform
- uid: 9801
components:
- - pos: -66.5,-54.5
+ - pos: 8.5,-49.5
parent: 2
type: Transform
- uid: 9802
components:
- - pos: -66.5,-53.5
+ - pos: 31.5,35.5
parent: 2
type: Transform
- uid: 9803
components:
- - pos: -67.5,-53.5
+ - pos: 30.5,35.5
parent: 2
type: Transform
- uid: 9804
components:
- - pos: -68.5,-53.5
+ - pos: 29.5,35.5
parent: 2
type: Transform
- uid: 9805
components:
- - pos: -69.5,-53.5
+ - pos: 28.5,35.5
parent: 2
type: Transform
- uid: 9806
components:
- - pos: -70.5,-53.5
+ - pos: 27.5,35.5
parent: 2
type: Transform
- uid: 9807
components:
- - pos: -71.5,-53.5
+ - pos: -10.5,17.5
parent: 2
type: Transform
- uid: 9808
components:
- - pos: -72.5,-53.5
+ - pos: -8.5,15.5
parent: 2
type: Transform
- uid: 9809
components:
- - pos: -73.5,-53.5
+ - pos: -9.5,15.5
parent: 2
type: Transform
- uid: 9810
components:
- - pos: -73.5,-52.5
+ - pos: -7.5,15.5
parent: 2
type: Transform
- uid: 9811
components:
- - pos: -74.5,-52.5
+ - pos: -65.5,-54.5
parent: 2
type: Transform
- uid: 9812
components:
- - pos: -74.5,-51.5
+ - pos: -66.5,-54.5
parent: 2
type: Transform
- uid: 9813
components:
- - pos: -74.5,-50.5
+ - pos: -66.5,-53.5
parent: 2
type: Transform
- uid: 9814
components:
- - pos: -67.5,-37.5
+ - pos: -67.5,-53.5
parent: 2
type: Transform
- uid: 9815
components:
- - pos: -69.5,-34.5
+ - pos: -68.5,-53.5
parent: 2
type: Transform
- uid: 9816
components:
- - pos: -68.5,-37.5
+ - pos: -69.5,-53.5
parent: 2
type: Transform
- uid: 9817
components:
- - pos: -66.5,-37.5
+ - pos: -70.5,-53.5
parent: 2
type: Transform
- uid: 9818
components:
- - pos: -66.5,-36.5
+ - pos: -71.5,-53.5
parent: 2
type: Transform
- uid: 9819
components:
- - pos: -72.5,-35.5
+ - pos: -72.5,-53.5
parent: 2
type: Transform
- uid: 9820
components:
- - pos: -71.5,-35.5
+ - pos: -73.5,-53.5
parent: 2
type: Transform
- uid: 9821
components:
- - pos: -70.5,-35.5
+ - pos: -73.5,-52.5
parent: 2
type: Transform
- uid: 9822
components:
- - pos: -70.5,-34.5
+ - pos: -74.5,-52.5
parent: 2
type: Transform
- uid: 9823
components:
- - pos: -69.5,-37.5
+ - pos: -74.5,-51.5
parent: 2
type: Transform
- uid: 9824
components:
- - pos: -70.5,-37.5
+ - pos: -74.5,-50.5
parent: 2
type: Transform
- uid: 9825
components:
- - pos: -72.5,-37.5
+ - pos: -67.5,-37.5
parent: 2
type: Transform
- uid: 9826
components:
- - pos: -72.5,-36.5
+ - pos: -69.5,-34.5
parent: 2
type: Transform
- uid: 9827
components:
- - pos: -71.5,-38.5
+ - pos: -68.5,-37.5
parent: 2
type: Transform
- uid: 9828
components:
- - pos: -70.5,-38.5
+ - pos: -66.5,-37.5
parent: 2
type: Transform
- uid: 9829
components:
- - pos: -66.5,-35.5
+ - pos: -66.5,-36.5
parent: 2
type: Transform
- uid: 9830
components:
- - pos: 46.5,1.5
+ - pos: -72.5,-35.5
parent: 2
type: Transform
- uid: 9831
components:
- - pos: 46.5,2.5
+ - pos: -71.5,-35.5
parent: 2
type: Transform
- uid: 9832
components:
- - pos: 46.5,3.5
+ - pos: -70.5,-35.5
parent: 2
type: Transform
- uid: 9833
components:
- - pos: 46.5,4.5
+ - pos: -70.5,-34.5
parent: 2
type: Transform
- uid: 9834
components:
- - pos: 47.5,4.5
+ - pos: -69.5,-37.5
parent: 2
type: Transform
- uid: 9835
components:
- - pos: 47.5,5.5
+ - pos: -70.5,-37.5
parent: 2
type: Transform
- uid: 9836
components:
- - pos: 47.5,6.5
+ - pos: -72.5,-37.5
parent: 2
type: Transform
- uid: 9837
components:
- - pos: 48.5,6.5
+ - pos: -72.5,-36.5
parent: 2
type: Transform
- uid: 9838
components:
- - pos: 48.5,7.5
+ - pos: -71.5,-38.5
parent: 2
type: Transform
- uid: 9839
components:
- - pos: 46.5,6.5
+ - pos: -70.5,-38.5
parent: 2
type: Transform
- uid: 9840
components:
- - pos: 46.5,7.5
+ - pos: -66.5,-35.5
parent: 2
type: Transform
- uid: 9841
components:
- - pos: 46.5,8.5
+ - pos: 46.5,1.5
parent: 2
type: Transform
- uid: 9842
components:
- - pos: 46.5,9.5
+ - pos: 46.5,2.5
parent: 2
type: Transform
- uid: 9843
components:
- - pos: 45.5,9.5
+ - pos: 46.5,3.5
parent: 2
type: Transform
- uid: 9844
components:
- - pos: 21.5,-39.5
+ - pos: 46.5,4.5
parent: 2
type: Transform
- uid: 9845
components:
- - pos: 4.5,-1.5
+ - pos: 47.5,4.5
parent: 2
type: Transform
- uid: 9846
components:
- - pos: 3.5,-2.5
+ - pos: 47.5,5.5
parent: 2
type: Transform
- uid: 9847
components:
- - pos: 11.5,-16.5
+ - pos: 47.5,6.5
parent: 2
type: Transform
- uid: 9848
components:
- - pos: 9.5,-18.5
+ - pos: 48.5,6.5
parent: 2
type: Transform
- uid: 9849
components:
- - pos: 9.5,-19.5
+ - pos: 48.5,7.5
parent: 2
type: Transform
- uid: 9850
components:
- - pos: 2.5,-3.5
+ - pos: 46.5,6.5
parent: 2
type: Transform
- uid: 9851
components:
- - pos: 1.5,-3.5
+ - pos: 46.5,7.5
parent: 2
type: Transform
- uid: 9852
components:
- - pos: 3.5,-1.5
+ - pos: 46.5,8.5
parent: 2
type: Transform
- uid: 9853
components:
- - pos: 10.5,-4.5
+ - pos: 46.5,9.5
parent: 2
type: Transform
- uid: 9854
components:
- - pos: -0.5,-6.5
+ - pos: 45.5,9.5
parent: 2
type: Transform
- uid: 9855
components:
- - pos: 10.5,-3.5
+ - pos: 21.5,-39.5
parent: 2
type: Transform
- uid: 9856
components:
- - pos: 1.5,-6.5
+ - pos: 4.5,-1.5
parent: 2
type: Transform
- uid: 9857
components:
- - pos: 1.5,-4.5
+ - pos: 3.5,-2.5
parent: 2
type: Transform
- uid: 9858
components:
- - pos: 0.5,-6.5
+ - pos: 11.5,-16.5
parent: 2
type: Transform
- uid: 9859
components:
- - pos: 23.5,-38.5
+ - pos: 9.5,-18.5
parent: 2
type: Transform
- uid: 9860
components:
- - pos: 23.5,-39.5
+ - pos: 9.5,-19.5
parent: 2
type: Transform
- uid: 9861
components:
- - pos: 23.5,-40.5
+ - pos: 2.5,-3.5
parent: 2
type: Transform
- uid: 9862
components:
- - pos: 24.5,-40.5
+ - pos: 1.5,-3.5
parent: 2
type: Transform
- uid: 9863
components:
- - pos: 25.5,-40.5
+ - pos: 3.5,-1.5
parent: 2
type: Transform
- uid: 9864
components:
- - pos: 26.5,-40.5
+ - pos: 10.5,-4.5
parent: 2
type: Transform
- uid: 9865
components:
- - pos: 27.5,-40.5
+ - pos: -0.5,-6.5
parent: 2
type: Transform
- uid: 9866
components:
- - pos: 10.5,-16.5
+ - pos: 10.5,-3.5
parent: 2
type: Transform
- uid: 9867
components:
- - pos: 4.5,-14.5
+ - pos: 1.5,-6.5
parent: 2
type: Transform
- uid: 9868
components:
- - pos: 4.5,-13.5
+ - pos: 1.5,-4.5
parent: 2
type: Transform
- uid: 9869
components:
- - pos: 9.5,-16.5
+ - pos: 0.5,-6.5
parent: 2
type: Transform
- uid: 9870
components:
- - pos: 4.5,-12.5
+ - pos: 23.5,-38.5
parent: 2
type: Transform
- uid: 9871
components:
- - pos: 5.5,-14.5
+ - pos: 23.5,-39.5
parent: 2
type: Transform
- uid: 9872
components:
- - pos: 4.5,-11.5
+ - pos: 23.5,-40.5
parent: 2
type: Transform
- uid: 9873
components:
- - pos: 8.5,-16.5
+ - pos: 24.5,-40.5
parent: 2
type: Transform
- uid: 9874
components:
- - pos: 12.5,-16.5
+ - pos: 25.5,-40.5
parent: 2
type: Transform
- uid: 9875
components:
- - pos: 5.5,-11.5
+ - pos: 26.5,-40.5
parent: 2
type: Transform
- uid: 9876
components:
- - pos: 22.5,-30.5
+ - pos: 27.5,-40.5
parent: 2
type: Transform
- uid: 9877
components:
- - pos: 22.5,-31.5
+ - pos: 10.5,-16.5
parent: 2
type: Transform
- uid: 9878
components:
- - pos: 23.5,-30.5
+ - pos: 4.5,-14.5
parent: 2
type: Transform
- uid: 9879
components:
- - pos: 24.5,-30.5
+ - pos: 4.5,-13.5
parent: 2
type: Transform
- uid: 9880
components:
- - pos: 24.5,-29.5
+ - pos: 9.5,-16.5
parent: 2
type: Transform
- uid: 9881
components:
- - pos: -56.5,-22.5
+ - pos: 4.5,-12.5
parent: 2
type: Transform
- uid: 9882
components:
- - pos: -56.5,-23.5
+ - pos: 5.5,-14.5
parent: 2
type: Transform
- uid: 9883
components:
- - pos: -64.5,-24.5
+ - pos: 4.5,-11.5
parent: 2
type: Transform
- uid: 9884
components:
- - pos: -64.5,-25.5
+ - pos: 8.5,-16.5
parent: 2
type: Transform
- uid: 9885
components:
- - pos: -65.5,-25.5
+ - pos: 12.5,-16.5
parent: 2
type: Transform
- uid: 9886
components:
- - pos: -66.5,-25.5
+ - pos: 5.5,-11.5
parent: 2
type: Transform
- uid: 9887
components:
- - pos: -66.5,-26.5
+ - pos: 22.5,-30.5
parent: 2
type: Transform
- uid: 9888
components:
- - pos: -63.5,-24.5
+ - pos: 22.5,-31.5
parent: 2
type: Transform
- uid: 9889
components:
- - pos: -62.5,-24.5
+ - pos: 23.5,-30.5
parent: 2
type: Transform
- uid: 9890
components:
- - pos: -61.5,-24.5
+ - pos: 24.5,-30.5
parent: 2
type: Transform
- uid: 9891
components:
- - pos: -60.5,-24.5
+ - pos: 24.5,-29.5
parent: 2
type: Transform
- uid: 9892
components:
- - pos: -59.5,-24.5
+ - pos: -56.5,-22.5
parent: 2
type: Transform
- uid: 9893
components:
- - pos: -58.5,-24.5
+ - pos: -56.5,-23.5
parent: 2
type: Transform
- uid: 9894
components:
- - pos: -57.5,-24.5
+ - pos: -64.5,-24.5
parent: 2
type: Transform
- uid: 9895
components:
- - pos: -56.5,-24.5
+ - pos: -64.5,-25.5
parent: 2
type: Transform
- uid: 9896
components:
- - pos: -55.5,-24.5
+ - pos: -65.5,-25.5
parent: 2
type: Transform
- uid: 9897
components:
- - pos: -54.5,-24.5
+ - pos: -66.5,-25.5
parent: 2
type: Transform
- uid: 9898
components:
- - pos: -54.5,-23.5
+ - pos: -66.5,-26.5
parent: 2
type: Transform
- uid: 9899
components:
- - pos: -54.5,-22.5
+ - pos: -63.5,-24.5
parent: 2
type: Transform
- uid: 9900
components:
- - pos: -54.5,-21.5
+ - pos: -62.5,-24.5
parent: 2
type: Transform
- uid: 9901
components:
- - pos: -54.5,-20.5
+ - pos: -61.5,-24.5
parent: 2
type: Transform
- uid: 9902
components:
- - pos: -54.5,-19.5
+ - pos: -60.5,-24.5
parent: 2
type: Transform
- uid: 9903
components:
- - pos: -54.5,-18.5
+ - pos: -59.5,-24.5
parent: 2
type: Transform
- uid: 9904
components:
- - pos: -55.5,-18.5
+ - pos: -58.5,-24.5
parent: 2
type: Transform
- uid: 9905
components:
- - pos: -56.5,-18.5
+ - pos: -57.5,-24.5
parent: 2
type: Transform
- uid: 9906
components:
- - pos: -57.5,-18.5
+ - pos: -56.5,-24.5
parent: 2
type: Transform
- uid: 9907
components:
- - pos: -58.5,-18.5
+ - pos: -55.5,-24.5
parent: 2
type: Transform
- uid: 9908
components:
- - pos: 13.5,-45.5
+ - pos: -54.5,-24.5
parent: 2
type: Transform
- uid: 9909
components:
- - pos: 15.5,-45.5
+ - pos: -54.5,-23.5
parent: 2
type: Transform
- uid: 9910
components:
- - pos: 13.5,-47.5
+ - pos: -54.5,-22.5
parent: 2
type: Transform
- uid: 9911
components:
- - pos: 15.5,-46.5
+ - pos: -54.5,-21.5
parent: 2
type: Transform
- uid: 9912
components:
- - pos: 12.5,-43.5
+ - pos: -54.5,-20.5
parent: 2
type: Transform
- uid: 9913
components:
- - pos: 14.5,-46.5
+ - pos: -54.5,-19.5
parent: 2
type: Transform
- uid: 9914
components:
- - pos: 13.5,-43.5
+ - pos: -54.5,-18.5
parent: 2
type: Transform
- uid: 9915
components:
- - pos: 15.5,-43.5
+ - pos: -55.5,-18.5
parent: 2
type: Transform
- uid: 9916
components:
- - pos: 15.5,-44.5
+ - pos: -56.5,-18.5
parent: 2
type: Transform
- uid: 9917
components:
- - pos: 10.5,-43.5
+ - pos: -57.5,-18.5
parent: 2
type: Transform
- uid: 9918
components:
- - pos: 11.5,-43.5
+ - pos: -58.5,-18.5
parent: 2
type: Transform
- uid: 9919
+ components:
+ - pos: 13.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 9920
+ components:
+ - pos: 15.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 9921
+ components:
+ - pos: 13.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 9922
+ components:
+ - pos: 15.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 9923
+ components:
+ - pos: 12.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9924
+ components:
+ - pos: 14.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 9925
+ components:
+ - pos: 13.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9926
+ components:
+ - pos: 15.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9927
+ components:
+ - pos: 15.5,-44.5
+ parent: 2
+ type: Transform
+ - uid: 9928
+ components:
+ - pos: 10.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9929
+ components:
+ - pos: 11.5,-43.5
+ parent: 2
+ type: Transform
+ - uid: 9930
components:
- pos: 14.5,-43.5
parent: 2
type: Transform
+ - uid: 9931
+ components:
+ - pos: -3.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 9932
+ components:
+ - pos: -6.5,-18.5
+ parent: 2
+ type: Transform
+ - uid: 9933
+ components:
+ - pos: -5.5,-18.5
+ parent: 2
+ type: Transform
+ - uid: 9934
+ components:
+ - pos: -4.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 9935
+ components:
+ - pos: -5.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 9936
+ components:
+ - pos: -5.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 9937
+ components:
+ - pos: -5.5,-15.5
+ parent: 2
+ type: Transform
+ - uid: 9938
+ components:
+ - pos: -5.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 9939
+ components:
+ - pos: -2.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 9940
+ components:
+ - pos: -1.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 9941
+ components:
+ - pos: -0.5,-14.5
+ parent: 2
+ type: Transform
- proto: CableMVStack
entities:
- - uid: 9920
+ - uid: 9942
components:
- pos: -39.41842,-18.34842
parent: 2
type: Transform
- - uid: 9921
+ - uid: 9943
components:
- pos: -36.572292,-8.416974
parent: 2
type: Transform
- proto: CableTerminal
entities:
- - uid: 9922
+ - uid: 9944
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-35.5
parent: 2
type: Transform
- - uid: 9923
+ - uid: 9945
components:
- rot: 3.141592653589793 rad
pos: -2.5,-79.5
parent: 2
type: Transform
- - uid: 9924
+ - uid: 9946
components:
- pos: 48.5,-2.5
parent: 2
type: Transform
- - uid: 9925
+ - uid: 9947
components:
- pos: -48.5,-20.5
parent: 2
type: Transform
- - uid: 9926
+ - uid: 9948
components:
- pos: -46.5,-20.5
parent: 2
type: Transform
- - uid: 9927
+ - uid: 9949
components:
- pos: -44.5,-20.5
parent: 2
type: Transform
- - uid: 9928
+ - uid: 9950
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-9.5
parent: 2
type: Transform
- - uid: 9929
+ - uid: 9951
components:
- rot: 3.141592653589793 rad
pos: -56.5,-21.5
parent: 2
type: Transform
- - uid: 9930
+ - uid: 9952
components:
- pos: -28.5,-36.5
parent: 2
type: Transform
- - uid: 9931
+ - uid: 9953
components:
- rot: -1.5707963267948966 rad
pos: 74.5,38.5
parent: 2
type: Transform
- - uid: 9932
+ - uid: 9954
components:
- rot: -1.5707963267948966 rad
pos: 74.5,34.5
parent: 2
type: Transform
- - uid: 9933
+ - uid: 9955
components:
- rot: 3.141592653589793 rad
pos: -0.5,-79.5
parent: 2
type: Transform
- - uid: 9934
+ - uid: 9956
components:
- pos: -74.5,-29.5
parent: 2
type: Transform
- - uid: 9935
+ - uid: 9957
components:
- pos: -72.5,-29.5
parent: 2
type: Transform
- - uid: 9936
+ - uid: 9958
components:
- pos: -70.5,-29.5
parent: 2
type: Transform
- - uid: 9937
+ - uid: 9959
components:
- rot: 3.141592653589793 rad
pos: 4.5,-21.5
parent: 2
type: Transform
- - uid: 9938
+ - uid: 9960
components:
- pos: -65.5,-52.5
parent: 2
type: Transform
- - uid: 9939
+ - uid: 9961
components:
- rot: 3.141592653589793 rad
pos: -56.5,-88.5
@@ -62471,13 +62634,13 @@ entities:
type: Transform
- proto: CannabisSeeds
entities:
- - uid: 9940
+ - uid: 9962
components:
- rot: 3.141592653589793 rad
pos: -55.50433,-67.64641
parent: 2
type: Transform
- - uid: 9941
+ - uid: 9963
components:
- rot: 1.5707963267948966 rad
pos: -55.707455,-67.38078
@@ -62485,634 +62648,634 @@ entities:
type: Transform
- proto: CapacitorStockPart
entities:
- - uid: 9942
+ - uid: 9964
components:
- pos: 38.490074,-35.297806
parent: 2
type: Transform
- - uid: 9943
+ - uid: 9965
components:
- pos: 38.302574,-35.672806
parent: 2
type: Transform
- - uid: 9944
+ - uid: 9966
components:
- pos: 38.521324,-35.53218
parent: 2
type: Transform
- - uid: 9945
+ - uid: 9967
components:
- pos: -50.47893,-28.448412
parent: 2
type: Transform
- proto: CaptainIDCard
entities:
- - uid: 9946
+ - uid: 9968
components:
- pos: 30.440884,-27.198164
parent: 2
type: Transform
- proto: CarbonDioxideCanister
entities:
- - uid: 9947
+ - uid: 9969
components:
- pos: -40.5,-38.5
parent: 2
type: Transform
- - uid: 9948
+ - uid: 9970
components:
- pos: -50.5,-50.5
parent: 2
type: Transform
- - uid: 9949
+ - uid: 9971
components:
- pos: -52.5,-62.5
parent: 2
type: Transform
- - uid: 9950
+ - uid: 9972
components:
- pos: -76.5,-45.5
parent: 2
type: Transform
- - uid: 9951
+ - uid: 9973
components:
- pos: 46.5,-54.5
parent: 2
type: Transform
- proto: Carpet
entities:
- - uid: 9952
+ - uid: 9974
components:
- rot: 3.141592653589793 rad
pos: 5.5,20.5
parent: 2
type: Transform
- - uid: 9953
+ - uid: 9975
components:
- rot: 3.141592653589793 rad
pos: 4.5,22.5
parent: 2
type: Transform
- - uid: 9954
+ - uid: 9976
components:
- rot: 3.141592653589793 rad
pos: 4.5,21.5
parent: 2
type: Transform
- - uid: 9955
+ - uid: 9977
components:
- rot: 3.141592653589793 rad
pos: 4.5,20.5
parent: 2
type: Transform
- - uid: 9956
+ - uid: 9978
components:
- rot: 3.141592653589793 rad
pos: 6.5,22.5
parent: 2
type: Transform
- - uid: 9957
+ - uid: 9979
components:
- rot: 3.141592653589793 rad
pos: 6.5,21.5
parent: 2
type: Transform
- - uid: 9958
+ - uid: 9980
components:
- rot: 3.141592653589793 rad
pos: 6.5,20.5
parent: 2
type: Transform
- - uid: 9959
+ - uid: 9981
components:
- rot: 3.141592653589793 rad
pos: 7.5,22.5
parent: 2
type: Transform
- - uid: 9960
+ - uid: 9982
components:
- rot: 3.141592653589793 rad
pos: 7.5,21.5
parent: 2
type: Transform
- - uid: 9961
+ - uid: 9983
components:
- rot: 3.141592653589793 rad
pos: 7.5,20.5
parent: 2
type: Transform
- - uid: 9962
+ - uid: 9984
components:
- rot: 3.141592653589793 rad
pos: 8.5,22.5
parent: 2
type: Transform
- - uid: 9963
+ - uid: 9985
components:
- rot: 3.141592653589793 rad
pos: 8.5,21.5
parent: 2
type: Transform
- - uid: 9964
+ - uid: 9986
components:
- rot: 3.141592653589793 rad
pos: 8.5,20.5
parent: 2
type: Transform
- - uid: 9965
+ - uid: 9987
components:
- pos: 39.5,-5.5
parent: 2
type: Transform
- - uid: 9966
+ - uid: 9988
components:
- pos: 43.5,-5.5
parent: 2
type: Transform
- - uid: 9967
+ - uid: 9989
components:
- pos: 44.5,-5.5
parent: 2
type: Transform
- - uid: 9968
+ - uid: 9990
components:
- pos: 42.5,-5.5
parent: 2
type: Transform
- - uid: 9969
+ - uid: 9991
components:
- pos: 42.5,-2.5
parent: 2
type: Transform
- - uid: 9970
+ - uid: 9992
components:
- pos: 42.5,-3.5
parent: 2
type: Transform
- - uid: 9971
+ - uid: 9993
components:
- pos: 42.5,-4.5
parent: 2
type: Transform
- - uid: 9972
+ - uid: 9994
components:
- pos: 43.5,-2.5
parent: 2
type: Transform
- - uid: 9973
+ - uid: 9995
components:
- pos: 43.5,-3.5
parent: 2
type: Transform
- - uid: 9974
+ - uid: 9996
components:
- pos: 43.5,-4.5
parent: 2
type: Transform
- - uid: 9975
+ - uid: 9997
components:
- pos: 44.5,-2.5
parent: 2
type: Transform
- - uid: 9976
+ - uid: 9998
components:
- pos: 44.5,-3.5
parent: 2
type: Transform
- - uid: 9977
+ - uid: 9999
components:
- pos: 44.5,-4.5
parent: 2
type: Transform
- - uid: 9978
+ - uid: 10000
components:
- pos: 37.5,-2.5
parent: 2
type: Transform
- - uid: 9979
+ - uid: 10001
components:
- pos: 38.5,-2.5
parent: 2
type: Transform
- - uid: 9980
+ - uid: 10002
components:
- pos: 39.5,-2.5
parent: 2
type: Transform
- - uid: 9981
+ - uid: 10003
components:
- pos: 37.5,-3.5
parent: 2
type: Transform
- - uid: 9982
+ - uid: 10004
components:
- pos: 37.5,-4.5
parent: 2
type: Transform
- - uid: 9983
+ - uid: 10005
components:
- pos: 38.5,-3.5
parent: 2
type: Transform
- - uid: 9984
+ - uid: 10006
components:
- pos: 38.5,-4.5
parent: 2
type: Transform
- - uid: 9985
+ - uid: 10007
components:
- pos: 39.5,-3.5
parent: 2
type: Transform
- - uid: 9986
+ - uid: 10008
components:
- pos: 39.5,-4.5
parent: 2
type: Transform
- - uid: 9987
+ - uid: 10009
components:
- pos: 38.5,-5.5
parent: 2
type: Transform
- - uid: 9988
+ - uid: 10010
components:
- pos: 37.5,-5.5
parent: 2
type: Transform
- - uid: 9989
+ - uid: 10011
components:
- rot: 3.141592653589793 rad
pos: 28.5,-50.5
parent: 2
type: Transform
- - uid: 9990
+ - uid: 10012
components:
- rot: 3.141592653589793 rad
pos: 28.5,-51.5
parent: 2
type: Transform
- - uid: 9991
+ - uid: 10013
components:
- rot: 3.141592653589793 rad
pos: 29.5,-50.5
parent: 2
type: Transform
- - uid: 9992
+ - uid: 10014
components:
- rot: 3.141592653589793 rad
pos: 29.5,-51.5
parent: 2
type: Transform
- - uid: 9993
+ - uid: 10015
components:
- rot: 3.141592653589793 rad
pos: 30.5,-50.5
parent: 2
type: Transform
- - uid: 9994
+ - uid: 10016
components:
- rot: 3.141592653589793 rad
pos: 30.5,-51.5
parent: 2
type: Transform
- - uid: 9995
+ - uid: 10017
components:
- rot: -1.5707963267948966 rad
pos: -38.5,15.5
parent: 2
type: Transform
- - uid: 9996
+ - uid: 10018
components:
- rot: -1.5707963267948966 rad
pos: -38.5,14.5
parent: 2
type: Transform
- - uid: 9997
+ - uid: 10019
components:
- rot: -1.5707963267948966 rad
pos: -38.5,13.5
parent: 2
type: Transform
- - uid: 9998
+ - uid: 10020
components:
- rot: -1.5707963267948966 rad
pos: -38.5,12.5
parent: 2
type: Transform
- - uid: 9999
+ - uid: 10021
components:
- rot: -1.5707963267948966 rad
pos: -38.5,11.5
parent: 2
type: Transform
- - uid: 10000
+ - uid: 10022
components:
- rot: -1.5707963267948966 rad
pos: -38.5,10.5
parent: 2
type: Transform
- - uid: 10001
+ - uid: 10023
components:
- rot: -1.5707963267948966 rad
pos: -38.5,9.5
parent: 2
type: Transform
- - uid: 10002
+ - uid: 10024
components:
- rot: -1.5707963267948966 rad
pos: -38.5,8.5
parent: 2
type: Transform
- - uid: 10003
+ - uid: 10025
components:
- rot: -1.5707963267948966 rad
pos: -37.5,15.5
parent: 2
type: Transform
- - uid: 10004
+ - uid: 10026
components:
- rot: -1.5707963267948966 rad
pos: -37.5,14.5
parent: 2
type: Transform
- - uid: 10005
+ - uid: 10027
components:
- rot: -1.5707963267948966 rad
pos: -37.5,13.5
parent: 2
type: Transform
- - uid: 10006
+ - uid: 10028
components:
- rot: -1.5707963267948966 rad
pos: -37.5,12.5
parent: 2
type: Transform
- - uid: 10007
+ - uid: 10029
components:
- rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
type: Transform
- - uid: 10008
+ - uid: 10030
components:
- rot: -1.5707963267948966 rad
pos: -37.5,10.5
parent: 2
type: Transform
- - uid: 10009
+ - uid: 10031
components:
- rot: -1.5707963267948966 rad
pos: -37.5,9.5
parent: 2
type: Transform
- - uid: 10010
+ - uid: 10032
components:
- rot: -1.5707963267948966 rad
pos: -37.5,8.5
parent: 2
type: Transform
- - uid: 10011
+ - uid: 10033
components:
- rot: -1.5707963267948966 rad
pos: -34.5,15.5
parent: 2
type: Transform
- - uid: 10012
+ - uid: 10034
components:
- rot: -1.5707963267948966 rad
pos: -34.5,14.5
parent: 2
type: Transform
- - uid: 10013
+ - uid: 10035
components:
- rot: -1.5707963267948966 rad
pos: -34.5,13.5
parent: 2
type: Transform
- - uid: 10014
+ - uid: 10036
components:
- rot: -1.5707963267948966 rad
pos: -33.5,15.5
parent: 2
type: Transform
- - uid: 10015
+ - uid: 10037
components:
- rot: -1.5707963267948966 rad
pos: -33.5,14.5
parent: 2
type: Transform
- - uid: 10016
+ - uid: 10038
components:
- rot: -1.5707963267948966 rad
pos: -33.5,13.5
parent: 2
type: Transform
- - uid: 10017
+ - uid: 10039
components:
- pos: -30.5,14.5
parent: 2
type: Transform
- - uid: 10018
+ - uid: 10040
components:
- pos: -30.5,13.5
parent: 2
type: Transform
- - uid: 10019
+ - uid: 10041
components:
- pos: -30.5,12.5
parent: 2
type: Transform
- - uid: 10020
+ - uid: 10042
components:
- pos: 64.5,-0.5
parent: 2
type: Transform
- - uid: 10021
+ - uid: 10043
components:
- pos: 64.5,-1.5
parent: 2
type: Transform
- - uid: 10022
+ - uid: 10044
components:
- pos: 65.5,-0.5
parent: 2
type: Transform
- - uid: 10023
+ - uid: 10045
components:
- pos: 65.5,-1.5
parent: 2
type: Transform
- - uid: 10024
+ - uid: 10046
components:
- rot: 3.141592653589793 rad
pos: 61.5,-63.5
parent: 2
type: Transform
- - uid: 10025
+ - uid: 10047
components:
- rot: 3.141592653589793 rad
pos: 61.5,-64.5
parent: 2
type: Transform
- - uid: 10026
+ - uid: 10048
components:
- rot: 3.141592653589793 rad
pos: 61.5,-65.5
parent: 2
type: Transform
- - uid: 10027
+ - uid: 10049
components:
- rot: 3.141592653589793 rad
pos: 61.5,-66.5
parent: 2
type: Transform
- - uid: 10028
+ - uid: 10050
components:
- rot: 3.141592653589793 rad
pos: 61.5,-67.5
parent: 2
type: Transform
- - uid: 10029
+ - uid: 10051
components:
- rot: 3.141592653589793 rad
pos: 61.5,-68.5
parent: 2
type: Transform
- - uid: 10030
+ - uid: 10052
components:
- rot: 1.5707963267948966 rad
- pos: 1.5,21.5
+ pos: 2.5,21.5
parent: 2
type: Transform
- - uid: 10031
+ - uid: 10053
components:
- rot: 1.5707963267948966 rad
- pos: 1.5,20.5
+ pos: 2.5,20.5
parent: 2
type: Transform
- - uid: 10032
+ - uid: 10054
components:
- rot: 1.5707963267948966 rad
- pos: 1.5,19.5
+ pos: 2.5,19.5
parent: 2
type: Transform
- - uid: 10033
+ - uid: 10055
components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,21.5
+ - rot: 3.141592653589793 rad
+ pos: 5.5,21.5
parent: 2
type: Transform
- - uid: 10034
+ - uid: 10056
components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,20.5
+ - rot: 3.141592653589793 rad
+ pos: 5.5,22.5
parent: 2
type: Transform
- - uid: 10035
+ - uid: 10057
components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,19.5
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,21.5
parent: 2
type: Transform
- - uid: 10036
+ - uid: 10058
components:
- - rot: 3.141592653589793 rad
- pos: 5.5,21.5
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,19.5
parent: 2
type: Transform
- - uid: 10037
+ - uid: 10059
components:
- - rot: 3.141592653589793 rad
- pos: 5.5,22.5
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,20.5
parent: 2
type: Transform
- proto: CarpetBlack
entities:
- - uid: 10038
+ - uid: 10060
components:
- pos: -7.5,-36.5
parent: 2
type: Transform
- - uid: 10039
+ - uid: 10061
components:
- pos: -7.5,-37.5
parent: 2
type: Transform
- - uid: 10040
+ - uid: 10062
components:
- pos: -7.5,-38.5
parent: 2
type: Transform
- - uid: 10041
+ - uid: 10063
components:
- pos: -11.5,-39.5
parent: 2
type: Transform
- - uid: 10042
+ - uid: 10064
components:
- pos: -10.5,-39.5
parent: 2
type: Transform
- - uid: 10043
+ - uid: 10065
components:
- pos: -9.5,-39.5
parent: 2
type: Transform
- - uid: 10044
+ - uid: 10066
components:
- rot: 3.141592653589793 rad
pos: 31.5,-53.5
parent: 2
type: Transform
- - uid: 10045
+ - uid: 10067
components:
- rot: 3.141592653589793 rad
pos: 31.5,-54.5
parent: 2
type: Transform
- - uid: 10046
+ - uid: 10068
components:
- rot: 3.141592653589793 rad
pos: 31.5,-55.5
parent: 2
type: Transform
- - uid: 10047
+ - uid: 10069
components:
- rot: 3.141592653589793 rad
pos: 31.5,-56.5
parent: 2
type: Transform
- - uid: 10048
+ - uid: 10070
components:
- rot: 3.141592653589793 rad
pos: -12.5,32.5
parent: 2
type: Transform
- - uid: 10049
+ - uid: 10071
components:
- rot: 3.141592653589793 rad
pos: -12.5,31.5
parent: 2
type: Transform
- - uid: 10050
+ - uid: 10072
components:
- rot: 3.141592653589793 rad
pos: -11.5,32.5
parent: 2
type: Transform
- - uid: 10051
+ - uid: 10073
components:
- rot: 3.141592653589793 rad
pos: -11.5,31.5
parent: 2
type: Transform
- - uid: 10052
+ - uid: 10074
components:
- rot: 3.141592653589793 rad
pos: -10.5,32.5
parent: 2
type: Transform
- - uid: 10053
+ - uid: 10075
components:
- rot: 3.141592653589793 rad
pos: -10.5,31.5
@@ -63120,261 +63283,261 @@ entities:
type: Transform
- proto: CarpetBlue
entities:
- - uid: 10054
+ - uid: 10076
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-7.5
parent: 2
type: Transform
- - uid: 10055
+ - uid: 10077
components:
- rot: -1.5707963267948966 rad
pos: 9.5,5.5
parent: 2
type: Transform
- - uid: 10056
+ - uid: 10078
components:
- pos: -18.5,-56.5
parent: 2
type: Transform
- - uid: 10057
+ - uid: 10079
components:
- pos: -18.5,-55.5
parent: 2
type: Transform
- - uid: 10058
+ - uid: 10080
components:
- pos: -20.5,-55.5
parent: 2
type: Transform
- - uid: 10059
+ - uid: 10081
components:
- pos: -20.5,-54.5
parent: 2
type: Transform
- - uid: 10060
+ - uid: 10082
components:
- pos: -19.5,-54.5
parent: 2
type: Transform
- - uid: 10061
+ - uid: 10083
components:
- pos: -17.5,-56.5
parent: 2
type: Transform
- - uid: 10062
+ - uid: 10084
components:
- pos: -20.5,-56.5
parent: 2
type: Transform
- - uid: 10063
+ - uid: 10085
components:
- pos: -17.5,-54.5
parent: 2
type: Transform
- - uid: 10064
+ - uid: 10086
components:
- pos: -17.5,-55.5
parent: 2
type: Transform
- - uid: 10065
+ - uid: 10087
components:
- pos: -19.5,-55.5
parent: 2
type: Transform
- - uid: 10066
+ - uid: 10088
components:
- pos: -19.5,-56.5
parent: 2
type: Transform
- - uid: 10067
+ - uid: 10089
components:
- pos: -18.5,-54.5
parent: 2
type: Transform
- - uid: 10068
+ - uid: 10090
components:
- rot: -1.5707963267948966 rad
pos: 8.5,5.5
parent: 2
type: Transform
- - uid: 10069
+ - uid: 10091
components:
- rot: 3.141592653589793 rad
pos: 17.5,13.5
parent: 2
type: Transform
- - uid: 10070
+ - uid: 10092
components:
- rot: 3.141592653589793 rad
pos: 17.5,12.5
parent: 2
type: Transform
- - uid: 10071
+ - uid: 10093
components:
- rot: 3.141592653589793 rad
pos: 17.5,11.5
parent: 2
type: Transform
- - uid: 10072
+ - uid: 10094
components:
- pos: 17.5,9.5
parent: 2
type: Transform
- - uid: 10073
+ - uid: 10095
components:
- pos: 17.5,14.5
parent: 2
type: Transform
- - uid: 10074
+ - uid: 10096
components:
- pos: 17.5,10.5
parent: 2
type: Transform
- - uid: 10075
+ - uid: 10097
components:
- pos: -22.5,-55.5
parent: 2
type: Transform
- - uid: 10076
+ - uid: 10098
components:
- pos: -21.5,-55.5
parent: 2
type: Transform
- - uid: 10077
+ - uid: 10099
components:
- pos: -21.5,-54.5
parent: 2
type: Transform
- - uid: 10078
+ - uid: 10100
components:
- pos: -22.5,-54.5
parent: 2
type: Transform
- - uid: 10079
+ - uid: 10101
components:
- pos: -1.5,-6.5
parent: 2
type: Transform
- - uid: 10080
+ - uid: 10102
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-4.5
parent: 2
type: Transform
- - uid: 10081
+ - uid: 10103
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-5.5
parent: 2
type: Transform
- - uid: 10082
+ - uid: 10104
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-4.5
parent: 2
type: Transform
- - uid: 10083
+ - uid: 10105
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-6.5
parent: 2
type: Transform
- - uid: 10084
+ - uid: 10106
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-6.5
parent: 2
type: Transform
- - uid: 10085
+ - uid: 10107
components:
- pos: -1.5,-5.5
parent: 2
type: Transform
- - uid: 10086
+ - uid: 10108
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-7.5
parent: 2
type: Transform
- - uid: 10087
+ - uid: 10109
components:
- pos: -0.5,-6.5
parent: 2
type: Transform
- - uid: 10088
+ - uid: 10110
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-6.5
parent: 2
type: Transform
- - uid: 10089
+ - uid: 10111
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-7.5
parent: 2
type: Transform
- - uid: 10090
+ - uid: 10112
components:
- pos: -0.5,-5.5
parent: 2
type: Transform
- - uid: 10091
+ - uid: 10113
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-6.5
parent: 2
type: Transform
- - uid: 10092
+ - uid: 10114
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-7.5
parent: 2
type: Transform
- - uid: 10093
+ - uid: 10115
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-36.5
parent: 2
type: Transform
- - uid: 10094
+ - uid: 10116
components:
- pos: 3.5,-5.5
parent: 2
type: Transform
- - uid: 10095
+ - uid: 10117
components:
- pos: 2.5,-5.5
parent: 2
type: Transform
- - uid: 10096
+ - uid: 10118
components:
- pos: 2.5,-4.5
parent: 2
type: Transform
- - uid: 10097
+ - uid: 10119
components:
- pos: 4.5,-4.5
parent: 2
type: Transform
- - uid: 10098
+ - uid: 10120
components:
- pos: 5.5,-5.5
parent: 2
type: Transform
- - uid: 10099
+ - uid: 10121
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-35.5
parent: 2
type: Transform
- - uid: 10100
+ - uid: 10122
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-37.5
parent: 2
type: Transform
- - uid: 10101
+ - uid: 10123
components:
- rot: 3.141592653589793 rad
pos: 28.5,-34.5
@@ -63382,208 +63545,208 @@ entities:
type: Transform
- proto: CarpetChapel
entities:
- - uid: 10102
+ - uid: 10124
components:
- rot: -1.5707963267948966 rad
pos: -36.5,10.5
parent: 2
type: Transform
- - uid: 10103
+ - uid: 10125
components:
- rot: 3.141592653589793 rad
pos: -35.5,10.5
parent: 2
type: Transform
- - uid: 10104
+ - uid: 10126
components:
- rot: 1.5707963267948966 rad
pos: -35.5,9.5
parent: 2
type: Transform
- - uid: 10105
+ - uid: 10127
components:
- pos: -36.5,9.5
parent: 2
type: Transform
- - uid: 10106
+ - uid: 10128
components:
- pos: -36.5,11.5
parent: 2
type: Transform
- - uid: 10107
+ - uid: 10129
components:
- rot: 1.5707963267948966 rad
pos: -35.5,11.5
parent: 2
type: Transform
- - uid: 10108
+ - uid: 10130
components:
- rot: -1.5707963267948966 rad
pos: -36.5,12.5
parent: 2
type: Transform
- - uid: 10109
+ - uid: 10131
components:
- rot: 3.141592653589793 rad
pos: -35.5,12.5
parent: 2
type: Transform
- - uid: 10110
+ - uid: 10132
components:
- rot: 3.141592653589793 rad
pos: -39.5,12.5
parent: 2
type: Transform
- - uid: 10111
+ - uid: 10133
components:
- rot: 1.5707963267948966 rad
pos: -39.5,11.5
parent: 2
type: Transform
- - uid: 10112
+ - uid: 10134
components:
- pos: -40.5,11.5
parent: 2
type: Transform
- - uid: 10113
+ - uid: 10135
components:
- rot: -1.5707963267948966 rad
pos: -40.5,10.5
parent: 2
type: Transform
- - uid: 10114
+ - uid: 10136
components:
- rot: 3.141592653589793 rad
pos: -39.5,10.5
parent: 2
type: Transform
- - uid: 10115
+ - uid: 10137
components:
- pos: -40.5,9.5
parent: 2
type: Transform
- - uid: 10116
+ - uid: 10138
components:
- rot: 1.5707963267948966 rad
pos: -39.5,9.5
parent: 2
type: Transform
- - uid: 10117
+ - uid: 10139
components:
- rot: -1.5707963267948966 rad
pos: -40.5,12.5
parent: 2
type: Transform
- - uid: 10118
+ - uid: 10140
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-65.5
parent: 2
type: Transform
- - uid: 10119
+ - uid: 10141
components:
- rot: 3.141592653589793 rad
pos: 60.5,-65.5
parent: 2
type: Transform
- - uid: 10120
+ - uid: 10142
components:
- pos: 59.5,-66.5
parent: 2
type: Transform
- - uid: 10121
+ - uid: 10143
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-65.5
parent: 2
type: Transform
- - uid: 10122
+ - uid: 10144
components:
- pos: 62.5,-66.5
parent: 2
type: Transform
- - uid: 10123
+ - uid: 10145
components:
- rot: 3.141592653589793 rad
pos: 63.5,-65.5
parent: 2
type: Transform
- - uid: 10124
+ - uid: 10146
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-66.5
parent: 2
type: Transform
- - uid: 10125
+ - uid: 10147
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-63.5
parent: 2
type: Transform
- - uid: 10126
+ - uid: 10148
components:
- rot: 3.141592653589793 rad
pos: 63.5,-63.5
parent: 2
type: Transform
- - uid: 10127
+ - uid: 10149
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-64.5
parent: 2
type: Transform
- - uid: 10128
+ - uid: 10150
components:
- pos: 62.5,-64.5
parent: 2
type: Transform
- - uid: 10129
+ - uid: 10151
components:
- rot: 3.141592653589793 rad
pos: 60.5,-63.5
parent: 2
type: Transform
- - uid: 10130
+ - uid: 10152
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-63.5
parent: 2
type: Transform
- - uid: 10131
+ - uid: 10153
components:
- pos: 59.5,-64.5
parent: 2
type: Transform
- - uid: 10132
+ - uid: 10154
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-64.5
parent: 2
type: Transform
- - uid: 10133
+ - uid: 10155
components:
- pos: 60.5,-68.5
parent: 2
type: Transform
- - uid: 10134
+ - uid: 10156
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-68.5
parent: 2
type: Transform
- - uid: 10135
+ - uid: 10157
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-67.5
parent: 2
type: Transform
- - uid: 10136
+ - uid: 10158
components:
- rot: 3.141592653589793 rad
pos: 62.5,-67.5
parent: 2
type: Transform
- - uid: 10137
+ - uid: 10159
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-66.5
@@ -63591,540 +63754,540 @@ entities:
type: Transform
- proto: CarpetGreen
entities:
- - uid: 10138
+ - uid: 10160
components:
- pos: 22.5,-34.5
parent: 2
type: Transform
- - uid: 10139
+ - uid: 10161
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-10.5
parent: 2
type: Transform
- - uid: 10140
+ - uid: 10162
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-10.5
parent: 2
type: Transform
- - uid: 10141
+ - uid: 10163
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-10.5
parent: 2
type: Transform
- - uid: 10142
+ - uid: 10164
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-12.5
parent: 2
type: Transform
- - uid: 10143
+ - uid: 10165
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-12.5
parent: 2
type: Transform
- - uid: 10144
+ - uid: 10166
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-11.5
parent: 2
type: Transform
- - uid: 10145
+ - uid: 10167
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-11.5
parent: 2
type: Transform
- - uid: 10146
+ - uid: 10168
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-11.5
parent: 2
type: Transform
- - uid: 10147
+ - uid: 10169
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-11.5
parent: 2
type: Transform
- - uid: 10148
+ - uid: 10170
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-10.5
parent: 2
type: Transform
- - uid: 10149
+ - uid: 10171
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-10.5
parent: 2
type: Transform
- - uid: 10150
+ - uid: 10172
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-12.5
parent: 2
type: Transform
- - uid: 10151
+ - uid: 10173
components:
- pos: 20.5,13.5
parent: 2
type: Transform
- - uid: 10152
+ - uid: 10174
components:
- pos: 14.5,9.5
parent: 2
type: Transform
- - uid: 10153
+ - uid: 10175
components:
- pos: 9.5,-11.5
parent: 2
type: Transform
- - uid: 10154
+ - uid: 10176
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-12.5
parent: 2
type: Transform
- - uid: 10155
+ - uid: 10177
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-12.5
parent: 2
type: Transform
- - uid: 10156
+ - uid: 10178
components:
- rot: 1.5707963267948966 rad
pos: 8.5,8.5
parent: 2
type: Transform
- - uid: 10157
+ - uid: 10179
components:
- rot: 3.141592653589793 rad
pos: 14.5,13.5
parent: 2
type: Transform
- - uid: 10158
+ - uid: 10180
components:
- rot: 3.141592653589793 rad
pos: 14.5,12.5
parent: 2
type: Transform
- - uid: 10159
+ - uid: 10181
components:
- rot: 3.141592653589793 rad
pos: 14.5,11.5
parent: 2
type: Transform
- - uid: 10160
+ - uid: 10182
components:
- rot: 3.141592653589793 rad
pos: 14.5,10.5
parent: 2
type: Transform
- - uid: 10161
+ - uid: 10183
components:
- rot: 1.5707963267948966 rad
pos: 8.5,9.5
parent: 2
type: Transform
- - uid: 10162
+ - uid: 10184
components:
- pos: -5.5,-49.5
parent: 2
type: Transform
- - uid: 10163
+ - uid: 10185
components:
- pos: -4.5,-49.5
parent: 2
type: Transform
- - uid: 10164
+ - uid: 10186
components:
- pos: -3.5,-49.5
parent: 2
type: Transform
- - uid: 10165
+ - uid: 10187
components:
- pos: -3.5,-50.5
parent: 2
type: Transform
- - uid: 10166
+ - uid: 10188
components:
- pos: -4.5,-50.5
parent: 2
type: Transform
- - uid: 10167
+ - uid: 10189
components:
- pos: -5.5,-50.5
parent: 2
type: Transform
- - uid: 10168
+ - uid: 10190
components:
- pos: 21.5,13.5
parent: 2
type: Transform
- - uid: 10169
+ - uid: 10191
components:
- pos: 21.5,10.5
parent: 2
type: Transform
- - uid: 10170
+ - uid: 10192
components:
- pos: 20.5,10.5
parent: 2
type: Transform
- - uid: 10171
+ - uid: 10193
components:
- pos: 20.5,12.5
parent: 2
type: Transform
- - uid: 10172
+ - uid: 10194
components:
- pos: 20.5,11.5
parent: 2
type: Transform
- - uid: 10173
+ - uid: 10195
components:
- pos: 21.5,11.5
parent: 2
type: Transform
- - uid: 10174
+ - uid: 10196
components:
- pos: 21.5,12.5
parent: 2
type: Transform
- - uid: 10175
+ - uid: 10197
components:
- pos: -22.5,45.5
parent: 2
type: Transform
- - uid: 10176
+ - uid: 10198
components:
- pos: -22.5,44.5
parent: 2
type: Transform
- - uid: 10177
+ - uid: 10199
components:
- pos: -22.5,43.5
parent: 2
type: Transform
- - uid: 10178
+ - uid: 10200
components:
- pos: -22.5,42.5
parent: 2
type: Transform
- - uid: 10179
+ - uid: 10201
components:
- pos: -21.5,45.5
parent: 2
type: Transform
- - uid: 10180
+ - uid: 10202
components:
- pos: -21.5,44.5
parent: 2
type: Transform
- - uid: 10181
+ - uid: 10203
components:
- rot: 3.141592653589793 rad
pos: 32.5,-50.5
parent: 2
type: Transform
- - uid: 10182
+ - uid: 10204
components:
- rot: 3.141592653589793 rad
pos: 32.5,-51.5
parent: 2
type: Transform
- - uid: 10183
+ - uid: 10205
components:
- rot: 3.141592653589793 rad
pos: 33.5,-50.5
parent: 2
type: Transform
- - uid: 10184
+ - uid: 10206
components:
- rot: 3.141592653589793 rad
pos: 33.5,-51.5
parent: 2
type: Transform
- - uid: 10185
+ - uid: 10207
components:
- rot: 3.141592653589793 rad
pos: 34.5,-50.5
parent: 2
type: Transform
- - uid: 10186
+ - uid: 10208
components:
- rot: 3.141592653589793 rad
pos: 34.5,-51.5
parent: 2
type: Transform
- - uid: 10187
+ - uid: 10209
components:
- pos: -21.5,42.5
parent: 2
type: Transform
- - uid: 10188
+ - uid: 10210
components:
- pos: -21.5,43.5
parent: 2
type: Transform
- - uid: 10189
+ - uid: 10211
components:
- rot: 1.5707963267948966 rad
pos: -22.5,30.5
parent: 2
type: Transform
- - uid: 10190
+ - uid: 10212
components:
- rot: 1.5707963267948966 rad
pos: -23.5,30.5
parent: 2
type: Transform
- - uid: 10191
+ - uid: 10213
components:
- pos: -23.5,31.5
parent: 2
type: Transform
- - uid: 10192
+ - uid: 10214
components:
- pos: -23.5,29.5
parent: 2
type: Transform
- - uid: 10193
+ - uid: 10215
components:
- pos: -22.5,31.5
parent: 2
type: Transform
- - uid: 10194
+ - uid: 10216
components:
- pos: -22.5,29.5
parent: 2
type: Transform
- - uid: 10195
+ - uid: 10217
components:
- rot: 1.5707963267948966 rad
pos: -19.5,33.5
parent: 2
type: Transform
- - uid: 10196
+ - uid: 10218
components:
- rot: 1.5707963267948966 rad
pos: -19.5,34.5
parent: 2
type: Transform
- - uid: 10197
+ - uid: 10219
components:
- rot: 1.5707963267948966 rad
pos: -19.5,35.5
parent: 2
type: Transform
- - uid: 10198
+ - uid: 10220
components:
- rot: 1.5707963267948966 rad
pos: -18.5,33.5
parent: 2
type: Transform
- - uid: 10199
+ - uid: 10221
components:
- rot: 1.5707963267948966 rad
pos: -18.5,34.5
parent: 2
type: Transform
- - uid: 10200
+ - uid: 10222
components:
- rot: 1.5707963267948966 rad
pos: -18.5,35.5
parent: 2
type: Transform
- - uid: 10201
+ - uid: 10223
components:
- rot: 1.5707963267948966 rad
pos: 8.5,7.5
parent: 2
type: Transform
- - uid: 10202
+ - uid: 10224
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-79.5
parent: 2
type: Transform
- - uid: 10203
+ - uid: 10225
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-79.5
parent: 2
type: Transform
- - uid: 10204
+ - uid: 10226
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-79.5
parent: 2
type: Transform
- - uid: 10205
+ - uid: 10227
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-79.5
parent: 2
type: Transform
- - uid: 10206
+ - uid: 10228
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-79.5
parent: 2
type: Transform
- - uid: 10207
+ - uid: 10229
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-87.5
parent: 2
type: Transform
- - uid: 10208
+ - uid: 10230
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-87.5
parent: 2
type: Transform
- - uid: 10209
+ - uid: 10231
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-87.5
parent: 2
type: Transform
- - uid: 10210
+ - uid: 10232
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-87.5
parent: 2
type: Transform
- - uid: 10211
+ - uid: 10233
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-87.5
parent: 2
type: Transform
- - uid: 10212
+ - uid: 10234
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-35.5
parent: 2
type: Transform
- - uid: 10213
+ - uid: 10235
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-36.5
parent: 2
type: Transform
- - uid: 10214
+ - uid: 10236
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-35.5
parent: 2
type: Transform
- - uid: 10215
+ - uid: 10237
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-36.5
parent: 2
type: Transform
- - uid: 10216
+ - uid: 10238
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-34.5
parent: 2
type: Transform
- - uid: 10217
+ - uid: 10239
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-35.5
parent: 2
type: Transform
- - uid: 10218
+ - uid: 10240
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-36.5
parent: 2
type: Transform
- - uid: 10219
+ - uid: 10241
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-35.5
parent: 2
type: Transform
- - uid: 10220
+ - uid: 10242
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-36.5
parent: 2
type: Transform
- - uid: 10221
+ - uid: 10243
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-37.5
parent: 2
type: Transform
- - uid: 10222
+ - uid: 10244
components:
- pos: 26.5,-34.5
parent: 2
type: Transform
- - uid: 10223
+ - uid: 10245
components:
- pos: 23.5,-34.5
parent: 2
type: Transform
- - uid: 10224
+ - uid: 10246
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-9.5
parent: 2
type: Transform
- - uid: 10225
+ - uid: 10247
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-10.5
parent: 2
type: Transform
- - uid: 10226
+ - uid: 10248
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-11.5
parent: 2
type: Transform
- - uid: 10227
+ - uid: 10249
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-9.5
parent: 2
type: Transform
- - uid: 10228
+ - uid: 10250
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-10.5
parent: 2
type: Transform
- - uid: 10229
+ - uid: 10251
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-11.5
parent: 2
type: Transform
- - uid: 10230
+ - uid: 10252
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-9.5
parent: 2
type: Transform
- - uid: 10231
+ - uid: 10253
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-10.5
parent: 2
type: Transform
- - uid: 10232
+ - uid: 10254
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-11.5
@@ -64132,979 +64295,979 @@ entities:
type: Transform
- proto: CarpetOrange
entities:
- - uid: 10233
+ - uid: 10255
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 10234
+ - uid: 10256
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-5.5
parent: 2
type: Transform
- - uid: 10235
+ - uid: 10257
components:
- rot: 3.141592653589793 rad
pos: 12.5,11.5
parent: 2
type: Transform
- - uid: 10236
+ - uid: 10258
components:
- rot: 1.5707963267948966 rad
pos: 10.5,7.5
parent: 2
type: Transform
- - uid: 10237
+ - uid: 10259
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-6.5
parent: 2
type: Transform
- - uid: 10238
+ - uid: 10260
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-7.5
parent: 2
type: Transform
- - uid: 10239
+ - uid: 10261
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-8.5
parent: 2
type: Transform
- - uid: 10240
+ - uid: 10262
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-8.5
parent: 2
type: Transform
- - uid: 10241
+ - uid: 10263
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-8.5
parent: 2
type: Transform
- - uid: 10242
+ - uid: 10264
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-8.5
parent: 2
type: Transform
- - uid: 10243
+ - uid: 10265
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-7.5
parent: 2
type: Transform
- - uid: 10244
+ - uid: 10266
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-5.5
parent: 2
type: Transform
- - uid: 10245
+ - uid: 10267
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-6.5
parent: 2
type: Transform
- - uid: 10246
+ - uid: 10268
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-6.5
parent: 2
type: Transform
- - uid: 10247
+ - uid: 10269
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-7.5
parent: 2
type: Transform
- - uid: 10248
+ - uid: 10270
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-7.5
parent: 2
type: Transform
- - uid: 10249
+ - uid: 10271
components:
- rot: 1.5707963267948966 rad
pos: 12.5,7.5
parent: 2
type: Transform
- - uid: 10250
+ - uid: 10272
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-5.5
parent: 2
type: Transform
- - uid: 10251
+ - uid: 10273
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-5.5
parent: 2
type: Transform
- - uid: 10252
+ - uid: 10274
components:
- rot: 1.5707963267948966 rad
pos: 12.5,8.5
parent: 2
type: Transform
- - uid: 10253
+ - uid: 10275
components:
- rot: 3.141592653589793 rad
pos: 12.5,10.5
parent: 2
type: Transform
- - uid: 10254
+ - uid: 10276
components:
- rot: 1.5707963267948966 rad
pos: 10.5,8.5
parent: 2
type: Transform
- - uid: 10255
+ - uid: 10277
components:
- rot: 1.5707963267948966 rad
pos: 11.5,7.5
parent: 2
type: Transform
- - uid: 10256
+ - uid: 10278
components:
- rot: 1.5707963267948966 rad
pos: 11.5,8.5
parent: 2
type: Transform
- - uid: 10257
+ - uid: 10279
components:
- rot: 3.141592653589793 rad
pos: 11.5,11.5
parent: 2
type: Transform
- - uid: 10258
+ - uid: 10280
components:
- rot: 3.141592653589793 rad
pos: 11.5,12.5
parent: 2
type: Transform
- - uid: 10259
+ - uid: 10281
components:
- pos: -12.5,-35.5
parent: 2
type: Transform
- - uid: 10260
+ - uid: 10282
components:
- pos: -12.5,-36.5
parent: 2
type: Transform
- - uid: 10261
+ - uid: 10283
components:
- pos: -12.5,-37.5
parent: 2
type: Transform
- - uid: 10262
+ - uid: 10284
components:
- pos: -11.5,-35.5
parent: 2
type: Transform
- - uid: 10263
+ - uid: 10285
components:
- pos: -11.5,-36.5
parent: 2
type: Transform
- - uid: 10264
+ - uid: 10286
components:
- pos: -11.5,-37.5
parent: 2
type: Transform
- - uid: 10265
+ - uid: 10287
components:
- pos: -10.5,-35.5
parent: 2
type: Transform
- - uid: 10266
+ - uid: 10288
components:
- pos: -10.5,-36.5
parent: 2
type: Transform
- - uid: 10267
+ - uid: 10289
components:
- pos: -10.5,-37.5
parent: 2
type: Transform
- - uid: 10268
+ - uid: 10290
components:
- pos: -9.5,-35.5
parent: 2
type: Transform
- - uid: 10269
+ - uid: 10291
components:
- pos: -9.5,-36.5
parent: 2
type: Transform
- - uid: 10270
+ - uid: 10292
components:
- pos: -9.5,-37.5
parent: 2
type: Transform
- - uid: 10271
+ - uid: 10293
components:
- rot: 3.141592653589793 rad
pos: 12.5,12.5
parent: 2
type: Transform
- - uid: 10272
+ - uid: 10294
components:
- rot: 3.141592653589793 rad
pos: -37.5,-15.5
parent: 2
type: Transform
- - uid: 10273
+ - uid: 10295
components:
- rot: 3.141592653589793 rad
pos: -37.5,-16.5
parent: 2
type: Transform
- - uid: 10274
+ - uid: 10296
components:
- rot: 3.141592653589793 rad
pos: -37.5,-17.5
parent: 2
type: Transform
- - uid: 10275
+ - uid: 10297
components:
- rot: 3.141592653589793 rad
pos: -37.5,-18.5
parent: 2
type: Transform
- - uid: 10276
+ - uid: 10298
components:
- rot: 3.141592653589793 rad
pos: -36.5,-16.5
parent: 2
type: Transform
- - uid: 10277
+ - uid: 10299
components:
- rot: 3.141592653589793 rad
pos: -36.5,-17.5
parent: 2
type: Transform
- - uid: 10278
+ - uid: 10300
components:
- rot: 3.141592653589793 rad
pos: -36.5,-18.5
parent: 2
type: Transform
- - uid: 10279
+ - uid: 10301
components:
- rot: 3.141592653589793 rad
pos: -35.5,-15.5
parent: 2
type: Transform
- - uid: 10280
+ - uid: 10302
components:
- rot: 3.141592653589793 rad
pos: -35.5,-16.5
parent: 2
type: Transform
- - uid: 10281
+ - uid: 10303
components:
- rot: 3.141592653589793 rad
pos: -35.5,-17.5
parent: 2
type: Transform
- - uid: 10282
+ - uid: 10304
components:
- rot: 3.141592653589793 rad
pos: -35.5,-18.5
parent: 2
type: Transform
- - uid: 10283
+ - uid: 10305
components:
- rot: 3.141592653589793 rad
pos: -34.5,31.5
parent: 2
type: Transform
- - uid: 10284
+ - uid: 10306
components:
- pos: -34.5,30.5
parent: 2
type: Transform
- - uid: 10285
+ - uid: 10307
components:
- rot: 3.141592653589793 rad
pos: -34.5,29.5
parent: 2
type: Transform
- - uid: 10286
+ - uid: 10308
components:
- rot: 3.141592653589793 rad
pos: -33.5,31.5
parent: 2
type: Transform
- - uid: 10287
+ - uid: 10309
components:
- rot: 3.141592653589793 rad
pos: -33.5,30.5
parent: 2
type: Transform
- - uid: 10288
+ - uid: 10310
components:
- rot: 3.141592653589793 rad
pos: -33.5,29.5
parent: 2
type: Transform
- - uid: 10289
+ - uid: 10311
components:
- rot: 3.141592653589793 rad
pos: -32.5,31.5
parent: 2
type: Transform
- - uid: 10290
+ - uid: 10312
components:
- rot: 3.141592653589793 rad
pos: -32.5,30.5
parent: 2
type: Transform
- - uid: 10291
+ - uid: 10313
components:
- rot: 3.141592653589793 rad
pos: -32.5,29.5
parent: 2
type: Transform
- - uid: 10292
+ - uid: 10314
components:
- rot: 3.141592653589793 rad
pos: -31.5,31.5
parent: 2
type: Transform
- - uid: 10293
+ - uid: 10315
components:
- rot: 3.141592653589793 rad
pos: -31.5,30.5
parent: 2
type: Transform
- - uid: 10294
+ - uid: 10316
components:
- rot: 3.141592653589793 rad
pos: -31.5,29.5
parent: 2
type: Transform
- - uid: 10295
+ - uid: 10317
components:
- rot: 3.141592653589793 rad
pos: -30.5,31.5
parent: 2
type: Transform
- - uid: 10296
+ - uid: 10318
components:
- rot: 3.141592653589793 rad
pos: -30.5,30.5
parent: 2
type: Transform
- - uid: 10297
+ - uid: 10319
components:
- rot: 3.141592653589793 rad
pos: -30.5,29.5
parent: 2
type: Transform
- - uid: 10298
+ - uid: 10320
components:
- rot: 3.141592653589793 rad
pos: 11.5,10.5
parent: 2
type: Transform
- - uid: 10299
+ - uid: 10321
components:
- pos: 23.5,-38.5
parent: 2
type: Transform
- - uid: 10300
+ - uid: 10322
components:
- pos: 22.5,-38.5
parent: 2
type: Transform
- - uid: 10301
+ - uid: 10323
components:
- pos: 22.5,-39.5
parent: 2
type: Transform
- - uid: 10302
+ - uid: 10324
components:
- pos: 23.5,-39.5
parent: 2
type: Transform
- - uid: 10303
+ - uid: 10325
components:
- pos: 27.5,-39.5
parent: 2
type: Transform
- - uid: 10304
+ - uid: 10326
components:
- pos: 28.5,-39.5
parent: 2
type: Transform
- - uid: 10305
+ - uid: 10327
components:
- pos: 29.5,-39.5
parent: 2
type: Transform
- - uid: 10306
+ - uid: 10328
components:
- pos: -36.5,-15.5
parent: 2
type: Transform
- proto: CarpetPink
entities:
- - uid: 10307
+ - uid: 10329
components:
- pos: 21.5,-29.5
parent: 2
type: Transform
- - uid: 10308
+ - uid: 10330
components:
- pos: 23.5,-29.5
parent: 2
type: Transform
- - uid: 10309
+ - uid: 10331
components:
- pos: 22.5,-29.5
parent: 2
type: Transform
- - uid: 10310
+ - uid: 10332
components:
- pos: 22.5,-28.5
parent: 2
type: Transform
- - uid: 10311
+ - uid: 10333
components:
- pos: 21.5,-28.5
parent: 2
type: Transform
- - uid: 10312
+ - uid: 10334
components:
- pos: 22.5,-29.5
parent: 2
type: Transform
- - uid: 10313
+ - uid: 10335
components:
- pos: 23.5,-29.5
parent: 2
type: Transform
- - uid: 10314
+ - uid: 10336
components:
- pos: 23.5,-28.5
parent: 2
type: Transform
- - uid: 10315
+ - uid: 10337
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-28.5
parent: 2
type: Transform
- - uid: 10316
+ - uid: 10338
components:
- pos: 24.5,-28.5
parent: 2
type: Transform
- - uid: 10317
+ - uid: 10339
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-29.5
parent: 2
type: Transform
- - uid: 10318
+ - uid: 10340
components:
- pos: 20.5,-28.5
parent: 2
type: Transform
- - uid: 10319
+ - uid: 10341
components:
- pos: 24.5,-29.5
parent: 2
type: Transform
- proto: CarpetPurple
entities:
- - uid: 10320
+ - uid: 10342
components:
- pos: -16.5,-38.5
parent: 2
type: Transform
- - uid: 10321
+ - uid: 10343
components:
- pos: -16.5,-39.5
parent: 2
type: Transform
- - uid: 10322
+ - uid: 10344
components:
- pos: -15.5,-38.5
parent: 2
type: Transform
- - uid: 10323
+ - uid: 10345
components:
- pos: -15.5,-39.5
parent: 2
type: Transform
- - uid: 10324
+ - uid: 10346
components:
- pos: -14.5,-38.5
parent: 2
type: Transform
- - uid: 10325
+ - uid: 10347
components:
- pos: -14.5,-39.5
parent: 2
type: Transform
- - uid: 10326
+ - uid: 10348
components:
- rot: -1.5707963267948966 rad
pos: -49.5,7.5
parent: 2
type: Transform
- - uid: 10327
+ - uid: 10349
components:
- rot: -1.5707963267948966 rad
pos: -49.5,6.5
parent: 2
type: Transform
- - uid: 10328
+ - uid: 10350
components:
- rot: -1.5707963267948966 rad
pos: -49.5,5.5
parent: 2
type: Transform
- - uid: 10329
+ - uid: 10351
components:
- rot: -1.5707963267948966 rad
pos: -49.5,4.5
parent: 2
type: Transform
- - uid: 10330
+ - uid: 10352
components:
- rot: -1.5707963267948966 rad
pos: -48.5,7.5
parent: 2
type: Transform
- - uid: 10331
+ - uid: 10353
components:
- rot: -1.5707963267948966 rad
pos: -48.5,6.5
parent: 2
type: Transform
- - uid: 10332
+ - uid: 10354
components:
- rot: -1.5707963267948966 rad
pos: -48.5,5.5
parent: 2
type: Transform
- - uid: 10333
+ - uid: 10355
components:
- rot: -1.5707963267948966 rad
pos: -48.5,4.5
parent: 2
type: Transform
- - uid: 10334
+ - uid: 10356
components:
- rot: -1.5707963267948966 rad
pos: -47.5,7.5
parent: 2
type: Transform
- - uid: 10335
+ - uid: 10357
components:
- rot: -1.5707963267948966 rad
pos: -47.5,6.5
parent: 2
type: Transform
- - uid: 10336
+ - uid: 10358
components:
- rot: -1.5707963267948966 rad
pos: -47.5,5.5
parent: 2
type: Transform
- - uid: 10337
+ - uid: 10359
components:
- rot: -1.5707963267948966 rad
pos: -47.5,4.5
parent: 2
type: Transform
- - uid: 10338
+ - uid: 10360
components:
- rot: -1.5707963267948966 rad
pos: -46.5,7.5
parent: 2
type: Transform
- - uid: 10339
+ - uid: 10361
components:
- rot: -1.5707963267948966 rad
pos: -46.5,6.5
parent: 2
type: Transform
- - uid: 10340
+ - uid: 10362
components:
- rot: -1.5707963267948966 rad
pos: -46.5,5.5
parent: 2
type: Transform
- - uid: 10341
+ - uid: 10363
components:
- rot: -1.5707963267948966 rad
pos: -46.5,4.5
parent: 2
type: Transform
- - uid: 10342
+ - uid: 10364
components:
- pos: 51.5,-40.5
parent: 2
type: Transform
- - uid: 10343
+ - uid: 10365
components:
- pos: 52.5,-39.5
parent: 2
type: Transform
- - uid: 10344
+ - uid: 10366
components:
- pos: 52.5,-41.5
parent: 2
type: Transform
- - uid: 10345
+ - uid: 10367
components:
- pos: 53.5,-40.5
parent: 2
type: Transform
- - uid: 10346
+ - uid: 10368
components:
- pos: 52.5,-43.5
parent: 2
type: Transform
- - uid: 10347
+ - uid: 10369
components:
- pos: 51.5,-42.5
parent: 2
type: Transform
- - uid: 10348
+ - uid: 10370
components:
- pos: 53.5,-43.5
parent: 2
type: Transform
- - uid: 10349
+ - uid: 10371
components:
- pos: 51.5,-43.5
parent: 2
type: Transform
- - uid: 10350
+ - uid: 10372
components:
- pos: 52.5,-40.5
parent: 2
type: Transform
- - uid: 10351
+ - uid: 10373
components:
- pos: 53.5,-39.5
parent: 2
type: Transform
- - uid: 10352
+ - uid: 10374
components:
- pos: 52.5,-42.5
parent: 2
type: Transform
- - uid: 10353
+ - uid: 10375
components:
- pos: 51.5,-39.5
parent: 2
type: Transform
- - uid: 10354
+ - uid: 10376
components:
- pos: 53.5,-41.5
parent: 2
type: Transform
- - uid: 10355
+ - uid: 10377
components:
- pos: 53.5,-42.5
parent: 2
type: Transform
- - uid: 10356
+ - uid: 10378
components:
- pos: 51.5,-41.5
parent: 2
type: Transform
- proto: CarpetSBlue
entities:
- - uid: 10357
+ - uid: 10379
components:
- pos: 21.5,-22.5
parent: 2
type: Transform
- - uid: 10358
+ - uid: 10380
components:
- pos: 21.5,-23.5
parent: 2
type: Transform
- - uid: 10359
+ - uid: 10381
components:
- pos: 23.5,-23.5
parent: 2
type: Transform
- - uid: 10360
+ - uid: 10382
components:
- pos: 24.5,-25.5
parent: 2
type: Transform
- - uid: 10361
+ - uid: 10383
components:
- pos: 26.5,-24.5
parent: 2
type: Transform
- - uid: 10362
+ - uid: 10384
components:
- pos: 26.5,-25.5
parent: 2
type: Transform
- - uid: 10363
+ - uid: 10385
components:
- pos: 29.5,-23.5
parent: 2
type: Transform
- - uid: 10364
+ - uid: 10386
components:
- pos: 28.5,-22.5
parent: 2
type: Transform
- - uid: 10365
+ - uid: 10387
components:
- pos: 29.5,-23.5
parent: 2
type: Transform
- - uid: 10366
+ - uid: 10388
components:
- pos: 25.5,-25.5
parent: 2
type: Transform
- - uid: 10367
+ - uid: 10389
components:
- pos: 29.5,-22.5
parent: 2
type: Transform
- - uid: 10368
+ - uid: 10390
components:
- pos: 27.5,-22.5
parent: 2
type: Transform
- - uid: 10369
+ - uid: 10391
components:
- pos: 26.5,-22.5
parent: 2
type: Transform
- - uid: 10370
+ - uid: 10392
components:
- pos: 24.5,-24.5
parent: 2
type: Transform
- - uid: 10371
+ - uid: 10393
components:
- pos: 24.5,-23.5
parent: 2
type: Transform
- - uid: 10372
+ - uid: 10394
components:
- pos: 24.5,-22.5
parent: 2
type: Transform
- - uid: 10373
+ - uid: 10395
components:
- pos: 25.5,-24.5
parent: 2
type: Transform
- - uid: 10374
+ - uid: 10396
components:
- pos: 28.5,-23.5
parent: 2
type: Transform
- - uid: 10375
+ - uid: 10397
components:
- pos: 22.5,-23.5
parent: 2
type: Transform
- - uid: 10376
+ - uid: 10398
components:
- pos: 22.5,-22.5
parent: 2
type: Transform
- - uid: 10377
+ - uid: 10399
components:
- pos: 23.5,-22.5
parent: 2
type: Transform
- - uid: 10378
+ - uid: 10400
components:
- pos: 25.5,-23.5
parent: 2
type: Transform
- - uid: 10379
+ - uid: 10401
components:
- pos: 25.5,-22.5
parent: 2
type: Transform
- - uid: 10380
+ - uid: 10402
components:
- pos: 26.5,-23.5
parent: 2
type: Transform
- - uid: 10381
+ - uid: 10403
components:
- rot: 3.141592653589793 rad
pos: 30.5,-47.5
parent: 2
type: Transform
- - uid: 10382
+ - uid: 10404
components:
- rot: 3.141592653589793 rad
pos: 30.5,-48.5
parent: 2
type: Transform
- - uid: 10383
+ - uid: 10405
components:
- rot: 3.141592653589793 rad
pos: 31.5,-47.5
parent: 2
type: Transform
- - uid: 10384
+ - uid: 10406
components:
- rot: 3.141592653589793 rad
pos: 31.5,-48.5
parent: 2
type: Transform
- - uid: 10385
+ - uid: 10407
components:
- rot: 3.141592653589793 rad
pos: 32.5,-47.5
parent: 2
type: Transform
- - uid: 10386
+ - uid: 10408
components:
- rot: 3.141592653589793 rad
pos: 32.5,-48.5
parent: 2
type: Transform
- - uid: 10387
+ - uid: 10409
components:
- pos: 30.5,-28.5
parent: 2
type: Transform
- - uid: 10388
+ - uid: 10410
components:
- pos: 30.5,-29.5
parent: 2
type: Transform
- - uid: 10389
+ - uid: 10411
components:
- pos: 31.5,-27.5
parent: 2
type: Transform
- - uid: 10390
+ - uid: 10412
components:
- pos: 31.5,-28.5
parent: 2
type: Transform
- - uid: 10391
+ - uid: 10413
components:
- pos: 31.5,-29.5
parent: 2
type: Transform
- - uid: 10392
+ - uid: 10414
components:
- pos: 32.5,-27.5
parent: 2
type: Transform
- - uid: 10393
+ - uid: 10415
components:
- pos: 32.5,-28.5
parent: 2
type: Transform
- - uid: 10394
+ - uid: 10416
components:
- pos: 32.5,-29.5
parent: 2
type: Transform
- - uid: 10395
+ - uid: 10417
components:
- pos: 30.5,-27.5
parent: 2
type: Transform
- - uid: 10396
+ - uid: 10418
components:
- pos: 31.5,-30.5
parent: 2
type: Transform
- - uid: 10397
+ - uid: 10419
components:
- pos: 30.5,-30.5
parent: 2
type: Transform
- - uid: 10398
+ - uid: 10420
components:
- pos: 59.5,-0.5
parent: 2
type: Transform
- - uid: 10399
+ - uid: 10421
components:
- pos: 59.5,-1.5
parent: 2
type: Transform
- - uid: 10400
+ - uid: 10422
components:
- pos: 60.5,-0.5
parent: 2
type: Transform
- - uid: 10401
+ - uid: 10423
components:
- pos: 60.5,-1.5
parent: 2
type: Transform
- - uid: 10402
+ - uid: 10424
components:
- pos: 61.5,-0.5
parent: 2
type: Transform
- - uid: 10403
+ - uid: 10425
components:
- pos: 61.5,-1.5
parent: 2
type: Transform
- - uid: 10404
+ - uid: 10426
components:
- pos: 62.5,-0.5
parent: 2
type: Transform
- - uid: 10405
+ - uid: 10427
components:
- pos: 62.5,-1.5
parent: 2
type: Transform
- - uid: 10406
+ - uid: 10428
components:
- pos: 32.5,-30.5
parent: 2
type: Transform
- - uid: 10407
+ - uid: 10429
components:
- pos: 27.5,-23.5
parent: 2
type: Transform
- proto: CartridgeMagnumAP
entities:
- - uid: 10408
+ - uid: 10430
components:
- rot: 1.5707963267948966 rad
pos: 23.553988,-35.486286
parent: 2
type: Transform
- - uid: 10409
+ - uid: 10431
components:
- rot: 1.5707963267948966 rad
pos: 23.460238,-35.548786
parent: 2
type: Transform
- - uid: 10410
+ - uid: 10432
components:
- rot: 1.5707963267948966 rad
pos: 23.647738,-35.43941
@@ -65112,8570 +65275,8565 @@ entities:
type: Transform
- proto: Catwalk
entities:
- - uid: 10411
+ - uid: 10433
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-46.5
parent: 2
type: Transform
- - uid: 10412
+ - uid: 10434
components:
- pos: 58.5,-38.5
parent: 2
type: Transform
- - uid: 10413
+ - uid: 10435
components:
- rot: 3.141592653589793 rad
pos: 22.5,-32.5
parent: 2
type: Transform
- - uid: 10414
+ - uid: 10436
components:
- rot: 3.141592653589793 rad
pos: -76.5,-38.5
parent: 2
type: Transform
- - uid: 10415
+ - uid: 10437
components:
- pos: -79.5,-40.5
parent: 2
type: Transform
- - uid: 10416
+ - uid: 10438
components:
- pos: -79.5,-41.5
parent: 2
type: Transform
- - uid: 10417
+ - uid: 10439
components:
- rot: 3.141592653589793 rad
pos: -61.5,-53.5
parent: 2
type: Transform
- - uid: 10418
+ - uid: 10440
components:
- rot: 3.141592653589793 rad
pos: -61.5,-54.5
parent: 2
type: Transform
- - uid: 10419
+ - uid: 10441
components:
- rot: 3.141592653589793 rad
pos: -61.5,-52.5
parent: 2
type: Transform
- - uid: 10420
+ - uid: 10442
components:
- rot: 3.141592653589793 rad
pos: -61.5,-51.5
parent: 2
type: Transform
- - uid: 10421
+ - uid: 10443
components:
- rot: 3.141592653589793 rad
pos: -61.5,-50.5
parent: 2
type: Transform
- - uid: 10422
+ - uid: 10444
components:
- rot: 3.141592653589793 rad
pos: -61.5,-49.5
parent: 2
type: Transform
- - uid: 10423
+ - uid: 10445
components:
- rot: 3.141592653589793 rad
pos: -61.5,-48.5
parent: 2
type: Transform
- - uid: 10424
+ - uid: 10446
components:
- rot: 1.5707963267948966 rad
pos: -59.5,56.5
parent: 2
type: Transform
- - uid: 10425
+ - uid: 10447
components:
- rot: 1.5707963267948966 rad
pos: -57.5,56.5
parent: 2
type: Transform
- - uid: 10426
+ - uid: 10448
components:
- rot: 1.5707963267948966 rad
pos: -55.5,56.5
parent: 2
type: Transform
- - uid: 10427
+ - uid: 10449
components:
- rot: 1.5707963267948966 rad
pos: -54.5,55.5
parent: 2
type: Transform
- - uid: 10428
+ - uid: 10450
components:
- rot: 3.141592653589793 rad
pos: -0.5,-71.5
parent: 2
type: Transform
- - uid: 10429
+ - uid: 10451
components:
- pos: 65.5,-25.5
parent: 2
type: Transform
- - uid: 10430
+ - uid: 10452
components:
- rot: 3.141592653589793 rad
pos: 79.5,-26.5
parent: 2
type: Transform
- - uid: 10431
+ - uid: 10453
components:
- pos: 31.5,-14.5
parent: 2
type: Transform
- - uid: 10432
+ - uid: 10454
components:
- pos: -11.5,-15.5
parent: 2
type: Transform
- - uid: 10433
+ - uid: 10455
components:
- pos: -7.5,-75.5
parent: 2
type: Transform
- - uid: 10434
+ - uid: 10456
components:
- pos: 32.5,-11.5
parent: 2
type: Transform
- - uid: 10435
+ - uid: 10457
components:
- pos: -1.5,-83.5
parent: 2
type: Transform
- - uid: 10436
+ - uid: 10458
components:
- pos: -12.5,-15.5
parent: 2
type: Transform
- - uid: 10437
+ - uid: 10459
components:
- pos: -5.5,-69.5
parent: 2
type: Transform
- - uid: 10438
+ - uid: 10460
components:
- pos: 2.5,-90.5
parent: 2
type: Transform
- - uid: 10439
+ - uid: 10461
components:
- pos: -1.5,-88.5
parent: 2
type: Transform
- - uid: 10440
+ - uid: 10462
components:
- pos: -0.5,-89.5
parent: 2
type: Transform
- - uid: 10441
+ - uid: 10463
components:
- pos: 0.5,-89.5
parent: 2
type: Transform
- - uid: 10442
+ - uid: 10464
components:
- pos: 3.5,-92.5
parent: 2
type: Transform
- - uid: 10443
+ - uid: 10465
components:
- pos: 8.5,-53.5
parent: 2
type: Transform
- - uid: 10444
+ - uid: 10466
components:
- pos: 4.5,-92.5
parent: 2
type: Transform
- - uid: 10445
+ - uid: 10467
components:
- pos: -46.5,-50.5
parent: 2
type: Transform
- - uid: 10446
+ - uid: 10468
components:
- rot: 3.141592653589793 rad
pos: 0.5,-71.5
parent: 2
type: Transform
- - uid: 10447
+ - uid: 10469
components:
- pos: 2.5,-91.5
parent: 2
type: Transform
- - uid: 10448
+ - uid: 10470
components:
- pos: -1.5,-89.5
parent: 2
type: Transform
- - uid: 10449
+ - uid: 10471
components:
- pos: 4.5,-89.5
parent: 2
type: Transform
- - uid: 10450
+ - uid: 10472
components:
- pos: -6.5,-75.5
parent: 2
type: Transform
- - uid: 10451
+ - uid: 10473
components:
- pos: -8.5,-75.5
parent: 2
type: Transform
- - uid: 10452
+ - uid: 10474
components:
- pos: 30.5,-14.5
parent: 2
type: Transform
- - uid: 10453
+ - uid: 10475
components:
- pos: -5.5,-75.5
parent: 2
type: Transform
- - uid: 10454
+ - uid: 10476
components:
- pos: -4.5,-75.5
parent: 2
type: Transform
- - uid: 10455
+ - uid: 10477
components:
- pos: -3.5,-75.5
parent: 2
type: Transform
- - uid: 10456
+ - uid: 10478
components:
- pos: -14.5,-73.5
parent: 2
type: Transform
- - uid: 10457
+ - uid: 10479
components:
- pos: 30.5,-10.5
parent: 2
type: Transform
- - uid: 10458
+ - uid: 10480
components:
- pos: -13.5,-73.5
parent: 2
type: Transform
- - uid: 10459
+ - uid: 10481
components:
- rot: 3.141592653589793 rad
pos: 18.5,-52.5
parent: 2
type: Transform
- - uid: 10460
+ - uid: 10482
components:
- rot: 3.141592653589793 rad
pos: 14.5,-53.5
parent: 2
type: Transform
- - uid: 10461
+ - uid: 10483
components:
- rot: 3.141592653589793 rad
pos: 14.5,-52.5
parent: 2
type: Transform
- - uid: 10462
+ - uid: 10484
components:
- rot: 3.141592653589793 rad
pos: 21.5,-53.5
parent: 2
type: Transform
- - uid: 10463
+ - uid: 10485
components:
- rot: 3.141592653589793 rad
pos: 15.5,-53.5
parent: 2
type: Transform
- - uid: 10464
+ - uid: 10486
components:
- rot: 3.141592653589793 rad
pos: 15.5,-52.5
parent: 2
type: Transform
- - uid: 10465
+ - uid: 10487
components:
- rot: 3.141592653589793 rad
pos: 16.5,-52.5
parent: 2
type: Transform
- - uid: 10466
+ - uid: 10488
components:
- rot: 3.141592653589793 rad
pos: 17.5,-52.5
parent: 2
type: Transform
- - uid: 10467
+ - uid: 10489
components:
- rot: 3.141592653589793 rad
pos: 17.5,-53.5
parent: 2
type: Transform
- - uid: 10468
+ - uid: 10490
components:
- pos: -46.5,-43.5
parent: 2
type: Transform
- - uid: 10469
+ - uid: 10491
components:
- pos: 32.5,-10.5
parent: 2
type: Transform
- - uid: 10470
+ - uid: 10492
components:
- pos: 32.5,-13.5
parent: 2
type: Transform
- - uid: 10471
+ - uid: 10493
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-32.5
parent: 2
type: Transform
- - uid: 10472
+ - uid: 10494
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-32.5
parent: 2
type: Transform
- - uid: 10473
+ - uid: 10495
components:
- rot: 3.141592653589793 rad
pos: 12.5,-16.5
parent: 2
type: Transform
- - uid: 10474
+ - uid: 10496
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-32.5
parent: 2
type: Transform
- - uid: 10475
+ - uid: 10497
components:
- pos: -17.5,-52.5
parent: 2
type: Transform
- - uid: 10476
+ - uid: 10498
components:
- pos: -8.5,-13.5
parent: 2
type: Transform
- - uid: 10477
+ - uid: 10499
components:
- pos: -6.5,-70.5
parent: 2
type: Transform
- - uid: 10478
+ - uid: 10500
components:
- pos: 11.5,-17.5
parent: 2
type: Transform
- - uid: 10479
+ - uid: 10501
components:
- pos: -19.5,-52.5
parent: 2
type: Transform
- - uid: 10480
+ - uid: 10502
components:
- rot: 3.141592653589793 rad
pos: 9.5,-92.5
parent: 2
type: Transform
- - uid: 10481
+ - uid: 10503
components:
- rot: 3.141592653589793 rad
pos: 10.5,-92.5
parent: 2
type: Transform
- - uid: 10482
+ - uid: 10504
components:
- pos: -1.5,-82.5
parent: 2
type: Transform
- - uid: 10483
+ - uid: 10505
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-32.5
parent: 2
type: Transform
- - uid: 10484
+ - uid: 10506
components:
- pos: 32.5,-12.5
parent: 2
type: Transform
- - uid: 10485
+ - uid: 10507
components:
- pos: 32.5,-14.5
parent: 2
type: Transform
- - uid: 10486
+ - uid: 10508
components:
- pos: -1.5,-85.5
parent: 2
type: Transform
- - uid: 10487
+ - uid: 10509
components:
- pos: -1.5,-87.5
parent: 2
type: Transform
- - uid: 10488
+ - uid: 10510
components:
- rot: 3.141592653589793 rad
pos: 11.5,-105.5
parent: 2
type: Transform
- - uid: 10489
+ - uid: 10511
components:
- pos: -12.5,-14.5
parent: 2
type: Transform
- - uid: 10490
+ - uid: 10512
components:
- pos: 4.5,-67.5
parent: 2
type: Transform
- - uid: 10491
+ - uid: 10513
components:
- pos: 1.5,-89.5
parent: 2
type: Transform
- - uid: 10492
+ - uid: 10514
components:
- pos: 8.5,-55.5
parent: 2
type: Transform
- - uid: 10493
+ - uid: 10515
components:
- rot: 3.141592653589793 rad
pos: 11.5,-92.5
parent: 2
type: Transform
- - uid: 10494
+ - uid: 10516
components:
- pos: 3.5,-67.5
parent: 2
type: Transform
- - uid: 10495
+ - uid: 10517
components:
- pos: 5.5,-67.5
parent: 2
type: Transform
- - uid: 10496
+ - uid: 10518
components:
- pos: 8.5,-54.5
parent: 2
type: Transform
- - uid: 10497
+ - uid: 10519
components:
- rot: 1.5707963267948966 rad
pos: -24.5,53.5
parent: 2
type: Transform
- - uid: 10498
+ - uid: 10520
components:
- rot: 1.5707963267948966 rad
pos: -24.5,50.5
parent: 2
type: Transform
- - uid: 10499
+ - uid: 10521
components:
- rot: 1.5707963267948966 rad
pos: -24.5,51.5
parent: 2
type: Transform
- - uid: 10500
+ - uid: 10522
components:
- rot: 1.5707963267948966 rad
pos: -24.5,52.5
parent: 2
type: Transform
- - uid: 10501
+ - uid: 10523
components:
- rot: 1.5707963267948966 rad
pos: -24.5,49.5
parent: 2
type: Transform
- - uid: 10502
+ - uid: 10524
components:
- rot: 3.141592653589793 rad
pos: 2.5,-71.5
parent: 2
type: Transform
- - uid: 10503
+ - uid: 10525
components:
- pos: 30.5,-11.5
parent: 2
type: Transform
- - uid: 10504
+ - uid: 10526
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-32.5
parent: 2
type: Transform
- - uid: 10505
+ - uid: 10527
components:
- pos: -1.5,-81.5
parent: 2
type: Transform
- - uid: 10506
+ - uid: 10528
components:
- pos: -1.5,-86.5
parent: 2
type: Transform
- - uid: 10507
+ - uid: 10529
components:
- pos: 2.5,-89.5
parent: 2
type: Transform
- - uid: 10508
+ - uid: 10530
components:
- pos: 7.5,-92.5
parent: 2
type: Transform
- - uid: 10509
+ - uid: 10531
components:
- pos: 2.5,-92.5
parent: 2
type: Transform
- - uid: 10510
+ - uid: 10532
components:
- pos: 11.5,-100.5
parent: 2
type: Transform
- - uid: 10511
+ - uid: 10533
components:
- rot: 3.141592653589793 rad
pos: 8.5,-92.5
parent: 2
type: Transform
- - uid: 10512
+ - uid: 10534
components:
- pos: 6.5,-92.5
parent: 2
type: Transform
- - uid: 10513
+ - uid: 10535
components:
- pos: 5.5,-92.5
parent: 2
type: Transform
- - uid: 10514
+ - uid: 10536
components:
- pos: -9.5,-75.5
parent: 2
type: Transform
- - uid: 10515
+ - uid: 10537
components:
- rot: 3.141592653589793 rad
pos: 20.5,-53.5
parent: 2
type: Transform
- - uid: 10516
+ - uid: 10538
components:
- pos: 30.5,-12.5
parent: 2
type: Transform
- - uid: 10517
+ - uid: 10539
components:
- pos: 60.5,-58.5
parent: 2
type: Transform
- - uid: 10518
+ - uid: 10540
components:
- pos: -4.5,-69.5
parent: 2
type: Transform
- - uid: 10519
+ - uid: 10541
components:
- pos: -13.5,-31.5
parent: 2
type: Transform
- - uid: 10520
+ - uid: 10542
components:
- pos: -3.5,-69.5
parent: 2
type: Transform
- - uid: 10521
+ - uid: 10543
components:
- pos: -9.5,-13.5
parent: 2
type: Transform
- - uid: 10522
+ - uid: 10544
components:
- pos: -12.5,-13.5
parent: 2
type: Transform
- - uid: 10523
+ - uid: 10545
components:
- pos: -10.5,-13.5
parent: 2
type: Transform
- - uid: 10524
+ - uid: 10546
components:
- pos: -10.5,-14.5
parent: 2
type: Transform
- - uid: 10525
+ - uid: 10547
components:
- pos: -10.5,-15.5
parent: 2
type: Transform
- - uid: 10526
+ - uid: 10548
components:
- pos: -13.5,-14.5
parent: 2
type: Transform
- - uid: 10527
+ - uid: 10549
components:
- pos: -7.5,-13.5
parent: 2
type: Transform
- - uid: 10528
+ - uid: 10550
components:
- pos: -14.5,-31.5
parent: 2
type: Transform
- - uid: 10529
+ - uid: 10551
components:
- pos: -15.5,-31.5
parent: 2
type: Transform
- - uid: 10530
+ - uid: 10552
components:
- pos: -2.5,-69.5
parent: 2
type: Transform
- - uid: 10531
+ - uid: 10553
components:
- pos: -16.5,-31.5
parent: 2
type: Transform
- - uid: 10532
+ - uid: 10554
components:
- pos: -6.5,-69.5
parent: 2
type: Transform
- - uid: 10533
+ - uid: 10555
components:
- pos: -12.5,15.5
parent: 2
type: Transform
- - uid: 10534
+ - uid: 10556
components:
- pos: -14.5,15.5
parent: 2
type: Transform
- - uid: 10535
+ - uid: 10557
components:
- pos: -6.5,-71.5
parent: 2
type: Transform
- - uid: 10536
+ - uid: 10558
components:
- pos: -7.5,-71.5
parent: 2
type: Transform
- - uid: 10537
+ - uid: 10559
components:
- pos: -8.5,-71.5
parent: 2
type: Transform
- - uid: 10538
+ - uid: 10560
components:
- pos: -9.5,-71.5
parent: 2
type: Transform
- - uid: 10539
+ - uid: 10561
components:
- pos: -10.5,-71.5
parent: 2
type: Transform
- - uid: 10540
+ - uid: 10562
components:
- pos: -11.5,-71.5
parent: 2
type: Transform
- - uid: 10541
+ - uid: 10563
components:
- pos: 3.5,-16.5
parent: 2
type: Transform
- - uid: 10542
+ - uid: 10564
components:
- pos: 2.5,-16.5
parent: 2
type: Transform
- - uid: 10543
+ - uid: 10565
components:
- pos: 1.5,-16.5
parent: 2
type: Transform
- - uid: 10544
+ - uid: 10566
components:
- pos: 1.5,-17.5
parent: 2
type: Transform
- - uid: 10545
+ - uid: 10567
components:
- pos: 0.5,-17.5
parent: 2
type: Transform
- - uid: 10546
+ - uid: 10568
components:
- pos: -0.5,-17.5
parent: 2
type: Transform
- - uid: 10547
+ - uid: 10569
components:
- pos: -0.5,-17.5
parent: 2
type: Transform
- - uid: 10548
+ - uid: 10570
components:
- pos: 14.5,-14.5
parent: 2
type: Transform
- - uid: 10549
+ - uid: 10571
components:
- pos: 13.5,-14.5
parent: 2
type: Transform
- - uid: 10550
+ - uid: 10572
components:
- pos: 12.5,-14.5
parent: 2
type: Transform
- - uid: 10551
+ - uid: 10573
components:
- pos: 11.5,-14.5
parent: 2
type: Transform
- - uid: 10552
+ - uid: 10574
components:
- pos: 10.5,-14.5
parent: 2
type: Transform
- - uid: 10553
+ - uid: 10575
components:
- pos: 9.5,-14.5
parent: 2
type: Transform
- - uid: 10554
+ - uid: 10576
components:
- pos: 8.5,-14.5
parent: 2
type: Transform
- - uid: 10555
+ - uid: 10577
components:
- pos: 7.5,-14.5
parent: 2
type: Transform
- - uid: 10556
+ - uid: 10578
components:
- pos: 14.5,-5.5
parent: 2
type: Transform
- - uid: 10557
+ - uid: 10579
components:
- pos: 14.5,-6.5
parent: 2
type: Transform
- - uid: 10558
+ - uid: 10580
components:
- pos: 14.5,-4.5
parent: 2
type: Transform
- - uid: 10559
+ - uid: 10581
components:
- pos: 56.5,1.5
parent: 2
type: Transform
- - uid: 10560
+ - uid: 10582
components:
- pos: 57.5,2.5
parent: 2
type: Transform
- - uid: 10561
+ - uid: 10583
components:
- pos: 56.5,2.5
parent: 2
type: Transform
- - uid: 10562
+ - uid: 10584
components:
- pos: 57.5,1.5
parent: 2
type: Transform
- - uid: 10563
+ - uid: 10585
components:
- pos: 58.5,1.5
parent: 2
type: Transform
- - uid: 10564
+ - uid: 10586
components:
- pos: 59.5,1.5
parent: 2
type: Transform
- - uid: 10565
+ - uid: 10587
components:
- pos: 60.5,1.5
parent: 2
type: Transform
- - uid: 10566
+ - uid: 10588
components:
- pos: 61.5,1.5
parent: 2
type: Transform
- - uid: 10567
+ - uid: 10589
components:
- pos: 62.5,1.5
parent: 2
type: Transform
- - uid: 10568
+ - uid: 10590
components:
- pos: 62.5,2.5
parent: 2
type: Transform
- - uid: 10569
+ - uid: 10591
components:
- pos: 12.5,-17.5
parent: 2
type: Transform
- - uid: 10570
+ - uid: 10592
components:
- pos: 10.5,-17.5
parent: 2
type: Transform
- - uid: 10571
+ - uid: 10593
components:
- pos: 8.5,-17.5
parent: 2
type: Transform
- - uid: 10572
+ - uid: 10594
components:
- pos: 7.5,-17.5
parent: 2
type: Transform
- - uid: 10573
+ - uid: 10595
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-19.5
parent: 2
type: Transform
- - uid: 10574
+ - uid: 10596
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-20.5
parent: 2
type: Transform
- - uid: 10575
+ - uid: 10597
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-21.5
parent: 2
type: Transform
- - uid: 10576
+ - uid: 10598
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-19.5
parent: 2
type: Transform
- - uid: 10577
+ - uid: 10599
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-19.5
parent: 2
type: Transform
- - uid: 10578
+ - uid: 10600
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-18.5
parent: 2
type: Transform
- - uid: 10579
+ - uid: 10601
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-17.5
parent: 2
type: Transform
- - uid: 10580
+ - uid: 10602
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-17.5
parent: 2
type: Transform
- - uid: 10581
+ - uid: 10603
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-17.5
parent: 2
type: Transform
- - uid: 10582
+ - uid: 10604
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-17.5
parent: 2
type: Transform
- - uid: 10583
+ - uid: 10605
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-17.5
parent: 2
type: Transform
- - uid: 10584
+ - uid: 10606
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-17.5
parent: 2
type: Transform
- - uid: 10585
+ - uid: 10607
components:
- pos: 61.5,-58.5
parent: 2
type: Transform
- - uid: 10586
+ - uid: 10608
components:
- pos: 62.5,-58.5
parent: 2
type: Transform
- - uid: 10587
+ - uid: 10609
components:
- pos: 63.5,-58.5
parent: 2
type: Transform
- - uid: 10588
+ - uid: 10610
components:
- pos: 79.5,-43.5
parent: 2
type: Transform
- - uid: 10589
+ - uid: 10611
components:
- pos: 79.5,-42.5
parent: 2
type: Transform
- - uid: 10590
+ - uid: 10612
components:
- pos: -46.5,-55.5
parent: 2
type: Transform
- - uid: 10591
+ - uid: 10613
components:
- pos: -16.5,-0.5
parent: 2
type: Transform
- - uid: 10592
+ - uid: 10614
components:
- pos: -17.5,-0.5
parent: 2
type: Transform
- - uid: 10593
+ - uid: 10615
components:
- pos: -18.5,-0.5
parent: 2
type: Transform
- - uid: 10594
+ - uid: 10616
components:
- pos: -19.5,-0.5
parent: 2
type: Transform
- - uid: 10595
+ - uid: 10617
components:
- pos: -20.5,-0.5
parent: 2
type: Transform
- - uid: 10596
+ - uid: 10618
components:
- pos: -21.5,-0.5
parent: 2
type: Transform
- - uid: 10597
+ - uid: 10619
components:
- pos: -22.5,-0.5
parent: 2
type: Transform
- - uid: 10598
+ - uid: 10620
components:
- rot: 3.141592653589793 rad
pos: 52.5,-85.5
parent: 2
type: Transform
- - uid: 10599
+ - uid: 10621
components:
- rot: 3.141592653589793 rad
pos: 52.5,-86.5
parent: 2
type: Transform
- - uid: 10600
+ - uid: 10622
components:
- rot: 3.141592653589793 rad
pos: 52.5,-87.5
parent: 2
type: Transform
- - uid: 10601
+ - uid: 10623
components:
- rot: 3.141592653589793 rad
pos: 52.5,-92.5
parent: 2
type: Transform
- - uid: 10602
+ - uid: 10624
components:
- rot: 3.141592653589793 rad
pos: 52.5,-77.5
parent: 2
type: Transform
- - uid: 10603
+ - uid: 10625
components:
- rot: 3.141592653589793 rad
pos: 14.5,-89.5
parent: 2
type: Transform
- - uid: 10604
+ - uid: 10626
components:
- rot: 3.141592653589793 rad
pos: 52.5,-78.5
parent: 2
type: Transform
- - uid: 10605
+ - uid: 10627
components:
- rot: 3.141592653589793 rad
pos: 15.5,-89.5
parent: 2
type: Transform
- - uid: 10606
+ - uid: 10628
components:
- rot: 3.141592653589793 rad
pos: 26.5,-89.5
parent: 2
type: Transform
- - uid: 10607
+ - uid: 10629
components:
- rot: 3.141592653589793 rad
pos: 24.5,-89.5
parent: 2
type: Transform
- - uid: 10608
+ - uid: 10630
components:
- rot: 3.141592653589793 rad
pos: 25.5,-89.5
parent: 2
type: Transform
- - uid: 10609
+ - uid: 10631
components:
- rot: 3.141592653589793 rad
pos: 52.5,-84.5
parent: 2
type: Transform
- - uid: 10610
+ - uid: 10632
components:
- rot: 3.141592653589793 rad
pos: 52.5,-94.5
parent: 2
type: Transform
- - uid: 10611
+ - uid: 10633
components:
- rot: 3.141592653589793 rad
pos: 52.5,-79.5
parent: 2
type: Transform
- - uid: 10612
+ - uid: 10634
components:
- rot: 3.141592653589793 rad
pos: 16.5,-89.5
parent: 2
type: Transform
- - uid: 10613
+ - uid: 10635
components:
- rot: 3.141592653589793 rad
pos: 17.5,-89.5
parent: 2
type: Transform
- - uid: 10614
+ - uid: 10636
components:
- rot: 3.141592653589793 rad
pos: 18.5,-89.5
parent: 2
type: Transform
- - uid: 10615
+ - uid: 10637
components:
- rot: 3.141592653589793 rad
pos: 19.5,-89.5
parent: 2
type: Transform
- - uid: 10616
+ - uid: 10638
components:
- rot: 3.141592653589793 rad
pos: 20.5,-89.5
parent: 2
type: Transform
- - uid: 10617
+ - uid: 10639
components:
- rot: 3.141592653589793 rad
pos: 21.5,-89.5
parent: 2
type: Transform
- - uid: 10618
+ - uid: 10640
components:
- rot: 3.141592653589793 rad
pos: 22.5,-89.5
parent: 2
type: Transform
- - uid: 10619
+ - uid: 10641
components:
- rot: 3.141592653589793 rad
pos: 27.5,-89.5
parent: 2
type: Transform
- - uid: 10620
+ - uid: 10642
components:
- rot: 3.141592653589793 rad
pos: 57.5,-74.5
parent: 2
type: Transform
- - uid: 10621
+ - uid: 10643
components:
- rot: 3.141592653589793 rad
pos: 27.5,-93.5
parent: 2
type: Transform
- - uid: 10622
+ - uid: 10644
components:
- rot: 3.141592653589793 rad
pos: 27.5,-94.5
parent: 2
type: Transform
- - uid: 10623
+ - uid: 10645
components:
- rot: 3.141592653589793 rad
pos: 27.5,-91.5
parent: 2
type: Transform
- - uid: 10624
+ - uid: 10646
components:
- rot: 3.141592653589793 rad
pos: 27.5,-92.5
parent: 2
type: Transform
- - uid: 10625
+ - uid: 10647
components:
- rot: 3.141592653589793 rad
pos: 52.5,-91.5
parent: 2
type: Transform
- - uid: 10626
+ - uid: 10648
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-75.5
parent: 2
type: Transform
- - uid: 10627
+ - uid: 10649
components:
- pos: 20.5,-73.5
parent: 2
type: Transform
- - uid: 10628
+ - uid: 10650
components:
- pos: 19.5,-73.5
parent: 2
type: Transform
- - uid: 10629
+ - uid: 10651
components:
- pos: 18.5,-73.5
parent: 2
type: Transform
- - uid: 10630
+ - uid: 10652
components:
- pos: 17.5,-73.5
parent: 2
type: Transform
- - uid: 10631
+ - uid: 10653
components:
- pos: 16.5,-73.5
parent: 2
type: Transform
- - uid: 10632
+ - uid: 10654
components:
- pos: 15.5,-73.5
parent: 2
type: Transform
- - uid: 10633
+ - uid: 10655
components:
- pos: 14.5,-73.5
parent: 2
type: Transform
- - uid: 10634
+ - uid: 10656
components:
- pos: 13.5,-73.5
parent: 2
type: Transform
- - uid: 10635
+ - uid: 10657
components:
- pos: 12.5,-73.5
parent: 2
type: Transform
- - uid: 10636
+ - uid: 10658
components:
- pos: 11.5,-73.5
parent: 2
type: Transform
- - uid: 10637
+ - uid: 10659
components:
- pos: 43.5,-59.5
parent: 2
type: Transform
- - uid: 10638
+ - uid: 10660
components:
- pos: -46.5,-48.5
parent: 2
type: Transform
- - uid: 10639
+ - uid: 10661
components:
- pos: -46.5,-45.5
parent: 2
type: Transform
- - uid: 10640
+ - uid: 10662
components:
- pos: -46.5,-46.5
parent: 2
type: Transform
- - uid: 10641
+ - uid: 10663
components:
- pos: -46.5,-52.5
parent: 2
type: Transform
- - uid: 10642
+ - uid: 10664
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-45.5
parent: 2
type: Transform
- - uid: 10643
+ - uid: 10665
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-46.5
parent: 2
type: Transform
- - uid: 10644
+ - uid: 10666
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-47.5
parent: 2
type: Transform
- - uid: 10645
+ - uid: 10667
components:
- rot: 3.141592653589793 rad
pos: 27.5,-95.5
parent: 2
type: Transform
- - uid: 10646
+ - uid: 10668
components:
- rot: 3.141592653589793 rad
pos: 28.5,-95.5
parent: 2
type: Transform
- - uid: 10647
+ - uid: 10669
components:
- rot: 3.141592653589793 rad
pos: 56.5,-74.5
parent: 2
type: Transform
- - uid: 10648
+ - uid: 10670
components:
- pos: -46.5,-47.5
parent: 2
type: Transform
- - uid: 10649
+ - uid: 10671
components:
- pos: -46.5,-49.5
parent: 2
type: Transform
- - uid: 10650
+ - uid: 10672
components:
- pos: -46.5,-44.5
parent: 2
type: Transform
- - uid: 10651
+ - uid: 10673
components:
- pos: -46.5,-51.5
parent: 2
type: Transform
- - uid: 10652
+ - uid: 10674
components:
- pos: 79.5,-50.5
parent: 2
type: Transform
- - uid: 10653
+ - uid: 10675
components:
- pos: 79.5,-49.5
parent: 2
type: Transform
- - uid: 10654
+ - uid: 10676
components:
- pos: 79.5,-44.5
parent: 2
type: Transform
- - uid: 10655
+ - uid: 10677
components:
- pos: 79.5,-45.5
parent: 2
type: Transform
- - uid: 10656
+ - uid: 10678
components:
- pos: 79.5,-46.5
parent: 2
type: Transform
- - uid: 10657
+ - uid: 10679
components:
- pos: 79.5,-47.5
parent: 2
type: Transform
- - uid: 10658
+ - uid: 10680
components:
- pos: 79.5,-48.5
parent: 2
type: Transform
- - uid: 10659
+ - uid: 10681
components:
- pos: 79.5,-41.5
parent: 2
type: Transform
- - uid: 10660
+ - uid: 10682
components:
- pos: 68.5,-74.5
parent: 2
type: Transform
- - uid: 10661
+ - uid: 10683
components:
- pos: 68.5,-73.5
parent: 2
type: Transform
- - uid: 10662
+ - uid: 10684
components:
- pos: -23.5,-26.5
parent: 2
type: Transform
- - uid: 10663
+ - uid: 10685
components:
- pos: -24.5,-26.5
parent: 2
type: Transform
- - uid: 10664
+ - uid: 10686
components:
- pos: -25.5,-26.5
parent: 2
type: Transform
- - uid: 10665
+ - uid: 10687
components:
- pos: -26.5,-26.5
parent: 2
type: Transform
- - uid: 10666
+ - uid: 10688
components:
- pos: -27.5,-26.5
parent: 2
type: Transform
- - uid: 10667
+ - uid: 10689
components:
- pos: -28.5,-26.5
parent: 2
type: Transform
- - uid: 10668
+ - uid: 10690
components:
- pos: 68.5,-72.5
parent: 2
type: Transform
- - uid: 10669
+ - uid: 10691
components:
- pos: 68.5,-71.5
parent: 2
type: Transform
- - uid: 10670
+ - uid: 10692
components:
- pos: 36.5,-56.5
parent: 2
type: Transform
- - uid: 10671
+ - uid: 10693
components:
- pos: 36.5,-54.5
parent: 2
type: Transform
- - uid: 10672
+ - uid: 10694
components:
- pos: 36.5,-53.5
parent: 2
type: Transform
- - uid: 10673
+ - uid: 10695
components:
- pos: 36.5,-52.5
parent: 2
type: Transform
- - uid: 10674
+ - uid: 10696
components:
- pos: 38.5,-51.5
parent: 2
type: Transform
- - uid: 10675
+ - uid: 10697
components:
- pos: 39.5,-51.5
parent: 2
type: Transform
- - uid: 10676
+ - uid: 10698
components:
- pos: 40.5,-51.5
parent: 2
type: Transform
- - uid: 10677
+ - uid: 10699
components:
- pos: 41.5,-51.5
parent: 2
type: Transform
- - uid: 10678
+ - uid: 10700
components:
- rot: 3.141592653589793 rad
pos: -1.5,-71.5
parent: 2
type: Transform
- - uid: 10679
+ - uid: 10701
components:
- pos: 8.5,-56.5
parent: 2
type: Transform
- - uid: 10680
+ - uid: 10702
components:
- pos: 62.5,-17.5
parent: 2
type: Transform
- - uid: 10681
+ - uid: 10703
components:
- pos: 62.5,-18.5
parent: 2
type: Transform
- - uid: 10682
+ - uid: 10704
components:
- pos: 62.5,-19.5
parent: 2
type: Transform
- - uid: 10683
+ - uid: 10705
components:
- pos: 62.5,-20.5
parent: 2
type: Transform
- - uid: 10684
+ - uid: 10706
components:
- pos: 62.5,-21.5
parent: 2
type: Transform
- - uid: 10685
+ - uid: 10707
components:
- pos: 62.5,-22.5
parent: 2
type: Transform
- - uid: 10686
+ - uid: 10708
components:
- pos: 62.5,-23.5
parent: 2
type: Transform
- - uid: 10687
+ - uid: 10709
components:
- pos: -46.5,-9.5
parent: 2
type: Transform
- - uid: 10688
+ - uid: 10710
components:
- pos: -46.5,-10.5
parent: 2
type: Transform
- - uid: 10689
+ - uid: 10711
components:
- pos: -46.5,-11.5
parent: 2
type: Transform
- - uid: 10690
+ - uid: 10712
components:
- pos: -46.5,-12.5
parent: 2
type: Transform
- - uid: 10691
+ - uid: 10713
components:
- pos: -46.5,-13.5
parent: 2
type: Transform
- - uid: 10692
+ - uid: 10714
components:
- pos: -46.5,-14.5
parent: 2
type: Transform
- - uid: 10693
+ - uid: 10715
components:
- pos: -46.5,-15.5
parent: 2
type: Transform
- - uid: 10694
+ - uid: 10716
components:
- pos: -46.5,-16.5
parent: 2
type: Transform
- - uid: 10695
+ - uid: 10717
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-12.5
parent: 2
type: Transform
- - uid: 10696
+ - uid: 10718
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-13.5
parent: 2
type: Transform
- - uid: 10697
+ - uid: 10719
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-14.5
parent: 2
type: Transform
- - uid: 10698
+ - uid: 10720
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-15.5
parent: 2
type: Transform
- - uid: 10699
+ - uid: 10721
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-16.5
parent: 2
type: Transform
- - uid: 10700
+ - uid: 10722
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-17.5
parent: 2
type: Transform
- - uid: 10701
+ - uid: 10723
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-18.5
parent: 2
type: Transform
- - uid: 10702
+ - uid: 10724
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-19.5
parent: 2
type: Transform
- - uid: 10703
+ - uid: 10725
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-20.5
parent: 2
type: Transform
- - uid: 10704
+ - uid: 10726
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-20.5
parent: 2
type: Transform
- - uid: 10705
+ - uid: 10727
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-20.5
parent: 2
type: Transform
- - uid: 10706
+ - uid: 10728
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-20.5
parent: 2
type: Transform
- - uid: 10707
+ - uid: 10729
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-20.5
parent: 2
type: Transform
- - uid: 10708
+ - uid: 10730
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-20.5
parent: 2
type: Transform
- - uid: 10709
+ - uid: 10731
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-20.5
parent: 2
type: Transform
- - uid: 10710
+ - uid: 10732
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-20.5
parent: 2
type: Transform
- - uid: 10711
+ - uid: 10733
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-20.5
parent: 2
type: Transform
- - uid: 10712
+ - uid: 10734
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-20.5
parent: 2
type: Transform
- - uid: 10713
+ - uid: 10735
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-20.5
parent: 2
type: Transform
- - uid: 10714
+ - uid: 10736
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-20.5
parent: 2
type: Transform
- - uid: 10715
+ - uid: 10737
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-20.5
parent: 2
type: Transform
- - uid: 10716
+ - uid: 10738
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-20.5
parent: 2
type: Transform
- - uid: 10717
+ - uid: 10739
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-20.5
parent: 2
type: Transform
- - uid: 10718
+ - uid: 10740
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-19.5
parent: 2
type: Transform
- - uid: 10719
+ - uid: 10741
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-18.5
parent: 2
type: Transform
- - uid: 10720
+ - uid: 10742
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-17.5
parent: 2
type: Transform
- - uid: 10721
+ - uid: 10743
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-16.5
parent: 2
type: Transform
- - uid: 10722
+ - uid: 10744
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-15.5
parent: 2
type: Transform
- - uid: 10723
+ - uid: 10745
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-14.5
parent: 2
type: Transform
- - uid: 10724
+ - uid: 10746
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-13.5
parent: 2
type: Transform
- - uid: 10725
+ - uid: 10747
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-12.5
parent: 2
type: Transform
- - uid: 10726
+ - uid: 10748
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-11.5
parent: 2
type: Transform
- - uid: 10727
+ - uid: 10749
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-10.5
parent: 2
type: Transform
- - uid: 10728
+ - uid: 10750
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-9.5
parent: 2
type: Transform
- - uid: 10729
+ - uid: 10751
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-8.5
parent: 2
type: Transform
- - uid: 10730
+ - uid: 10752
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-7.5
parent: 2
type: Transform
- - uid: 10731
+ - uid: 10753
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-6.5
parent: 2
type: Transform
- - uid: 10732
+ - uid: 10754
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-6.5
parent: 2
type: Transform
- - uid: 10733
+ - uid: 10755
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-6.5
parent: 2
type: Transform
- - uid: 10734
+ - uid: 10756
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-6.5
parent: 2
type: Transform
- - uid: 10735
+ - uid: 10757
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-6.5
parent: 2
type: Transform
- - uid: 10736
+ - uid: 10758
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-6.5
parent: 2
type: Transform
- - uid: 10737
+ - uid: 10759
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-6.5
parent: 2
type: Transform
- - uid: 10738
+ - uid: 10760
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-6.5
parent: 2
type: Transform
- - uid: 10739
+ - uid: 10761
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-6.5
parent: 2
type: Transform
- - uid: 10740
+ - uid: 10762
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-6.5
parent: 2
type: Transform
- - uid: 10741
+ - uid: 10763
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-6.5
parent: 2
type: Transform
- - uid: 10742
+ - uid: 10764
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-6.5
parent: 2
type: Transform
- - uid: 10743
+ - uid: 10765
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-6.5
parent: 2
type: Transform
- - uid: 10744
+ - uid: 10766
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-6.5
parent: 2
type: Transform
- - uid: 10745
+ - uid: 10767
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-6.5
parent: 2
type: Transform
- - uid: 10746
+ - uid: 10768
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-7.5
parent: 2
type: Transform
- - uid: 10747
+ - uid: 10769
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-8.5
parent: 2
type: Transform
- - uid: 10748
+ - uid: 10770
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-9.5
parent: 2
type: Transform
- - uid: 10749
+ - uid: 10771
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-10.5
parent: 2
type: Transform
- - uid: 10750
+ - uid: 10772
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-11.5
parent: 2
type: Transform
- - uid: 10751
+ - uid: 10773
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-1.5
parent: 2
type: Transform
- - uid: 10752
+ - uid: 10774
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-2.5
parent: 2
type: Transform
- - uid: 10753
+ - uid: 10775
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-3.5
parent: 2
type: Transform
- - uid: 10754
+ - uid: 10776
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-4.5
parent: 2
type: Transform
- - uid: 10755
+ - uid: 10777
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-5.5
parent: 2
type: Transform
- - uid: 10756
+ - uid: 10778
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-6.5
parent: 2
type: Transform
- - uid: 10757
+ - uid: 10779
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-7.5
parent: 2
type: Transform
- - uid: 10758
+ - uid: 10780
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-8.5
parent: 2
type: Transform
- - uid: 10759
+ - uid: 10781
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-9.5
parent: 2
type: Transform
- - uid: 10760
+ - uid: 10782
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-10.5
parent: 2
type: Transform
- - uid: 10761
+ - uid: 10783
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-11.5
parent: 2
type: Transform
- - uid: 10762
+ - uid: 10784
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-15.5
parent: 2
type: Transform
- - uid: 10763
+ - uid: 10785
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-19.5
parent: 2
type: Transform
- - uid: 10764
+ - uid: 10786
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-22.5
parent: 2
type: Transform
- - uid: 10765
+ - uid: 10787
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-26.5
parent: 2
type: Transform
- - uid: 10766
+ - uid: 10788
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-1.5
parent: 2
type: Transform
- - uid: 10767
+ - uid: 10789
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-1.5
parent: 2
type: Transform
- - uid: 10768
+ - uid: 10790
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-1.5
parent: 2
type: Transform
- - uid: 10769
+ - uid: 10791
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-1.5
parent: 2
type: Transform
- - uid: 10770
+ - uid: 10792
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-1.5
parent: 2
type: Transform
- - uid: 10771
+ - uid: 10793
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-1.5
parent: 2
type: Transform
- - uid: 10772
+ - uid: 10794
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-1.5
parent: 2
type: Transform
- - uid: 10773
+ - uid: 10795
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-1.5
parent: 2
type: Transform
- - uid: 10774
+ - uid: 10796
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-1.5
parent: 2
type: Transform
- - uid: 10775
+ - uid: 10797
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-1.5
parent: 2
type: Transform
- - uid: 10776
+ - uid: 10798
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-1.5
parent: 2
type: Transform
- - uid: 10777
+ - uid: 10799
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-1.5
parent: 2
type: Transform
- - uid: 10778
+ - uid: 10800
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-1.5
parent: 2
type: Transform
- - uid: 10779
+ - uid: 10801
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-1.5
parent: 2
type: Transform
- - uid: 10780
+ - uid: 10802
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-1.5
parent: 2
type: Transform
- - uid: 10781
+ - uid: 10803
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-1.5
parent: 2
type: Transform
- - uid: 10782
+ - uid: 10804
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-1.5
parent: 2
type: Transform
- - uid: 10783
+ - uid: 10805
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-1.5
parent: 2
type: Transform
- - uid: 10784
+ - uid: 10806
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-1.5
parent: 2
type: Transform
- - uid: 10785
+ - uid: 10807
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-1.5
parent: 2
type: Transform
- - uid: 10786
+ - uid: 10808
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-1.5
parent: 2
type: Transform
- - uid: 10787
+ - uid: 10809
components:
- pos: -25.5,-58.5
parent: 2
type: Transform
- - uid: 10788
+ - uid: 10810
components:
- pos: -28.5,-66.5
parent: 2
type: Transform
- - uid: 10789
+ - uid: 10811
components:
- pos: -29.5,-66.5
parent: 2
type: Transform
- - uid: 10790
+ - uid: 10812
components:
- pos: -30.5,-66.5
parent: 2
type: Transform
- - uid: 10791
+ - uid: 10813
components:
- pos: -31.5,-66.5
parent: 2
type: Transform
- - uid: 10792
+ - uid: 10814
components:
- pos: -32.5,-66.5
parent: 2
type: Transform
- - uid: 10793
+ - uid: 10815
components:
- pos: -33.5,-66.5
parent: 2
type: Transform
- - uid: 10794
+ - uid: 10816
components:
- pos: -34.5,-66.5
parent: 2
type: Transform
- - uid: 10795
+ - uid: 10817
components:
- pos: -35.5,-66.5
parent: 2
type: Transform
- - uid: 10796
+ - uid: 10818
components:
- pos: -24.5,-51.5
parent: 2
type: Transform
- - uid: 10797
+ - uid: 10819
components:
- pos: -25.5,-51.5
parent: 2
type: Transform
- - uid: 10798
+ - uid: 10820
components:
- pos: -26.5,-51.5
parent: 2
type: Transform
- - uid: 10799
+ - uid: 10821
components:
- pos: -27.5,-51.5
parent: 2
type: Transform
- - uid: 10800
+ - uid: 10822
components:
- pos: -28.5,-51.5
parent: 2
type: Transform
- - uid: 10801
+ - uid: 10823
components:
- pos: -29.5,-51.5
parent: 2
type: Transform
- - uid: 10802
+ - uid: 10824
components:
- pos: -25.5,-41.5
parent: 2
type: Transform
- - uid: 10803
+ - uid: 10825
components:
- pos: -25.5,-42.5
parent: 2
type: Transform
- - uid: 10804
+ - uid: 10826
components:
- pos: -25.5,-43.5
parent: 2
type: Transform
- - uid: 10805
+ - uid: 10827
components:
- pos: -25.5,-44.5
parent: 2
type: Transform
- - uid: 10806
+ - uid: 10828
components:
- pos: -25.5,-45.5
parent: 2
type: Transform
- - uid: 10807
+ - uid: 10829
components:
- pos: -25.5,-46.5
parent: 2
type: Transform
- - uid: 10808
+ - uid: 10830
components:
- pos: -26.5,-46.5
parent: 2
type: Transform
- - uid: 10809
+ - uid: 10831
components:
- pos: -25.5,-47.5
parent: 2
type: Transform
- - uid: 10810
+ - uid: 10832
components:
- pos: -25.5,-47.5
parent: 2
type: Transform
- - uid: 10811
+ - uid: 10833
components:
- pos: -26.5,-47.5
parent: 2
type: Transform
- - uid: 10812
+ - uid: 10834
components:
- pos: -26.5,-39.5
parent: 2
type: Transform
- - uid: 10813
+ - uid: 10835
components:
- pos: -26.5,-40.5
parent: 2
type: Transform
- - uid: 10814
+ - uid: 10836
components:
- pos: -25.5,-40.5
parent: 2
type: Transform
- - uid: 10815
+ - uid: 10837
components:
- pos: -25.5,-39.5
parent: 2
type: Transform
- - uid: 10816
+ - uid: 10838
components:
- pos: -47.5,-67.5
parent: 2
type: Transform
- - uid: 10817
+ - uid: 10839
components:
- pos: -47.5,-66.5
parent: 2
type: Transform
- - uid: 10818
+ - uid: 10840
components:
- pos: -47.5,-68.5
parent: 2
type: Transform
- - uid: 10819
+ - uid: 10841
components:
- pos: -46.5,-66.5
parent: 2
type: Transform
- - uid: 10820
+ - uid: 10842
components:
- pos: -46.5,-67.5
parent: 2
type: Transform
- - uid: 10821
+ - uid: 10843
components:
- pos: -46.5,-68.5
parent: 2
type: Transform
- - uid: 10822
+ - uid: 10844
components:
- pos: 46.5,-11.5
parent: 2
type: Transform
- - uid: 10823
+ - uid: 10845
components:
- pos: 45.5,-11.5
parent: 2
type: Transform
- - uid: 10824
+ - uid: 10846
components:
- pos: 44.5,-11.5
parent: 2
type: Transform
- - uid: 10825
+ - uid: 10847
components:
- pos: 43.5,-11.5
parent: 2
type: Transform
- - uid: 10826
+ - uid: 10848
components:
- pos: 42.5,-11.5
parent: 2
type: Transform
- - uid: 10827
+ - uid: 10849
components:
- pos: 40.5,-7.5
parent: 2
type: Transform
- - uid: 10828
+ - uid: 10850
components:
- pos: 40.5,-8.5
parent: 2
type: Transform
- - uid: 10829
+ - uid: 10851
components:
- pos: 40.5,-9.5
parent: 2
type: Transform
- - uid: 10830
+ - uid: 10852
components:
- pos: 40.5,-10.5
parent: 2
type: Transform
- - uid: 10831
+ - uid: 10853
components:
- pos: 40.5,-11.5
parent: 2
type: Transform
- - uid: 10832
+ - uid: 10854
components:
- pos: 30.5,-8.5
parent: 2
type: Transform
- - uid: 10833
+ - uid: 10855
components:
- pos: 31.5,-8.5
parent: 2
type: Transform
- - uid: 10834
+ - uid: 10856
components:
- pos: 33.5,-8.5
parent: 2
type: Transform
- - uid: 10835
+ - uid: 10857
components:
- pos: 34.5,-8.5
parent: 2
type: Transform
- - uid: 10836
+ - uid: 10858
components:
- pos: 35.5,-8.5
parent: 2
type: Transform
- - uid: 10837
+ - uid: 10859
components:
- pos: 30.5,-13.5
parent: 2
type: Transform
- - uid: 10838
+ - uid: 10860
components:
- pos: 37.5,-8.5
parent: 2
type: Transform
- - uid: 10839
+ - uid: 10861
components:
- pos: -46.5,-42.5
parent: 2
type: Transform
- - uid: 10840
+ - uid: 10862
components:
- pos: -20.5,-52.5
parent: 2
type: Transform
- - uid: 10841
+ - uid: 10863
components:
- pos: -37.5,-21.5
parent: 2
type: Transform
- - uid: 10842
+ - uid: 10864
components:
- pos: -37.5,-22.5
parent: 2
type: Transform
- - uid: 10843
+ - uid: 10865
components:
- pos: -37.5,-23.5
parent: 2
type: Transform
- - uid: 10844
+ - uid: 10866
components:
- pos: -37.5,-24.5
parent: 2
type: Transform
- - uid: 10845
+ - uid: 10867
components:
- pos: -43.5,-26.5
parent: 2
type: Transform
- - uid: 10846
+ - uid: 10868
components:
- pos: -42.5,-26.5
parent: 2
type: Transform
- - uid: 10847
+ - uid: 10869
components:
- pos: -41.5,-26.5
parent: 2
type: Transform
- - uid: 10848
+ - uid: 10870
components:
- pos: -40.5,-26.5
parent: 2
type: Transform
- - uid: 10849
+ - uid: 10871
components:
- pos: -39.5,-26.5
parent: 2
type: Transform
- - uid: 10850
+ - uid: 10872
components:
- pos: -38.5,-26.5
parent: 2
type: Transform
- - uid: 10851
+ - uid: 10873
components:
- pos: -48.5,-32.5
parent: 2
type: Transform
- - uid: 10852
+ - uid: 10874
components:
- pos: -52.5,-32.5
parent: 2
type: Transform
- - uid: 10853
+ - uid: 10875
components:
- pos: 69.5,3.5
parent: 2
type: Transform
- - uid: 10854
+ - uid: 10876
components:
- pos: -2.5,29.5
parent: 2
type: Transform
- - uid: 10855
+ - uid: 10877
components:
- rot: 3.141592653589793 rad
pos: 14.5,32.5
parent: 2
type: Transform
- - uid: 10856
+ - uid: 10878
components:
- rot: 3.141592653589793 rad
pos: 13.5,32.5
parent: 2
type: Transform
- - uid: 10857
+ - uid: 10879
components:
- rot: 3.141592653589793 rad
pos: 2.5,32.5
parent: 2
type: Transform
- - uid: 10858
+ - uid: 10880
components:
- rot: 3.141592653589793 rad
pos: 19.5,25.5
parent: 2
type: Transform
- - uid: 10859
+ - uid: 10881
components:
- rot: 3.141592653589793 rad
pos: 18.5,25.5
parent: 2
type: Transform
- - uid: 10860
+ - uid: 10882
components:
- rot: 3.141592653589793 rad
pos: 17.5,25.5
parent: 2
type: Transform
- - uid: 10861
+ - uid: 10883
components:
- rot: 3.141592653589793 rad
pos: 16.5,25.5
parent: 2
type: Transform
- - uid: 10862
+ - uid: 10884
components:
- rot: 3.141592653589793 rad
pos: 15.5,25.5
parent: 2
type: Transform
- - uid: 10863
+ - uid: 10885
components:
- rot: 3.141592653589793 rad
pos: 14.5,25.5
parent: 2
type: Transform
- - uid: 10864
+ - uid: 10886
components:
- rot: 3.141592653589793 rad
pos: 13.5,25.5
parent: 2
type: Transform
- - uid: 10865
+ - uid: 10887
components:
- rot: 3.141592653589793 rad
pos: 16.5,27.5
parent: 2
type: Transform
- - uid: 10866
+ - uid: 10888
components:
- rot: 3.141592653589793 rad
pos: 16.5,26.5
parent: 2
type: Transform
- - uid: 10867
+ - uid: 10889
components:
- rot: 3.141592653589793 rad
pos: 8.5,24.5
parent: 2
type: Transform
- - uid: 10868
+ - uid: 10890
components:
- rot: 3.141592653589793 rad
pos: 7.5,24.5
parent: 2
type: Transform
- - uid: 10869
+ - uid: 10891
components:
- rot: 3.141592653589793 rad
pos: 6.5,24.5
parent: 2
type: Transform
- - uid: 10870
+ - uid: 10892
components:
- rot: 3.141592653589793 rad
pos: 5.5,24.5
parent: 2
type: Transform
- - uid: 10871
+ - uid: 10893
components:
- rot: 3.141592653589793 rad
pos: 4.5,24.5
parent: 2
type: Transform
- - uid: 10872
+ - uid: 10894
components:
- rot: 3.141592653589793 rad
pos: 3.5,24.5
parent: 2
type: Transform
- - uid: 10873
+ - uid: 10895
components:
- rot: 3.141592653589793 rad
pos: 2.5,24.5
parent: 2
type: Transform
- - uid: 10874
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,24.5
- parent: 2
- type: Transform
- - uid: 10875
+ - uid: 10896
components:
- rot: 3.141592653589793 rad
pos: 0.5,24.5
parent: 2
type: Transform
- - uid: 10876
+ - uid: 10897
components:
- rot: 3.141592653589793 rad
pos: -3.5,23.5
parent: 2
type: Transform
- - uid: 10877
+ - uid: 10898
components:
- rot: 3.141592653589793 rad
pos: -4.5,23.5
parent: 2
type: Transform
- - uid: 10878
+ - uid: 10899
components:
- rot: 3.141592653589793 rad
pos: -5.5,23.5
parent: 2
type: Transform
- - uid: 10879
+ - uid: 10900
components:
- rot: 3.141592653589793 rad
pos: -6.5,23.5
parent: 2
type: Transform
- - uid: 10880
+ - uid: 10901
components:
- rot: 3.141592653589793 rad
pos: -7.5,23.5
parent: 2
type: Transform
- - uid: 10881
+ - uid: 10902
components:
- pos: -11.5,18.5
parent: 2
type: Transform
- - uid: 10882
+ - uid: 10903
components:
- pos: -11.5,15.5
parent: 2
type: Transform
- - uid: 10883
+ - uid: 10904
components:
- pos: -12.5,24.5
parent: 2
type: Transform
- - uid: 10884
+ - uid: 10905
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-24.5
parent: 2
type: Transform
- - uid: 10885
+ - uid: 10906
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-23.5
parent: 2
type: Transform
- - uid: 10886
+ - uid: 10907
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-22.5
parent: 2
type: Transform
- - uid: 10887
+ - uid: 10908
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-21.5
parent: 2
type: Transform
- - uid: 10888
+ - uid: 10909
components:
- pos: 67.5,-18.5
parent: 2
type: Transform
- - uid: 10889
+ - uid: 10910
components:
- pos: -45.5,46.5
parent: 2
type: Transform
- - uid: 10890
+ - uid: 10911
components:
- pos: -45.5,47.5
parent: 2
type: Transform
- - uid: 10891
+ - uid: 10912
components:
- pos: -45.5,48.5
parent: 2
type: Transform
- - uid: 10892
+ - uid: 10913
components:
- pos: -45.5,49.5
parent: 2
type: Transform
- - uid: 10893
+ - uid: 10914
components:
- rot: -1.5707963267948966 rad
pos: -41.5,46.5
parent: 2
type: Transform
- - uid: 10894
+ - uid: 10915
components:
- rot: -1.5707963267948966 rad
pos: -42.5,46.5
parent: 2
type: Transform
- - uid: 10895
+ - uid: 10916
components:
- rot: -1.5707963267948966 rad
pos: -43.5,46.5
parent: 2
type: Transform
- - uid: 10896
+ - uid: 10917
components:
- rot: -1.5707963267948966 rad
pos: -44.5,46.5
parent: 2
type: Transform
- - uid: 10897
+ - uid: 10918
components:
- pos: -40.5,45.5
parent: 2
type: Transform
- - uid: 10898
+ - uid: 10919
components:
- pos: -39.5,45.5
parent: 2
type: Transform
- - uid: 10899
+ - uid: 10920
components:
- pos: -38.5,45.5
parent: 2
type: Transform
- - uid: 10900
+ - uid: 10921
components:
- pos: -40.5,46.5
parent: 2
type: Transform
- - uid: 10901
+ - uid: 10922
components:
- pos: -40.5,47.5
parent: 2
type: Transform
- - uid: 10902
+ - uid: 10923
components:
- pos: -40.5,48.5
parent: 2
type: Transform
- - uid: 10903
+ - uid: 10924
components:
- pos: -40.5,49.5
parent: 2
type: Transform
- - uid: 10904
+ - uid: 10925
components:
- pos: -40.5,50.5
parent: 2
type: Transform
- - uid: 10905
+ - uid: 10926
components:
- pos: -40.5,51.5
parent: 2
type: Transform
- - uid: 10906
+ - uid: 10927
components:
- pos: -40.5,52.5
parent: 2
type: Transform
- - uid: 10907
+ - uid: 10928
components:
- pos: -40.5,53.5
parent: 2
type: Transform
- - uid: 10908
+ - uid: 10929
components:
- pos: -48.5,53.5
parent: 2
type: Transform
- - uid: 10909
+ - uid: 10930
components:
- pos: -47.5,53.5
parent: 2
type: Transform
- - uid: 10910
+ - uid: 10931
components:
- pos: -46.5,53.5
parent: 2
type: Transform
- - uid: 10911
+ - uid: 10932
components:
- pos: -45.5,53.5
parent: 2
type: Transform
- - uid: 10912
+ - uid: 10933
components:
- pos: -44.5,53.5
parent: 2
type: Transform
- - uid: 10913
+ - uid: 10934
components:
- pos: -43.5,53.5
parent: 2
type: Transform
- - uid: 10914
+ - uid: 10935
components:
- pos: -42.5,53.5
parent: 2
type: Transform
- - uid: 10915
+ - uid: 10936
components:
- pos: -41.5,53.5
parent: 2
type: Transform
- - uid: 10916
+ - uid: 10937
components:
- pos: -40.5,53.5
parent: 2
type: Transform
- - uid: 10917
+ - uid: 10938
components:
- pos: -39.5,53.5
parent: 2
type: Transform
- - uid: 10918
+ - uid: 10939
components:
- pos: -49.5,0.5
parent: 2
type: Transform
- - uid: 10919
+ - uid: 10940
components:
- pos: -49.5,-0.5
parent: 2
type: Transform
- - uid: 10920
+ - uid: 10941
components:
- pos: -49.5,-1.5
parent: 2
type: Transform
- - uid: 10921
+ - uid: 10942
components:
- pos: -49.5,-2.5
parent: 2
type: Transform
- - uid: 10922
+ - uid: 10943
components:
- pos: -49.5,-3.5
parent: 2
type: Transform
- - uid: 10923
+ - uid: 10944
components:
- pos: -50.5,-3.5
parent: 2
type: Transform
- - uid: 10924
+ - uid: 10945
components:
- pos: -51.5,-3.5
parent: 2
type: Transform
- - uid: 10925
+ - uid: 10946
components:
- pos: -51.5,-2.5
parent: 2
type: Transform
- - uid: 10926
+ - uid: 10947
components:
- pos: -51.5,-1.5
parent: 2
type: Transform
- - uid: 10927
+ - uid: 10948
components:
- pos: -51.5,-0.5
parent: 2
type: Transform
- - uid: 10928
+ - uid: 10949
components:
- pos: -51.5,0.5
parent: 2
type: Transform
- - uid: 10929
+ - uid: 10950
components:
- pos: -51.5,1.5
parent: 2
type: Transform
- - uid: 10930
+ - uid: 10951
components:
- pos: -38.5,-2.5
parent: 2
type: Transform
- - uid: 10931
+ - uid: 10952
components:
- pos: -37.5,-2.5
parent: 2
type: Transform
- - uid: 10932
+ - uid: 10953
components:
- pos: -36.5,-2.5
parent: 2
type: Transform
- - uid: 10933
+ - uid: 10954
components:
- rot: -1.5707963267948966 rad
pos: -38.5,53.5
parent: 2
type: Transform
- - uid: 10934
+ - uid: 10955
components:
- rot: -1.5707963267948966 rad
pos: -37.5,53.5
parent: 2
type: Transform
- - uid: 10935
+ - uid: 10956
components:
- rot: -1.5707963267948966 rad
pos: -36.5,53.5
parent: 2
type: Transform
- - uid: 10936
+ - uid: 10957
components:
- rot: -1.5707963267948966 rad
pos: -35.5,53.5
parent: 2
type: Transform
- - uid: 10937
+ - uid: 10958
components:
- rot: -1.5707963267948966 rad
pos: -34.5,53.5
parent: 2
type: Transform
- - uid: 10938
+ - uid: 10959
components:
- rot: -1.5707963267948966 rad
pos: -33.5,53.5
parent: 2
type: Transform
- - uid: 10939
+ - uid: 10960
components:
- rot: -1.5707963267948966 rad
pos: -33.5,54.5
parent: 2
type: Transform
- - uid: 10940
+ - uid: 10961
components:
- rot: -1.5707963267948966 rad
pos: -33.5,55.5
parent: 2
type: Transform
- - uid: 10941
+ - uid: 10962
components:
- rot: -1.5707963267948966 rad
pos: -33.5,56.5
parent: 2
type: Transform
- - uid: 10942
+ - uid: 10963
components:
- rot: -1.5707963267948966 rad
pos: -33.5,57.5
parent: 2
type: Transform
- - uid: 10943
+ - uid: 10964
components:
- rot: -1.5707963267948966 rad
pos: -33.5,58.5
parent: 2
type: Transform
- - uid: 10944
+ - uid: 10965
components:
- rot: -1.5707963267948966 rad
pos: -33.5,59.5
parent: 2
type: Transform
- - uid: 10945
+ - uid: 10966
components:
- rot: -1.5707963267948966 rad
pos: -33.5,60.5
parent: 2
type: Transform
- - uid: 10946
+ - uid: 10967
components:
- rot: -1.5707963267948966 rad
pos: -33.5,61.5
parent: 2
type: Transform
- - uid: 10947
+ - uid: 10968
components:
- rot: -1.5707963267948966 rad
pos: -33.5,62.5
parent: 2
type: Transform
- - uid: 10948
+ - uid: 10969
components:
- rot: -1.5707963267948966 rad
pos: -33.5,63.5
parent: 2
type: Transform
- - uid: 10949
+ - uid: 10970
components:
- rot: -1.5707963267948966 rad
pos: -33.5,64.5
parent: 2
type: Transform
- - uid: 10950
+ - uid: 10971
components:
- rot: -1.5707963267948966 rad
pos: -33.5,65.5
parent: 2
type: Transform
- - uid: 10951
+ - uid: 10972
components:
- rot: -1.5707963267948966 rad
pos: -33.5,66.5
parent: 2
type: Transform
- - uid: 10952
+ - uid: 10973
components:
- rot: -1.5707963267948966 rad
pos: -33.5,67.5
parent: 2
type: Transform
- - uid: 10953
+ - uid: 10974
components:
- rot: -1.5707963267948966 rad
pos: -33.5,68.5
parent: 2
type: Transform
- - uid: 10954
+ - uid: 10975
components:
- rot: -1.5707963267948966 rad
pos: -33.5,69.5
parent: 2
type: Transform
- - uid: 10955
+ - uid: 10976
components:
- rot: -1.5707963267948966 rad
pos: -33.5,70.5
parent: 2
type: Transform
- - uid: 10956
+ - uid: 10977
components:
- rot: -1.5707963267948966 rad
pos: -33.5,71.5
parent: 2
type: Transform
- - uid: 10957
+ - uid: 10978
components:
- rot: -1.5707963267948966 rad
pos: -33.5,72.5
parent: 2
type: Transform
- - uid: 10958
+ - uid: 10979
components:
- rot: -1.5707963267948966 rad
pos: -34.5,72.5
parent: 2
type: Transform
- - uid: 10959
+ - uid: 10980
components:
- rot: -1.5707963267948966 rad
pos: -35.5,72.5
parent: 2
type: Transform
- - uid: 10960
+ - uid: 10981
components:
- rot: -1.5707963267948966 rad
pos: -36.5,72.5
parent: 2
type: Transform
- - uid: 10961
+ - uid: 10982
components:
- rot: -1.5707963267948966 rad
pos: -37.5,72.5
parent: 2
type: Transform
- - uid: 10962
+ - uid: 10983
components:
- rot: -1.5707963267948966 rad
pos: -38.5,72.5
parent: 2
type: Transform
- - uid: 10963
+ - uid: 10984
components:
- rot: -1.5707963267948966 rad
pos: -39.5,72.5
parent: 2
type: Transform
- - uid: 10964
+ - uid: 10985
components:
- rot: -1.5707963267948966 rad
pos: -40.5,72.5
parent: 2
type: Transform
- - uid: 10965
+ - uid: 10986
components:
- rot: -1.5707963267948966 rad
pos: -41.5,72.5
parent: 2
type: Transform
- - uid: 10966
+ - uid: 10987
components:
- rot: -1.5707963267948966 rad
pos: -42.5,72.5
parent: 2
type: Transform
- - uid: 10967
+ - uid: 10988
components:
- rot: -1.5707963267948966 rad
pos: -43.5,72.5
parent: 2
type: Transform
- - uid: 10968
+ - uid: 10989
components:
- rot: -1.5707963267948966 rad
pos: -44.5,72.5
parent: 2
type: Transform
- - uid: 10969
+ - uid: 10990
components:
- rot: -1.5707963267948966 rad
pos: -45.5,72.5
parent: 2
type: Transform
- - uid: 10970
+ - uid: 10991
components:
- rot: -1.5707963267948966 rad
pos: -46.5,72.5
parent: 2
type: Transform
- - uid: 10971
+ - uid: 10992
components:
- rot: -1.5707963267948966 rad
pos: -47.5,72.5
parent: 2
type: Transform
- - uid: 10972
+ - uid: 10993
components:
- rot: -1.5707963267948966 rad
pos: -48.5,72.5
parent: 2
type: Transform
- - uid: 10973
+ - uid: 10994
components:
- rot: -1.5707963267948966 rad
pos: -49.5,72.5
parent: 2
type: Transform
- - uid: 10974
+ - uid: 10995
components:
- rot: -1.5707963267948966 rad
pos: -50.5,72.5
parent: 2
type: Transform
- - uid: 10975
+ - uid: 10996
components:
- rot: -1.5707963267948966 rad
pos: -51.5,72.5
parent: 2
type: Transform
- - uid: 10976
+ - uid: 10997
components:
- rot: -1.5707963267948966 rad
pos: -52.5,72.5
parent: 2
type: Transform
- - uid: 10977
+ - uid: 10998
components:
- rot: -1.5707963267948966 rad
pos: -53.5,72.5
parent: 2
type: Transform
- - uid: 10978
+ - uid: 10999
components:
- rot: -1.5707963267948966 rad
pos: -54.5,72.5
parent: 2
type: Transform
- - uid: 10979
+ - uid: 11000
components:
- rot: -1.5707963267948966 rad
pos: -55.5,72.5
parent: 2
type: Transform
- - uid: 10980
+ - uid: 11001
components:
- rot: -1.5707963267948966 rad
pos: -56.5,72.5
parent: 2
type: Transform
- - uid: 10981
+ - uid: 11002
components:
- rot: -1.5707963267948966 rad
pos: -57.5,72.5
parent: 2
type: Transform
- - uid: 10982
+ - uid: 11003
components:
- rot: -1.5707963267948966 rad
pos: -58.5,72.5
parent: 2
type: Transform
- - uid: 10983
+ - uid: 11004
components:
- rot: -1.5707963267948966 rad
pos: -59.5,72.5
parent: 2
type: Transform
- - uid: 10984
+ - uid: 11005
components:
- rot: -1.5707963267948966 rad
pos: -60.5,72.5
parent: 2
type: Transform
- - uid: 10985
+ - uid: 11006
components:
- rot: -1.5707963267948966 rad
pos: -61.5,72.5
parent: 2
type: Transform
- - uid: 10986
+ - uid: 11007
components:
- rot: -1.5707963267948966 rad
pos: -61.5,71.5
parent: 2
type: Transform
- - uid: 10987
+ - uid: 11008
components:
- rot: -1.5707963267948966 rad
pos: -61.5,70.5
parent: 2
type: Transform
- - uid: 10988
+ - uid: 11009
components:
- rot: -1.5707963267948966 rad
pos: -61.5,69.5
parent: 2
type: Transform
- - uid: 10989
+ - uid: 11010
components:
- rot: -1.5707963267948966 rad
pos: -61.5,68.5
parent: 2
type: Transform
- - uid: 10990
+ - uid: 11011
components:
- rot: -1.5707963267948966 rad
pos: -61.5,67.5
parent: 2
type: Transform
- - uid: 10991
+ - uid: 11012
components:
- rot: -1.5707963267948966 rad
pos: -61.5,66.5
parent: 2
type: Transform
- - uid: 10992
+ - uid: 11013
components:
- rot: -1.5707963267948966 rad
pos: -61.5,65.5
parent: 2
type: Transform
- - uid: 10993
+ - uid: 11014
components:
- rot: -1.5707963267948966 rad
pos: -61.5,64.5
parent: 2
type: Transform
- - uid: 10994
+ - uid: 11015
components:
- rot: -1.5707963267948966 rad
pos: -61.5,63.5
parent: 2
type: Transform
- - uid: 10995
+ - uid: 11016
components:
- rot: -1.5707963267948966 rad
pos: -61.5,62.5
parent: 2
type: Transform
- - uid: 10996
+ - uid: 11017
components:
- rot: -1.5707963267948966 rad
pos: -61.5,61.5
parent: 2
type: Transform
- - uid: 10997
+ - uid: 11018
components:
- rot: -1.5707963267948966 rad
pos: -61.5,60.5
parent: 2
type: Transform
- - uid: 10998
+ - uid: 11019
components:
- rot: -1.5707963267948966 rad
pos: -61.5,59.5
parent: 2
type: Transform
- - uid: 10999
+ - uid: 11020
components:
- rot: -1.5707963267948966 rad
pos: -61.5,58.5
parent: 2
type: Transform
- - uid: 11000
+ - uid: 11021
components:
- rot: -1.5707963267948966 rad
pos: -61.5,57.5
parent: 2
type: Transform
- - uid: 11001
+ - uid: 11022
components:
- rot: -1.5707963267948966 rad
pos: -61.5,56.5
parent: 2
type: Transform
- - uid: 11002
+ - uid: 11023
components:
- rot: 1.5707963267948966 rad
pos: -53.5,53.5
parent: 2
type: Transform
- - uid: 11003
+ - uid: 11024
components:
- rot: 1.5707963267948966 rad
pos: -53.5,54.5
parent: 2
type: Transform
- - uid: 11004
+ - uid: 11025
components:
- rot: 1.5707963267948966 rad
pos: -53.5,55.5
parent: 2
type: Transform
- - uid: 11005
+ - uid: 11026
components:
- rot: 1.5707963267948966 rad
pos: -54.5,56.5
parent: 2
type: Transform
- - uid: 11006
+ - uid: 11027
components:
- rot: 1.5707963267948966 rad
pos: -56.5,56.5
parent: 2
type: Transform
- - uid: 11007
+ - uid: 11028
components:
- rot: 1.5707963267948966 rad
pos: -58.5,56.5
parent: 2
type: Transform
- - uid: 11008
+ - uid: 11029
components:
- rot: 1.5707963267948966 rad
pos: -60.5,56.5
parent: 2
type: Transform
- - uid: 11009
+ - uid: 11030
components:
- rot: -1.5707963267948966 rad
pos: -52.5,53.5
parent: 2
type: Transform
- - uid: 11010
+ - uid: 11031
components:
- rot: -1.5707963267948966 rad
pos: -51.5,53.5
parent: 2
type: Transform
- - uid: 11011
+ - uid: 11032
components:
- rot: -1.5707963267948966 rad
pos: -50.5,53.5
parent: 2
type: Transform
- - uid: 11012
+ - uid: 11033
components:
- rot: -1.5707963267948966 rad
pos: -49.5,53.5
parent: 2
type: Transform
- - uid: 11013
+ - uid: 11034
components:
- pos: 12.5,-92.5
parent: 2
type: Transform
- - uid: 11014
+ - uid: 11035
components:
- pos: 11.5,-99.5
parent: 2
type: Transform
- - uid: 11015
+ - uid: 11036
components:
- rot: 3.141592653589793 rad
pos: 1.5,-71.5
parent: 2
type: Transform
- - uid: 11016
+ - uid: 11037
components:
- rot: 3.141592653589793 rad
pos: 2.5,-67.5
parent: 2
type: Transform
- - uid: 11017
+ - uid: 11038
components:
- rot: 3.141592653589793 rad
pos: 3.5,-71.5
parent: 2
type: Transform
- - uid: 11018
+ - uid: 11039
components:
- rot: 3.141592653589793 rad
pos: 4.5,-71.5
parent: 2
type: Transform
- - uid: 11019
+ - uid: 11040
components:
- rot: 3.141592653589793 rad
pos: 2.5,-68.5
parent: 2
type: Transform
- - uid: 11020
+ - uid: 11041
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-25.5
parent: 2
type: Transform
- - uid: 11021
+ - uid: 11042
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-24.5
parent: 2
type: Transform
- - uid: 11022
+ - uid: 11043
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-23.5
parent: 2
type: Transform
- - uid: 11023
+ - uid: 11044
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-21.5
parent: 2
type: Transform
- - uid: 11024
+ - uid: 11045
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-20.5
parent: 2
type: Transform
- - uid: 11025
+ - uid: 11046
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-18.5
parent: 2
type: Transform
- - uid: 11026
+ - uid: 11047
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-17.5
parent: 2
type: Transform
- - uid: 11027
+ - uid: 11048
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-16.5
parent: 2
type: Transform
- - uid: 11028
+ - uid: 11049
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-14.5
parent: 2
type: Transform
- - uid: 11029
+ - uid: 11050
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-12.5
parent: 2
type: Transform
- - uid: 11030
+ - uid: 11051
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-13.5
parent: 2
type: Transform
- - uid: 11031
+ - uid: 11052
components:
- pos: -13.5,-8.5
parent: 2
type: Transform
- - uid: 11032
+ - uid: 11053
components:
- rot: 3.141592653589793 rad
pos: 23.5,-89.5
parent: 2
type: Transform
- - uid: 11033
+ - uid: 11054
components:
- pos: 36.5,23.5
parent: 2
type: Transform
- - uid: 11034
+ - uid: 11055
components:
- pos: 37.5,23.5
parent: 2
type: Transform
- - uid: 11035
+ - uid: 11056
components:
- pos: 38.5,23.5
parent: 2
type: Transform
- - uid: 11036
+ - uid: 11057
components:
- pos: 39.5,23.5
parent: 2
type: Transform
- - uid: 11037
+ - uid: 11058
components:
- pos: 40.5,23.5
parent: 2
type: Transform
- - uid: 11038
+ - uid: 11059
components:
- pos: 41.5,23.5
parent: 2
type: Transform
- - uid: 11039
+ - uid: 11060
components:
- pos: 42.5,23.5
parent: 2
type: Transform
- - uid: 11040
+ - uid: 11061
components:
- pos: 35.5,23.5
parent: 2
type: Transform
- - uid: 11041
+ - uid: 11062
components:
- pos: 43.5,23.5
parent: 2
type: Transform
- - uid: 11042
+ - uid: 11063
components:
- pos: 46.5,26.5
parent: 2
type: Transform
- - uid: 11043
+ - uid: 11064
components:
- pos: 47.5,26.5
parent: 2
type: Transform
- - uid: 11044
+ - uid: 11065
components:
- pos: 48.5,26.5
parent: 2
type: Transform
- - uid: 11045
+ - uid: 11066
components:
- pos: 11.5,-97.5
parent: 2
type: Transform
- - uid: 11046
+ - uid: 11067
components:
- pos: 11.5,-93.5
parent: 2
type: Transform
- - uid: 11047
+ - uid: 11068
components:
- pos: 11.5,-94.5
parent: 2
type: Transform
- - uid: 11048
+ - uid: 11069
components:
- pos: 11.5,-95.5
parent: 2
type: Transform
- - uid: 11049
+ - uid: 11070
components:
- pos: 11.5,-98.5
parent: 2
type: Transform
- - uid: 11050
+ - uid: 11071
components:
- pos: 11.5,-96.5
parent: 2
type: Transform
- - uid: 11051
+ - uid: 11072
components:
- pos: 11.5,-104.5
parent: 2
type: Transform
- - uid: 11052
+ - uid: 11073
components:
- pos: 11.5,-103.5
parent: 2
type: Transform
- - uid: 11053
+ - uid: 11074
components:
- pos: 11.5,-102.5
parent: 2
type: Transform
- - uid: 11054
+ - uid: 11075
components:
- pos: 11.5,-101.5
parent: 2
type: Transform
- - uid: 11055
+ - uid: 11076
components:
- rot: 3.141592653589793 rad
pos: 19.5,-53.5
parent: 2
type: Transform
- - uid: 11056
+ - uid: 11077
components:
- rot: 3.141592653589793 rad
pos: 18.5,-53.5
parent: 2
type: Transform
- - uid: 11057
+ - uid: 11078
components:
- rot: 3.141592653589793 rad
pos: 22.5,-53.5
parent: 2
type: Transform
- - uid: 11058
+ - uid: 11079
components:
- pos: -79.5,-27.5
parent: 2
type: Transform
- - uid: 11059
+ - uid: 11080
components:
- pos: -79.5,-28.5
parent: 2
type: Transform
- - uid: 11060
+ - uid: 11081
components:
- pos: -79.5,-29.5
parent: 2
type: Transform
- - uid: 11061
+ - uid: 11082
components:
- pos: -79.5,-30.5
parent: 2
type: Transform
- - uid: 11062
+ - uid: 11083
components:
- pos: -79.5,-31.5
parent: 2
type: Transform
- - uid: 11063
+ - uid: 11084
components:
- pos: -61.5,-55.5
parent: 2
type: Transform
- - uid: 11064
+ - uid: 11085
components:
- pos: -18.5,-52.5
parent: 2
type: Transform
- - uid: 11065
+ - uid: 11086
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-60.5
parent: 2
type: Transform
- - uid: 11066
+ - uid: 11087
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-61.5
parent: 2
type: Transform
- - uid: 11067
+ - uid: 11088
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-62.5
parent: 2
type: Transform
- - uid: 11068
+ - uid: 11089
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-63.5
parent: 2
type: Transform
- - uid: 11069
+ - uid: 11090
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-64.5
parent: 2
type: Transform
- - uid: 11070
+ - uid: 11091
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-67.5
parent: 2
type: Transform
- - uid: 11071
+ - uid: 11092
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-67.5
parent: 2
type: Transform
- - uid: 11072
+ - uid: 11093
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-67.5
parent: 2
type: Transform
- - uid: 11073
+ - uid: 11094
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-67.5
parent: 2
type: Transform
- - uid: 11074
+ - uid: 11095
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-67.5
parent: 2
type: Transform
- - uid: 11075
+ - uid: 11096
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-67.5
parent: 2
type: Transform
- - uid: 11076
+ - uid: 11097
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-67.5
parent: 2
type: Transform
- - uid: 11077
+ - uid: 11098
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-13.5
parent: 2
type: Transform
- - uid: 11078
+ - uid: 11099
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-13.5
parent: 2
type: Transform
- - uid: 11079
+ - uid: 11100
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-13.5
parent: 2
type: Transform
- - uid: 11080
+ - uid: 11101
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-13.5
parent: 2
type: Transform
- - uid: 11081
+ - uid: 11102
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-13.5
parent: 2
type: Transform
- - uid: 11082
+ - uid: 11103
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-13.5
parent: 2
type: Transform
- - uid: 11083
+ - uid: 11104
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-13.5
parent: 2
type: Transform
- - uid: 11084
+ - uid: 11105
components:
- pos: 49.5,26.5
parent: 2
type: Transform
- - uid: 11085
+ - uid: 11106
components:
- pos: 50.5,26.5
parent: 2
type: Transform
- - uid: 11086
+ - uid: 11107
components:
- pos: 51.5,26.5
parent: 2
type: Transform
- - uid: 11087
+ - uid: 11108
components:
- pos: 52.5,26.5
parent: 2
type: Transform
- - uid: 11088
+ - uid: 11109
components:
- pos: 53.5,26.5
parent: 2
type: Transform
- - uid: 11089
+ - uid: 11110
components:
- rot: 3.141592653589793 rad
pos: 49.5,38.5
parent: 2
type: Transform
- - uid: 11090
+ - uid: 11111
components:
- rot: 3.141592653589793 rad
pos: 49.5,37.5
parent: 2
type: Transform
- - uid: 11091
+ - uid: 11112
components:
- rot: 3.141592653589793 rad
pos: 49.5,36.5
parent: 2
type: Transform
- - uid: 11092
+ - uid: 11113
components:
- rot: 3.141592653589793 rad
pos: 49.5,35.5
parent: 2
type: Transform
- - uid: 11093
+ - uid: 11114
components:
- rot: 3.141592653589793 rad
pos: 48.5,35.5
parent: 2
type: Transform
- - uid: 11094
+ - uid: 11115
components:
- rot: 3.141592653589793 rad
pos: 47.5,35.5
parent: 2
type: Transform
- - uid: 11095
+ - uid: 11116
components:
- rot: 3.141592653589793 rad
pos: 52.5,31.5
parent: 2
type: Transform
- - uid: 11096
+ - uid: 11117
components:
- rot: 3.141592653589793 rad
pos: 52.5,32.5
parent: 2
type: Transform
- - uid: 11097
+ - uid: 11118
components:
- rot: 3.141592653589793 rad
pos: 52.5,33.5
parent: 2
type: Transform
- - uid: 11098
+ - uid: 11119
components:
- pos: 81.5,36.5
parent: 2
type: Transform
- - uid: 11099
+ - uid: 11120
components:
- pos: 80.5,36.5
parent: 2
type: Transform
- - uid: 11100
+ - uid: 11121
components:
- pos: 86.5,36.5
parent: 2
type: Transform
- - uid: 11101
+ - uid: 11122
components:
- pos: 87.5,36.5
parent: 2
type: Transform
- - uid: 11102
+ - uid: 11123
components:
- pos: 79.5,36.5
parent: 2
type: Transform
- - uid: 11103
+ - uid: 11124
components:
- pos: 78.5,36.5
parent: 2
type: Transform
- - uid: 11104
+ - uid: 11125
components:
- pos: 88.5,36.5
parent: 2
type: Transform
- - uid: 11105
+ - uid: 11126
components:
- pos: 82.5,36.5
parent: 2
type: Transform
- - uid: 11106
+ - uid: 11127
components:
- pos: -24.5,47.5
parent: 2
type: Transform
- - uid: 11107
+ - uid: 11128
components:
- pos: -24.5,46.5
parent: 2
type: Transform
- - uid: 11108
+ - uid: 11129
components:
- pos: -24.5,45.5
parent: 2
type: Transform
- - uid: 11109
+ - uid: 11130
components:
- pos: -24.5,44.5
parent: 2
type: Transform
- - uid: 11110
+ - uid: 11131
components:
- pos: -24.5,43.5
parent: 2
type: Transform
- - uid: 11111
+ - uid: 11132
components:
- pos: -24.5,42.5
parent: 2
type: Transform
- - uid: 11112
+ - uid: 11133
components:
- pos: -24.5,41.5
parent: 2
type: Transform
- - uid: 11113
+ - uid: 11134
components:
- pos: -24.5,40.5
parent: 2
type: Transform
- - uid: 11114
+ - uid: 11135
components:
- pos: -24.5,39.5
parent: 2
type: Transform
- - uid: 11115
+ - uid: 11136
components:
- pos: -24.5,38.5
parent: 2
type: Transform
- - uid: 11116
+ - uid: 11137
components:
- pos: -31.5,39.5
parent: 2
type: Transform
- - uid: 11117
+ - uid: 11138
components:
- pos: -32.5,39.5
parent: 2
type: Transform
- - uid: 11118
+ - uid: 11139
components:
- pos: -33.5,39.5
parent: 2
type: Transform
- - uid: 11119
+ - uid: 11140
components:
- pos: -34.5,39.5
parent: 2
type: Transform
- - uid: 11120
+ - uid: 11141
components:
- pos: -35.5,39.5
parent: 2
type: Transform
- - uid: 11121
+ - uid: 11142
components:
- pos: -36.5,39.5
parent: 2
type: Transform
- - uid: 11122
+ - uid: 11143
components:
- pos: -39.5,39.5
parent: 2
type: Transform
- - uid: 11123
+ - uid: 11144
components:
- pos: -40.5,39.5
parent: 2
type: Transform
- - uid: 11124
+ - uid: 11145
components:
- pos: -41.5,39.5
parent: 2
type: Transform
- - uid: 11125
+ - uid: 11146
components:
- pos: -42.5,39.5
parent: 2
type: Transform
- - uid: 11126
+ - uid: 11147
components:
- pos: -43.5,39.5
parent: 2
type: Transform
- - uid: 11127
+ - uid: 11148
components:
- pos: -2.5,28.5
parent: 2
type: Transform
- - uid: 11128
+ - uid: 11149
components:
- pos: -2.5,27.5
parent: 2
type: Transform
- - uid: 11129
+ - uid: 11150
components:
- pos: -2.5,26.5
parent: 2
type: Transform
- - uid: 11130
+ - uid: 11151
components:
- pos: -2.5,25.5
parent: 2
type: Transform
- - uid: 11131
+ - uid: 11152
components:
- pos: -12.5,26.5
parent: 2
type: Transform
- - uid: 11132
+ - uid: 11153
components:
- pos: -11.5,26.5
parent: 2
type: Transform
- - uid: 11133
+ - uid: 11154
components:
- pos: -10.5,26.5
parent: 2
type: Transform
- - uid: 11134
+ - uid: 11155
components:
- pos: -10.5,24.5
parent: 2
type: Transform
- - uid: 11135
+ - uid: 11156
components:
- pos: -37.5,45.5
parent: 2
type: Transform
- - uid: 11136
+ - uid: 11157
components:
- pos: -37.5,44.5
parent: 2
type: Transform
- - uid: 11137
+ - uid: 11158
components:
- pos: -17.5,58.5
parent: 2
type: Transform
- - uid: 11138
+ - uid: 11159
components:
- pos: -17.5,57.5
parent: 2
type: Transform
- - uid: 11139
+ - uid: 11160
components:
- pos: -17.5,56.5
parent: 2
type: Transform
- - uid: 11140
+ - uid: 11161
components:
- pos: -17.5,55.5
parent: 2
type: Transform
- - uid: 11141
+ - uid: 11162
components:
- pos: -17.5,54.5
parent: 2
type: Transform
- - uid: 11142
+ - uid: 11163
components:
- pos: -17.5,53.5
parent: 2
type: Transform
- - uid: 11143
+ - uid: 11164
components:
- rot: 1.5707963267948966 rad
pos: -11.5,24.5
parent: 2
type: Transform
- - uid: 11144
+ - uid: 11165
components:
- rot: 3.141592653589793 rad
pos: 66.5,36.5
parent: 2
type: Transform
- - uid: 11145
+ - uid: 11166
components:
- rot: 3.141592653589793 rad
pos: 65.5,36.5
parent: 2
type: Transform
- - uid: 11146
+ - uid: 11167
components:
- rot: 3.141592653589793 rad
pos: 64.5,36.5
parent: 2
type: Transform
- - uid: 11147
+ - uid: 11168
components:
- rot: 3.141592653589793 rad
pos: 63.5,36.5
parent: 2
type: Transform
- - uid: 11148
+ - uid: 11169
components:
- rot: 3.141592653589793 rad
pos: 63.5,35.5
parent: 2
type: Transform
- - uid: 11149
+ - uid: 11170
components:
- rot: 3.141592653589793 rad
pos: 63.5,34.5
parent: 2
type: Transform
- - uid: 11150
+ - uid: 11171
components:
- rot: 3.141592653589793 rad
pos: 63.5,33.5
parent: 2
type: Transform
- - uid: 11151
+ - uid: 11172
components:
- pos: 83.5,36.5
parent: 2
type: Transform
- - uid: 11152
+ - uid: 11173
components:
- pos: 84.5,36.5
parent: 2
type: Transform
- - uid: 11153
+ - uid: 11174
components:
- pos: 85.5,36.5
parent: 2
type: Transform
- - uid: 11154
+ - uid: 11175
components:
- pos: 89.5,36.5
parent: 2
type: Transform
- - uid: 11155
+ - uid: 11176
components:
- pos: 90.5,36.5
parent: 2
type: Transform
- - uid: 11156
+ - uid: 11177
components:
- pos: -22.5,27.5
parent: 2
type: Transform
- - uid: 11157
+ - uid: 11178
components:
- pos: -23.5,27.5
parent: 2
type: Transform
- - uid: 11158
+ - uid: 11179
components:
- pos: -24.5,27.5
parent: 2
type: Transform
- - uid: 11159
+ - uid: 11180
components:
- pos: -25.5,27.5
parent: 2
type: Transform
- - uid: 11160
+ - uid: 11181
components:
- pos: -26.5,27.5
parent: 2
type: Transform
- - uid: 11161
+ - uid: 11182
components:
- pos: -27.5,27.5
parent: 2
type: Transform
- - uid: 11162
+ - uid: 11183
components:
- pos: -28.5,27.5
parent: 2
type: Transform
- - uid: 11163
+ - uid: 11184
components:
- pos: 29.5,55.5
parent: 2
type: Transform
- - uid: 11164
+ - uid: 11185
components:
- pos: 29.5,56.5
parent: 2
type: Transform
- - uid: 11165
+ - uid: 11186
components:
- pos: 29.5,57.5
parent: 2
type: Transform
- - uid: 11166
+ - uid: 11187
components:
- pos: 29.5,58.5
parent: 2
type: Transform
- - uid: 11167
+ - uid: 11188
components:
- pos: 29.5,59.5
parent: 2
type: Transform
- - uid: 11168
+ - uid: 11189
components:
- pos: 29.5,60.5
parent: 2
type: Transform
- - uid: 11169
+ - uid: 11190
components:
- pos: 29.5,61.5
parent: 2
type: Transform
- - uid: 11170
+ - uid: 11191
components:
- pos: 29.5,62.5
parent: 2
type: Transform
- - uid: 11171
+ - uid: 11192
components:
- pos: 28.5,62.5
parent: 2
type: Transform
- - uid: 11172
+ - uid: 11193
components:
- pos: 27.5,62.5
parent: 2
type: Transform
- - uid: 11173
+ - uid: 11194
components:
- pos: 26.5,62.5
parent: 2
type: Transform
- - uid: 11174
+ - uid: 11195
components:
- pos: 25.5,62.5
parent: 2
type: Transform
- - uid: 11175
+ - uid: 11196
components:
- pos: 24.5,62.5
parent: 2
type: Transform
- - uid: 11176
+ - uid: 11197
components:
- pos: 23.5,62.5
parent: 2
type: Transform
- - uid: 11177
+ - uid: 11198
components:
- pos: 22.5,62.5
parent: 2
type: Transform
- - uid: 11178
+ - uid: 11199
components:
- pos: 21.5,62.5
parent: 2
type: Transform
- - uid: 11179
+ - uid: 11200
components:
- pos: 20.5,62.5
parent: 2
type: Transform
- - uid: 11180
+ - uid: 11201
components:
- pos: 19.5,62.5
parent: 2
type: Transform
- - uid: 11181
+ - uid: 11202
components:
- pos: 18.5,62.5
parent: 2
type: Transform
- - uid: 11182
+ - uid: 11203
components:
- pos: 17.5,62.5
parent: 2
type: Transform
- - uid: 11183
+ - uid: 11204
components:
- pos: 16.5,62.5
parent: 2
type: Transform
- - uid: 11184
+ - uid: 11205
components:
- pos: 15.5,62.5
parent: 2
type: Transform
- - uid: 11185
+ - uid: 11206
components:
- pos: 14.5,62.5
parent: 2
type: Transform
- - uid: 11186
+ - uid: 11207
components:
- pos: 13.5,62.5
parent: 2
type: Transform
- - uid: 11187
+ - uid: 11208
components:
- pos: 12.5,62.5
parent: 2
type: Transform
- - uid: 11188
+ - uid: 11209
components:
- pos: 11.5,62.5
parent: 2
type: Transform
- - uid: 11189
+ - uid: 11210
components:
- pos: 10.5,62.5
parent: 2
type: Transform
- - uid: 11190
+ - uid: 11211
components:
- pos: 9.5,62.5
parent: 2
type: Transform
- - uid: 11191
+ - uid: 11212
components:
- pos: 8.5,62.5
parent: 2
type: Transform
- - uid: 11192
+ - uid: 11213
components:
- pos: 7.5,62.5
parent: 2
type: Transform
- - uid: 11193
+ - uid: 11214
components:
- pos: 7.5,63.5
parent: 2
type: Transform
- - uid: 11194
+ - uid: 11215
components:
- pos: 7.5,64.5
parent: 2
type: Transform
- - uid: 11195
+ - uid: 11216
components:
- pos: 7.5,65.5
parent: 2
type: Transform
- - uid: 11196
+ - uid: 11217
components:
- pos: 7.5,66.5
parent: 2
type: Transform
- - uid: 11197
+ - uid: 11218
components:
- pos: 7.5,67.5
parent: 2
type: Transform
- - uid: 11198
+ - uid: 11219
components:
- pos: 7.5,68.5
parent: 2
type: Transform
- - uid: 11199
+ - uid: 11220
components:
- pos: 7.5,69.5
parent: 2
type: Transform
- - uid: 11200
+ - uid: 11221
components:
- pos: 7.5,70.5
parent: 2
type: Transform
- - uid: 11201
+ - uid: 11222
components:
- pos: 7.5,71.5
parent: 2
type: Transform
- - uid: 11202
+ - uid: 11223
components:
- pos: 7.5,72.5
parent: 2
type: Transform
- - uid: 11203
+ - uid: 11224
components:
- pos: 7.5,73.5
parent: 2
type: Transform
- - uid: 11204
+ - uid: 11225
components:
- pos: 7.5,74.5
parent: 2
type: Transform
- - uid: 11205
+ - uid: 11226
components:
- pos: 7.5,75.5
parent: 2
type: Transform
- - uid: 11206
+ - uid: 11227
components:
- pos: 6.5,75.5
parent: 2
type: Transform
- - uid: 11207
+ - uid: 11228
components:
- pos: 5.5,75.5
parent: 2
type: Transform
- - uid: 11208
+ - uid: 11229
components:
- pos: 4.5,75.5
parent: 2
type: Transform
- - uid: 11209
+ - uid: 11230
components:
- pos: 3.5,75.5
parent: 2
type: Transform
- - uid: 11210
+ - uid: 11231
components:
- pos: 2.5,75.5
parent: 2
type: Transform
- - uid: 11211
+ - uid: 11232
components:
- pos: 1.5,75.5
parent: 2
type: Transform
- - uid: 11212
+ - uid: 11233
components:
- pos: 0.5,75.5
parent: 2
type: Transform
- - uid: 11213
+ - uid: 11234
components:
- pos: -0.5,75.5
parent: 2
type: Transform
- - uid: 11214
+ - uid: 11235
components:
- pos: -1.5,75.5
parent: 2
type: Transform
- - uid: 11215
+ - uid: 11236
components:
- pos: -2.5,75.5
parent: 2
type: Transform
- - uid: 11216
+ - uid: 11237
components:
- pos: -3.5,75.5
parent: 2
type: Transform
- - uid: 11217
+ - uid: 11238
components:
- pos: -4.5,75.5
parent: 2
type: Transform
- - uid: 11218
+ - uid: 11239
components:
- pos: -5.5,75.5
parent: 2
type: Transform
- - uid: 11219
+ - uid: 11240
components:
- pos: -6.5,75.5
parent: 2
type: Transform
- - uid: 11220
+ - uid: 11241
components:
- pos: -7.5,75.5
parent: 2
type: Transform
- - uid: 11221
+ - uid: 11242
components:
- pos: -8.5,75.5
parent: 2
type: Transform
- - uid: 11222
+ - uid: 11243
components:
- pos: -9.5,75.5
parent: 2
type: Transform
- - uid: 11223
+ - uid: 11244
components:
- pos: -10.5,75.5
parent: 2
type: Transform
- - uid: 11224
+ - uid: 11245
components:
- pos: 1.5,-92.5
parent: 2
type: Transform
- - uid: 11225
+ - uid: 11246
components:
- pos: 0.5,-92.5
parent: 2
type: Transform
- - uid: 11226
+ - uid: 11247
components:
- pos: -0.5,-92.5
parent: 2
type: Transform
- - uid: 11227
+ - uid: 11248
components:
- pos: -0.5,-93.5
parent: 2
type: Transform
- - uid: 11228
+ - uid: 11249
components:
- pos: -0.5,-94.5
parent: 2
type: Transform
- - uid: 11229
+ - uid: 11250
components:
- pos: -0.5,-95.5
parent: 2
type: Transform
- - uid: 11230
+ - uid: 11251
components:
- pos: -0.5,-96.5
parent: 2
type: Transform
- - uid: 11231
+ - uid: 11252
components:
- pos: -0.5,-97.5
parent: 2
type: Transform
- - uid: 11232
+ - uid: 11253
components:
- pos: -0.5,-98.5
parent: 2
type: Transform
- - uid: 11233
+ - uid: 11254
components:
- pos: -0.5,-99.5
parent: 2
type: Transform
- - uid: 11234
+ - uid: 11255
components:
- pos: -0.5,-100.5
parent: 2
type: Transform
- - uid: 11235
+ - uid: 11256
components:
- pos: -0.5,-101.5
parent: 2
type: Transform
- - uid: 11236
+ - uid: 11257
components:
- pos: -0.5,-102.5
parent: 2
type: Transform
- - uid: 11237
+ - uid: 11258
components:
- pos: -0.5,-103.5
parent: 2
type: Transform
- - uid: 11238
+ - uid: 11259
components:
- pos: -0.5,-104.5
parent: 2
type: Transform
- - uid: 11239
+ - uid: 11260
components:
- pos: -0.5,-105.5
parent: 2
type: Transform
- - uid: 11240
+ - uid: 11261
components:
- pos: -28.5,-105.5
parent: 2
type: Transform
- - uid: 11241
+ - uid: 11262
components:
- pos: -29.5,-105.5
parent: 2
type: Transform
- - uid: 11242
+ - uid: 11263
components:
- pos: -30.5,-105.5
parent: 2
type: Transform
- - uid: 11243
+ - uid: 11264
components:
- pos: -31.5,-105.5
parent: 2
type: Transform
- - uid: 11244
+ - uid: 11265
components:
- pos: -32.5,-105.5
parent: 2
type: Transform
- - uid: 11245
+ - uid: 11266
components:
- pos: -33.5,-105.5
parent: 2
type: Transform
- - uid: 11246
+ - uid: 11267
components:
- pos: -34.5,-105.5
parent: 2
type: Transform
- - uid: 11247
+ - uid: 11268
components:
- pos: -35.5,-105.5
parent: 2
type: Transform
- - uid: 11248
+ - uid: 11269
components:
- pos: -1.5,-105.5
parent: 2
type: Transform
- - uid: 11249
+ - uid: 11270
components:
- pos: -2.5,-105.5
parent: 2
type: Transform
- - uid: 11250
+ - uid: 11271
components:
- pos: -3.5,-105.5
parent: 2
type: Transform
- - uid: 11251
+ - uid: 11272
components:
- pos: -4.5,-105.5
parent: 2
type: Transform
- - uid: 11252
+ - uid: 11273
components:
- pos: -5.5,-105.5
parent: 2
type: Transform
- - uid: 11253
+ - uid: 11274
components:
- pos: -6.5,-105.5
parent: 2
type: Transform
- - uid: 11254
+ - uid: 11275
components:
- pos: -7.5,-105.5
parent: 2
type: Transform
- - uid: 11255
+ - uid: 11276
components:
- pos: -8.5,-105.5
parent: 2
type: Transform
- - uid: 11256
+ - uid: 11277
components:
- pos: -9.5,-105.5
parent: 2
type: Transform
- - uid: 11257
+ - uid: 11278
components:
- pos: -10.5,-105.5
parent: 2
type: Transform
- - uid: 11258
+ - uid: 11279
components:
- pos: -11.5,-105.5
parent: 2
type: Transform
- - uid: 11259
+ - uid: 11280
components:
- pos: -12.5,-105.5
parent: 2
type: Transform
- - uid: 11260
+ - uid: 11281
components:
- pos: -13.5,-105.5
parent: 2
type: Transform
- - uid: 11261
+ - uid: 11282
components:
- pos: -14.5,-105.5
parent: 2
type: Transform
- - uid: 11262
+ - uid: 11283
components:
- pos: -15.5,-105.5
parent: 2
type: Transform
- - uid: 11263
+ - uid: 11284
components:
- pos: -16.5,-105.5
parent: 2
type: Transform
- - uid: 11264
+ - uid: 11285
components:
- pos: -17.5,-105.5
parent: 2
type: Transform
- - uid: 11265
+ - uid: 11286
components:
- pos: -18.5,-105.5
parent: 2
type: Transform
- - uid: 11266
+ - uid: 11287
components:
- pos: -19.5,-105.5
parent: 2
type: Transform
- - uid: 11267
+ - uid: 11288
components:
- pos: -20.5,-105.5
parent: 2
type: Transform
- - uid: 11268
+ - uid: 11289
components:
- pos: -21.5,-105.5
parent: 2
type: Transform
- - uid: 11269
+ - uid: 11290
components:
- pos: -22.5,-105.5
parent: 2
type: Transform
- - uid: 11270
+ - uid: 11291
components:
- pos: -23.5,-105.5
parent: 2
type: Transform
- - uid: 11271
+ - uid: 11292
components:
- pos: -24.5,-105.5
parent: 2
type: Transform
- - uid: 11272
+ - uid: 11293
components:
- pos: -25.5,-105.5
parent: 2
type: Transform
- - uid: 11273
+ - uid: 11294
components:
- pos: -26.5,-105.5
parent: 2
type: Transform
- - uid: 11274
+ - uid: 11295
components:
- pos: -27.5,-105.5
parent: 2
type: Transform
- - uid: 11275
+ - uid: 11296
components:
- pos: -35.5,-104.5
parent: 2
type: Transform
- - uid: 11276
+ - uid: 11297
components:
- pos: -35.5,-103.5
parent: 2
type: Transform
- - uid: 11277
+ - uid: 11298
components:
- pos: -35.5,-102.5
parent: 2
type: Transform
- - uid: 11278
+ - uid: 11299
components:
- pos: 67.5,-17.5
parent: 2
type: Transform
- - uid: 11279
+ - uid: 11300
components:
- pos: -79.5,-32.5
parent: 2
type: Transform
- - uid: 11280
+ - uid: 11301
components:
- pos: -78.5,-31.5
parent: 2
type: Transform
- - uid: 11281
+ - uid: 11302
components:
- pos: -74.5,-48.5
parent: 2
type: Transform
- - uid: 11282
+ - uid: 11303
components:
- pos: -73.5,-48.5
parent: 2
type: Transform
- - uid: 11283
+ - uid: 11304
components:
- pos: -72.5,-48.5
parent: 2
type: Transform
- - uid: 11284
+ - uid: 11305
components:
- pos: -71.5,-48.5
parent: 2
type: Transform
- - uid: 11285
+ - uid: 11306
components:
- pos: -70.5,-48.5
parent: 2
type: Transform
- - uid: 11286
+ - uid: 11307
components:
- pos: -69.5,-48.5
parent: 2
type: Transform
- - uid: 11287
+ - uid: 11308
components:
- pos: -68.5,-48.5
parent: 2
type: Transform
- - uid: 11288
+ - uid: 11309
components:
- pos: -67.5,-48.5
parent: 2
type: Transform
- - uid: 11289
+ - uid: 11310
components:
- pos: -66.5,-48.5
parent: 2
type: Transform
- - uid: 11290
+ - uid: 11311
components:
- pos: -65.5,-48.5
parent: 2
type: Transform
- - uid: 11291
+ - uid: 11312
components:
- pos: -64.5,-48.5
parent: 2
type: Transform
- - uid: 11292
+ - uid: 11313
components:
- pos: -63.5,-48.5
parent: 2
type: Transform
- - uid: 11293
+ - uid: 11314
components:
- pos: -62.5,-48.5
parent: 2
type: Transform
- - uid: 11294
+ - uid: 11315
components:
- rot: 3.141592653589793 rad
pos: 55.5,-74.5
parent: 2
type: Transform
- - uid: 11295
+ - uid: 11316
components:
- rot: 3.141592653589793 rad
pos: 79.5,-27.5
parent: 2
type: Transform
- - uid: 11296
+ - uid: 11317
components:
- rot: 3.141592653589793 rad
pos: 79.5,-28.5
parent: 2
type: Transform
- - uid: 11297
+ - uid: 11318
components:
- pos: 79.5,-29.5
parent: 2
type: Transform
- - uid: 11298
+ - uid: 11319
components:
- pos: 79.5,-30.5
parent: 2
type: Transform
- - uid: 11299
+ - uid: 11320
components:
- pos: 79.5,-31.5
parent: 2
type: Transform
- - uid: 11300
+ - uid: 11321
components:
- pos: 79.5,-40.5
parent: 2
type: Transform
- - uid: 11301
+ - uid: 11322
components:
- pos: 79.5,-39.5
parent: 2
type: Transform
- - uid: 11302
+ - uid: 11323
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-56.5
parent: 2
type: Transform
- - uid: 11303
+ - uid: 11324
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-57.5
parent: 2
type: Transform
- - uid: 11304
+ - uid: 11325
components:
- rot: 1.5707963267948966 rad
pos: -60.5,-57.5
parent: 2
type: Transform
- - uid: 11305
+ - uid: 11326
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-57.5
parent: 2
type: Transform
- - uid: 11306
+ - uid: 11327
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-58.5
parent: 2
type: Transform
- - uid: 11307
+ - uid: 11328
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-59.5
parent: 2
type: Transform
- - uid: 11308
+ - uid: 11329
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-60.5
parent: 2
type: Transform
- - uid: 11309
+ - uid: 11330
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-61.5
parent: 2
type: Transform
- - uid: 11310
+ - uid: 11331
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-62.5
parent: 2
type: Transform
- - uid: 11311
+ - uid: 11332
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-63.5
parent: 2
type: Transform
- - uid: 11312
+ - uid: 11333
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-64.5
parent: 2
type: Transform
- - uid: 11313
+ - uid: 11334
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-65.5
parent: 2
type: Transform
- - uid: 11314
+ - uid: 11335
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-66.5
parent: 2
type: Transform
- - uid: 11315
+ - uid: 11336
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-67.5
parent: 2
type: Transform
- - uid: 11316
+ - uid: 11337
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-68.5
parent: 2
type: Transform
- - uid: 11317
+ - uid: 11338
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-69.5
parent: 2
type: Transform
- - uid: 11318
+ - uid: 11339
components:
- pos: 8.5,-35.5
parent: 2
type: Transform
- - uid: 11319
+ - uid: 11340
components:
- pos: 8.5,-34.5
parent: 2
type: Transform
- - uid: 11320
+ - uid: 11341
components:
- pos: 8.5,-32.5
parent: 2
type: Transform
- - uid: 11321
+ - uid: 11342
components:
- pos: 8.5,-33.5
parent: 2
type: Transform
- - uid: 11322
+ - uid: 11343
components:
- pos: 46.5,-33.5
parent: 2
type: Transform
- - uid: 11323
+ - uid: 11344
components:
- pos: 45.5,-33.5
parent: 2
type: Transform
- - uid: 11324
+ - uid: 11345
components:
- pos: 44.5,-33.5
parent: 2
type: Transform
- - uid: 11325
+ - uid: 11346
components:
- pos: 8.5,-31.5
parent: 2
type: Transform
- - uid: 11326
+ - uid: 11347
components:
- pos: 8.5,-30.5
parent: 2
type: Transform
- - uid: 11327
+ - uid: 11348
components:
- pos: 68.5,-70.5
parent: 2
type: Transform
- - uid: 11328
+ - uid: 11349
components:
- pos: 69.5,-71.5
parent: 2
type: Transform
- - uid: 11329
+ - uid: 11350
components:
- pos: 70.5,-71.5
parent: 2
type: Transform
- - uid: 11330
+ - uid: 11351
components:
- pos: 71.5,-71.5
parent: 2
type: Transform
- - uid: 11331
+ - uid: 11352
components:
- pos: 71.5,-71.5
parent: 2
type: Transform
- - uid: 11332
+ - uid: 11353
components:
- pos: 71.5,-70.5
parent: 2
type: Transform
- - uid: 11333
+ - uid: 11354
components:
- pos: 72.5,-70.5
parent: 2
type: Transform
- - uid: 11334
+ - uid: 11355
components:
- pos: 72.5,-69.5
parent: 2
type: Transform
- - uid: 11335
+ - uid: 11356
components:
- pos: 73.5,-69.5
parent: 2
type: Transform
- - uid: 11336
+ - uid: 11357
components:
- pos: 74.5,-69.5
parent: 2
type: Transform
- - uid: 11337
+ - uid: 11358
components:
- pos: 74.5,-68.5
parent: 2
type: Transform
- - uid: 11338
+ - uid: 11359
components:
- pos: 74.5,-67.5
parent: 2
type: Transform
- - uid: 11339
+ - uid: 11360
components:
- pos: 74.5,-66.5
parent: 2
type: Transform
- - uid: 11340
+ - uid: 11361
components:
- pos: 74.5,-65.5
parent: 2
type: Transform
- - uid: 11341
+ - uid: 11362
components:
- pos: 74.5,-64.5
parent: 2
type: Transform
- - uid: 11342
+ - uid: 11363
components:
- pos: 74.5,-63.5
parent: 2
type: Transform
- - uid: 11343
+ - uid: 11364
components:
- pos: 75.5,-63.5
parent: 2
type: Transform
- - uid: 11344
+ - uid: 11365
components:
- pos: 76.5,-63.5
parent: 2
type: Transform
- - uid: 11345
+ - uid: 11366
components:
- pos: 77.5,-63.5
parent: 2
type: Transform
- - uid: 11346
+ - uid: 11367
components:
- pos: 78.5,-63.5
parent: 2
type: Transform
- - uid: 11347
+ - uid: 11368
components:
- pos: 79.5,-63.5
parent: 2
type: Transform
- - uid: 11348
+ - uid: 11369
components:
- pos: 79.5,-51.5
parent: 2
type: Transform
- - uid: 11349
+ - uid: 11370
components:
- pos: 79.5,-52.5
parent: 2
type: Transform
- - uid: 11350
+ - uid: 11371
components:
- pos: 79.5,-53.5
parent: 2
type: Transform
- - uid: 11351
+ - uid: 11372
components:
- pos: 79.5,-54.5
parent: 2
type: Transform
- - uid: 11352
+ - uid: 11373
components:
- pos: 79.5,-55.5
parent: 2
type: Transform
- - uid: 11353
+ - uid: 11374
components:
- pos: 79.5,-56.5
parent: 2
type: Transform
- - uid: 11354
+ - uid: 11375
components:
- pos: 79.5,-57.5
parent: 2
type: Transform
- - uid: 11355
+ - uid: 11376
components:
- pos: 79.5,-58.5
parent: 2
type: Transform
- - uid: 11356
+ - uid: 11377
components:
- pos: 79.5,-59.5
parent: 2
type: Transform
- - uid: 11357
+ - uid: 11378
components:
- pos: 79.5,-60.5
parent: 2
type: Transform
- - uid: 11358
+ - uid: 11379
components:
- pos: 79.5,-61.5
parent: 2
type: Transform
- - uid: 11359
+ - uid: 11380
components:
- pos: 79.5,-62.5
parent: 2
type: Transform
- - uid: 11360
+ - uid: 11381
components:
- pos: 72.5,-71.5
parent: 2
type: Transform
- - uid: 11361
+ - uid: 11382
components:
- pos: 71.5,-69.5
parent: 2
type: Transform
- - uid: 11362
+ - uid: 11383
components:
- pos: 55.5,-32.5
parent: 2
type: Transform
- - uid: 11363
+ - uid: 11384
components:
- pos: 54.5,-32.5
parent: 2
type: Transform
- - uid: 11364
+ - uid: 11385
components:
- pos: 53.5,-32.5
parent: 2
type: Transform
- - uid: 11365
+ - uid: 11386
components:
- pos: 67.5,-74.5
parent: 2
type: Transform
- - uid: 11366
+ - uid: 11387
components:
- pos: 66.5,-74.5
parent: 2
type: Transform
- - uid: 11367
+ - uid: 11388
components:
- pos: 65.5,-74.5
parent: 2
type: Transform
- - uid: 11368
+ - uid: 11389
components:
- pos: 64.5,-74.5
parent: 2
type: Transform
- - uid: 11369
+ - uid: 11390
components:
- pos: 63.5,-74.5
parent: 2
type: Transform
- - uid: 11370
+ - uid: 11391
components:
- pos: 62.5,-74.5
parent: 2
type: Transform
- - uid: 11371
+ - uid: 11392
components:
- pos: 61.5,-74.5
parent: 2
type: Transform
- - uid: 11372
+ - uid: 11393
components:
- pos: 60.5,-74.5
parent: 2
type: Transform
- - uid: 11373
+ - uid: 11394
components:
- pos: 59.5,-74.5
parent: 2
type: Transform
- - uid: 11374
+ - uid: 11395
components:
- pos: 58.5,-74.5
parent: 2
type: Transform
- - uid: 11375
+ - uid: 11396
components:
- pos: 55.5,-30.5
parent: 2
type: Transform
- - uid: 11376
+ - uid: 11397
components:
- pos: 55.5,-31.5
parent: 2
type: Transform
- - uid: 11377
+ - uid: 11398
components:
- pos: 59.5,-22.5
parent: 2
type: Transform
- - uid: 11378
+ - uid: 11399
components:
- pos: 59.5,-41.5
parent: 2
type: Transform
- - uid: 11379
+ - uid: 11400
components:
- pos: 59.5,-40.5
parent: 2
type: Transform
- - uid: 11380
+ - uid: 11401
components:
- pos: 59.5,-39.5
parent: 2
type: Transform
- - uid: 11381
+ - uid: 11402
components:
- pos: 59.5,-38.5
parent: 2
type: Transform
- - uid: 11382
+ - uid: 11403
components:
- pos: 57.5,-38.5
parent: 2
type: Transform
- - uid: 11383
+ - uid: 11404
components:
- pos: 56.5,-38.5
parent: 2
type: Transform
- - uid: 11384
+ - uid: 11405
components:
- pos: 59.5,-23.5
parent: 2
type: Transform
- - uid: 11385
+ - uid: 11406
components:
- pos: 59.5,-24.5
parent: 2
type: Transform
- - uid: 11386
+ - uid: 11407
components:
- rot: 3.141592653589793 rad
pos: 65.5,-20.5
parent: 2
type: Transform
- - uid: 11387
+ - uid: 11408
components:
- rot: 3.141592653589793 rad
pos: 65.5,-19.5
parent: 2
type: Transform
- - uid: 11388
+ - uid: 11409
components:
- rot: 3.141592653589793 rad
pos: 65.5,-18.5
parent: 2
type: Transform
- - uid: 11389
+ - uid: 11410
components:
- rot: 3.141592653589793 rad
pos: 66.5,-18.5
parent: 2
type: Transform
- - uid: 11390
+ - uid: 11411
components:
- pos: 75.5,-51.5
parent: 2
type: Transform
- - uid: 11391
+ - uid: 11412
components:
- pos: 75.5,-52.5
parent: 2
type: Transform
- - uid: 11392
+ - uid: 11413
components:
- pos: 75.5,-53.5
parent: 2
type: Transform
- - uid: 11393
+ - uid: 11414
components:
- pos: 75.5,-54.5
parent: 2
type: Transform
- - uid: 11394
+ - uid: 11415
components:
- pos: 75.5,-55.5
parent: 2
type: Transform
- - uid: 11395
+ - uid: 11416
components:
- pos: 75.5,-56.5
parent: 2
type: Transform
- - uid: 11396
+ - uid: 11417
components:
- pos: 60.5,-26.5
parent: 2
type: Transform
- - uid: 11397
+ - uid: 11418
components:
- pos: 59.5,-26.5
parent: 2
type: Transform
- - uid: 11398
+ - uid: 11419
components:
- pos: 58.5,-26.5
parent: 2
type: Transform
- - uid: 11399
+ - uid: 11420
components:
- pos: 57.5,-26.5
parent: 2
type: Transform
- - uid: 11400
+ - uid: 11421
components:
- pos: 56.5,-26.5
parent: 2
type: Transform
- - uid: 11401
+ - uid: 11422
components:
- pos: 64.5,-58.5
parent: 2
type: Transform
- - uid: 11402
+ - uid: 11423
components:
- pos: 71.5,-57.5
parent: 2
type: Transform
- - uid: 11403
+ - uid: 11424
components:
- pos: 71.5,-58.5
parent: 2
type: Transform
- - uid: 11404
+ - uid: 11425
components:
- pos: 71.5,-59.5
parent: 2
type: Transform
- - uid: 11405
+ - uid: 11426
components:
- pos: 71.5,-60.5
parent: 2
type: Transform
- - uid: 11406
+ - uid: 11427
components:
- pos: 71.5,-61.5
parent: 2
type: Transform
- - uid: 11407
+ - uid: 11428
components:
- pos: 47.5,-65.5
parent: 2
type: Transform
- - uid: 11408
+ - uid: 11429
components:
- pos: 48.5,-65.5
parent: 2
type: Transform
- - uid: 11409
+ - uid: 11430
components:
- pos: 49.5,-65.5
parent: 2
type: Transform
- - uid: 11410
+ - uid: 11431
components:
- pos: 50.5,-65.5
parent: 2
type: Transform
- - uid: 11411
+ - uid: 11432
components:
- pos: 52.5,-66.5
parent: 2
type: Transform
- - uid: 11412
+ - uid: 11433
components:
- pos: 69.5,-63.5
parent: 2
type: Transform
- - uid: 11413
+ - uid: 11434
components:
- pos: 67.5,-66.5
parent: 2
type: Transform
- - uid: 11414
+ - uid: 11435
components:
- pos: 11.5,-89.5
parent: 2
type: Transform
- - uid: 11415
+ - uid: 11436
components:
- pos: 12.5,-89.5
parent: 2
type: Transform
- - uid: 11416
+ - uid: 11437
components:
- pos: 12.5,-90.5
parent: 2
type: Transform
- - uid: 11417
+ - uid: 11438
components:
- pos: 12.5,-91.5
parent: 2
type: Transform
- - uid: 11418
+ - uid: 11439
components:
- pos: 5.5,-89.5
parent: 2
type: Transform
- - uid: 11419
+ - uid: 11440
components:
- pos: 6.5,-89.5
parent: 2
type: Transform
- - uid: 11420
+ - uid: 11441
components:
- pos: 7.5,-89.5
parent: 2
type: Transform
- - uid: 11421
+ - uid: 11442
components:
- pos: 8.5,-89.5
parent: 2
type: Transform
- - uid: 11422
+ - uid: 11443
components:
- pos: 9.5,-89.5
parent: 2
type: Transform
- - uid: 11423
+ - uid: 11444
components:
- pos: 10.5,-89.5
parent: 2
type: Transform
- - uid: 11424
+ - uid: 11445
components:
- pos: 3.5,-89.5
parent: 2
type: Transform
- - uid: 11425
+ - uid: 11446
components:
- pos: 70.5,-25.5
parent: 2
type: Transform
- - uid: 11426
+ - uid: 11447
components:
- pos: 69.5,-25.5
parent: 2
type: Transform
- - uid: 11427
+ - uid: 11448
components:
- pos: 68.5,-25.5
parent: 2
type: Transform
- - uid: 11428
+ - uid: 11449
components:
- pos: 66.5,-25.5
parent: 2
type: Transform
- - uid: 11429
+ - uid: 11450
components:
- pos: 67.5,-25.5
parent: 2
type: Transform
- - uid: 11430
+ - uid: 11451
components:
- pos: 71.5,-26.5
parent: 2
type: Transform
- - uid: 11431
+ - uid: 11452
components:
- pos: 72.5,-26.5
parent: 2
type: Transform
- - uid: 11432
+ - uid: 11453
components:
- pos: 73.5,-26.5
parent: 2
type: Transform
- - uid: 11433
+ - uid: 11454
components:
- pos: 74.5,-26.5
parent: 2
type: Transform
- - uid: 11434
+ - uid: 11455
components:
- pos: 75.5,-26.5
parent: 2
type: Transform
- - uid: 11435
+ - uid: 11456
components:
- pos: 76.5,-26.5
parent: 2
type: Transform
- - uid: 11436
+ - uid: 11457
components:
- pos: 77.5,-26.5
parent: 2
type: Transform
- - uid: 11437
+ - uid: 11458
components:
- pos: 78.5,-26.5
parent: 2
type: Transform
- - uid: 11438
+ - uid: 11459
components:
- pos: -46.5,-53.5
parent: 2
type: Transform
- - uid: 11439
+ - uid: 11460
components:
- pos: -46.5,-54.5
parent: 2
type: Transform
- - uid: 11440
+ - uid: 11461
components:
- pos: 6.5,-88.5
parent: 2
type: Transform
- - uid: 11441
+ - uid: 11462
components:
- pos: 6.5,-87.5
parent: 2
type: Transform
- - uid: 11442
+ - uid: 11463
components:
- pos: 8.5,-75.5
parent: 2
type: Transform
- - uid: 11443
+ - uid: 11464
components:
- pos: 9.5,-75.5
parent: 2
type: Transform
- - uid: 11444
+ - uid: 11465
components:
- pos: 10.5,-75.5
parent: 2
type: Transform
- - uid: 11445
+ - uid: 11466
components:
- pos: 11.5,-75.5
parent: 2
type: Transform
- - uid: 11446
+ - uid: 11467
components:
- pos: 12.5,-75.5
parent: 2
type: Transform
- - uid: 11447
+ - uid: 11468
components:
- pos: 13.5,-75.5
parent: 2
type: Transform
- - uid: 11448
+ - uid: 11469
components:
- pos: 14.5,-75.5
parent: 2
type: Transform
- - uid: 11449
+ - uid: 11470
components:
- pos: 15.5,-75.5
parent: 2
type: Transform
- - uid: 11450
+ - uid: 11471
components:
- pos: 16.5,-75.5
parent: 2
type: Transform
- - uid: 11451
+ - uid: 11472
components:
- pos: 17.5,-75.5
parent: 2
type: Transform
- - uid: 11452
+ - uid: 11473
components:
- pos: 18.5,-75.5
parent: 2
type: Transform
- - uid: 11453
+ - uid: 11474
components:
- pos: 19.5,-75.5
parent: 2
type: Transform
- - uid: 11454
+ - uid: 11475
components:
- pos: 20.5,-75.5
parent: 2
type: Transform
- - uid: 11455
+ - uid: 11476
components:
- pos: 21.5,-75.5
parent: 2
type: Transform
- - uid: 11456
+ - uid: 11477
components:
- pos: 69.5,4.5
parent: 2
type: Transform
- - uid: 11457
+ - uid: 11478
components:
- pos: 69.5,2.5
parent: 2
type: Transform
- - uid: 11458
+ - uid: 11479
components:
- pos: 69.5,1.5
parent: 2
type: Transform
- - uid: 11459
+ - uid: 11480
components:
- pos: 69.5,0.5
parent: 2
type: Transform
- - uid: 11460
+ - uid: 11481
components:
- pos: 69.5,-0.5
parent: 2
type: Transform
- - uid: 11461
+ - uid: 11482
components:
- pos: 69.5,-1.5
parent: 2
type: Transform
- - uid: 11462
+ - uid: 11483
components:
- pos: 69.5,31.5
parent: 2
type: Transform
- - uid: 11463
+ - uid: 11484
components:
- pos: 69.5,30.5
parent: 2
type: Transform
- - uid: 11464
+ - uid: 11485
components:
- pos: 69.5,29.5
parent: 2
type: Transform
- - uid: 11465
+ - uid: 11486
components:
- pos: 69.5,28.5
parent: 2
type: Transform
- - uid: 11466
+ - uid: 11487
components:
- pos: 69.5,27.5
parent: 2
type: Transform
- - uid: 11467
+ - uid: 11488
components:
- pos: 69.5,26.5
parent: 2
type: Transform
- - uid: 11468
+ - uid: 11489
components:
- pos: 69.5,25.5
parent: 2
type: Transform
- - uid: 11469
+ - uid: 11490
components:
- pos: 69.5,24.5
parent: 2
type: Transform
- - uid: 11470
+ - uid: 11491
components:
- pos: 69.5,23.5
parent: 2
type: Transform
- - uid: 11471
+ - uid: 11492
components:
- pos: 69.5,22.5
parent: 2
type: Transform
- - uid: 11472
+ - uid: 11493
components:
- pos: 69.5,21.5
parent: 2
type: Transform
- - uid: 11473
+ - uid: 11494
components:
- pos: 69.5,20.5
parent: 2
type: Transform
- - uid: 11474
+ - uid: 11495
components:
- pos: 69.5,19.5
parent: 2
type: Transform
- - uid: 11475
+ - uid: 11496
components:
- pos: 69.5,18.5
parent: 2
type: Transform
- - uid: 11476
+ - uid: 11497
components:
- pos: 69.5,17.5
parent: 2
type: Transform
- - uid: 11477
+ - uid: 11498
components:
- pos: 69.5,16.5
parent: 2
type: Transform
- - uid: 11478
+ - uid: 11499
components:
- pos: 69.5,15.5
parent: 2
type: Transform
- - uid: 11479
+ - uid: 11500
components:
- pos: 69.5,14.5
parent: 2
type: Transform
- - uid: 11480
+ - uid: 11501
components:
- pos: 69.5,13.5
parent: 2
type: Transform
- - uid: 11481
+ - uid: 11502
components:
- pos: 69.5,12.5
parent: 2
type: Transform
- - uid: 11482
+ - uid: 11503
components:
- pos: 69.5,11.5
parent: 2
type: Transform
- - uid: 11483
+ - uid: 11504
components:
- pos: 69.5,10.5
parent: 2
type: Transform
- - uid: 11484
+ - uid: 11505
components:
- pos: 69.5,9.5
parent: 2
type: Transform
- - uid: 11485
+ - uid: 11506
components:
- pos: 69.5,8.5
parent: 2
type: Transform
- - uid: 11486
+ - uid: 11507
components:
- pos: 69.5,7.5
parent: 2
type: Transform
- - uid: 11487
+ - uid: 11508
components:
- pos: 69.5,6.5
parent: 2
type: Transform
- - uid: 11488
+ - uid: 11509
components:
- pos: 69.5,5.5
parent: 2
type: Transform
- - uid: 11489
+ - uid: 11510
components:
- pos: 75.5,43.5
parent: 2
type: Transform
- - uid: 11490
+ - uid: 11511
components:
- pos: 63.5,37.5
parent: 2
type: Transform
- - uid: 11491
+ - uid: 11512
components:
- pos: 63.5,38.5
parent: 2
type: Transform
- - uid: 11492
+ - uid: 11513
components:
- pos: 63.5,39.5
parent: 2
type: Transform
- - uid: 11493
+ - uid: 11514
components:
- pos: 64.5,39.5
parent: 2
type: Transform
- - uid: 11494
+ - uid: 11515
components:
- pos: 65.5,39.5
parent: 2
type: Transform
- - uid: 11495
+ - uid: 11516
components:
- pos: 66.5,39.5
parent: 2
type: Transform
- - uid: 11496
+ - uid: 11517
components:
- pos: 67.5,39.5
parent: 2
type: Transform
- - uid: 11497
+ - uid: 11518
components:
- pos: 67.5,40.5
parent: 2
type: Transform
- - uid: 11498
+ - uid: 11519
components:
- pos: 67.5,41.5
parent: 2
type: Transform
- - uid: 11499
+ - uid: 11520
components:
- pos: 68.5,41.5
parent: 2
type: Transform
- - uid: 11500
+ - uid: 11521
components:
- pos: 69.5,41.5
parent: 2
type: Transform
- - uid: 11501
+ - uid: 11522
components:
- pos: 70.5,41.5
parent: 2
type: Transform
- - uid: 11502
+ - uid: 11523
components:
- pos: 71.5,41.5
parent: 2
type: Transform
- - uid: 11503
+ - uid: 11524
components:
- pos: 72.5,41.5
parent: 2
type: Transform
- - uid: 11504
+ - uid: 11525
components:
- pos: 72.5,42.5
parent: 2
type: Transform
- - uid: 11505
+ - uid: 11526
components:
- pos: 73.5,42.5
parent: 2
type: Transform
- - uid: 11506
+ - uid: 11527
components:
- pos: 74.5,42.5
parent: 2
type: Transform
- - uid: 11507
+ - uid: 11528
components:
- pos: 75.5,42.5
parent: 2
type: Transform
- - uid: 11508
+ - uid: 11529
components:
- pos: 75.5,44.5
parent: 2
type: Transform
- - uid: 11509
+ - uid: 11530
components:
- pos: 75.5,45.5
parent: 2
type: Transform
- - uid: 11510
+ - uid: 11531
components:
- pos: 75.5,46.5
parent: 2
type: Transform
- - uid: 11511
+ - uid: 11532
components:
- pos: 74.5,46.5
parent: 2
type: Transform
- - uid: 11512
+ - uid: 11533
components:
- pos: 74.5,47.5
parent: 2
type: Transform
- - uid: 11513
+ - uid: 11534
components:
- pos: 74.5,48.5
parent: 2
type: Transform
- - uid: 11514
+ - uid: 11535
components:
- pos: 74.5,49.5
parent: 2
type: Transform
- - uid: 11515
+ - uid: 11536
components:
- pos: 74.5,50.5
parent: 2
type: Transform
- - uid: 11516
+ - uid: 11537
components:
- pos: 74.5,51.5
parent: 2
type: Transform
- - uid: 11517
+ - uid: 11538
components:
- pos: 74.5,52.5
parent: 2
type: Transform
- - uid: 11518
+ - uid: 11539
components:
- pos: 74.5,53.5
parent: 2
type: Transform
- - uid: 11519
+ - uid: 11540
components:
- pos: 74.5,54.5
parent: 2
type: Transform
- - uid: 11520
+ - uid: 11541
components:
- pos: 74.5,55.5
parent: 2
type: Transform
- - uid: 11521
+ - uid: 11542
components:
- pos: 74.5,56.5
parent: 2
type: Transform
- - uid: 11522
+ - uid: 11543
components:
- pos: 74.5,57.5
parent: 2
type: Transform
- - uid: 11523
+ - uid: 11544
components:
- pos: 60.5,58.5
parent: 2
type: Transform
- - uid: 11524
+ - uid: 11545
components:
- pos: 73.5,57.5
parent: 2
type: Transform
- - uid: 11525
+ - uid: 11546
components:
- pos: 72.5,57.5
parent: 2
type: Transform
- - uid: 11526
+ - uid: 11547
components:
- pos: 71.5,57.5
parent: 2
type: Transform
- - uid: 11527
+ - uid: 11548
components:
- pos: 70.5,57.5
parent: 2
type: Transform
- - uid: 11528
+ - uid: 11549
components:
- pos: 69.5,57.5
parent: 2
type: Transform
- - uid: 11529
+ - uid: 11550
components:
- pos: 68.5,57.5
parent: 2
type: Transform
- - uid: 11530
+ - uid: 11551
components:
- pos: 67.5,57.5
parent: 2
type: Transform
- - uid: 11531
+ - uid: 11552
components:
- pos: 66.5,57.5
parent: 2
type: Transform
- - uid: 11532
+ - uid: 11553
components:
- pos: 65.5,57.5
parent: 2
type: Transform
- - uid: 11533
+ - uid: 11554
components:
- pos: 64.5,57.5
parent: 2
type: Transform
- - uid: 11534
+ - uid: 11555
components:
- pos: 63.5,57.5
parent: 2
type: Transform
- - uid: 11535
+ - uid: 11556
components:
- pos: 62.5,57.5
parent: 2
type: Transform
- - uid: 11536
+ - uid: 11557
components:
- pos: 61.5,57.5
parent: 2
type: Transform
- - uid: 11537
+ - uid: 11558
components:
- pos: 60.5,57.5
parent: 2
type: Transform
- - uid: 11538
+ - uid: 11559
components:
- pos: 60.5,59.5
parent: 2
type: Transform
- - uid: 11539
+ - uid: 11560
components:
- pos: 60.5,60.5
parent: 2
type: Transform
- - uid: 11540
+ - uid: 11561
components:
- pos: 60.5,61.5
parent: 2
type: Transform
- - uid: 11541
+ - uid: 11562
components:
- pos: 60.5,62.5
parent: 2
type: Transform
- - uid: 11542
+ - uid: 11563
components:
- pos: 60.5,63.5
parent: 2
type: Transform
- - uid: 11543
+ - uid: 11564
components:
- pos: 47.5,55.5
parent: 2
type: Transform
- - uid: 11544
+ - uid: 11565
components:
- pos: 59.5,63.5
parent: 2
type: Transform
- - uid: 11545
+ - uid: 11566
components:
- pos: 58.5,63.5
parent: 2
type: Transform
- - uid: 11546
+ - uid: 11567
components:
- pos: 57.5,63.5
parent: 2
type: Transform
- - uid: 11547
+ - uid: 11568
components:
- pos: 56.5,63.5
parent: 2
type: Transform
- - uid: 11548
+ - uid: 11569
components:
- pos: 55.5,63.5
parent: 2
type: Transform
- - uid: 11549
+ - uid: 11570
components:
- pos: 54.5,63.5
parent: 2
type: Transform
- - uid: 11550
+ - uid: 11571
components:
- pos: 53.5,63.5
parent: 2
type: Transform
- - uid: 11551
+ - uid: 11572
components:
- pos: 52.5,63.5
parent: 2
type: Transform
- - uid: 11552
+ - uid: 11573
components:
- pos: 51.5,63.5
parent: 2
type: Transform
- - uid: 11553
+ - uid: 11574
components:
- pos: 50.5,63.5
parent: 2
type: Transform
- - uid: 11554
+ - uid: 11575
components:
- pos: 49.5,63.5
parent: 2
type: Transform
- - uid: 11555
+ - uid: 11576
components:
- pos: 48.5,63.5
parent: 2
type: Transform
- - uid: 11556
+ - uid: 11577
components:
- pos: 48.5,62.5
parent: 2
type: Transform
- - uid: 11557
+ - uid: 11578
components:
- pos: 48.5,61.5
parent: 2
type: Transform
- - uid: 11558
+ - uid: 11579
components:
- pos: 48.5,60.5
parent: 2
type: Transform
- - uid: 11559
+ - uid: 11580
components:
- pos: 48.5,59.5
parent: 2
type: Transform
- - uid: 11560
+ - uid: 11581
components:
- pos: 48.5,58.5
parent: 2
type: Transform
- - uid: 11561
+ - uid: 11582
components:
- pos: 48.5,57.5
parent: 2
type: Transform
- - uid: 11562
+ - uid: 11583
components:
- pos: 48.5,56.5
parent: 2
type: Transform
- - uid: 11563
+ - uid: 11584
components:
- pos: 48.5,55.5
parent: 2
type: Transform
- - uid: 11564
+ - uid: 11585
components:
- pos: 46.5,55.5
parent: 2
type: Transform
- - uid: 11565
+ - uid: 11586
components:
- pos: 45.5,55.5
parent: 2
type: Transform
- - uid: 11566
+ - uid: 11587
components:
- pos: 44.5,55.5
parent: 2
type: Transform
- - uid: 11567
+ - uid: 11588
components:
- pos: 43.5,55.5
parent: 2
type: Transform
- - uid: 11568
+ - uid: 11589
components:
- pos: 42.5,55.5
parent: 2
type: Transform
- - uid: 11569
+ - uid: 11590
components:
- pos: 41.5,55.5
parent: 2
type: Transform
- - uid: 11570
+ - uid: 11591
components:
- pos: 40.5,55.5
parent: 2
type: Transform
- - uid: 11571
+ - uid: 11592
components:
- pos: 37.5,55.5
parent: 2
type: Transform
- - uid: 11572
+ - uid: 11593
components:
- pos: 36.5,55.5
parent: 2
type: Transform
- - uid: 11573
+ - uid: 11594
components:
- pos: 35.5,55.5
parent: 2
type: Transform
- - uid: 11574
+ - uid: 11595
components:
- pos: 34.5,55.5
parent: 2
type: Transform
- - uid: 11575
+ - uid: 11596
components:
- pos: 33.5,55.5
parent: 2
type: Transform
- - uid: 11576
+ - uid: 11597
components:
- pos: 32.5,55.5
parent: 2
type: Transform
- - uid: 11577
+ - uid: 11598
components:
- pos: 31.5,55.5
parent: 2
type: Transform
- - uid: 11578
+ - uid: 11599
components:
- pos: 30.5,55.5
parent: 2
type: Transform
- - uid: 11579
+ - uid: 11600
components:
- pos: 66.5,35.5
parent: 2
type: Transform
- - uid: 11580
+ - uid: 11601
components:
- pos: 66.5,34.5
parent: 2
type: Transform
- - uid: 11581
+ - uid: 11602
components:
- pos: 66.5,33.5
parent: 2
type: Transform
- - uid: 11582
+ - uid: 11603
components:
- pos: 66.5,32.5
parent: 2
type: Transform
- - uid: 11583
+ - uid: 11604
components:
- pos: 66.5,31.5
parent: 2
type: Transform
- - uid: 11584
+ - uid: 11605
components:
- pos: 67.5,31.5
parent: 2
type: Transform
- - uid: 11585
+ - uid: 11606
components:
- pos: 68.5,31.5
parent: 2
type: Transform
- - uid: 11586
+ - uid: 11607
components:
- rot: 3.141592653589793 rad
pos: 27.5,-90.5
parent: 2
type: Transform
- - uid: 11587
+ - uid: 11608
components:
- rot: 3.141592653589793 rad
pos: 13.5,-89.5
parent: 2
type: Transform
- - uid: 11588
+ - uid: 11609
components:
- pos: -7.5,-9.5
parent: 2
type: Transform
- - uid: 11589
+ - uid: 11610
components:
- pos: -8.5,-9.5
parent: 2
type: Transform
- - uid: 11590
+ - uid: 11611
components:
- pos: -9.5,-9.5
parent: 2
type: Transform
- - uid: 11591
+ - uid: 11612
components:
- pos: -10.5,-9.5
parent: 2
type: Transform
- - uid: 11592
+ - uid: 11613
components:
- pos: -11.5,-9.5
parent: 2
type: Transform
- - uid: 11593
+ - uid: 11614
components:
- pos: -12.5,-9.5
parent: 2
type: Transform
- - uid: 11594
+ - uid: 11615
components:
- pos: -13.5,-9.5
parent: 2
type: Transform
- - uid: 11595
+ - uid: 11616
components:
- pos: -15.5,-14.5
parent: 2
type: Transform
- - uid: 11596
- components:
- - pos: -16.5,-14.5
- parent: 2
- type: Transform
- - uid: 11597
+ - uid: 11617
components:
- pos: -46.5,52.5
parent: 2
type: Transform
- - uid: 11598
+ - uid: 11618
components:
- pos: -46.5,51.5
parent: 2
type: Transform
- - uid: 11599
+ - uid: 11619
components:
- pos: -46.5,50.5
parent: 2
type: Transform
- - uid: 11600
+ - uid: 11620
components:
- pos: -46.5,49.5
parent: 2
type: Transform
- - uid: 11601
+ - uid: 11621
components:
- pos: -46.5,-56.5
parent: 2
type: Transform
- - uid: 11602
+ - uid: 11622
components:
- pos: -46.5,-57.5
parent: 2
type: Transform
- - uid: 11603
+ - uid: 11623
components:
- pos: -46.5,-58.5
parent: 2
type: Transform
- - uid: 11604
+ - uid: 11624
components:
- pos: -47.5,-58.5
parent: 2
type: Transform
- - uid: 11605
+ - uid: 11625
components:
- pos: -48.5,-58.5
parent: 2
type: Transform
- - uid: 11606
+ - uid: 11626
components:
- pos: -49.5,-58.5
parent: 2
type: Transform
- - uid: 11607
+ - uid: 11627
components:
- pos: -29.5,-19.5
parent: 2
type: Transform
- - uid: 11608
+ - uid: 11628
components:
- pos: -29.5,-20.5
parent: 2
type: Transform
- - uid: 11609
+ - uid: 11629
components:
- pos: -29.5,-21.5
parent: 2
type: Transform
- - uid: 11610
+ - uid: 11630
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-60.5
parent: 2
type: Transform
- - uid: 11611
+ - uid: 11631
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-60.5
parent: 2
type: Transform
- - uid: 11612
+ - uid: 11632
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-60.5
parent: 2
type: Transform
- - uid: 11613
+ - uid: 11633
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-58.5
parent: 2
type: Transform
- - uid: 11614
+ - uid: 11634
components:
- pos: 63.5,2.5
parent: 2
type: Transform
- - uid: 11615
+ - uid: 11635
components:
- rot: 3.141592653589793 rad
pos: 52.5,-93.5
parent: 2
type: Transform
- - uid: 11616
+ - uid: 11636
components:
- rot: 3.141592653589793 rad
pos: 52.5,-80.5
parent: 2
type: Transform
- - uid: 11617
+ - uid: 11637
components:
- rot: 3.141592653589793 rad
pos: 52.5,-76.5
parent: 2
type: Transform
- - uid: 11618
+ - uid: 11638
components:
- rot: 3.141592653589793 rad
pos: 51.5,-95.5
parent: 2
type: Transform
- - uid: 11619
+ - uid: 11639
components:
- rot: 3.141592653589793 rad
pos: 52.5,-95.5
parent: 2
type: Transform
- - uid: 11620
+ - uid: 11640
components:
- pos: 6.5,-73.5
parent: 2
type: Transform
- - uid: 11621
+ - uid: 11641
components:
- rot: 3.141592653589793 rad
pos: 50.5,-95.5
parent: 2
type: Transform
- - uid: 11622
+ - uid: 11642
components:
- rot: 3.141592653589793 rad
pos: 52.5,-75.5
parent: 2
type: Transform
- - uid: 11623
+ - uid: 11643
components:
- rot: 3.141592653589793 rad
pos: 52.5,-74.5
parent: 2
type: Transform
- - uid: 11624
+ - uid: 11644
components:
- rot: 3.141592653589793 rad
pos: 54.5,-74.5
parent: 2
type: Transform
- - uid: 11625
+ - uid: 11645
components:
- rot: 3.141592653589793 rad
pos: 53.5,-74.5
parent: 2
type: Transform
- - uid: 11626
+ - uid: 11646
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-48.5
parent: 2
type: Transform
- - uid: 11627
+ - uid: 11647
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-49.5
parent: 2
type: Transform
- - uid: 11628
+ - uid: 11648
components:
- rot: 3.141592653589793 rad
pos: 5.5,-19.5
parent: 2
type: Transform
- - uid: 11629
+ - uid: 11649
components:
- rot: 3.141592653589793 rad
pos: 5.5,-20.5
parent: 2
type: Transform
- - uid: 11630
+ - uid: 11650
components:
- rot: 3.141592653589793 rad
pos: 5.5,-21.5
parent: 2
type: Transform
- - uid: 11631
+ - uid: 11651
components:
- rot: 3.141592653589793 rad
pos: 5.5,-22.5
parent: 2
type: Transform
- - uid: 11632
+ - uid: 11652
components:
- rot: 3.141592653589793 rad
pos: 4.5,-16.5
parent: 2
type: Transform
- - uid: 11633
+ - uid: 11653
components:
- rot: 3.141592653589793 rad
pos: 6.5,-14.5
parent: 2
type: Transform
- - uid: 11634
+ - uid: 11654
components:
- rot: 3.141592653589793 rad
pos: 5.5,-14.5
parent: 2
type: Transform
- - uid: 11635
+ - uid: 11655
components:
- rot: 3.141592653589793 rad
pos: 4.5,-14.5
parent: 2
type: Transform
- - uid: 11636
+ - uid: 11656
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-49.5
parent: 2
type: Transform
- - uid: 11637
+ - uid: 11657
components:
- pos: 6.5,-74.5
parent: 2
type: Transform
- - uid: 11638
+ - uid: 11658
components:
- pos: 6.5,-75.5
parent: 2
type: Transform
- - uid: 11639
+ - uid: 11659
components:
- pos: 6.5,-76.5
parent: 2
type: Transform
- - uid: 11640
+ - uid: 11660
components:
- pos: 6.5,-77.5
parent: 2
type: Transform
- - uid: 11641
+ - uid: 11661
components:
- pos: 6.5,-78.5
parent: 2
type: Transform
- - uid: 11642
+ - uid: 11662
components:
- pos: 6.5,-79.5
parent: 2
type: Transform
- - uid: 11643
+ - uid: 11663
components:
- pos: 6.5,-80.5
parent: 2
type: Transform
- - uid: 11644
+ - uid: 11664
components:
- pos: 6.5,-81.5
parent: 2
type: Transform
- - uid: 11645
+ - uid: 11665
components:
- pos: 6.5,-82.5
parent: 2
type: Transform
- - uid: 11646
+ - uid: 11666
components:
- rot: -1.5707963267948966 rad
pos: -47.5,49.5
parent: 2
type: Transform
- - uid: 11647
+ - uid: 11667
components:
- rot: -1.5707963267948966 rad
pos: -48.5,49.5
parent: 2
type: Transform
- - uid: 11648
+ - uid: 11668
components:
- rot: -1.5707963267948966 rad
pos: -49.5,49.5
parent: 2
type: Transform
- - uid: 11649
+ - uid: 11669
components:
- rot: -1.5707963267948966 rad
pos: -49.5,48.5
parent: 2
type: Transform
- - uid: 11650
+ - uid: 11670
components:
- pos: 71.5,-25.5
parent: 2
type: Transform
- - uid: 11651
+ - uid: 11671
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-58.5
parent: 2
type: Transform
- - uid: 11652
+ - uid: 11672
components:
- rot: 1.5707963267948966 rad
pos: -61.5,-59.5
parent: 2
type: Transform
- - uid: 11653
+ - uid: 11673
components:
- rot: 1.5707963267948966 rad
pos: -62.5,-59.5
parent: 2
type: Transform
- - uid: 11654
+ - uid: 11674
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-59.5
parent: 2
type: Transform
- - uid: 11655
+ - uid: 11675
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-59.5
parent: 2
type: Transform
- - uid: 11656
+ - uid: 11676
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-59.5
parent: 2
type: Transform
- - uid: 11657
+ - uid: 11677
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-59.5
parent: 2
type: Transform
- - uid: 11658
+ - uid: 11678
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-59.5
parent: 2
type: Transform
- - uid: 11659
+ - uid: 11679
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-59.5
parent: 2
type: Transform
- - uid: 11660
+ - uid: 11680
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-59.5
parent: 2
type: Transform
- - uid: 11661
+ - uid: 11681
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-59.5
parent: 2
type: Transform
- - uid: 11662
+ - uid: 11682
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-59.5
parent: 2
type: Transform
- - uid: 11663
+ - uid: 11683
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-59.5
parent: 2
type: Transform
- - uid: 11664
+ - uid: 11684
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-59.5
parent: 2
type: Transform
- - uid: 11665
+ - uid: 11685
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-59.5
parent: 2
type: Transform
- - uid: 11666
+ - uid: 11686
components:
- rot: 3.141592653589793 rad
pos: 45.5,-80.5
parent: 2
type: Transform
- - uid: 11667
+ - uid: 11687
components:
- rot: 3.141592653589793 rad
pos: 45.5,-79.5
parent: 2
type: Transform
- - uid: 11668
+ - uid: 11688
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-91.5
parent: 2
type: Transform
- - uid: 11669
+ - uid: 11689
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-91.5
parent: 2
type: Transform
- - uid: 11670
+ - uid: 11690
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-92.5
parent: 2
type: Transform
- - uid: 11671
+ - uid: 11691
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-93.5
parent: 2
type: Transform
- - uid: 11672
+ - uid: 11692
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-92.5
parent: 2
type: Transform
- - uid: 11673
+ - uid: 11693
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-93.5
parent: 2
type: Transform
- - uid: 11674
+ - uid: 11694
components:
- rot: 3.141592653589793 rad
pos: 45.5,-78.5
parent: 2
type: Transform
- - uid: 11675
+ - uid: 11695
components:
- rot: 3.141592653589793 rad
pos: 45.5,-77.5
parent: 2
type: Transform
- - uid: 11676
+ - uid: 11696
components:
- rot: 3.141592653589793 rad
pos: 45.5,-76.5
parent: 2
type: Transform
- - uid: 11677
+ - uid: 11697
components:
- rot: 3.141592653589793 rad
pos: 45.5,-75.5
parent: 2
type: Transform
- - uid: 11678
+ - uid: 11698
components:
- rot: 3.141592653589793 rad
pos: 33.5,-80.5
parent: 2
type: Transform
- - uid: 11679
+ - uid: 11699
components:
- rot: 3.141592653589793 rad
pos: 33.5,-79.5
parent: 2
type: Transform
- - uid: 11680
+ - uid: 11700
components:
- rot: 3.141592653589793 rad
pos: 33.5,-78.5
parent: 2
type: Transform
- - uid: 11681
+ - uid: 11701
components:
- rot: 3.141592653589793 rad
pos: 33.5,-77.5
parent: 2
type: Transform
- - uid: 11682
+ - uid: 11702
components:
- rot: 3.141592653589793 rad
pos: 33.5,-76.5
parent: 2
type: Transform
- - uid: 11683
+ - uid: 11703
components:
- rot: 3.141592653589793 rad
pos: 33.5,-75.5
parent: 2
type: Transform
- - uid: 11684
+ - uid: 11704
components:
- pos: -79.5,-33.5
parent: 2
type: Transform
- - uid: 11685
+ - uid: 11705
components:
- pos: -79.5,-39.5
parent: 2
type: Transform
- - uid: 11686
+ - uid: 11706
components:
- pos: -79.5,-38.5
parent: 2
type: Transform
- - uid: 11687
+ - uid: 11707
components:
- pos: -79.5,-34.5
parent: 2
type: Transform
- - uid: 11688
+ - uid: 11708
components:
- pos: -79.5,-36.5
parent: 2
type: Transform
- - uid: 11689
+ - uid: 11709
components:
- pos: -79.5,-43.5
parent: 2
type: Transform
- - uid: 11690
+ - uid: 11710
components:
- pos: -79.5,-37.5
parent: 2
type: Transform
- - uid: 11691
+ - uid: 11711
components:
- pos: -79.5,-42.5
parent: 2
type: Transform
- - uid: 11692
+ - uid: 11712
components:
- pos: -79.5,-35.5
parent: 2
type: Transform
- - uid: 11693
+ - uid: 11713
components:
- rot: 3.141592653589793 rad
pos: -79.5,-44.5
parent: 2
type: Transform
- - uid: 11694
+ - uid: 11714
components:
- pos: -70.5,-37.5
parent: 2
type: Transform
- - uid: 11695
+ - uid: 11715
components:
- pos: -69.5,-37.5
parent: 2
type: Transform
- - uid: 11696
+ - uid: 11716
components:
- pos: -68.5,-37.5
parent: 2
type: Transform
- - uid: 11697
+ - uid: 11717
components:
- pos: -67.5,-37.5
parent: 2
type: Transform
- - uid: 11698
+ - uid: 11718
components:
- pos: -66.5,-37.5
parent: 2
type: Transform
- - uid: 11699
+ - uid: 11719
components:
- pos: -65.5,-37.5
parent: 2
type: Transform
- - uid: 11700
+ - uid: 11720
components:
- pos: -65.5,-38.5
parent: 2
type: Transform
- - uid: 11701
+ - uid: 11721
components:
- pos: -65.5,-39.5
parent: 2
type: Transform
- - uid: 11702
+ - uid: 11722
components:
- pos: -65.5,-40.5
parent: 2
type: Transform
- - uid: 11703
+ - uid: 11723
components:
- pos: -65.5,-41.5
parent: 2
type: Transform
- - uid: 11704
+ - uid: 11724
components:
- pos: -65.5,-42.5
parent: 2
type: Transform
- - uid: 11705
+ - uid: 11725
components:
- pos: -65.5,-43.5
parent: 2
type: Transform
- - uid: 11706
+ - uid: 11726
components:
- pos: -65.5,-45.5
parent: 2
type: Transform
- - uid: 11707
+ - uid: 11727
components:
- rot: 3.141592653589793 rad
pos: -79.5,-45.5
parent: 2
type: Transform
- - uid: 11708
+ - uid: 11728
components:
- rot: 3.141592653589793 rad
pos: -79.5,-46.5
parent: 2
type: Transform
- - uid: 11709
+ - uid: 11729
components:
- rot: 3.141592653589793 rad
pos: -79.5,-47.5
parent: 2
type: Transform
- - uid: 11710
+ - uid: 11730
components:
- rot: 3.141592653589793 rad
pos: -79.5,-48.5
parent: 2
type: Transform
- - uid: 11711
+ - uid: 11731
components:
- rot: 3.141592653589793 rad
pos: -78.5,-48.5
parent: 2
type: Transform
- - uid: 11712
+ - uid: 11732
components:
- rot: 3.141592653589793 rad
pos: -77.5,-48.5
parent: 2
type: Transform
- - uid: 11713
+ - uid: 11733
components:
- rot: 3.141592653589793 rad
pos: -76.5,-48.5
parent: 2
type: Transform
- - uid: 11714
+ - uid: 11734
components:
- rot: 3.141592653589793 rad
pos: -75.5,-48.5
parent: 2
type: Transform
- - uid: 11715
+ - uid: 11735
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-44.5
parent: 2
type: Transform
- - uid: 11716
+ - uid: 11736
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-47.5
parent: 2
type: Transform
- - uid: 11717
+ - uid: 11737
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-46.5
parent: 2
type: Transform
- - uid: 11718
+ - uid: 11738
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-45.5
parent: 2
type: Transform
- - uid: 11719
+ - uid: 11739
components:
- rot: 3.141592653589793 rad
pos: -78.5,-38.5
parent: 2
type: Transform
- - uid: 11720
+ - uid: 11740
components:
- rot: 1.5707963267948966 rad
pos: -15.5,15.5
parent: 2
type: Transform
- - uid: 11721
+ - uid: 11741
components:
- rot: 3.141592653589793 rad
pos: -77.5,-38.5
parent: 2
type: Transform
- - uid: 11722
+ - uid: 11742
components:
- rot: 3.141592653589793 rad
pos: -75.5,-38.5
parent: 2
type: Transform
- - uid: 11723
+ - uid: 11743
components:
- rot: 3.141592653589793 rad
pos: -52.5,-33.5
parent: 2
type: Transform
- - uid: 11724
+ - uid: 11744
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-38.5
parent: 2
type: Transform
- - uid: 11725
+ - uid: 11745
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-39.5
parent: 2
type: Transform
- - uid: 11726
+ - uid: 11746
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-40.5
parent: 2
type: Transform
- - uid: 11727
+ - uid: 11747
components:
- rot: 3.141592653589793 rad
pos: 23.5,-32.5
parent: 2
type: Transform
- - uid: 11728
+ - uid: 11748
components:
- rot: 3.141592653589793 rad
pos: 26.5,-32.5
parent: 2
type: Transform
- - uid: 11729
+ - uid: 11749
components:
- pos: 12.5,25.5
parent: 2
type: Transform
- - uid: 11730
+ - uid: 11750
components:
- pos: 11.5,25.5
parent: 2
type: Transform
- - uid: 11731
+ - uid: 11751
components:
- pos: 10.5,25.5
parent: 2
type: Transform
- - uid: 11732
+ - uid: 11752
components:
- pos: 9.5,25.5
parent: 2
type: Transform
- - uid: 11733
+ - uid: 11753
components:
- pos: 8.5,25.5
parent: 2
type: Transform
- - uid: 11734
+ - uid: 11754
components:
- rot: 3.141592653589793 rad
pos: 39.5,58.5
parent: 2
type: Transform
- - uid: 11735
+ - uid: 11755
components:
- rot: 3.141592653589793 rad
pos: 39.5,57.5
parent: 2
type: Transform
- - uid: 11736
+ - uid: 11756
components:
- rot: 3.141592653589793 rad
pos: 39.5,56.5
parent: 2
type: Transform
- - uid: 11737
+ - uid: 11757
components:
- rot: 1.5707963267948966 rad
pos: 39.5,55.5
parent: 2
type: Transform
- - uid: 11738
+ - uid: 11758
components:
- rot: 1.5707963267948966 rad
pos: 38.5,55.5
parent: 2
type: Transform
- - uid: 11739
+ - uid: 11759
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-45.5
parent: 2
type: Transform
- - uid: 11740
+ - uid: 11760
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-47.5
parent: 2
type: Transform
- - uid: 11741
+ - uid: 11761
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-46.5
parent: 2
type: Transform
+ - uid: 11762
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,24.5
+ parent: 2
+ type: Transform
- proto: Cautery
entities:
- - uid: 11742
+ - uid: 11763
components:
- rot: -1.5707963267948966 rad
pos: 0.5414771,-66.9678
parent: 2
type: Transform
- - uid: 11743
+ - uid: 11764
components:
- pos: 73.52661,-47.78304
parent: 2
type: Transform
- proto: Chair
entities:
- - uid: 11744
+ - uid: 11765
components:
- rot: -1.5707963267948966 rad
pos: 58.5,58.5
parent: 2
type: Transform
- - uid: 11745
+ - uid: 11766
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-72.5
parent: 2
type: Transform
- - uid: 11746
+ - uid: 11767
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-75.5
parent: 2
type: Transform
- - uid: 11747
+ - uid: 11768
components:
- pos: 14.5,-72.5
parent: 2
type: Transform
- - uid: 11748
+ - uid: 11769
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-79.5
parent: 2
type: Transform
- - uid: 11749
+ - uid: 11770
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-78.5
parent: 2
type: Transform
- - uid: 11750
+ - uid: 11771
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-77.5
parent: 2
type: Transform
- - uid: 11751
+ - uid: 11772
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-74.5
parent: 2
type: Transform
- - uid: 11752
+ - uid: 11773
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-73.5
parent: 2
type: Transform
- - uid: 11753
+ - uid: 11774
components:
- pos: -23.5,-38.5
parent: 2
type: Transform
- - uid: 11754
+ - uid: 11775
components:
- rot: 3.141592653589793 rad
pos: 27.5,-4.5
parent: 2
type: Transform
- - uid: 11755
+ - uid: 11776
components:
- pos: -2.5,-32.5
parent: 2
type: Transform
- - uid: 11756
+ - uid: 11777
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-65.5
parent: 2
type: Transform
- - uid: 11757
+ - uid: 11778
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-66.5
parent: 2
type: Transform
- - uid: 11758
+ - uid: 11779
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-0.5
parent: 2
type: Transform
- - uid: 11759
+ - uid: 11780
components:
- pos: 16.5,-67.5
parent: 2
type: Transform
- - uid: 11760
+ - uid: 11781
components:
- rot: 1.5707963267948966 rad
pos: 18.5,2.5
parent: 2
type: Transform
- - uid: 11761
+ - uid: 11782
components:
- pos: 27.5,6.5
parent: 2
type: Transform
- - uid: 11762
+ - uid: 11783
components:
- pos: 26.5,6.5
parent: 2
type: Transform
- - uid: 11763
+ - uid: 11784
components:
- rot: 1.5707963267948966 rad
pos: 7.5,13.5
parent: 2
type: Transform
- - uid: 11764
+ - uid: 11785
components:
- rot: 1.5707963267948966 rad
pos: 7.5,14.5
parent: 2
type: Transform
- - uid: 11765
+ - uid: 11786
components:
- rot: 3.141592653589793 rad
pos: 23.5,-4.5
parent: 2
type: Transform
- - uid: 11766
+ - uid: 11787
components:
- rot: 3.141592653589793 rad
pos: 26.5,-4.5
parent: 2
type: Transform
- - uid: 11767
+ - uid: 11788
components:
- pos: 22.5,6.5
parent: 2
type: Transform
- - uid: 11768
+ - uid: 11789
components:
- pos: 25.5,6.5
parent: 2
type: Transform
- - uid: 11769
+ - uid: 11790
components:
- pos: 21.5,6.5
parent: 2
type: Transform
- - uid: 11770
+ - uid: 11791
components:
- rot: 3.141592653589793 rad
pos: -2.5,-34.5
parent: 2
type: Transform
- - uid: 11771
+ - uid: 11792
components:
- pos: 15.5,-67.5
parent: 2
type: Transform
- - uid: 11772
+ - uid: 11793
components:
- rot: 3.141592653589793 rad
pos: 22.5,-4.5
parent: 2
type: Transform
- - uid: 11773
+ - uid: 11794
components:
- rot: 3.141592653589793 rad
pos: 21.5,-4.5
parent: 2
type: Transform
- - uid: 11774
+ - uid: 11795
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-9.5
parent: 2
type: Transform
- - uid: 11775
+ - uid: 11796
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-36.5
parent: 2
type: Transform
- - uid: 11776
+ - uid: 11797
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-37.5
parent: 2
type: Transform
- - uid: 11777
+ - uid: 11798
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-38.5
parent: 2
type: Transform
- - uid: 11778
+ - uid: 11799
components:
- pos: 17.5,23.5
parent: 2
type: Transform
- - uid: 11779
+ - uid: 11800
components:
- pos: 15.5,23.5
parent: 2
type: Transform
- - uid: 11780
+ - uid: 11801
components:
- rot: 3.141592653589793 rad
pos: 16.5,20.5
parent: 2
type: Transform
- - uid: 11781
+ - uid: 11802
components:
- pos: 35.5,19.5
parent: 2
type: Transform
- - uid: 11782
+ - uid: 11803
components:
- rot: 3.141592653589793 rad
pos: 35.5,17.5
parent: 2
type: Transform
- - uid: 11783
+ - uid: 11804
components:
- rot: -1.5707963267948966 rad
pos: 18.5,29.5
parent: 2
type: Transform
- - uid: 11784
+ - uid: 11805
components:
- rot: -1.5707963267948966 rad
pos: 18.5,28.5
parent: 2
type: Transform
- - uid: 11785
+ - uid: 11806
components:
- pos: 48.5,19.5
parent: 2
type: Transform
- - uid: 11786
+ - uid: 11807
components:
- pos: 52.5,8.5
parent: 2
type: Transform
- - uid: 11787
+ - uid: 11808
components:
- rot: 3.141592653589793 rad
pos: 52.5,5.5
parent: 2
type: Transform
- - uid: 11788
+ - uid: 11809
components:
- pos: 51.5,8.5
parent: 2
type: Transform
- - uid: 11789
+ - uid: 11810
components:
- rot: 3.141592653589793 rad
pos: 51.5,5.5
parent: 2
type: Transform
- - uid: 11790
+ - uid: 11811
components:
- pos: 58.5,21.5
parent: 2
type: Transform
- - uid: 11791
+ - uid: 11812
components:
- pos: 57.5,21.5
parent: 2
type: Transform
- - uid: 11792
+ - uid: 11813
components:
- rot: 3.141592653589793 rad
pos: 58.5,18.5
parent: 2
type: Transform
- - uid: 11793
+ - uid: 11814
components:
- rot: 3.141592653589793 rad
pos: 57.5,18.5
parent: 2
type: Transform
- - uid: 11794
+ - uid: 11815
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-3.5
parent: 2
type: Transform
- - uid: 11795
+ - uid: 11816
components:
- pos: 59.5,-10.5
parent: 2
type: Transform
- - uid: 11796
+ - uid: 11817
components:
- pos: 58.5,-10.5
parent: 2
type: Transform
- - uid: 11797
+ - uid: 11818
components:
- pos: 57.5,-10.5
parent: 2
type: Transform
- - uid: 11798
+ - uid: 11819
components:
- pos: 56.5,-10.5
parent: 2
type: Transform
- - uid: 11799
+ - uid: 11820
components:
- pos: 55.5,-10.5
parent: 2
type: Transform
- - uid: 11800
+ - uid: 11821
components:
- rot: 3.141592653589793 rad
pos: 55.5,-6.5
parent: 2
type: Transform
- - uid: 11801
+ - uid: 11822
components:
- rot: 3.141592653589793 rad
pos: 56.5,-6.5
parent: 2
type: Transform
- - uid: 11802
+ - uid: 11823
components:
- rot: 3.141592653589793 rad
pos: 57.5,-6.5
parent: 2
type: Transform
- - uid: 11803
+ - uid: 11824
components:
- rot: 3.141592653589793 rad
pos: 58.5,-6.5
parent: 2
type: Transform
- - uid: 11804
+ - uid: 11825
components:
- rot: 3.141592653589793 rad
pos: 59.5,-6.5
parent: 2
type: Transform
- - uid: 11805
+ - uid: 11826
components:
- pos: 55.5,-14.5
parent: 2
type: Transform
- - uid: 11806
+ - uid: 11827
components:
- pos: 56.5,-14.5
parent: 2
type: Transform
- - uid: 11807
+ - uid: 11828
components:
- pos: 59.5,-14.5
parent: 2
type: Transform
- - uid: 11808
+ - uid: 11829
components:
- pos: 58.5,-14.5
parent: 2
type: Transform
- - uid: 11809
+ - uid: 11830
components:
- pos: 61.5,-10.5
parent: 2
type: Transform
- - uid: 11810
+ - uid: 11831
components:
- pos: 60.5,-10.5
parent: 2
type: Transform
- - uid: 11811
+ - uid: 11832
components:
- pos: 44.5,-48.5
parent: 2
type: Transform
- - uid: 11812
+ - uid: 11833
components:
- pos: 46.5,-48.5
parent: 2
type: Transform
- - uid: 11813
+ - uid: 11834
components:
- rot: 3.141592653589793 rad
pos: 28.5,-55.5
parent: 2
type: Transform
- - uid: 11814
+ - uid: 11835
components:
- rot: 3.141592653589793 rad
pos: 29.5,-55.5
parent: 2
type: Transform
- - uid: 11815
+ - uid: 11836
components:
- rot: 3.141592653589793 rad
pos: 30.5,-55.5
parent: 2
type: Transform
- - uid: 11816
+ - uid: 11837
components:
- rot: 3.141592653589793 rad
pos: 30.5,-54.5
parent: 2
type: Transform
- - uid: 11817
+ - uid: 11838
components:
- rot: 3.141592653589793 rad
pos: 29.5,-54.5
parent: 2
type: Transform
- - uid: 11818
+ - uid: 11839
components:
- rot: 3.141592653589793 rad
pos: 28.5,-54.5
parent: 2
type: Transform
- - uid: 11819
+ - uid: 11840
components:
- rot: 3.141592653589793 rad
pos: 32.5,-54.5
parent: 2
type: Transform
- - uid: 11820
+ - uid: 11841
components:
- rot: 3.141592653589793 rad
pos: 33.5,-54.5
parent: 2
type: Transform
- - uid: 11821
+ - uid: 11842
components:
- rot: 3.141592653589793 rad
pos: 34.5,-54.5
parent: 2
type: Transform
- - uid: 11822
+ - uid: 11843
components:
- rot: 3.141592653589793 rad
pos: 34.5,-55.5
parent: 2
type: Transform
- - uid: 11823
+ - uid: 11844
components:
- rot: 3.141592653589793 rad
pos: 33.5,-55.5
parent: 2
type: Transform
- - uid: 11824
+ - uid: 11845
components:
- rot: 3.141592653589793 rad
pos: 32.5,-55.5
parent: 2
type: Transform
- - uid: 11825
+ - uid: 11846
components:
- rot: 3.141592653589793 rad
pos: 32.5,-53.5
parent: 2
type: Transform
- - uid: 11826
+ - uid: 11847
components:
- rot: 3.141592653589793 rad
pos: 33.5,-53.5
parent: 2
type: Transform
- - uid: 11827
+ - uid: 11848
components:
- rot: 3.141592653589793 rad
pos: 34.5,-53.5
parent: 2
type: Transform
- - uid: 11828
+ - uid: 11849
components:
- rot: 3.141592653589793 rad
pos: 30.5,-53.5
parent: 2
type: Transform
- - uid: 11829
+ - uid: 11850
components:
- rot: 3.141592653589793 rad
pos: 29.5,-53.5
parent: 2
type: Transform
- - uid: 11830
+ - uid: 11851
components:
- rot: 3.141592653589793 rad
pos: 28.5,-53.5
parent: 2
type: Transform
- - uid: 11831
+ - uid: 11852
components:
- pos: 33.5,-48.5
parent: 2
type: Transform
- - uid: 11832
+ - uid: 11853
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-48.5
parent: 2
type: Transform
- - uid: 11833
+ - uid: 11854
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-9.5
parent: 2
type: Transform
- - uid: 11834
+ - uid: 11855
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-10.5
parent: 2
type: Transform
- - uid: 11835
+ - uid: 11856
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-13.5
parent: 2
type: Transform
- - uid: 11836
+ - uid: 11857
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-14.5
parent: 2
type: Transform
- - uid: 11837
+ - uid: 11858
components:
- rot: 3.141592653589793 rad
pos: -48.5,10.5
parent: 2
type: Transform
- - uid: 11838
+ - uid: 11859
components:
- pos: 44.5,-70.5
parent: 2
type: Transform
- - uid: 11839
+ - uid: 11860
components:
- pos: 43.5,-70.5
parent: 2
type: Transform
- - uid: 11840
+ - uid: 11861
components:
- pos: 42.5,-70.5
parent: 2
type: Transform
- - uid: 11841
+ - uid: 11862
components:
- pos: 41.5,-70.5
parent: 2
type: Transform
- - uid: 11842
+ - uid: 11863
components:
- pos: 37.5,-70.5
parent: 2
type: Transform
- - uid: 11843
+ - uid: 11864
components:
- pos: 36.5,-70.5
parent: 2
type: Transform
- - uid: 11844
+ - uid: 11865
components:
- pos: 35.5,-70.5
parent: 2
type: Transform
- - uid: 11845
+ - uid: 11866
components:
- pos: 34.5,-70.5
parent: 2
type: Transform
- - uid: 11846
+ - uid: 11867
components:
- rot: 3.141592653589793 rad
pos: -49.5,10.5
parent: 2
type: Transform
- - uid: 11847
+ - uid: 11868
components:
- rot: 3.141592653589793 rad
pos: 23.5,16.5
parent: 2
type: Transform
- - uid: 11848
+ - uid: 11869
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-75.5
parent: 2
type: Transform
- - uid: 11849
+ - uid: 11870
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-76.5
parent: 2
type: Transform
- - uid: 11850
+ - uid: 11871
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-77.5
parent: 2
type: Transform
- - uid: 11851
+ - uid: 11872
components:
- rot: 3.141592653589793 rad
pos: -53.5,-82.5
parent: 2
type: Transform
- - uid: 11852
+ - uid: 11873
components:
- rot: 3.141592653589793 rad
pos: -55.5,-82.5
parent: 2
type: Transform
- - uid: 11853
+ - uid: 11874
components:
- pos: -53.5,-70.5
parent: 2
type: Transform
- - uid: 11854
+ - uid: 11875
components:
- pos: -54.5,-70.5
parent: 2
type: Transform
- - uid: 11855
+ - uid: 11876
components:
- pos: -55.5,-70.5
parent: 2
type: Transform
- - uid: 11856
+ - uid: 11877
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-81.5
parent: 2
type: Transform
- - uid: 11857
+ - uid: 11878
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-82.5
parent: 2
type: Transform
- - uid: 11858
+ - uid: 11879
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-83.5
parent: 2
type: Transform
- - uid: 11859
+ - uid: 11880
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-81.5
parent: 2
type: Transform
- - uid: 11860
+ - uid: 11881
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-82.5
parent: 2
type: Transform
- - uid: 11861
+ - uid: 11882
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-83.5
parent: 2
type: Transform
- - uid: 11862
+ - uid: 11883
components:
- pos: -54.5,-58.5
parent: 2
type: Transform
- - uid: 11863
+ - uid: 11884
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-56.5
parent: 2
type: Transform
- - uid: 11864
+ - uid: 11885
components:
- rot: 3.141592653589793 rad
pos: 34.5,-36.5
parent: 2
type: Transform
- - uid: 11865
+ - uid: 11886
components:
- pos: 70.5,-55.5
parent: 2
type: Transform
- - uid: 11866
+ - uid: 11887
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-51.5
parent: 2
type: Transform
- - uid: 11867
+ - uid: 11888
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-52.5
parent: 2
type: Transform
- - uid: 11868
+ - uid: 11889
components:
- rot: -1.5707963267948966 rad
pos: -22.5,24.5
parent: 2
type: Transform
- - uid: 11869
+ - uid: 11890
components:
- rot: -1.5707963267948966 rad
pos: -22.5,23.5
parent: 2
type: Transform
- - uid: 11870
+ - uid: 11891
components:
- rot: -1.5707963267948966 rad
pos: -22.5,22.5
parent: 2
type: Transform
- - uid: 11871
+ - uid: 11892
components:
- rot: -1.5707963267948966 rad
pos: -22.5,19.5
parent: 2
type: Transform
- - uid: 11872
+ - uid: 11893
components:
- rot: -1.5707963267948966 rad
pos: -22.5,18.5
parent: 2
type: Transform
- - uid: 11873
+ - uid: 11894
components:
- rot: 3.141592653589793 rad
pos: -0.5,34.5
parent: 2
type: Transform
- - uid: 11874
+ - uid: 11895
components:
- rot: 3.141592653589793 rad
pos: -1.5,34.5
parent: 2
type: Transform
- - uid: 11875
+ - uid: 11896
components:
- rot: 3.141592653589793 rad
pos: -2.5,34.5
parent: 2
type: Transform
- - uid: 11876
+ - uid: 11897
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-7.5
parent: 2
type: Transform
- - uid: 11877
+ - uid: 11898
components:
- rot: 3.141592653589793 rad
pos: 61.5,-6.5
parent: 2
type: Transform
- - uid: 11878
+ - uid: 11899
components:
- rot: 3.141592653589793 rad
pos: 60.5,-6.5
parent: 2
type: Transform
- - uid: 11879
+ - uid: 11900
components:
- pos: 31.5,-60.5
parent: 2
type: Transform
- - uid: 11880
+ - uid: 11901
components:
- rot: 3.141592653589793 rad
pos: 30.5,-62.5
parent: 2
type: Transform
- - uid: 11881
+ - uid: 11902
components:
- pos: 30.5,-60.5
parent: 2
type: Transform
- - uid: 11882
+ - uid: 11903
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-8.5
parent: 2
type: Transform
- - uid: 11883
+ - uid: 11904
components:
- rot: 3.141592653589793 rad
pos: -50.5,10.5
parent: 2
type: Transform
- - uid: 11884
+ - uid: 11905
components:
- rot: 3.141592653589793 rad
pos: 25.5,-4.5
parent: 2
type: Transform
- - uid: 11885
+ - uid: 11906
components:
- pos: 71.5,-55.5
parent: 2
type: Transform
- - uid: 11886
+ - uid: 11907
components:
- pos: 23.5,6.5
parent: 2
type: Transform
- - uid: 11887
+ - uid: 11908
components:
- rot: 3.141592653589793 rad
pos: -5.5,-16.5
parent: 2
type: Transform
- - uid: 11888
+ - uid: 11909
components:
- rot: 3.141592653589793 rad
pos: 30.5,-43.5
parent: 2
type: Transform
- - uid: 11889
+ - uid: 11910
components:
- rot: 3.141592653589793 rad
pos: 29.5,-43.5
parent: 2
type: Transform
- - uid: 11890
+ - uid: 11911
components:
- rot: 3.141592653589793 rad
pos: 28.5,-43.5
parent: 2
type: Transform
- - uid: 11891
+ - uid: 11912
components:
- rot: 3.141592653589793 rad
pos: 44.5,-43.5
parent: 2
type: Transform
- - uid: 11892
+ - uid: 11913
components:
- rot: 3.141592653589793 rad
pos: 43.5,-43.5
parent: 2
type: Transform
- - uid: 11893
+ - uid: 11914
components:
- rot: 3.141592653589793 rad
pos: 42.5,-43.5
parent: 2
type: Transform
- - uid: 11894
+ - uid: 11915
components:
- pos: 34.5,-34.5
parent: 2
type: Transform
- - uid: 11895
+ - uid: 11916
components:
- pos: 3.5,-40.5
parent: 2
type: Transform
- - uid: 11896
+ - uid: 11917
components:
- pos: -14.5,8.5
parent: 2
type: Transform
- - uid: 11897
+ - uid: 11918
components:
- pos: -15.5,8.5
parent: 2
type: Transform
- - uid: 11898
+ - uid: 11919
components:
- rot: 3.141592653589793 rad
pos: -40.5,-0.5
parent: 2
type: Transform
- - uid: 11899
+ - uid: 11920
components:
- rot: 3.141592653589793 rad
pos: -39.5,-0.5
parent: 2
type: Transform
- - uid: 11900
+ - uid: 11921
components:
- rot: 3.141592653589793 rad
pos: -38.5,-0.5
parent: 2
type: Transform
- - uid: 11901
+ - uid: 11922
components:
- rot: 3.141592653589793 rad
pos: -36.5,-0.5
parent: 2
type: Transform
- - uid: 11902
+ - uid: 11923
components:
- rot: 3.141592653589793 rad
pos: -35.5,-0.5
parent: 2
type: Transform
- - uid: 11903
+ - uid: 11924
components:
- rot: 3.141592653589793 rad
pos: -34.5,-0.5
parent: 2
type: Transform
- - uid: 11904
+ - uid: 11925
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-70.5
parent: 2
type: Transform
- - uid: 11905
+ - uid: 11926
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-71.5
parent: 2
type: Transform
- - uid: 11906
+ - uid: 11927
components:
- rot: 3.141592653589793 rad
pos: 31.5,-62.5
parent: 2
type: Transform
- - uid: 11907
+ - uid: 11928
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-34.5
parent: 2
type: Transform
- - uid: 11908
+ - uid: 11929
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-33.5
parent: 2
type: Transform
- - uid: 11909
+ - uid: 11930
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-32.5
parent: 2
type: Transform
- - uid: 11910
+ - uid: 11931
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-67.5
parent: 2
type: Transform
- - uid: 11911
+ - uid: 11932
components:
- rot: 3.141592653589793 rad
pos: 22.5,16.5
parent: 2
type: Transform
- - uid: 11912
+ - uid: 11933
components:
- rot: 3.141592653589793 rad
pos: 21.5,16.5
parent: 2
type: Transform
- - uid: 11913
+ - uid: 11934
components:
- rot: 3.141592653589793 rad
pos: 32.5,-18.5
parent: 2
type: Transform
- - uid: 11914
+ - uid: 11935
components:
- rot: 3.141592653589793 rad
pos: 31.5,-18.5
parent: 2
type: Transform
- - uid: 11915
+ - uid: 11936
components:
- rot: 3.141592653589793 rad
pos: 30.5,-18.5
parent: 2
type: Transform
- - uid: 11916
+ - uid: 11937
components:
- rot: 3.141592653589793 rad
pos: 20.5,-18.5
parent: 2
type: Transform
- - uid: 11917
+ - uid: 11938
components:
- rot: 3.141592653589793 rad
pos: 19.5,-18.5
parent: 2
type: Transform
- - uid: 11918
+ - uid: 11939
components:
- rot: 3.141592653589793 rad
pos: 18.5,-18.5
parent: 2
type: Transform
- - uid: 11919
+ - uid: 11940
components:
- rot: 1.5707963267948966 rad
pos: 18.5,1.5
parent: 2
type: Transform
- - uid: 11920
+ - uid: 11941
components:
- rot: 1.5707963267948966 rad
pos: 18.5,0.5
parent: 2
type: Transform
- - uid: 11921
+ - uid: 11942
components:
- rot: 1.5707963267948966 rad
pos: 50.5,56.5
parent: 2
type: Transform
- - uid: 11922
+ - uid: 11943
components:
- rot: 1.5707963267948966 rad
pos: 50.5,57.5
parent: 2
type: Transform
- - uid: 11923
+ - uid: 11944
components:
- rot: 1.5707963267948966 rad
pos: 50.5,58.5
parent: 2
type: Transform
- - uid: 11924
+ - uid: 11945
components:
- rot: -1.5707963267948966 rad
pos: 55.5,29.5
parent: 2
type: Transform
- - uid: 11925
+ - uid: 11946
components:
- rot: -1.5707963267948966 rad
pos: 55.5,28.5
parent: 2
type: Transform
- - uid: 11926
+ - uid: 11947
components:
- rot: 1.5707963267948966 rad
pos: 52.5,29.5
parent: 2
type: Transform
- - uid: 11927
+ - uid: 11948
components:
- rot: 1.5707963267948966 rad
pos: 52.5,28.5
parent: 2
type: Transform
- - uid: 11928
+ - uid: 11949
components:
- pos: -18.5,67.5
parent: 2
type: Transform
- - uid: 11929
+ - uid: 11950
components:
- pos: -16.5,67.5
parent: 2
type: Transform
- - uid: 11930
+ - uid: 11951
components:
- pos: 6.5,34.5
parent: 2
type: Transform
- - uid: 11931
+ - uid: 11952
components:
- pos: 10.5,34.5
parent: 2
type: Transform
- - uid: 11932
+ - uid: 11953
components:
- pos: -1.5,43.5
parent: 2
type: Transform
- - uid: 11933
+ - uid: 11954
components:
- pos: -3.5,43.5
parent: 2
type: Transform
- - uid: 11934
+ - uid: 11955
components:
- pos: -16.5,63.5
parent: 2
type: Transform
- - uid: 11935
+ - uid: 11956
components:
- pos: -17.5,63.5
parent: 2
type: Transform
- - uid: 11936
+ - uid: 11957
components:
- pos: -18.5,63.5
parent: 2
type: Transform
- - uid: 11937
+ - uid: 11958
components:
- rot: -1.5707963267948966 rad
pos: -15.5,62.5
parent: 2
type: Transform
- - uid: 11938
+ - uid: 11959
components:
- rot: -1.5707963267948966 rad
pos: -15.5,61.5
parent: 2
type: Transform
- - uid: 11939
+ - uid: 11960
components:
- rot: 1.5707963267948966 rad
pos: -19.5,62.5
parent: 2
type: Transform
- - uid: 11940
+ - uid: 11961
components:
- rot: 1.5707963267948966 rad
pos: -19.5,61.5
parent: 2
type: Transform
- - uid: 11941
+ - uid: 11962
components:
- rot: 3.141592653589793 rad
pos: -18.5,60.5
parent: 2
type: Transform
- - uid: 11942
+ - uid: 11963
components:
- rot: 3.141592653589793 rad
pos: -17.5,60.5
parent: 2
type: Transform
- - uid: 11943
+ - uid: 11964
components:
- rot: 3.141592653589793 rad
pos: -16.5,60.5
parent: 2
type: Transform
- - uid: 11944
+ - uid: 11965
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-90.5
parent: 2
type: Transform
- - uid: 11945
+ - uid: 11966
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-89.5
parent: 2
type: Transform
- - uid: 11946
+ - uid: 11967
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-89.5
parent: 2
type: Transform
- - uid: 11947
+ - uid: 11968
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-90.5
parent: 2
type: Transform
- - uid: 11948
+ - uid: 11969
components:
- pos: -42.5,-97.5
parent: 2
type: Transform
- - uid: 11949
+ - uid: 11970
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-99.5
parent: 2
type: Transform
- - uid: 11950
+ - uid: 11971
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-7.5
parent: 2
type: Transform
- - uid: 11951
+ - uid: 11972
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-8.5
parent: 2
type: Transform
- - uid: 11952
+ - uid: 11973
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-9.5
parent: 2
type: Transform
- - uid: 11953
+ - uid: 11974
components:
- pos: 2.5,-40.5
parent: 2
type: Transform
- - uid: 11954
+ - uid: 11975
components:
- pos: 60.5,-64.5
parent: 2
type: Transform
- - uid: 11955
+ - uid: 11976
components:
- pos: 64.5,-66.5
parent: 2
type: Transform
- - uid: 11956
+ - uid: 11977
components:
- pos: 64.5,-64.5
parent: 2
type: Transform
- - uid: 11957
+ - uid: 11978
components:
- pos: 62.5,-66.5
parent: 2
type: Transform
- - uid: 11958
+ - uid: 11979
components:
- pos: 63.5,-66.5
parent: 2
type: Transform
- - uid: 11959
+ - uid: 11980
components:
- pos: 59.5,-66.5
parent: 2
type: Transform
- - uid: 11960
+ - uid: 11981
components:
- pos: 58.5,-66.5
parent: 2
type: Transform
- - uid: 11961
+ - uid: 11982
components:
- pos: 62.5,-62.5
parent: 2
type: Transform
- - uid: 11962
+ - uid: 11983
components:
- pos: 63.5,-62.5
parent: 2
type: Transform
- - uid: 11963
+ - uid: 11984
components:
- pos: 59.5,-62.5
parent: 2
type: Transform
- - uid: 11964
+ - uid: 11985
components:
- pos: 58.5,-62.5
parent: 2
type: Transform
- - uid: 11965
+ - uid: 11986
components:
- pos: 58.5,-64.5
parent: 2
type: Transform
- - uid: 11966
+ - uid: 11987
components:
- pos: 59.5,-64.5
parent: 2
type: Transform
- - uid: 11967
+ - uid: 11988
components:
- pos: 62.5,-64.5
parent: 2
type: Transform
- - uid: 11968
+ - uid: 11989
components:
- pos: 63.5,-64.5
parent: 2
type: Transform
- - uid: 11969
+ - uid: 11990
components:
- pos: 64.5,-62.5
parent: 2
type: Transform
- - uid: 11970
+ - uid: 11991
components:
- pos: 60.5,-62.5
parent: 2
type: Transform
- - uid: 11971
+ - uid: 11992
components:
- pos: 50.5,-32.5
parent: 2
type: Transform
- - uid: 11972
+ - uid: 11993
components:
- pos: 60.5,-66.5
parent: 2
type: Transform
- - uid: 11973
+ - uid: 11994
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-57.5
parent: 2
type: Transform
- - uid: 11974
+ - uid: 11995
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-67.5
parent: 2
type: Transform
- - uid: 11975
+ - uid: 11996
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-67.5
parent: 2
type: Transform
- - uid: 11976
+ - uid: 11997
components:
- rot: 3.141592653589793 rad
pos: 45.5,-43.5
parent: 2
type: Transform
- - uid: 11977
+ - uid: 11998
components:
- pos: -5.5,-14.5
parent: 2
type: Transform
- - uid: 11978
+ - uid: 11999
components:
- rot: 3.141592653589793 rad
pos: 25.5,-69.5
parent: 2
type: Transform
- - uid: 11979
+ - uid: 12000
components:
- rot: 3.141592653589793 rad
pos: 26.5,-69.5
parent: 2
type: Transform
- - uid: 11980
+ - uid: 12001
components:
- pos: 50.5,-71.5
parent: 2
type: Transform
- - uid: 11981
+ - uid: 12002
components:
- rot: 3.141592653589793 rad
pos: 50.5,-73.5
parent: 2
type: Transform
- - uid: 11982
+ - uid: 12003
components:
- pos: -37.5,-45.5
parent: 2
type: Transform
- - uid: 11983
+ - uid: 12004
components:
- pos: -36.5,-45.5
parent: 2
type: Transform
- - uid: 11984
+ - uid: 12005
components:
- pos: -71.5,-54.5
parent: 2
type: Transform
- - uid: 11985
+ - uid: 12006
components:
- pos: -72.5,-54.5
parent: 2
type: Transform
- - uid: 11986
+ - uid: 12007
components:
- pos: -73.5,-54.5
parent: 2
type: Transform
- - uid: 11987
+ - uid: 12008
components:
- rot: 3.141592653589793 rad
pos: -73.5,-53.5
parent: 2
type: Transform
- - uid: 11988
+ - uid: 12009
components:
- rot: 3.141592653589793 rad
pos: -72.5,-53.5
parent: 2
type: Transform
- - uid: 11989
+ - uid: 12010
components:
- rot: 3.141592653589793 rad
pos: -71.5,-53.5
parent: 2
type: Transform
- - uid: 11990
+ - uid: 12011
components:
- rot: 3.141592653589793 rad
pos: -70.5,-53.5
parent: 2
type: Transform
- - uid: 11991
+ - uid: 12012
components:
- pos: -70.5,-54.5
parent: 2
type: Transform
- - uid: 11992
+ - uid: 12013
components:
- rot: -1.5707963267948966 rad
pos: 58.5,57.5
parent: 2
type: Transform
- - uid: 11993
+ - uid: 12014
components:
- rot: -1.5707963267948966 rad
pos: 58.5,56.5
parent: 2
type: Transform
- - uid: 11994
+ - uid: 12015
components:
- rot: 3.141592653589793 rad
pos: 12.5,-43.5
parent: 2
type: Transform
- - uid: 11995
+ - uid: 12016
components:
- rot: 3.141592653589793 rad
pos: 11.5,-43.5
parent: 2
type: Transform
- - uid: 11996
+ - uid: 12017
components:
- rot: 3.141592653589793 rad
pos: 13.5,-43.5
@@ -73683,369 +73841,375 @@ entities:
type: Transform
- proto: ChairFolding
entities:
- - uid: 11997
+ - uid: 12018
components:
- rot: -1.5707963267948966 rad
pos: 28.5,1.5
parent: 2
type: Transform
- - uid: 11998
+ - uid: 12019
components:
- rot: -1.5707963267948966 rad
pos: 28.5,3.5
parent: 2
type: Transform
- - uid: 11999
+ - uid: 12020
components:
- rot: -1.5707963267948966 rad
pos: 29.5,1.5
parent: 2
type: Transform
- - uid: 12000
+ - uid: 12021
components:
- rot: -1.5707963267948966 rad
pos: 29.5,2.5
parent: 2
type: Transform
- - uid: 12001
+ - uid: 12022
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-0.5
parent: 2
type: Transform
- - uid: 12002
+ - uid: 12023
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-0.5
parent: 2
type: Transform
- - uid: 12003
+ - uid: 12024
components:
- rot: -1.5707963267948966 rad
pos: 28.5,0.5
parent: 2
type: Transform
- - uid: 12004
+ - uid: 12025
components:
- rot: -1.5707963267948966 rad
pos: 29.5,0.5
parent: 2
type: Transform
- - uid: 12005
+ - uid: 12026
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-1.5
parent: 2
type: Transform
- - uid: 12006
+ - uid: 12027
components:
- rot: -1.5707963267948966 rad
pos: 28.5,2.5
parent: 2
type: Transform
- - uid: 12007
+ - uid: 12028
components:
- rot: -1.5707963267948966 rad
pos: 18.5,26.5
parent: 2
type: Transform
- - uid: 12008
+ - uid: 12029
components:
- rot: 1.5707963267948966 rad
pos: -25.5,53.5
parent: 2
type: Transform
- - uid: 12009
+ - uid: 12030
components:
- pos: -27.5,-28.5
parent: 2
type: Transform
- - uid: 12010
+ - uid: 12031
components:
- pos: -34.5,-69.5
parent: 2
type: Transform
- - uid: 12011
+ - uid: 12032
components:
- pos: -24.5,-95.5
parent: 2
type: Transform
- - uid: 12012
+ - uid: 12033
components:
- pos: -25.5,-95.5
parent: 2
type: Transform
- - uid: 12013
+ - uid: 12034
components:
- pos: -19.5,-95.5
parent: 2
type: Transform
- - uid: 12014
+ - uid: 12035
components:
- pos: -29.5,-28.5
parent: 2
type: Transform
- proto: ChairGreyscale
entities:
- - uid: 12015
+ - uid: 12036
components:
- pos: 2.5,-52.5
parent: 2
type: Transform
- - uid: 12016
+ - uid: 12037
components:
- pos: -3.5,-45.5
parent: 2
type: Transform
- - uid: 12017
+ - uid: 12038
components:
- pos: -11.5,-52.5
parent: 2
type: Transform
- - uid: 12018
+ - uid: 12039
components:
- pos: 4.5,-52.5
parent: 2
type: Transform
- - uid: 12019
+ - uid: 12040
components:
- pos: -12.5,-52.5
parent: 2
type: Transform
- - uid: 12020
+ - uid: 12041
components:
- pos: -14.5,-52.5
parent: 2
type: Transform
- - uid: 12021
+ - uid: 12042
components:
- pos: -4.5,-45.5
parent: 2
type: Transform
- - uid: 12022
+ - uid: 12043
components:
- pos: -5.5,-45.5
parent: 2
type: Transform
- - uid: 12023
+ - uid: 12044
components:
- pos: 1.5,-52.5
parent: 2
type: Transform
- proto: ChairOfficeDark
entities:
- - uid: 12024
+ - uid: 12045
components:
- rot: 3.141592653589793 rad
pos: 4.5,-4.5
parent: 2
type: Transform
- - uid: 12025
+ - uid: 12046
components:
- rot: 1.5707963267948966 rad
pos: -25.5,54.5
parent: 2
type: Transform
- - uid: 12026
+ - uid: 12047
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-3.5
parent: 2
type: Transform
- - uid: 12027
+ - uid: 12048
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-4.5
parent: 2
type: Transform
- - uid: 12028
+ - uid: 12049
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-36.5
parent: 2
type: Transform
- - uid: 12029
+ - uid: 12050
components:
- rot: 3.141592653589793 rad
pos: 68.5,-44.5
parent: 2
type: Transform
- - uid: 12030
+ - uid: 12051
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-12.5
parent: 2
type: Transform
- - uid: 12031
+ - uid: 12052
components:
- rot: 3.141592653589793 rad
pos: 50.5,-53.5
parent: 2
type: Transform
- - uid: 12032
+ - uid: 12053
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-34.5
parent: 2
type: Transform
- - uid: 12033
+ - uid: 12054
components:
- rot: 3.141592653589793 rad
pos: 21.5,-45.5
parent: 2
type: Transform
- - uid: 12034
+ - uid: 12055
components:
- rot: -1.5707963267948966 rad
pos: -16.5,25.5
parent: 2
type: Transform
- - uid: 12035
+ - uid: 12056
components:
- rot: -1.5707963267948966 rad
pos: -27.5,22.5
parent: 2
type: Transform
- - uid: 12036
+ - uid: 12057
components:
- pos: -32.5,30.5
parent: 2
type: Transform
- - uid: 12037
+ - uid: 12058
components:
- rot: 1.5707963267948966 rad
pos: 1.5,20.5
parent: 2
type: Transform
- - uid: 12038
+ - uid: 12059
components:
- pos: -33.5,-69.5
parent: 2
type: Transform
- - uid: 12039
+ - uid: 12060
components:
- rot: 1.5707963267948966 rad
pos: 72.5,37.5
parent: 2
type: Transform
- - uid: 12040
+ - uid: 12061
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-97.5
parent: 2
type: Transform
- - uid: 12041
+ - uid: 12062
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-18.5
parent: 2
type: Transform
- - uid: 12042
+ - uid: 12063
components:
- rot: 3.141592653589793 rad
pos: 62.5,-31.5
parent: 2
type: Transform
- - uid: 12043
+ - uid: 12064
components:
- rot: 3.141592653589793 rad
pos: 73.5,-32.5
parent: 2
type: Transform
- - uid: 12044
+ - uid: 12065
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-22.5
parent: 2
type: Transform
+ - uid: 12066
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-18.5
+ parent: 2
+ type: Transform
- proto: ChairOfficeLight
entities:
- - uid: 12045
+ - uid: 12067
components:
- rot: 3.141592653589793 rad
pos: 27.5,-22.5
parent: 2
type: Transform
- - uid: 12046
+ - uid: 12068
components:
- rot: 3.141592653589793 rad
pos: 29.5,-22.5
parent: 2
type: Transform
- - uid: 12047
+ - uid: 12069
components:
- rot: 3.141592653589793 rad
pos: 23.5,-22.5
parent: 2
type: Transform
- - uid: 12048
+ - uid: 12070
components:
- rot: 3.141592653589793 rad
pos: 21.5,-22.5
parent: 2
type: Transform
- - uid: 12049
+ - uid: 12071
components:
- pos: -23.5,-70.5
parent: 2
type: Transform
- - uid: 12050
+ - uid: 12072
components:
- rot: 3.141592653589793 rad
pos: -4.5,-49.5
parent: 2
type: Transform
- - uid: 12051
+ - uid: 12073
components:
- rot: 3.141592653589793 rad
pos: 25.5,-25.5
parent: 2
type: Transform
- - uid: 12052
+ - uid: 12074
components:
- pos: -10.5,-36.5
parent: 2
type: Transform
- - uid: 12053
+ - uid: 12075
components:
- rot: 3.141592653589793 rad
pos: 17.5,20.5
parent: 2
type: Transform
- - uid: 12054
+ - uid: 12076
components:
- rot: 3.141592653589793 rad
pos: 53.5,12.5
parent: 2
type: Transform
- - uid: 12055
+ - uid: 12077
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-41.5
parent: 2
type: Transform
- - uid: 12056
+ - uid: 12078
components:
- pos: 42.5,-39.5
parent: 2
type: Transform
- - uid: 12057
+ - uid: 12079
components:
- pos: -26.5,15.5
parent: 2
type: Transform
- - uid: 12058
+ - uid: 12080
components:
- pos: -23.5,12.5
parent: 2
type: Transform
- - uid: 12059
+ - uid: 12081
components:
- rot: 1.5707963267948966 rad
pos: 47.5,6.5
parent: 2
type: Transform
- - uid: 12060
+ - uid: 12082
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-49.5
@@ -74053,85 +74217,85 @@ entities:
type: Transform
- proto: ChairPilotSeat
entities:
- - uid: 12061
+ - uid: 12083
components:
- rot: 3.141592653589793 rad
pos: 25.5,-22.5
parent: 2
type: Transform
- - uid: 12062
+ - uid: 12084
components:
- rot: 3.141592653589793 rad
pos: 16.5,23.5
parent: 2
type: Transform
- - uid: 12063
+ - uid: 12085
components:
- pos: 25.5,20.5
parent: 2
type: Transform
- - uid: 12064
+ - uid: 12086
components:
- rot: 3.141592653589793 rad
pos: 62.5,-54.5
parent: 2
type: Transform
- - uid: 12065
+ - uid: 12087
components:
- rot: 3.141592653589793 rad
pos: 31.5,-47.5
parent: 2
type: Transform
- - uid: 12066
+ - uid: 12088
components:
- pos: 62.5,-0.5
parent: 2
type: Transform
- - uid: 12067
+ - uid: 12089
components:
- pos: 59.5,-0.5
parent: 2
type: Transform
- - uid: 12068
+ - uid: 12090
components:
- pos: 61.5,-0.5
parent: 2
type: Transform
- - uid: 12069
+ - uid: 12091
components:
- pos: 60.5,-0.5
parent: 2
type: Transform
- - uid: 12070
+ - uid: 12092
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-13.5
parent: 2
type: Transform
- - uid: 12071
+ - uid: 12093
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-28.5
parent: 2
type: Transform
- - uid: 12072
+ - uid: 12094
components:
- pos: 54.5,57.5
parent: 2
type: Transform
- - uid: 12073
+ - uid: 12095
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-87.5
parent: 2
type: Transform
- - uid: 12074
+ - uid: 12096
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-53.5
parent: 2
type: Transform
- - uid: 12075
+ - uid: 12097
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-54.5
@@ -74139,494 +74303,494 @@ entities:
type: Transform
- proto: ChairWood
entities:
- - uid: 12076
+ - uid: 12098
components:
- rot: 3.141592653589793 rad
pos: 23.5,-36.5
parent: 2
type: Transform
- - uid: 12077
+ - uid: 12099
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-35.5
parent: 2
type: Transform
- - uid: 12078
+ - uid: 12100
components:
- pos: 9.5,-5.5
parent: 2
type: Transform
- - uid: 12079
+ - uid: 12101
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-6.5
parent: 2
type: Transform
- - uid: 12080
+ - uid: 12102
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-7.5
parent: 2
type: Transform
- - uid: 12081
+ - uid: 12103
components:
- rot: -1.5707963267948966 rad
pos: 3.5,1.5
parent: 2
type: Transform
- - uid: 12082
+ - uid: 12104
components:
- rot: 1.5707963267948966 rad
pos: 1.5,1.5
parent: 2
type: Transform
- - uid: 12083
+ - uid: 12105
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-7.5
parent: 2
type: Transform
- - uid: 12084
+ - uid: 12106
components:
- pos: 10.5,-5.5
parent: 2
type: Transform
- - uid: 12085
+ - uid: 12107
components:
- rot: 3.141592653589793 rad
pos: 10.5,-8.5
parent: 2
type: Transform
- - uid: 12086
+ - uid: 12108
components:
- rot: 1.5707963267948966 rad
pos: 10.5,7.5
parent: 2
type: Transform
- - uid: 12087
+ - uid: 12109
components:
- rot: 3.141592653589793 rad
pos: 9.5,-8.5
parent: 2
type: Transform
- - uid: 12088
+ - uid: 12110
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-6.5
parent: 2
type: Transform
- - uid: 12089
+ - uid: 12111
components:
- rot: 1.5707963267948966 rad
pos: 1.5,0.5
parent: 2
type: Transform
- - uid: 12090
+ - uid: 12112
components:
- rot: -1.5707963267948966 rad
pos: 3.5,0.5
parent: 2
type: Transform
- - uid: 12091
+ - uid: 12113
components:
- rot: -1.5707963267948966 rad
pos: 12.5,8.5
parent: 2
type: Transform
- - uid: 12092
+ - uid: 12114
components:
- rot: -1.5707963267948966 rad
pos: 18.5,27.5
parent: 2
type: Transform
- - uid: 12093
+ - uid: 12115
components:
- pos: -1.5,-16.5
parent: 2
type: Transform
- - uid: 12094
+ - uid: 12116
components:
- pos: 11.5,12.5
parent: 2
type: Transform
- - uid: 12095
+ - uid: 12117
components:
- pos: 12.5,12.5
parent: 2
type: Transform
- - uid: 12096
+ - uid: 12118
components:
- rot: -1.5707963267948966 rad
pos: 12.5,7.5
parent: 2
type: Transform
- - uid: 12097
+ - uid: 12119
components:
- rot: 3.141592653589793 rad
pos: 12.5,10.5
parent: 2
type: Transform
- - uid: 12098
+ - uid: 12120
components:
- rot: 3.141592653589793 rad
pos: 11.5,10.5
parent: 2
type: Transform
- - uid: 12099
+ - uid: 12121
components:
- rot: 1.5707963267948966 rad
pos: -9.5,1.5
parent: 2
type: Transform
- - uid: 12100
+ - uid: 12122
components:
- rot: 1.5707963267948966 rad
pos: -9.5,0.5
parent: 2
type: Transform
- - uid: 12101
+ - uid: 12123
components:
- rot: 1.5707963267948966 rad
pos: 10.5,8.5
parent: 2
type: Transform
- - uid: 12102
+ - uid: 12124
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-26.5
parent: 2
type: Transform
- - uid: 12103
+ - uid: 12125
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-67.5
parent: 2
type: Transform
- - uid: 12104
+ - uid: 12126
components:
- rot: 3.141592653589793 rad
pos: -36.5,9.5
parent: 2
type: Transform
- - uid: 12105
+ - uid: 12127
components:
- rot: 3.141592653589793 rad
pos: -35.5,9.5
parent: 2
type: Transform
- - uid: 12106
+ - uid: 12128
components:
- rot: 3.141592653589793 rad
pos: -36.5,10.5
parent: 2
type: Transform
- - uid: 12107
+ - uid: 12129
components:
- rot: 3.141592653589793 rad
pos: -35.5,10.5
parent: 2
type: Transform
- - uid: 12108
+ - uid: 12130
components:
- rot: 3.141592653589793 rad
pos: -35.5,11.5
parent: 2
type: Transform
- - uid: 12109
+ - uid: 12131
components:
- rot: 3.141592653589793 rad
pos: -36.5,11.5
parent: 2
type: Transform
- - uid: 12110
+ - uid: 12132
components:
- rot: 3.141592653589793 rad
pos: -36.5,12.5
parent: 2
type: Transform
- - uid: 12111
+ - uid: 12133
components:
- rot: 3.141592653589793 rad
pos: -35.5,12.5
parent: 2
type: Transform
- - uid: 12112
+ - uid: 12134
components:
- rot: 3.141592653589793 rad
pos: -39.5,12.5
parent: 2
type: Transform
- - uid: 12113
+ - uid: 12135
components:
- rot: 3.141592653589793 rad
pos: -40.5,11.5
parent: 2
type: Transform
- - uid: 12114
+ - uid: 12136
components:
- rot: 3.141592653589793 rad
pos: -39.5,11.5
parent: 2
type: Transform
- - uid: 12115
+ - uid: 12137
components:
- rot: 3.141592653589793 rad
pos: -40.5,10.5
parent: 2
type: Transform
- - uid: 12116
+ - uid: 12138
components:
- rot: 3.141592653589793 rad
pos: -39.5,10.5
parent: 2
type: Transform
- - uid: 12117
+ - uid: 12139
components:
- rot: 3.141592653589793 rad
pos: -40.5,9.5
parent: 2
type: Transform
- - uid: 12118
+ - uid: 12140
components:
- rot: 3.141592653589793 rad
pos: -39.5,9.5
parent: 2
type: Transform
- - uid: 12119
+ - uid: 12141
components:
- rot: 3.141592653589793 rad
pos: -40.5,12.5
parent: 2
type: Transform
- - uid: 12120
+ - uid: 12142
components:
- rot: 3.141592653589793 rad
pos: -3.5,51.5
parent: 2
type: Transform
- - uid: 12121
+ - uid: 12143
components:
- pos: -3.5,53.5
parent: 2
type: Transform
- - uid: 12122
+ - uid: 12144
components:
- pos: -17.5,43.5
parent: 2
type: Transform
- - uid: 12123
+ - uid: 12145
components:
- pos: -16.5,43.5
parent: 2
type: Transform
- - uid: 12124
+ - uid: 12146
components:
- rot: 3.141592653589793 rad
pos: -17.5,40.5
parent: 2
type: Transform
- - uid: 12125
+ - uid: 12147
components:
- rot: -1.5707963267948966 rad
pos: -7.5,1.5
parent: 2
type: Transform
- - uid: 12126
+ - uid: 12148
components:
- rot: -1.5707963267948966 rad
pos: -7.5,0.5
parent: 2
type: Transform
- - uid: 12127
+ - uid: 12149
components:
- rot: 1.5707963267948966 rad
pos: -5.5,1.5
parent: 2
type: Transform
- - uid: 12128
+ - uid: 12150
components:
- rot: 1.5707963267948966 rad
pos: -5.5,0.5
parent: 2
type: Transform
- - uid: 12129
+ - uid: 12151
components:
- rot: -1.5707963267948966 rad
pos: -3.5,1.5
parent: 2
type: Transform
- - uid: 12130
+ - uid: 12152
components:
- rot: -1.5707963267948966 rad
pos: -3.5,0.5
parent: 2
type: Transform
- - uid: 12131
+ - uid: 12153
components:
- rot: 3.141592653589793 rad
pos: -16.5,40.5
parent: 2
type: Transform
- - uid: 12132
+ - uid: 12154
components:
- rot: 1.5707963267948966 rad
pos: -15.5,47.5
parent: 2
type: Transform
- - uid: 12133
+ - uid: 12155
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-16.5
parent: 2
type: Transform
- - uid: 12134
+ - uid: 12156
components:
- rot: -1.5707963267948966 rad
pos: 9.5,32.5
parent: 2
type: Transform
- - uid: 12135
+ - uid: 12157
components:
- rot: 1.5707963267948966 rad
pos: 7.5,32.5
parent: 2
type: Transform
- - uid: 12136
+ - uid: 12158
components:
- rot: 3.141592653589793 rad
pos: -11.5,34.5
parent: 2
type: Transform
- - uid: 12137
+ - uid: 12159
components:
- rot: -1.5707963267948966 rad
pos: 41.5,43.5
parent: 2
type: Transform
- - uid: 12138
+ - uid: 12160
components:
- rot: -1.5707963267948966 rad
pos: 39.5,46.5
parent: 2
type: Transform
- - uid: 12139
+ - uid: 12161
components:
- rot: -1.5707963267948966 rad
pos: 39.5,45.5
parent: 2
type: Transform
- - uid: 12140
+ - uid: 12162
components:
- rot: 1.5707963267948966 rad
pos: 36.5,46.5
parent: 2
type: Transform
- - uid: 12141
+ - uid: 12163
components:
- rot: 1.5707963267948966 rad
pos: 36.5,45.5
parent: 2
type: Transform
- - uid: 12142
+ - uid: 12164
components:
- rot: 3.141592653589793 rad
pos: 42.5,47.5
parent: 2
type: Transform
- - uid: 12143
+ - uid: 12165
components:
- rot: 3.141592653589793 rad
pos: 43.5,47.5
parent: 2
type: Transform
- - uid: 12144
+ - uid: 12166
components:
- rot: -1.5707963267948966 rad
pos: 33.5,47.5
parent: 2
type: Transform
- - uid: 12145
+ - uid: 12167
components:
- rot: -1.5707963267948966 rad
pos: 33.5,46.5
parent: 2
type: Transform
- - uid: 12146
+ - uid: 12168
components:
- rot: 1.5707963267948966 rad
pos: 32.5,44.5
parent: 2
type: Transform
- - uid: 12147
+ - uid: 12169
components:
- rot: -1.5707963267948966 rad
pos: 34.5,44.5
parent: 2
type: Transform
- - uid: 12148
+ - uid: 12170
components:
- rot: 1.5707963267948966 rad
pos: 39.5,43.5
parent: 2
type: Transform
- - uid: 12149
+ - uid: 12171
components:
- pos: -41.5,-97.5
parent: 2
type: Transform
- - uid: 12150
+ - uid: 12172
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-35.5
parent: 2
type: Transform
- - uid: 12151
+ - uid: 12173
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-35.5
parent: 2
type: Transform
- - uid: 12152
+ - uid: 12174
components:
- pos: -23.5,30.5
parent: 2
type: Transform
- - uid: 12153
+ - uid: 12175
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-35.5
parent: 2
type: Transform
- - uid: 12154
+ - uid: 12176
components:
- pos: 23.5,-34.5
parent: 2
type: Transform
- - uid: 12155
+ - uid: 12177
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-38.5
parent: 2
type: Transform
- - uid: 12156
+ - uid: 12178
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-39.5
parent: 2
type: Transform
- - uid: 12157
+ - uid: 12179
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-39.5
parent: 2
type: Transform
- - uid: 12158
+ - uid: 12180
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-39.5
parent: 2
type: Transform
- - uid: 12159
+ - uid: 12181
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-9.5
@@ -74634,98 +74798,92 @@ entities:
type: Transform
- proto: CheapLighter
entities:
- - uid: 12161
+ - uid: 12183
components:
- flags: InContainer
type: MetaData
- - parent: 12160
+ - parent: 12182
type: Transform
- canCollide: False
type: Physics
- - uid: 12162
+ - uid: 12184
components:
- pos: 1.9080955,23.554485
parent: 2
type: Transform
- proto: CheapRollerBed
entities:
- - uid: 12163
+ - uid: 12185
components:
- pos: -9.460541,-47.24853
parent: 2
type: Transform
- - uid: 12164
+ - uid: 12186
components:
- pos: -9.476166,-48.27978
parent: 2
type: Transform
- proto: chem_master
entities:
- - uid: 12165
+ - uid: 12187
components:
- pos: 2.5,-45.5
parent: 2
type: Transform
- - uid: 12166
+ - uid: 12188
components:
- pos: 2.5,-50.5
parent: 2
type: Transform
- - uid: 12167
+ - uid: 12189
components:
- pos: 2.5,-47.5
parent: 2
type: Transform
- proto: ChemDispenser
entities:
- - uid: 12168
+ - uid: 12190
components:
- pos: 4.5,-45.5
parent: 2
type: Transform
- - uid: 12169
+ - uid: 12191
components:
- pos: 4.5,-47.5
parent: 2
type: Transform
- - uid: 12170
+ - uid: 12192
components:
- pos: 2.5,-49.5
parent: 2
type: Transform
- proto: ChemistryHotplate
entities:
- - uid: 12171
+ - uid: 12193
components:
- pos: 4.5,-50.5
parent: 2
type: Transform
- proto: ChessBoard
entities:
- - uid: 12172
+ - uid: 12194
components:
- pos: 52.446415,7.1683345
parent: 2
type: Transform
- - uid: 12173
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5158696,-15.414865
- parent: 2
- type: Transform
- - uid: 12174
+ - uid: 12195
components:
- rot: 1.5707963267948966 rad
pos: 8.516274,32.607613
parent: 2
type: Transform
- - uid: 12175
+ - uid: 12196
components:
- rot: 3.141592653589793 rad
pos: -3.4812293,52.59116
parent: 2
type: Transform
- - uid: 12176
+ - uid: 12197
components:
- rot: 3.141592653589793 rad
pos: 50.48214,-72.40164
@@ -74733,7 +74891,7 @@ entities:
type: Transform
- proto: ChurchOrganInstrument
entities:
- - uid: 12177
+ - uid: 12198
components:
- rot: -1.5707963267948966 rad
pos: -34.5,13.5
@@ -74741,51 +74899,51 @@ entities:
type: Transform
- proto: Cigar
entities:
- - uid: 12178
+ - uid: 12199
components:
- pos: 13.506795,-34.413578
parent: 2
type: Transform
- - uid: 12179
+ - uid: 12200
components:
- pos: 13.55367,-32.429203
parent: 2
type: Transform
- - uid: 12180
+ - uid: 12201
components:
- pos: 13.49117,-32.382328
parent: 2
type: Transform
- - uid: 12181
+ - uid: 12202
components:
- pos: 13.444295,-34.351078
parent: 2
type: Transform
- proto: CigarCase
entities:
- - uid: 12182
+ - uid: 12203
components:
- pos: -12.420865,-35.409706
parent: 2
type: Transform
- - uid: 12183
+ - uid: 12204
components:
- pos: 15.66736,-87.50202
parent: 2
type: Transform
- proto: Cigarette
entities:
- - uid: 12184
+ - uid: 12205
components:
- pos: 15.438844,-64.32231
parent: 2
type: Transform
- - uid: 12185
+ - uid: 12206
components:
- pos: 63.44384,24.664883
parent: 2
type: Transform
- - uid: 12186
+ - uid: 12207
components:
- rot: -1.5707963267948966 rad
pos: 2.361197,23.616985
@@ -74793,48 +74951,48 @@ entities:
type: Transform
- proto: CigarGold
entities:
- - uid: 12187
+ - uid: 12208
components:
- rot: -1.5707963267948966 rad
pos: 45.625916,-26.476032
parent: 2
type: Transform
- - uid: 12188
+ - uid: 12209
components:
- pos: 65.5063,-0.5499393
parent: 2
type: Transform
- proto: CigarGoldCase
entities:
- - uid: 12189
+ - uid: 12210
components:
- pos: 61.545517,-1.3427625
parent: 2
type: Transform
- proto: CigPackBlack
entities:
- - uid: 12190
+ - uid: 12211
components:
- pos: 37.5,46.5
parent: 2
type: Transform
- proto: CigPackBlue
entities:
- - uid: 12191
+ - uid: 12212
components:
- pos: 47.844124,50.55344
parent: 2
type: Transform
- proto: CigPackMixedMedical
entities:
- - uid: 12192
+ - uid: 12213
components:
- pos: -16.642096,-35.41203
parent: 2
type: Transform
- proto: CircuitImprinter
entities:
- - uid: 12193
+ - uid: 12214
components:
- pos: 44.5,-35.5
parent: 2
@@ -74846,50 +75004,50 @@ entities:
type: MaterialStorage
- proto: CleanerDispenser
entities:
- - uid: 12194
+ - uid: 12215
components:
- pos: -12.5,-20.5
parent: 2
type: Transform
- proto: ClockworkShield
entities:
- - uid: 12195
+ - uid: 12216
components:
- pos: 57.48767,32.508053
parent: 2
type: Transform
- proto: ClosetBombFilled
entities:
- - uid: 12196
+ - uid: 12217
components:
- pos: 51.5,-49.5
parent: 2
type: Transform
- - uid: 12197
+ - uid: 12218
components:
- pos: 67.5,-31.5
parent: 2
type: Transform
- - uid: 12198
+ - uid: 12219
components:
- pos: 12.5,23.5
parent: 2
type: Transform
- proto: ClosetChefFilled
entities:
- - uid: 12199
+ - uid: 12220
components:
- pos: -5.5,14.5
parent: 2
type: Transform
- proto: ClosetEmergencyFilledRandom
entities:
- - uid: 12200
+ - uid: 12221
components:
- pos: 69.5,-63.5
parent: 2
type: Transform
- - uid: 12201
+ - uid: 12222
components:
- pos: -52.5,-80.5
parent: 2
@@ -74912,7 +75070,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12202
+ - uid: 12223
components:
- pos: -12.5,10.5
parent: 2
@@ -74935,7 +75093,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12203
+ - uid: 12224
components:
- pos: -18.5,-51.5
parent: 2
@@ -74958,7 +75116,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12204
+ - uid: 12225
components:
- pos: 21.5,-52.5
parent: 2
@@ -74981,7 +75139,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12205
+ - uid: 12226
components:
- pos: 24.5,-56.5
parent: 2
@@ -75004,7 +75162,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12206
+ - uid: 12227
components:
- pos: -5.5,-68.5
parent: 2
@@ -75027,7 +75185,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12207
+ - uid: 12228
components:
- pos: 38.5,-32.5
parent: 2
@@ -75050,7 +75208,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12208
+ - uid: 12229
components:
- pos: -25.5,52.5
parent: 2
@@ -75073,7 +75231,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12209
+ - uid: 12230
components:
- pos: 5.5,-69.5
parent: 2
@@ -75096,7 +75254,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12210
+ - uid: 12231
components:
- pos: 57.5,-14.5
parent: 2
@@ -75119,7 +75277,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12211
+ - uid: 12232
components:
- pos: 52.5,-50.5
parent: 2
@@ -75142,7 +75300,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12212
+ - uid: 12233
components:
- pos: -2.5,-11.5
parent: 2
@@ -75165,12 +75323,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12213
+ - uid: 12234
components:
- pos: 43.5,-74.5
parent: 2
type: Transform
- - uid: 12214
+ - uid: 12235
components:
- pos: 11.5,-69.5
parent: 2
@@ -75193,12 +75351,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12215
+ - uid: 12236
components:
- pos: 27.5,-80.5
parent: 2
type: Transform
- - uid: 12216
+ - uid: 12237
components:
- pos: -23.5,-31.5
parent: 2
@@ -75221,12 +75379,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12217
+ - uid: 12238
components:
- pos: 47.5,-92.5
parent: 2
type: Transform
- - uid: 12218
+ - uid: 12239
components:
- pos: -54.5,-5.5
parent: 2
@@ -75249,12 +75407,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12219
+ - uid: 12240
components:
- pos: 31.5,-92.5
parent: 2
type: Transform
- - uid: 12220
+ - uid: 12241
components:
- pos: -57.5,-32.5
parent: 2
@@ -75277,7 +75435,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12221
+ - uid: 12242
components:
- pos: 17.5,34.5
parent: 2
@@ -75300,7 +75458,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12222
+ - uid: 12243
components:
- pos: 63.5,-5.5
parent: 2
@@ -75323,7 +75481,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12223
+ - uid: 12244
components:
- pos: 18.5,-39.5
parent: 2
@@ -75346,7 +75504,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12224
+ - uid: 12245
components:
- pos: 3.5,-25.5
parent: 2
@@ -75369,7 +75527,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12225
+ - uid: 12246
components:
- pos: 47.5,-15.5
parent: 2
@@ -75392,7 +75550,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12226
+ - uid: 12247
components:
- pos: 16.5,-5.5
parent: 2
@@ -75415,7 +75573,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12227
+ - uid: 12248
components:
- pos: -31.5,-0.5
parent: 2
@@ -75438,7 +75596,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12228
+ - uid: 12249
components:
- pos: -17.5,38.5
parent: 2
@@ -75461,7 +75619,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12229
+ - uid: 12250
components:
- pos: -12.5,47.5
parent: 2
@@ -75484,7 +75642,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12230
+ - uid: 12251
components:
- pos: 50.5,40.5
parent: 2
@@ -75507,7 +75665,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12231
+ - uid: 12252
components:
- pos: 65.5,1.5
parent: 2
@@ -75530,17 +75688,17 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12232
+ - uid: 12253
components:
- pos: -15.5,67.5
parent: 2
type: Transform
- - uid: 12233
+ - uid: 12254
components:
- pos: -19.5,67.5
parent: 2
type: Transform
- - uid: 12234
+ - uid: 12255
components:
- pos: -12.5,49.5
parent: 2
@@ -75563,7 +75721,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12235
+ - uid: 12256
components:
- pos: -26.5,28.5
parent: 2
@@ -75586,7 +75744,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12236
+ - uid: 12257
components:
- pos: -36.5,-93.5
parent: 2
@@ -75609,7 +75767,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12237
+ - uid: 12258
components:
- pos: 9.5,-36.5
parent: 2
@@ -75632,7 +75790,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12238
+ - uid: 12259
components:
- pos: 74.5,-51.5
parent: 2
@@ -75655,7 +75813,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12239
+ - uid: 12260
components:
- pos: 42.5,-62.5
parent: 2
@@ -75678,7 +75836,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12240
+ - uid: 12261
components:
- pos: -10.5,-8.5
parent: 2
@@ -75701,7 +75859,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12241
+ - uid: 12262
components:
- pos: 41.5,-27.5
parent: 2
@@ -75724,29 +75882,29 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12242
+ - uid: 12263
components:
- pos: 20.5,-21.5
parent: 2
type: Transform
- - uid: 12243
+ - uid: 12264
components:
- pos: -47.5,41.5
parent: 2
type: Transform
- - uid: 12244
+ - uid: 12265
components:
- pos: -10.5,-30.5
parent: 2
type: Transform
- - uid: 12245
+ - uid: 12266
components:
- pos: -23.5,-6.5
parent: 2
type: Transform
- proto: ClosetFireFilled
entities:
- - uid: 12246
+ - uid: 12267
components:
- pos: -11.5,-45.5
parent: 2
@@ -75769,7 +75927,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12247
+ - uid: 12268
components:
- pos: -11.5,-73.5
parent: 2
@@ -75792,7 +75950,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12248
+ - uid: 12269
components:
- pos: 22.5,-52.5
parent: 2
@@ -75815,7 +75973,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12249
+ - uid: 12270
components:
- pos: 24.5,-55.5
parent: 2
@@ -75838,7 +75996,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12250
+ - uid: 12271
components:
- pos: -25.5,51.5
parent: 2
@@ -75861,7 +76019,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12251
+ - uid: 12272
components:
- pos: -12.5,-30.5
parent: 2
@@ -75884,7 +76042,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12252
+ - uid: 12273
components:
- pos: -2.5,-12.5
parent: 2
@@ -75907,7 +76065,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12253
+ - uid: 12274
components:
- pos: -52.5,-72.5
parent: 2
@@ -75930,7 +76088,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12254
+ - uid: 12275
components:
- pos: -23.5,-41.5
parent: 2
@@ -75953,7 +76111,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12255
+ - uid: 12276
components:
- pos: 22.5,-8.5
parent: 2
@@ -75976,7 +76134,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12256
+ - uid: 12277
components:
- pos: 62.5,-5.5
parent: 2
@@ -75999,7 +76157,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12257
+ - uid: 12278
components:
- pos: 19.5,-39.5
parent: 2
@@ -76022,7 +76180,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12258
+ - uid: 12279
components:
- pos: 16.5,-6.5
parent: 2
@@ -76045,7 +76203,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12259
+ - uid: 12280
components:
- pos: -32.5,-0.5
parent: 2
@@ -76068,7 +76226,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12260
+ - uid: 12281
components:
- pos: 2.5,-25.5
parent: 2
@@ -76091,7 +76249,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12261
+ - uid: 12282
components:
- pos: -11.5,47.5
parent: 2
@@ -76114,7 +76272,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12262
+ - uid: 12283
components:
- pos: 49.5,40.5
parent: 2
@@ -76137,7 +76295,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12263
+ - uid: 12284
components:
- pos: -43.5,37.5
parent: 2
@@ -76160,7 +76318,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12264
+ - uid: 12285
components:
- pos: -31.5,-41.5
parent: 2
@@ -76183,7 +76341,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12265
+ - uid: 12286
components:
- pos: -27.5,28.5
parent: 2
@@ -76206,7 +76364,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12266
+ - uid: 12287
components:
- pos: -35.5,-93.5
parent: 2
@@ -76229,7 +76387,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12267
+ - uid: 12288
components:
- pos: 9.5,-37.5
parent: 2
@@ -76252,7 +76410,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12268
+ - uid: 12289
components:
- pos: 74.5,-52.5
parent: 2
@@ -76275,7 +76433,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12269
+ - uid: 12290
components:
- pos: 64.5,-31.5
parent: 2
@@ -76298,7 +76456,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12270
+ - uid: 12291
components:
- pos: 35.5,-74.5
parent: 2
@@ -76321,89 +76479,46 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12271
+ - uid: 12292
components:
- pos: 29.5,-92.5
parent: 2
type: Transform
- - uid: 12272
+ - uid: 12293
components:
- pos: 49.5,-92.5
parent: 2
type: Transform
- - uid: 12273
+ - uid: 12294
components:
- pos: 28.5,-80.5
parent: 2
type: Transform
- - uid: 12274
+ - uid: 12295
components:
- pos: -24.5,-6.5
parent: 2
type: Transform
- - uid: 12275
+ - uid: 12296
components:
- pos: -74.5,-32.5
parent: 2
type: Transform
- - uid: 12276
+ - uid: 12297
components:
- pos: -57.5,-56.5
parent: 2
type: Transform
-- proto: ClosetJanitorFilled
- entities:
- - uid: 12277
- components:
- - pos: -10.5,-18.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- proto: ClosetL3JanitorFilled
entities:
- - uid: 12278
+ - uid: 12298
components:
- - pos: -10.5,-17.5
+ - pos: -10.5,-19.5
parent: 2
type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- proto: ClosetL3VirologyFilled
entities:
- - uid: 12279
+ - uid: 12299
components:
- pos: -18.5,-63.5
parent: 2
@@ -76426,7 +76541,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12280
+ - uid: 12300
components:
- pos: -22.5,-79.5
parent: 2
@@ -76451,7 +76566,7 @@ entities:
type: EntityStorage
- proto: ClosetMaintenance
entities:
- - uid: 12281
+ - uid: 12301
components:
- pos: -22.5,-38.5
parent: 2
@@ -76474,7 +76589,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12282
+ - uid: 12302
components:
- pos: -44.5,-31.5
parent: 2
@@ -76497,7 +76612,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12283
+ - uid: 12303
components:
- pos: -41.5,-30.5
parent: 2
@@ -76520,7 +76635,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12284
+ - uid: 12304
components:
- pos: 14.5,39.5
parent: 2
@@ -76543,7 +76658,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12285
+ - uid: 12305
components:
- pos: -19.5,56.5
parent: 2
@@ -76568,12 +76683,12 @@ entities:
type: EntityStorage
- proto: ClosetMaintenanceFilledRandom
entities:
- - uid: 12286
+ - uid: 12306
components:
- pos: -42.5,-32.5
parent: 2
type: Transform
- - uid: 12287
+ - uid: 12307
components:
- pos: 12.5,-51.5
parent: 2
@@ -76596,7 +76711,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12288
+ - uid: 12308
components:
- pos: -5.5,-73.5
parent: 2
@@ -76619,7 +76734,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12289
+ - uid: 12309
components:
- pos: -19.5,58.5
parent: 2
@@ -76642,7 +76757,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12290
+ - uid: 12310
components:
- pos: 16.5,-72.5
parent: 2
@@ -76665,7 +76780,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12291
+ - uid: 12311
components:
- pos: -15.5,-12.5
parent: 2
@@ -76688,7 +76803,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12292
+ - uid: 12312
components:
- pos: -37.5,-67.5
parent: 2
@@ -76711,7 +76826,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12293
+ - uid: 12313
components:
- pos: -29.5,-57.5
parent: 2
@@ -76734,7 +76849,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12294
+ - uid: 12314
components:
- pos: -29.5,-39.5
parent: 2
@@ -76757,7 +76872,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12295
+ - uid: 12315
components:
- pos: -28.5,-67.5
parent: 2
@@ -76780,7 +76895,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12296
+ - uid: 12316
components:
- pos: -56.5,-32.5
parent: 2
@@ -76803,7 +76918,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12297
+ - uid: 12317
components:
- pos: 36.5,-12.5
parent: 2
@@ -76826,7 +76941,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12298
+ - uid: 12318
components:
- pos: -22.5,-28.5
parent: 2
@@ -76849,7 +76964,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12299
+ - uid: 12319
components:
- pos: 0.5,34.5
parent: 2
@@ -76872,7 +76987,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12300
+ - uid: 12320
components:
- pos: 55.5,-3.5
parent: 2
@@ -76895,7 +77010,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12301
+ - uid: 12321
components:
- pos: -27.5,-67.5
parent: 2
@@ -76918,7 +77033,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12302
+ - uid: 12322
components:
- pos: 39.5,-15.5
parent: 2
@@ -76941,7 +77056,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12303
+ - uid: 12323
components:
- pos: 58.5,29.5
parent: 2
@@ -76964,7 +77079,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12304
+ - uid: 12324
components:
- pos: -31.5,38.5
parent: 2
@@ -76987,7 +77102,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12305
+ - uid: 12325
components:
- pos: -12.5,29.5
parent: 2
@@ -77010,7 +77125,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12306
+ - uid: 12326
components:
- pos: -43.5,-94.5
parent: 2
@@ -77033,7 +77148,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12307
+ - uid: 12327
components:
- pos: 48.5,-35.5
parent: 2
@@ -77056,7 +77171,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12308
+ - uid: 12328
components:
- pos: 72.5,-55.5
parent: 2
@@ -77079,7 +77194,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12309
+ - uid: 12329
components:
- pos: -9.5,-8.5
parent: 2
@@ -77102,19 +77217,19 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12310
+ - uid: 12330
components:
- pos: 7.5,-78.5
parent: 2
type: Transform
- - uid: 12311
+ - uid: 12331
components:
- pos: 8.5,26.5
parent: 2
type: Transform
- proto: ClosetRadiationSuitFilled
entities:
- - uid: 12312
+ - uid: 12332
components:
- pos: -59.5,-23.5
parent: 2
@@ -77137,7 +77252,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12313
+ - uid: 12333
components:
- pos: -60.5,-23.5
parent: 2
@@ -77160,7 +77275,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12314
+ - uid: 12334
components:
- pos: 70.5,-35.5
parent: 2
@@ -77185,7 +77300,7 @@ entities:
type: EntityStorage
- proto: ClosetToolFilled
entities:
- - uid: 12315
+ - uid: 12335
components:
- pos: -26.5,-21.5
parent: 2
@@ -77208,7 +77323,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12316
+ - uid: 12336
components:
- pos: -22.5,-31.5
parent: 2
@@ -77218,14 +77333,14 @@ entities:
type: EntityStorage
- proto: ClosetWall
entities:
- - uid: 12317
+ - uid: 12337
components:
- pos: 45.5,-32.5
parent: 2
type: Transform
- proto: ClosetWallMaintenanceFilledRandom
entities:
- - uid: 12318
+ - uid: 12338
components:
- pos: 53.5,-33.5
parent: 2
@@ -77248,12 +77363,12 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12319
+ - uid: 12339
components:
- pos: 47.5,-64.5
parent: 2
type: Transform
- - uid: 12320
+ - uid: 12340
components:
- pos: -52.5,-26.5
parent: 2
@@ -77276,64 +77391,64 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12321
+ - uid: 12341
components:
- pos: 2.5,-12.5
parent: 2
type: Transform
- proto: ClothingBackpack
entities:
- - uid: 12322
+ - uid: 12342
components:
- pos: -56.640278,-27.45032
parent: 2
type: Transform
- proto: ClothingBackpackDuffelCaptain
entities:
- - uid: 12323
+ - uid: 12343
components:
- pos: 30.440884,-27.760664
parent: 2
type: Transform
- proto: ClothingBackpackDuffelClown
entities:
- - uid: 12324
+ - uid: 12344
components:
- pos: 53.57669,61.550056
parent: 2
type: Transform
- proto: ClothingBackpackDuffelMedical
entities:
- - uid: 12325
+ - uid: 12345
components:
- pos: -2.4848266,-48.830677
parent: 2
type: Transform
- - uid: 12326
+ - uid: 12346
components:
- pos: -16.552103,-49.311478
parent: 2
type: Transform
- proto: ClothingBackpackDuffelSecurity
entities:
- - uid: 12327
+ - uid: 12347
components:
- pos: 5.4199524,15.682768
parent: 2
type: Transform
- proto: ClothingBackpackDuffelSurgeryFilled
entities:
- - uid: 12328
+ - uid: 12348
components:
- pos: -6.4692874,-100.35278
parent: 2
type: Transform
- - uid: 12329
+ - uid: 12349
components:
- pos: -3.4849787,-66.40156
parent: 2
type: Transform
- - uid: 12330
+ - uid: 12350
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-35.5
@@ -77341,7 +77456,7 @@ entities:
type: Transform
- proto: ClothingBackpackDuffelSyndicate
entities:
- - uid: 12331
+ - uid: 12351
components:
- pos: -46.5,62.5
parent: 2
@@ -77349,862 +77464,874 @@ entities:
- type: ItemCooldown
- proto: ClothingBackpackMedical
entities:
- - uid: 12332
+ - uid: 12352
components:
- pos: 0.5470823,-61.419598
parent: 2
type: Transform
- proto: ClothingBackpackSatchel
entities:
- - uid: 12333
+ - uid: 12353
components:
- pos: -48.296333,5.808547
parent: 2
type: Transform
- proto: ClothingBackpackSatchelMedical
entities:
- - uid: 12334
+ - uid: 12354
components:
- pos: -11.364604,-50.389603
parent: 2
type: Transform
- proto: ClothingBackpackVirology
entities:
- - uid: 12335
+ - uid: 12355
components:
- pos: -31.439095,-73.39239
parent: 2
type: Transform
- proto: ClothingBeltAssault
entities:
- - uid: 12337
+ - uid: 12357
components:
- flags: InContainer
type: MetaData
- - parent: 12336
+ - parent: 12356
type: Transform
- canCollide: False
type: Physics
- type: InsideEntityStorage
- proto: ClothingBeltMedicalFilled
entities:
- - uid: 12339
+ - uid: 12359
components:
- pos: -11.470623,-49.143177
parent: 2
type: Transform
- proto: ClothingBeltUtility
entities:
- - uid: 12340
+ - uid: 12360
components:
- pos: -39.52201,-20.517406
parent: 2
type: Transform
- - uid: 12341
+ - uid: 12361
components:
- pos: 47.423275,49.588562
parent: 2
type: Transform
- - uid: 12342
+ - uid: 12362
components:
- pos: -3.42201,34.480587
parent: 2
type: Transform
- proto: ClothingBeltUtilityFilled
entities:
- - uid: 12343
+ - uid: 12363
components:
- pos: 41.37638,-39.3584
parent: 2
type: Transform
- - uid: 12344
- components:
- - pos: -25.692995,-19.449156
- parent: 2
- type: Transform
- - uid: 12345
+ - uid: 12364
components:
- pos: -30.494818,-37.432365
parent: 2
type: Transform
- - uid: 12346
+ - uid: 12365
components:
- pos: -21.644775,-100.24527
parent: 2
type: Transform
- - uid: 12347
+ - uid: 12366
components:
- pos: -34.48208,26.5042
parent: 2
type: Transform
+ - uid: 12367
+ components:
+ - pos: -26.513802,-20.343254
+ parent: 2
+ type: Transform
- proto: ClothingEyesGlasses
entities:
- - uid: 12348
+ - uid: 12368
components:
- pos: -57.484028,-27.38782
parent: 2
type: Transform
- proto: ClothingEyesGlassesMeson
entities:
- - uid: 12349
+ - uid: 12369
components:
- pos: -52.538578,-12.210998
parent: 2
type: Transform
- - uid: 12350
+ - uid: 12370
components:
- pos: -56.32557,-25.518402
parent: 2
type: Transform
- - uid: 12351
+ - uid: 12371
components:
- pos: 2.454368,-75.40744
parent: 2
type: Transform
- proto: ClothingEyesGlassesSecurity
entities:
- - uid: 12352
+ - uid: 12372
components:
- pos: 22.490807,-47.25673
parent: 2
type: Transform
- proto: ClothingEyesHudBeer
entities:
- - uid: 12353
+ - uid: 12373
components:
- pos: -41.966873,-78.417305
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingBlue
entities:
- - uid: 12354
+ - uid: 12374
components:
- pos: 21.737816,3.36442
parent: 2
type: Transform
- - uid: 12355
+ - uid: 12375
components:
- pos: -40.008175,-83.602425
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingGreen
entities:
- - uid: 12356
+ - uid: 12376
components:
- pos: 30.201283,4.7139225
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingRed
entities:
- - uid: 12357
+ - uid: 12377
components:
- pos: 26.335562,-1.3744954
parent: 2
type: Transform
- - uid: 12358
+ - uid: 12378
components:
- pos: -44.121326,-80.72781
parent: 2
type: Transform
- proto: ClothingHandsGlovesBoxingYellow
entities:
- - uid: 12359
+ - uid: 12379
components:
- pos: 30.232533,4.5889225
parent: 2
type: Transform
- proto: ClothingHandsGlovesColorBlack
entities:
- - uid: 12360
+ - uid: 12380
components:
- pos: -47.515083,6.5429225
parent: 2
type: Transform
- proto: ClothingHandsGlovesColorOrange
entities:
- - uid: 12361
+ - uid: 12381
components:
- pos: -57.515278,-30.528444
parent: 2
type: Transform
- proto: ClothingHandsGlovesColorYellow
entities:
- - uid: 12362
- components:
- - pos: -24.5,-24.5
- parent: 2
- type: Transform
- - uid: 12363
+ - uid: 12382
components:
- pos: -28.54305,-20.538445
parent: 2
type: Transform
- - uid: 12364
+ - uid: 12383
components:
- pos: -56.97646,-35.48593
parent: 2
type: Transform
- proto: ClothingHandsGlovesCombat
entities:
- - uid: 12365
+ - uid: 12384
components:
- pos: -37.5,-32.5
parent: 2
type: Transform
- proto: ClothingHandsGlovesLatex
entities:
- - uid: 12366
+ - uid: 12385
components:
- pos: -19.466316,-85.552505
parent: 2
type: Transform
- - uid: 12367
+ - uid: 12386
components:
- pos: -5.563123,-96.94655
parent: 2
type: Transform
- proto: ClothingHeadFishCap
entities:
- - uid: 12368
+ - uid: 12387
components:
- pos: -24.484636,34.673782
parent: 2
type: Transform
- proto: ClothingHeadHatAnimalCatBlack
entities:
- - uid: 12369
+ - uid: 12388
components:
- pos: -51.4974,8.551356
parent: 2
type: Transform
- proto: ClothingHeadHatAnimalHeadslime
entities:
- - uid: 12370
+ - uid: 12389
components:
- pos: -48.252262,60.451523
parent: 2
type: Transform
- proto: ClothingHeadHatBeaverHat
entities:
- - uid: 12371
+ - uid: 12390
components:
- pos: 22.537655,11.563517
parent: 2
type: Transform
- proto: ClothingHeadHatBunny
entities:
- - uid: 12372
+ - uid: 12391
components:
- pos: 57.503056,-8.485766
parent: 2
type: Transform
- proto: ClothingHeadHatCake
entities:
- - uid: 12373
+ - uid: 12392
components:
- pos: -23.42545,-67.41026
parent: 2
type: Transform
- proto: ClothingHeadHatCardborg
entities:
- - uid: 12374
+ - uid: 12393
components:
- pos: 72.844894,-43.422203
parent: 2
type: Transform
+- proto: ClothingHeadHatCasa
+ entities:
+ - uid: 12394
+ components:
+ - pos: -22.35962,44.65524
+ parent: 2
+ type: Transform
+ - uid: 12395
+ components:
+ - pos: -22.60962,44.452114
+ parent: 2
+ type: Transform
+ - uid: 12396
+ components:
+ - pos: -22.218994,44.34274
+ parent: 2
+ type: Transform
- proto: ClothingHeadHatChickenhead
entities:
- - uid: 12375
+ - uid: 12397
components:
- pos: -38.364468,56.565044
parent: 2
type: Transform
- - uid: 12376
+ - uid: 12398
components:
- pos: 69.487785,-66.37648
parent: 2
type: Transform
- proto: ClothingHeadHatCone
entities:
- - uid: 12377
+ - uid: 12399
components:
- pos: 20.465803,-52.422585
parent: 2
type: Transform
- - uid: 12378
+ - uid: 12400
components:
- pos: -40.213425,-17.545645
parent: 2
type: Transform
- - uid: 12379
+ - uid: 12401
components:
- pos: -28.525217,-54.052208
parent: 2
type: Transform
- proto: ClothingHeadHatFedoraBrown
entities:
- - uid: 12380
+ - uid: 12402
components:
- pos: -42.4974,8.520106
parent: 2
type: Transform
- proto: ClothingHeadHatFedoraGrey
entities:
- - uid: 12381
+ - uid: 12403
components:
- pos: -22.922485,11.607702
parent: 2
type: Transform
- proto: ClothingHeadHatFez
entities:
- - uid: 12382
+ - uid: 12404
components:
- pos: 20.326727,12.833071
parent: 2
type: Transform
- proto: ClothingHeadHatGreensoft
entities:
- - uid: 12383
+ - uid: 12405
components:
- pos: 31.51696,-61.276703
parent: 2
type: Transform
- proto: ClothingHeadHatHardhatOrange
entities:
- - uid: 12384
+ - uid: 12406
components:
- pos: 15.782594,-64.08794
parent: 2
type: Transform
- proto: ClothingHeadHatHetmanHat
entities:
- - uid: 12385
+ - uid: 12407
components:
- pos: -40.407463,-78.02446
parent: 2
type: Transform
- proto: ClothingHeadHatHoodMoth
entities:
- - uid: 12386
+ - uid: 12408
components:
- pos: -14.455677,-96.43048
parent: 2
type: Transform
- proto: ClothingHeadHatHoodNunHood
entities:
- - uid: 12387
+ - uid: 12409
components:
- pos: -38.629223,16.497232
parent: 2
type: Transform
- proto: ClothingHeadHatJesterAlt
entities:
- - uid: 12388
+ - uid: 12410
components:
- pos: -15.170754,12.526345
parent: 2
type: Transform
- proto: ClothingHeadHatPlaguedoctor
entities:
- - uid: 12389
+ - uid: 12411
components:
- pos: -31.265268,5.276951
parent: 2
type: Transform
- proto: ClothingHeadHatPumpkin
entities:
- - uid: 12390
+ - uid: 12412
components:
- pos: -6.603641,4.509495
parent: 2
type: Transform
- proto: ClothingHeadHatRichard
entities:
- - uid: 12391
+ - uid: 12413
components:
- pos: -16.484713,20.572138
parent: 2
type: Transform
- proto: ClothingHeadHatSantahat
entities:
- - uid: 12392
+ - uid: 12414
components:
- pos: 70.456535,-65.50148
parent: 2
type: Transform
- - uid: 12393
+ - uid: 12415
components:
- pos: 16.841702,-83.27199
parent: 2
type: Transform
- proto: ClothingHeadHatShrineMaidenWig
entities:
- - uid: 12394
+ - uid: 12416
components:
- pos: 73.5263,-65.23457
parent: 2
type: Transform
- proto: ClothingHeadHatSquid
entities:
- - uid: 12395
+ - uid: 12417
components:
- pos: 9.466757,-12.457433
parent: 2
type: Transform
- proto: ClothingHeadHatTophat
entities:
- - uid: 12396
+ - uid: 12418
components:
- pos: 22.506405,10.969767
parent: 2
type: Transform
- - uid: 12397
+ - uid: 12419
components:
- pos: -19.575691,-87.365005
parent: 2
type: Transform
- proto: ClothingHeadHatTrucker
entities:
- - uid: 12398
+ - uid: 12420
components:
- pos: -35.471638,-48.0912
parent: 2
type: Transform
- proto: ClothingHeadHatUshanka
entities:
- - uid: 12399
+ - uid: 12421
components:
- pos: 20.592352,12.520571
parent: 2
type: Transform
- - uid: 12400
+ - uid: 12422
components:
- pos: 63.56368,11.408342
parent: 2
type: Transform
- - uid: 12401
+ - uid: 12423
components:
- pos: -39.523006,-76.44785
parent: 2
type: Transform
- - uid: 12402
+ - uid: 12424
components:
- pos: -43.43965,-78.05615
parent: 2
type: Transform
- proto: ClothingHeadHatVioletwizard
entities:
- - uid: 12403
+ - uid: 12425
components:
- pos: 18.520521,50.50226
parent: 2
type: Transform
- proto: ClothingHeadHatWelding
entities:
- - uid: 12404
+ - uid: 12426
components:
- pos: -35.502888,-47.3412
parent: 2
type: Transform
- - uid: 12405
+ - uid: 12427
components:
- pos: -12.456746,17.595669
parent: 2
type: Transform
- - uid: 12406
+ - uid: 12428
components:
- pos: 42.55075,-32.360874
parent: 2
type: Transform
- proto: ClothingHeadHatWeldingMaskFlameBlue
entities:
- - uid: 12407
+ - uid: 12429
components:
- pos: 0.64530456,23.439005
parent: 2
type: Transform
- - uid: 12408
+ - uid: 12430
components:
- pos: -20.443554,-51.52769
parent: 2
type: Transform
- proto: ClothingHeadHatWizard
entities:
- - uid: 12409
+ - uid: 12431
components:
- pos: -27.578125,55.49253
parent: 2
type: Transform
- proto: ClothingHeadHelmetCosmonaut
entities:
- - uid: 12410
+ - uid: 12432
components:
- pos: -31.517996,-64.46434
parent: 2
type: Transform
- - uid: 12411
+ - uid: 12433
components:
- pos: -37.48917,27.661566
parent: 2
type: Transform
- proto: ClothingHeadHelmetEVA
entities:
- - uid: 12412
+ - uid: 12434
components:
- pos: -71.04211,-26.39878
parent: 2
type: Transform
- proto: ClothingHeadHelmetScaf
entities:
- - uid: 12413
+ - uid: 12435
components:
- pos: -31.458502,-43.474
parent: 2
type: Transform
- proto: ClothingHeadHelmetTemplar
entities:
- - uid: 12414
+ - uid: 12436
components:
- pos: 38.423565,-15.642361
parent: 2
type: Transform
- proto: ClothingHeadNurseHat
entities:
- - uid: 12415
+ - uid: 12437
components:
- pos: 2.5095897,-65.392746
parent: 2
type: Transform
- proto: ClothingHeadSafari
entities:
- - uid: 12416
+ - uid: 12438
components:
- pos: -3.5832248,52.757553
parent: 2
type: Transform
- proto: ClothingMaskBat
entities:
- - uid: 12417
+ - uid: 12439
components:
- pos: -28.497562,8.541992
parent: 2
type: Transform
- proto: ClothingMaskBear
entities:
- - uid: 12418
+ - uid: 12440
components:
- pos: -38.62821,28.538465
parent: 2
type: Transform
- proto: ClothingMaskBee
entities:
- - uid: 12419
+ - uid: 12441
components:
- pos: -3.4901123,53.561974
parent: 2
type: Transform
- proto: ClothingMaskBreathMedical
entities:
- - uid: 12420
+ - uid: 12442
components:
- pos: -16.243101,-35.3368
parent: 2
type: Transform
- proto: ClothingMaskFox
entities:
- - uid: 12421
+ - uid: 12443
components:
- pos: 30.331896,-28.644527
parent: 2
type: Transform
- proto: ClothingMaskGas
entities:
- - uid: 12422
+ - uid: 12444
components:
- pos: -25.389828,-6.471097
parent: 2
type: Transform
- - uid: 12423
+ - uid: 12445
components:
- pos: -70.49962,-26.436932
parent: 2
type: Transform
- - uid: 12424
+ - uid: 12446
components:
- pos: -8.705846,-15.426237
parent: 2
type: Transform
- proto: ClothingMaskGasAtmos
entities:
- - uid: 12425
+ - uid: 12447
components:
- pos: 3.1338544,-75.35811
parent: 2
type: Transform
- proto: ClothingMaskJackal
entities:
- - uid: 12426
+ - uid: 12448
components:
- pos: 16.67739,21.87369
parent: 2
type: Transform
- proto: ClothingMaskMuzzle
entities:
- - uid: 12427
+ - uid: 12449
components:
- pos: -15.336851,-35.602425
parent: 2
type: Transform
- proto: ClothingMaskNeckGaiter
entities:
- - uid: 12338
+ - uid: 12358
components:
- flags: InContainer
type: MetaData
- - parent: 12336
+ - parent: 12356
type: Transform
- canCollide: False
type: Physics
- type: InsideEntityStorage
- proto: ClothingMaskPlague
entities:
- - uid: 12428
+ - uid: 12450
components:
- pos: -31.093393,5.386326
parent: 2
type: Transform
- proto: ClothingMaskRat
entities:
- - uid: 12429
+ - uid: 12451
components:
- pos: -9.217388,-10.5028515
parent: 2
type: Transform
- proto: ClothingMaskRaven
entities:
- - uid: 12430
+ - uid: 12452
components:
- pos: 12.510361,-6.449043
parent: 2
type: Transform
- proto: ClothingNeckAromanticPin
entities:
- - uid: 12431
+ - uid: 12453
components:
- pos: -16.507944,41.79273
parent: 2
type: Transform
- proto: ClothingNeckAsexualPin
entities:
- - uid: 12432
+ - uid: 12454
components:
- pos: -16.289194,41.51148
parent: 2
type: Transform
- proto: ClothingNeckBisexualPin
entities:
- - uid: 12433
+ - uid: 12455
components:
- pos: -42.7372,8.687558
parent: 2
type: Transform
- proto: ClothingNeckBling
entities:
- - uid: 12434
+ - uid: 12456
components:
- pos: 48.258717,-21.370115
parent: 2
type: Transform
- proto: ClothingNeckCloakMoth
entities:
- - uid: 12435
+ - uid: 12457
components:
- pos: -8.662971,-82.55483
parent: 2
type: Transform
- proto: ClothingNeckCloakTrans
entities:
- - uid: 12436
+ - uid: 12458
components:
- pos: -9.4988165,23.574131
parent: 2
type: Transform
- proto: ClothingNeckIntersexPin
entities:
- - uid: 12437
+ - uid: 12459
components:
- pos: -12.691556,31.94308
parent: 2
type: Transform
- proto: ClothingNeckLawyerbadge
entities:
- - uid: 12438
+ - uid: 12460
components:
- pos: 43.39902,-3.8456278
parent: 2
type: Transform
- proto: ClothingNeckLesbianPin
entities:
- - uid: 12439
+ - uid: 12461
components:
- pos: -51.700592,8.465523
parent: 2
type: Transform
- proto: ClothingNeckLGBTPin
entities:
- - uid: 12440
+ - uid: 12462
components:
- pos: -10.776614,43.48699
parent: 2
type: Transform
- proto: ClothingNeckMantleCE
entities:
- - uid: 12441
+ - uid: 12463
components:
- pos: -35.58501,-17.148493
parent: 2
type: Transform
- proto: ClothingNeckMantleCMO
entities:
- - uid: 12442
+ - uid: 12464
components:
- pos: -20.144634,-56.34305
parent: 2
type: Transform
- proto: ClothingNeckMantleHOS
entities:
- - uid: 12443
+ - uid: 12465
components:
- pos: 5.905226,20.807451
parent: 2
type: Transform
- proto: ClothingNeckMantleRD
entities:
- - uid: 12444
+ - uid: 12466
components:
- pos: 63.464256,-53.431217
parent: 2
type: Transform
- proto: ClothingNeckNonBinaryPin
entities:
- - uid: 12445
+ - uid: 12467
components:
- pos: -21.722902,35.752502
parent: 2
type: Transform
- - uid: 12446
+ - uid: 12468
components:
- pos: -47.78141,6.181047
parent: 2
type: Transform
- proto: ClothingNeckPansexualPin
entities:
- - uid: 12447
+ - uid: 12469
components:
- pos: -1.5377516,30.493696
parent: 2
type: Transform
- proto: ClothingNeckScarfStripedCentcom
entities:
- - uid: 12448
+ - uid: 12470
components:
- pos: 77.62025,-67.25297
parent: 2
type: Transform
- proto: ClothingNeckScarfStripedZebra
entities:
- - uid: 12449
+ - uid: 12471
components:
- pos: -28.25746,44.644928
parent: 2
type: Transform
- proto: ClothingNeckTransPin
entities:
- - uid: 12450
+ - uid: 12472
components:
- pos: 65.36391,-1.4805084
parent: 2
type: Transform
- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 12451
+ - uid: 12473
components:
- pos: 32.367626,30.579184
parent: 2
type: Transform
- - uid: 12452
+ - uid: 12474
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12453
+ - uid: 12475
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12454
+ - uid: 12476
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12455
+ - uid: 12477
components:
- pos: 31.015066,32.43679
parent: 2
type: Transform
- - uid: 12456
+ - uid: 12478
components:
- pos: 32.398876,30.266684
parent: 2
type: Transform
- - uid: 12457
+ - uid: 12479
components:
- pos: 32.617626,30.485434
parent: 2
type: Transform
- - uid: 12458
+ - uid: 12480
components:
- pos: 32.648876,30.157309
parent: 2
type: Transform
- proto: ClothingOuterArmorReflective
entities:
- - uid: 12459
+ - uid: 12481
components:
- pos: 32.477,29.610434
parent: 2
type: Transform
- proto: ClothingOuterCardborg
entities:
- - uid: 12460
+ - uid: 12482
components:
- pos: 73.548645,-43.410946
parent: 2
type: Transform
- proto: ClothingOuterCoatBomber
entities:
- - uid: 12461
+ - uid: 12483
components:
- pos: 15.5274105,-50.516087
parent: 2
type: Transform
- proto: ClothingOuterCoatDetective
entities:
- - uid: 12462
+ - uid: 12484
components:
- pos: -32.515205,-59.44035
parent: 2
type: Transform
- proto: ClothingOuterCoatGentle
entities:
- - uid: 12463
+ - uid: 12485
components:
- pos: 59.512882,24.492107
parent: 2
type: Transform
- proto: ClothingOuterCoatJensen
entities:
- - uid: 12160
+ - uid: 12182
components:
- pos: 62.5886,15.642659
parent: 2
@@ -78214,7 +78341,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 12161
+ - 12183
toggleable-clothing: !type:ContainerSlot
showEnts: False
occludes: True
@@ -78222,336 +78349,336 @@ entities:
type: ContainerContainer
- proto: ClothingOuterDameDane
entities:
- - uid: 12464
+ - uid: 12486
components:
- pos: -30.207304,-98.49032
parent: 2
type: Transform
- proto: ClothingOuterHardsuitEVA
entities:
- - uid: 12465
+ - uid: 12487
components:
- pos: -71.62023,-26.30503
parent: 2
type: Transform
- proto: ClothingOuterHoodieChaplain
entities:
- - uid: 12466
+ - uid: 12488
components:
- pos: -39.238598,16.669107
parent: 2
type: Transform
- proto: ClothingOuterPlagueSuit
entities:
- - uid: 12467
+ - uid: 12489
components:
- pos: -31.046518,5.058201
parent: 2
type: Transform
- proto: ClothingOuterSanta
entities:
- - uid: 12468
+ - uid: 12490
components:
- pos: 16.810452,-83.41261
parent: 2
type: Transform
- proto: ClothingOuterStraightjacket
entities:
- - uid: 12469
+ - uid: 12491
components:
- pos: -15.008726,-35.30555
parent: 2
type: Transform
- - uid: 12470
+ - uid: 12492
components:
- pos: 6.437404,-57.306335
parent: 2
type: Transform
- proto: ClothingOuterSuitChicken
entities:
- - uid: 12471
+ - uid: 12493
components:
- pos: -41.535904,57.643673
parent: 2
type: Transform
- proto: ClothingOuterSuitMonkey
entities:
- - uid: 12472
+ - uid: 12494
components:
- pos: -23.4853,-87.30585
parent: 2
type: Transform
- proto: ClothingOuterSuitShrineMaiden
entities:
- - uid: 12473
+ - uid: 12495
components:
- pos: -40.497574,63.50408
parent: 2
type: Transform
- - uid: 12474
+ - uid: 12496
components:
- pos: 73.55755,-64.51582
parent: 2
type: Transform
- proto: ClothingOuterWinterRobo
entities:
- - uid: 12475
+ - uid: 12497
components:
- pos: 77.51138,-47.408936
parent: 2
type: Transform
- proto: ClothingOuterWinterViro
entities:
- - uid: 12476
+ - uid: 12498
components:
- pos: -31.470345,-74.22051
parent: 2
type: Transform
- proto: ClothingOuterWizard
entities:
- - uid: 12477
+ - uid: 12499
components:
- pos: -41.58894,41.559685
parent: 2
type: Transform
- proto: ClothingOuterWizardRed
entities:
- - uid: 12478
+ - uid: 12500
components:
- pos: -59.983215,-45.447025
parent: 2
type: Transform
- proto: ClothingOuterWizardViolet
entities:
- - uid: 12479
+ - uid: 12501
components:
- pos: 19.504896,49.611633
parent: 2
type: Transform
- proto: ClothingShoesBling
entities:
- - uid: 12480
+ - uid: 12502
components:
- pos: 47.782166,-25.351032
parent: 2
type: Transform
- proto: ClothingShoesBootsJack
entities:
- - uid: 12481
+ - uid: 12503
components:
- pos: -1.4635531,17.609518
parent: 2
type: Transform
- proto: ClothingShoesBootsLaceup
entities:
- - uid: 12482
+ - uid: 12504
components:
- pos: 45.797165,49.377663
parent: 2
type: Transform
- proto: ClothingShoesBootsMag
entities:
- - uid: 12483
+ - uid: 12505
components:
- pos: -34.59344,-13.376695
parent: 2
type: Transform
- - uid: 12484
+ - uid: 12506
components:
- pos: -47.52257,38.626587
parent: 2
type: Transform
- - uid: 12485
+ - uid: 12507
components:
- pos: 33.46236,-13.4915285
parent: 2
type: Transform
- - uid: 12486
+ - uid: 12508
components:
- pos: 27.527689,27.317041
parent: 2
type: Transform
- - uid: 12487
+ - uid: 12509
components:
- pos: 31.527689,27.285791
parent: 2
type: Transform
- - uid: 12488
+ - uid: 12510
components:
- pos: 31.516712,-13.514931
parent: 2
type: Transform
- - uid: 12489
+ - uid: 12511
components:
- pos: 31.501087,-11.577431
parent: 2
type: Transform
- - uid: 12490
+ - uid: 12512
components:
- pos: 33.563587,-11.530556
parent: 2
type: Transform
- - uid: 12491
+ - uid: 12513
components:
- pos: 29.610462,-11.499306
parent: 2
type: Transform
- - uid: 12492
+ - uid: 12514
components:
- pos: 29.532337,-13.577431
parent: 2
type: Transform
- - uid: 12493
+ - uid: 12515
components:
- pos: 26.669048,29.395418
parent: 2
type: Transform
- proto: ClothingShoesColorWhite
entities:
- - uid: 12494
+ - uid: 12516
components:
- pos: -16.54276,-45.461185
parent: 2
type: Transform
- proto: ClothingShoesDameDane
entities:
- - uid: 12495
+ - uid: 12517
components:
- pos: -22.591383,-96.25594
parent: 2
type: Transform
- proto: ClothingShoesFlippers
entities:
- - uid: 12496
+ - uid: 12518
components:
- pos: -3.5418344,21.579527
parent: 2
type: Transform
- proto: ClothingShoeSlippersDuck
entities:
- - uid: 12497
+ - uid: 12519
components:
- pos: 15.423054,34.567764
parent: 2
type: Transform
- proto: ClothingShoesSkates
entities:
- - uid: 12498
+ - uid: 12520
components:
- pos: -34.53309,-20.500399
parent: 2
type: Transform
- proto: ClothingUnderSocksBee
entities:
- - uid: 12499
+ - uid: 12521
components:
- pos: 62.522377,-58.450882
parent: 2
type: Transform
- proto: ClothingUniformJumpskirtJanimaidmini
entities:
- - uid: 12500
+ - uid: 12522
components:
- pos: -13.518242,-15.499978
parent: 2
type: Transform
- proto: ClothingUniformJumpskirtOfLife
entities:
- - uid: 12501
+ - uid: 12523
components:
- pos: 62.5,53.5
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitCossack
entities:
- - uid: 12502
+ - uid: 12524
components:
- pos: -40.657463,-77.46196
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitDameDane
entities:
- - uid: 12503
+ - uid: 12525
components:
- pos: -15.484091,-96.41976
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitMonasticRobeDark
entities:
- - uid: 12504
+ - uid: 12526
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12505
+ - uid: 12527
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12506
+ - uid: 12528
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12507
+ - uid: 12529
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- - uid: 12508
+ - uid: 12530
components:
- pos: -32.383476,8.575315
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitMonasticRobeLight
entities:
- - uid: 12509
+ - uid: 12531
components:
- pos: -22.894775,-100.24527
parent: 2
type: Transform
- - uid: 12510
+ - uid: 12532
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12511
+ - uid: 12533
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12512
+ - uid: 12534
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12513
+ - uid: 12535
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- - uid: 12514
+ - uid: 12536
components:
- pos: -33.11785,8.55969
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitReporter
entities:
- - uid: 12515
+ - uid: 12537
components:
- pos: -27.443762,14.534213
parent: 2
type: Transform
- proto: ClothingUniformJumpsuitSafari
entities:
- - uid: 12516
+ - uid: 12538
components:
- pos: -3.4738498,52.42943
parent: 2
type: Transform
- proto: CluwneHorn
entities:
- - uid: 12517
+ - uid: 12539
components:
- rot: 1.5707963267948966 rad
pos: -1.2827566,69.184296
@@ -78559,358 +78686,358 @@ entities:
type: Transform
- proto: Cobweb1
entities:
- - uid: 12518
+ - uid: 12540
components:
- pos: -42.5,-20.5
parent: 2
type: Transform
- - uid: 12519
+ - uid: 12541
components:
- pos: -55.5,-66.5
parent: 2
type: Transform
- - uid: 12520
+ - uid: 12542
components:
- pos: -45.5,-71.5
parent: 2
type: Transform
- proto: Cobweb2
entities:
- - uid: 12521
+ - uid: 12543
components:
- pos: -48.5,-34.5
parent: 2
type: Transform
- - uid: 12522
+ - uid: 12544
components:
- pos: -53.5,-70.5
parent: 2
type: Transform
- - uid: 12523
+ - uid: 12545
components:
- pos: -38.5,-71.5
parent: 2
type: Transform
- proto: CockroachTimedSpawner
entities:
- - uid: 12524
+ - uid: 12546
components:
- pos: -11.5,-9.5
parent: 2
type: Transform
- proto: ComfyChair
entities:
- - uid: 12525
+ - uid: 12547
components:
- pos: -19.5,-55.5
parent: 2
type: Transform
- - uid: 12526
+ - uid: 12548
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-35.5
parent: 2
type: Transform
- - uid: 12527
+ - uid: 12549
components:
- pos: 20.5,-11.5
parent: 2
type: Transform
- - uid: 12528
+ - uid: 12550
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-33.5
parent: 2
type: Transform
- - uid: 12529
+ - uid: 12551
components:
- pos: 6.5,21.5
parent: 2
type: Transform
- - uid: 12530
+ - uid: 12552
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-28.5
parent: 2
type: Transform
- - uid: 12531
+ - uid: 12553
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-31.5
parent: 2
type: Transform
- - uid: 12532
+ - uid: 12554
components:
- rot: 3.141592653589793 rad
pos: 20.5,11.5
parent: 2
type: Transform
- - uid: 12533
+ - uid: 12555
components:
- pos: 20.5,13.5
parent: 2
type: Transform
- - uid: 12534
+ - uid: 12556
components:
- pos: -15.5,-37.5
parent: 2
type: Transform
- - uid: 12535
+ - uid: 12557
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-29.5
parent: 2
type: Transform
- - uid: 12536
+ - uid: 12558
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-3.5
parent: 2
type: Transform
- - uid: 12537
+ - uid: 12559
components:
- rot: 3.141592653589793 rad
pos: 33.5,-51.5
parent: 2
type: Transform
- - uid: 12538
+ - uid: 12560
components:
- rot: 3.141592653589793 rad
pos: 29.5,-51.5
parent: 2
type: Transform
- - uid: 12539
+ - uid: 12561
components:
- pos: 32.5,-47.5
parent: 2
type: Transform
- - uid: 12540
+ - uid: 12562
components:
- pos: 30.5,-47.5
parent: 2
type: Transform
- - uid: 12541
+ - uid: 12563
components:
- pos: 25.5,-81.5
parent: 2
type: Transform
- - uid: 12542
+ - uid: 12564
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-16.5
parent: 2
type: Transform
- - uid: 12543
+ - uid: 12565
components:
- pos: -48.5,7.5
parent: 2
type: Transform
- - uid: 12544
+ - uid: 12566
components:
- pos: -47.5,7.5
parent: 2
type: Transform
- - uid: 12545
+ - uid: 12567
components:
- rot: 1.5707963267948966 rad
pos: -49.5,6.5
parent: 2
type: Transform
- - uid: 12546
+ - uid: 12568
components:
- rot: 1.5707963267948966 rad
pos: -49.5,5.5
parent: 2
type: Transform
- - uid: 12547
+ - uid: 12569
components:
- rot: 3.141592653589793 rad
pos: -48.5,4.5
parent: 2
type: Transform
- - uid: 12548
+ - uid: 12570
components:
- rot: 3.141592653589793 rad
pos: -47.5,4.5
parent: 2
type: Transform
- - uid: 12549
+ - uid: 12571
components:
- rot: -1.5707963267948966 rad
pos: -46.5,6.5
parent: 2
type: Transform
- - uid: 12550
+ - uid: 12572
components:
- rot: -1.5707963267948966 rad
pos: -46.5,5.5
parent: 2
type: Transform
- - uid: 12551
+ - uid: 12573
components:
- rot: 3.141592653589793 rad
pos: 25.5,-85.5
parent: 2
type: Transform
- - uid: 12552
+ - uid: 12574
components:
- rot: 3.141592653589793 rad
pos: 67.5,7.5
parent: 2
type: Transform
- - uid: 12553
+ - uid: 12575
components:
- pos: 67.5,11.5
parent: 2
type: Transform
- - uid: 12554
+ - uid: 12576
components:
- pos: 44.5,33.5
parent: 2
type: Transform
- - uid: 12555
+ - uid: 12577
components:
- pos: 43.5,33.5
parent: 2
type: Transform
- - uid: 12556
+ - uid: 12578
components:
- pos: 42.5,33.5
parent: 2
type: Transform
- - uid: 12557
+ - uid: 12579
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-0.5
parent: 2
type: Transform
- - uid: 12558
+ - uid: 12580
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-1.5
parent: 2
type: Transform
- - uid: 12559
+ - uid: 12581
components:
- rot: 3.141592653589793 rad
pos: 44.5,28.5
parent: 2
type: Transform
- - uid: 12560
+ - uid: 12582
components:
- rot: 3.141592653589793 rad
pos: 45.5,28.5
parent: 2
type: Transform
- - uid: 12561
+ - uid: 12583
components:
- rot: 3.141592653589793 rad
pos: 46.5,28.5
parent: 2
type: Transform
- - uid: 12562
+ - uid: 12584
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-48.5
parent: 2
type: Transform
- - uid: 12563
+ - uid: 12585
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-49.5
parent: 2
type: Transform
- - uid: 12564
+ - uid: 12586
components:
- pos: -55.5,-47.5
parent: 2
type: Transform
- - uid: 12565
+ - uid: 12587
components:
- rot: 3.141592653589793 rad
pos: -55.5,-50.5
parent: 2
type: Transform
- - uid: 12566
+ - uid: 12588
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-98.5
parent: 2
type: Transform
- - uid: 12567
+ - uid: 12589
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-97.5
parent: 2
type: Transform
- - uid: 12568
+ - uid: 12590
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-97.5
parent: 2
type: Transform
- - uid: 12569
+ - uid: 12591
components:
- pos: -0.5,-73.5
parent: 2
type: Transform
- - uid: 12570
+ - uid: 12592
components:
- pos: 16.5,-79.5
parent: 2
type: Transform
- - uid: 12571
+ - uid: 12593
components:
- pos: 14.5,-79.5
parent: 2
type: Transform
- - uid: 12572
+ - uid: 12594
components:
- pos: 13.5,-79.5
parent: 2
type: Transform
- - uid: 12573
+ - uid: 12595
components:
- pos: 17.5,-79.5
parent: 2
type: Transform
- - uid: 12574
+ - uid: 12596
components:
- rot: 3.141592653589793 rad
pos: 14.5,-87.5
parent: 2
type: Transform
- - uid: 12575
+ - uid: 12597
components:
- rot: 3.141592653589793 rad
pos: 13.5,-87.5
parent: 2
type: Transform
- - uid: 12576
+ - uid: 12598
components:
- rot: 3.141592653589793 rad
pos: 17.5,-87.5
parent: 2
type: Transform
- - uid: 12577
+ - uid: 12599
components:
- rot: 3.141592653589793 rad
pos: 16.5,-87.5
parent: 2
type: Transform
- - uid: 12578
+ - uid: 12600
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-79.5
parent: 2
type: Transform
- - uid: 12579
+ - uid: 12601
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-29.5
parent: 2
type: Transform
- - uid: 12580
+ - uid: 12602
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-28.5
@@ -78918,18 +79045,18 @@ entities:
type: Transform
- proto: ComputerAlert
entities:
- - uid: 12581
+ - uid: 12603
components:
- pos: 27.5,-21.5
parent: 2
type: Transform
- - uid: 12582
+ - uid: 12604
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-12.5
parent: 2
type: Transform
- - uid: 12583
+ - uid: 12605
components:
- rot: 3.141592653589793 rad
pos: -36.5,-46.5
@@ -78937,24 +79064,24 @@ entities:
type: Transform
- proto: ComputerAnalysisConsole
entities:
- - uid: 12584
+ - uid: 12606
components:
- pos: 73.5,-31.5
parent: 2
type: Transform
- linkedPorts:
- 21402:
+ 21420:
- ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
type: DeviceLinkSource
- proto: computerBodyScanner
entities:
- - uid: 12585
+ - uid: 12607
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-65.5
parent: 2
type: Transform
- - uid: 12586
+ - uid: 12608
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-60.5
@@ -78962,48 +79089,48 @@ entities:
type: Transform
- proto: ComputerBroken
entities:
- - uid: 12587
+ - uid: 12609
components:
- rot: -1.5707963267948966 rad
pos: 52.5,37.5
parent: 2
type: Transform
- - uid: 12588
+ - uid: 12610
components:
- pos: 51.5,36.5
parent: 2
type: Transform
- - uid: 12589
+ - uid: 12611
components:
- rot: -1.5707963267948966 rad
pos: 51.5,37.5
parent: 2
type: Transform
- - uid: 12590
+ - uid: 12612
components:
- rot: 1.5707963267948966 rad
pos: -0.5,73.5
parent: 2
type: Transform
- - uid: 12591
+ - uid: 12613
components:
- rot: -1.5707963267948966 rad
pos: -2.5,73.5
parent: 2
type: Transform
- - uid: 12592
+ - uid: 12614
components:
- rot: 1.5707963267948966 rad
pos: 2.5,69.5
parent: 2
type: Transform
- - uid: 12593
+ - uid: 12615
components:
- rot: -1.5707963267948966 rad
pos: -5.5,69.5
parent: 2
type: Transform
- - uid: 12594
+ - uid: 12616
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-87.5
@@ -79011,36 +79138,36 @@ entities:
type: Transform
- proto: ComputerCargoBounty
entities:
- - uid: 12595
+ - uid: 12617
components:
- pos: -42.5,25.5
parent: 2
type: Transform
- proto: ComputerCargoOrders
entities:
- - uid: 12596
+ - uid: 12618
components:
- pos: -31.5,31.5
parent: 2
type: Transform
- - uid: 12597
+ - uid: 12619
components:
- pos: 29.5,-21.5
parent: 2
type: Transform
- - uid: 12598
+ - uid: 12620
components:
- pos: -27.5,23.5
parent: 2
type: Transform
- - uid: 12599
+ - uid: 12621
components:
- pos: -44.5,35.5
parent: 2
type: Transform
- proto: ComputerCargoShuttle
entities:
- - uid: 12600
+ - uid: 12622
components:
- rot: 3.141592653589793 rad
pos: -27.5,21.5
@@ -79048,12 +79175,12 @@ entities:
type: Transform
- proto: ComputerComms
entities:
- - uid: 12601
+ - uid: 12623
components:
- pos: 25.5,-21.5
parent: 2
type: Transform
- - uid: 12602
+ - uid: 12624
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-30.5
@@ -79061,69 +79188,69 @@ entities:
type: Transform
- proto: ComputerCrewMonitoring
entities:
- - uid: 12603
+ - uid: 12625
components:
- pos: 23.5,-21.5
parent: 2
type: Transform
- - uid: 12604
+ - uid: 12626
components:
- pos: 54.5,13.5
parent: 2
type: Transform
- proto: ComputerCriminalRecords
entities:
- - uid: 12605
+ - uid: 12627
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-45.5
parent: 2
type: Transform
- - uid: 12606
+ - uid: 12628
components:
- pos: -16.5,26.5
parent: 2
type: Transform
- - uid: 12607
+ - uid: 12629
components:
- pos: 23.5,23.5
parent: 2
type: Transform
- proto: ComputerFrame
entities:
- - uid: 12608
+ - uid: 12630
components:
- pos: -8.5,-63.5
parent: 2
type: Transform
- - uid: 12609
+ - uid: 12631
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-36.5
parent: 2
type: Transform
- - uid: 12610
+ - uid: 12632
components:
- pos: 51.5,35.5
parent: 2
type: Transform
- - uid: 12611
+ - uid: 12633
components:
- pos: -10.5,37.5
parent: 2
type: Transform
- - uid: 12612
+ - uid: 12634
components:
- pos: -29.5,-96.5
parent: 2
type: Transform
- - uid: 12613
+ - uid: 12635
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-54.5
parent: 2
type: Transform
- - uid: 12614
+ - uid: 12636
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-53.5
@@ -79131,40 +79258,40 @@ entities:
type: Transform
- proto: ComputerId
entities:
- - uid: 12615
+ - uid: 12637
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-17.5
parent: 2
type: Transform
- - uid: 12616
+ - uid: 12638
components:
- pos: 60.5,-53.5
parent: 2
type: Transform
- - uid: 12617
+ - uid: 12639
components:
- rot: 3.141592653589793 rad
pos: -30.5,29.5
parent: 2
type: Transform
- - uid: 12618
+ - uid: 12640
components:
- pos: 25.5,-24.5
parent: 2
type: Transform
- - uid: 12619
+ - uid: 12641
components:
- rot: 3.141592653589793 rad
pos: 4.5,20.5
parent: 2
type: Transform
- - uid: 12620
+ - uid: 12642
components:
- pos: -19.5,-54.5
parent: 2
type: Transform
- - uid: 12621
+ - uid: 12643
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-4.5
@@ -79172,7 +79299,7 @@ entities:
type: Transform
- proto: ComputerMassMedia
entities:
- - uid: 12622
+ - uid: 12644
components:
- rot: -1.5707963267948966 rad
pos: -22.5,12.5
@@ -79180,18 +79307,18 @@ entities:
type: Transform
- proto: ComputerMedicalRecords
entities:
- - uid: 12623
+ - uid: 12645
components:
- pos: -20.5,-54.5
parent: 2
type: Transform
- - uid: 12624
+ - uid: 12646
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-50.5
parent: 2
type: Transform
- - uid: 12625
+ - uid: 12647
components:
- rot: 3.141592653589793 rad
pos: 47.5,5.5
@@ -79199,34 +79326,34 @@ entities:
type: Transform
- proto: ComputerPowerMonitoring
entities:
- - uid: 12626
+ - uid: 12648
components:
- pos: -46.5,-22.5
parent: 2
type: Transform
- - uid: 12627
+ - uid: 12649
components:
- pos: -72.5,-31.5
parent: 2
type: Transform
- - uid: 12628
+ - uid: 12650
components:
- pos: 21.5,-21.5
parent: 2
type: Transform
- - uid: 12629
+ - uid: 12651
components:
- rot: 3.141592653589793 rad
pos: -27.5,-13.5
parent: 2
type: Transform
- - uid: 12630
+ - uid: 12652
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-13.5
parent: 2
type: Transform
- - uid: 12631
+ - uid: 12653
components:
- rot: 3.141592653589793 rad
pos: -71.5,-39.5
@@ -79234,7 +79361,7 @@ entities:
type: Transform
- proto: ComputerRadar
entities:
- - uid: 12632
+ - uid: 12654
components:
- rot: 1.5707963267948966 rad
pos: -48.5,32.5
@@ -79242,40 +79369,40 @@ entities:
type: Transform
- proto: ComputerResearchAndDevelopment
entities:
- - uid: 12633
+ - uid: 12655
components:
- rot: 3.141592653589793 rad
pos: 61.5,-55.5
parent: 2
type: Transform
- - uid: 12634
+ - uid: 12656
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-39.5
parent: 2
type: Transform
- - uid: 12635
+ - uid: 12657
components:
- pos: 68.5,-43.5
parent: 2
type: Transform
- - uid: 12636
+ - uid: 12658
components:
- pos: 50.5,-52.5
parent: 2
type: Transform
- - uid: 12637
+ - uid: 12659
components:
- rot: 3.141592653589793 rad
pos: 60.5,-36.5
parent: 2
type: Transform
- - uid: 12638
+ - uid: 12660
components:
- pos: 74.5,-31.5
parent: 2
type: Transform
- - uid: 12639
+ - uid: 12661
components:
- rot: 3.141592653589793 rad
pos: 52.5,-42.5
@@ -79283,14 +79410,14 @@ entities:
type: Transform
- proto: ComputerSalvageExpedition
entities:
- - uid: 12640
+ - uid: 12662
components:
- pos: -46.5,44.5
parent: 2
type: Transform
- proto: ComputerShuttleCargo
entities:
- - uid: 12641
+ - uid: 12663
components:
- rot: 1.5707963267948966 rad
pos: -48.5,21.5
@@ -79298,66 +79425,66 @@ entities:
type: Transform
- proto: ComputerShuttleSalvage
entities:
- - uid: 12642
+ - uid: 12664
components:
- pos: -47.5,44.5
parent: 2
type: Transform
- proto: ComputerSolarControl
entities:
- - uid: 12643
+ - uid: 12665
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-77.5
parent: 2
type: Transform
- - uid: 12644
+ - uid: 12666
components:
- pos: 72.5,38.5
parent: 2
type: Transform
- proto: ComputerStationRecords
entities:
- - uid: 12645
+ - uid: 12667
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-4.5
parent: 2
type: Transform
- - uid: 12646
+ - uid: 12668
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-57.5
parent: 2
type: Transform
- - uid: 12647
+ - uid: 12669
components:
- pos: 18.5,-10.5
parent: 2
type: Transform
- - uid: 12648
+ - uid: 12670
components:
- pos: 24.5,-24.5
parent: 2
type: Transform
- - uid: 12649
+ - uid: 12671
components:
- rot: -1.5707963267948966 rad
pos: 26.5,20.5
parent: 2
type: Transform
- - uid: 12650
+ - uid: 12672
components:
- pos: 47.5,7.5
parent: 2
type: Transform
- - uid: 12651
+ - uid: 12673
components:
- rot: 3.141592653589793 rad
pos: 20.5,-47.5
parent: 2
type: Transform
- - uid: 12652
+ - uid: 12674
components:
- rot: 3.141592653589793 rad
pos: -16.5,-23.5
@@ -79365,57 +79492,57 @@ entities:
type: Transform
- proto: ComputerSurveillanceCameraMonitor
entities:
- - uid: 12653
+ - uid: 12675
components:
- pos: 26.5,-24.5
parent: 2
type: Transform
- - uid: 12654
+ - uid: 12676
components:
- rot: 3.141592653589793 rad
pos: 18.5,-12.5
parent: 2
type: Transform
- - uid: 12655
+ - uid: 12677
components:
- rot: 1.5707963267948966 rad
pos: 24.5,20.5
parent: 2
type: Transform
- - uid: 12656
+ - uid: 12678
components:
- pos: 53.5,13.5
parent: 2
type: Transform
- - uid: 12657
+ - uid: 12679
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-14.5
parent: 2
type: Transform
- - uid: 12658
+ - uid: 12680
components:
- pos: -23.5,-69.5
parent: 2
type: Transform
- - uid: 12659
+ - uid: 12681
components:
- pos: -11.5,-14.5
parent: 2
type: Transform
- - uid: 12660
+ - uid: 12682
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-49.5
parent: 2
type: Transform
- - uid: 12661
+ - uid: 12683
components:
- rot: 3.141592653589793 rad
pos: -37.5,-46.5
parent: 2
type: Transform
- - uid: 12662
+ - uid: 12684
components:
- rot: 1.5707963267948966 rad
pos: -27.5,15.5
@@ -79423,1057 +79550,1057 @@ entities:
type: Transform
- proto: ComputerTechnologyDiskTerminal
entities:
- - uid: 12663
+ - uid: 12685
components:
- pos: 56.5,-47.5
parent: 2
type: Transform
- proto: ComputerTelevision
entities:
- - uid: 12664
+ - uid: 12686
components:
- pos: -6.5,-48.5
parent: 2
type: Transform
- - uid: 12665
+ - uid: 12687
components:
- pos: -28.5,43.5
parent: 2
type: Transform
- - uid: 12666
+ - uid: 12688
components:
- pos: 15.5,9.5
parent: 2
type: Transform
- - uid: 12667
+ - uid: 12689
components:
- pos: -22.5,31.5
parent: 2
type: Transform
- - uid: 12668
+ - uid: 12690
components:
- pos: -18.5,35.5
parent: 2
type: Transform
- - uid: 12669
+ - uid: 12691
components:
- pos: -11.5,35.5
parent: 2
type: Transform
- - uid: 12670
+ - uid: 12692
components:
- pos: -21.5,39.5
parent: 2
type: Transform
- proto: ComputerTelevisionCircuitboard
entities:
- - uid: 12671
+ - uid: 12693
components:
- pos: 41.546516,-53.695484
parent: 2
type: Transform
- proto: ContainmentFieldGenerator
entities:
- - uid: 12672
+ - uid: 12694
components:
- pos: -70.5,-9.5
parent: 2
type: Transform
- - uid: 12673
+ - uid: 12695
components:
- pos: -62.5,-9.5
parent: 2
type: Transform
- - uid: 12674
+ - uid: 12696
components:
- pos: -62.5,-17.5
parent: 2
type: Transform
- - uid: 12675
+ - uid: 12697
components:
- pos: -70.5,-17.5
parent: 2
type: Transform
- - uid: 12676
+ - uid: 12698
components:
- pos: -74.5,-26.5
parent: 2
type: Transform
- - uid: 12677
+ - uid: 12699
components:
- pos: -73.5,-26.5
parent: 2
type: Transform
- - uid: 12678
+ - uid: 12700
components:
- pos: -74.5,-23.5
parent: 2
type: Transform
- - uid: 12679
+ - uid: 12701
components:
- pos: -73.5,-23.5
parent: 2
type: Transform
- proto: ConveyorBelt
entities:
- - uid: 12680
+ - uid: 12702
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-55.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12681
+ - uid: 12703
components:
- pos: 18.5,-56.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12682
+ - uid: 12704
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-55.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12683
+ - uid: 12705
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-55.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12684
+ - uid: 12706
components:
- pos: 18.5,-55.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12685
+ - uid: 12707
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-10.5
parent: 2
type: Transform
- links:
- - 25873
+ - 25940
type: DeviceLinkSink
- - uid: 12686
+ - uid: 12708
components:
- pos: 15.5,-54.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12687
+ - uid: 12709
components:
- pos: 18.5,-57.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12688
+ - uid: 12710
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-54.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12689
+ - uid: 12711
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-54.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12690
+ - uid: 12712
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-54.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- - uid: 12691
+ - uid: 12713
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-10.5
parent: 2
type: Transform
- links:
- - 25873
+ - 25940
type: DeviceLinkSink
- - uid: 12692
+ - uid: 12714
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-10.5
parent: 2
type: Transform
- links:
- - 25873
+ - 25940
type: DeviceLinkSink
- - uid: 12693
+ - uid: 12715
components:
- rot: 3.141592653589793 rad
pos: -11.5,-10.5
parent: 2
type: Transform
- links:
- - 25873
+ - 25940
type: DeviceLinkSink
- - uid: 12694
+ - uid: 12716
components:
- rot: 1.5707963267948966 rad
pos: -25.5,25.5
parent: 2
type: Transform
- links:
- - 25861
+ - 25928
type: DeviceLinkSink
- - uid: 12695
+ - uid: 12717
components:
- rot: 1.5707963267948966 rad
pos: -26.5,25.5
parent: 2
type: Transform
- links:
- - 25861
+ - 25928
type: DeviceLinkSink
- - uid: 12696
+ - uid: 12718
components:
- rot: 1.5707963267948966 rad
pos: -27.5,25.5
parent: 2
type: Transform
- links:
- - 25861
+ - 25928
type: DeviceLinkSink
- - uid: 12697
+ - uid: 12719
components:
- rot: 1.5707963267948966 rad
pos: -28.5,25.5
parent: 2
type: Transform
- links:
- - 25861
+ - 25928
type: DeviceLinkSink
- - uid: 12698
+ - uid: 12720
components:
- rot: 1.5707963267948966 rad
pos: -30.5,25.5
parent: 2
type: Transform
- links:
- - 25861
+ - 25928
type: DeviceLinkSink
- - uid: 12699
+ - uid: 12721
components:
- rot: 1.5707963267948966 rad
pos: -29.5,25.5
parent: 2
type: Transform
- links:
- - 25861
+ - 25928
type: DeviceLinkSink
- - uid: 12700
+ - uid: 12722
components:
- rot: 1.5707963267948966 rad
pos: -35.5,25.5
parent: 2
type: Transform
- links:
- - 25865
+ - 25932
type: DeviceLinkSink
- - uid: 12701
+ - uid: 12723
components:
- rot: 1.5707963267948966 rad
pos: -34.5,25.5
parent: 2
type: Transform
- links:
- - 25865
+ - 25932
type: DeviceLinkSink
- - uid: 12702
+ - uid: 12724
components:
- rot: 1.5707963267948966 rad
pos: -36.5,25.5
parent: 2
type: Transform
- links:
- - 25865
+ - 25932
type: DeviceLinkSink
- - uid: 12703
+ - uid: 12725
components:
- rot: 1.5707963267948966 rad
pos: -37.5,25.5
parent: 2
type: Transform
- links:
- - 25865
+ - 25932
type: DeviceLinkSink
- - uid: 12704
+ - uid: 12726
components:
- rot: 1.5707963267948966 rad
pos: -38.5,25.5
parent: 2
type: Transform
- links:
- - 25865
+ - 25932
type: DeviceLinkSink
- - uid: 12705
+ - uid: 12727
components:
- rot: 1.5707963267948966 rad
pos: -48.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12706
+ - uid: 12728
components:
- rot: 1.5707963267948966 rad
pos: -49.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12707
+ - uid: 12729
components:
- rot: 1.5707963267948966 rad
pos: -50.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12708
+ - uid: 12730
components:
- rot: 1.5707963267948966 rad
pos: -51.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12709
+ - uid: 12731
components:
- rot: 1.5707963267948966 rad
pos: -48.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12710
+ - uid: 12732
components:
- rot: 1.5707963267948966 rad
pos: -49.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12711
+ - uid: 12733
components:
- rot: 1.5707963267948966 rad
pos: -50.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12712
+ - uid: 12734
components:
- rot: 1.5707963267948966 rad
pos: -51.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12713
+ - uid: 12735
components:
- rot: 1.5707963267948966 rad
pos: -52.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12714
+ - uid: 12736
components:
- rot: 1.5707963267948966 rad
pos: -53.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12715
+ - uid: 12737
components:
- rot: 1.5707963267948966 rad
pos: -47.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12716
+ - uid: 12738
components:
- rot: 1.5707963267948966 rad
pos: -46.5,19.5
parent: 2
type: Transform
- links:
- - 25864
+ - 25931
type: DeviceLinkSink
- - uid: 12717
+ - uid: 12739
components:
- rot: 1.5707963267948966 rad
pos: -47.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12718
+ - uid: 12740
components:
- rot: 1.5707963267948966 rad
pos: -46.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12719
+ - uid: 12741
components:
- rot: 1.5707963267948966 rad
pos: -53.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12720
+ - uid: 12742
components:
- rot: 1.5707963267948966 rad
pos: -52.5,23.5
parent: 2
type: Transform
- links:
- - 25863
+ - 25930
type: DeviceLinkSink
- - uid: 12721
+ - uid: 12743
components:
- rot: 3.141592653589793 rad
pos: -42.5,14.5
parent: 2
type: Transform
- links:
- - 25862
+ - 25929
type: DeviceLinkSink
- - uid: 12722
+ - uid: 12744
components:
- rot: 1.5707963267948966 rad
pos: -51.5,30.5
parent: 2
type: Transform
- links:
- - 25867
+ - 25934
type: DeviceLinkSink
- - uid: 12723
+ - uid: 12745
components:
- rot: 1.5707963267948966 rad
pos: -52.5,30.5
parent: 2
type: Transform
- links:
- - 25867
+ - 25934
type: DeviceLinkSink
- - uid: 12724
+ - uid: 12746
components:
- rot: 1.5707963267948966 rad
pos: -50.5,30.5
parent: 2
type: Transform
- links:
- - 25867
+ - 25934
type: DeviceLinkSink
- - uid: 12725
+ - uid: 12747
components:
- rot: 1.5707963267948966 rad
pos: -49.5,30.5
parent: 2
type: Transform
- links:
- - 25867
+ - 25934
type: DeviceLinkSink
- - uid: 12726
+ - uid: 12748
components:
- rot: 1.5707963267948966 rad
pos: -48.5,30.5
parent: 2
type: Transform
- links:
- - 25867
+ - 25934
type: DeviceLinkSink
- - uid: 12727
+ - uid: 12749
components:
- rot: 1.5707963267948966 rad
pos: -52.5,34.5
parent: 2
type: Transform
- links:
- - 25868
+ - 25935
type: DeviceLinkSink
- - uid: 12728
+ - uid: 12750
components:
- rot: 1.5707963267948966 rad
pos: -51.5,34.5
parent: 2
type: Transform
- links:
- - 25868
+ - 25935
type: DeviceLinkSink
- - uid: 12729
+ - uid: 12751
components:
- rot: 1.5707963267948966 rad
pos: -50.5,34.5
parent: 2
type: Transform
- links:
- - 25868
+ - 25935
type: DeviceLinkSink
- - uid: 12730
+ - uid: 12752
components:
- rot: 1.5707963267948966 rad
pos: -49.5,34.5
parent: 2
type: Transform
- links:
- - 25868
+ - 25935
type: DeviceLinkSink
- - uid: 12731
+ - uid: 12753
components:
- rot: 1.5707963267948966 rad
pos: -48.5,34.5
parent: 2
type: Transform
- links:
- - 25868
+ - 25935
type: DeviceLinkSink
- - uid: 12732
+ - uid: 12754
components:
- rot: 1.5707963267948966 rad
pos: -53.5,34.5
parent: 2
type: Transform
- links:
- - 25868
+ - 25935
type: DeviceLinkSink
- - uid: 12733
+ - uid: 12755
components:
- rot: 1.5707963267948966 rad
pos: -53.5,30.5
parent: 2
type: Transform
- links:
- - 25867
+ - 25934
type: DeviceLinkSink
- - uid: 12734
+ - uid: 12756
components:
- rot: 1.5707963267948966 rad
pos: -47.5,34.5
parent: 2
type: Transform
- links:
- - 25868
+ - 25935
type: DeviceLinkSink
- - uid: 12735
+ - uid: 12757
components:
- rot: 1.5707963267948966 rad
pos: -47.5,30.5
parent: 2
type: Transform
- links:
- - 25867
+ - 25934
type: DeviceLinkSink
- - uid: 12736
+ - uid: 12758
components:
- rot: -1.5707963267948966 rad
pos: -12.5,27.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12737
+ - uid: 12759
components:
- pos: -10.5,28.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12738
+ - uid: 12760
components:
- rot: -1.5707963267948966 rad
pos: -9.5,28.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12739
+ - uid: 12761
components:
- rot: 3.141592653589793 rad
pos: -42.5,15.5
parent: 2
type: Transform
- links:
- - 25862
+ - 25929
type: DeviceLinkSink
- - uid: 12740
+ - uid: 12762
components:
- rot: 3.141592653589793 rad
pos: -42.5,17.5
parent: 2
type: Transform
- links:
- - 25862
+ - 25929
type: DeviceLinkSink
- - uid: 12741
+ - uid: 12763
components:
- rot: 3.141592653589793 rad
pos: -42.5,13.5
parent: 2
type: Transform
- links:
- - 25862
+ - 25929
type: DeviceLinkSink
- - uid: 12742
+ - uid: 12764
components:
- pos: -47.5,13.5
parent: 2
type: Transform
- links:
- - 25869
+ - 25936
type: DeviceLinkSink
- - uid: 12743
+ - uid: 12765
components:
- pos: -47.5,14.5
parent: 2
type: Transform
- links:
- - 25869
+ - 25936
type: DeviceLinkSink
- - uid: 12744
+ - uid: 12766
components:
- pos: -47.5,12.5
parent: 2
type: Transform
- links:
- - 25869
+ - 25936
type: DeviceLinkSink
- - uid: 12745
+ - uid: 12767
components:
- rot: 1.5707963267948966 rad
pos: -8.5,22.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12746
+ - uid: 12768
components:
- rot: 1.5707963267948966 rad
pos: -7.5,22.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12747
+ - uid: 12769
components:
- rot: 1.5707963267948966 rad
pos: -6.5,22.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12748
+ - uid: 12770
components:
- rot: 1.5707963267948966 rad
pos: 43.5,37.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12749
+ - uid: 12771
components:
- rot: 1.5707963267948966 rad
pos: 44.5,37.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12750
+ - uid: 12772
components:
- rot: 1.5707963267948966 rad
pos: 45.5,37.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12751
+ - uid: 12773
components:
- pos: 46.5,37.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12752
+ - uid: 12774
components:
- rot: 1.5707963267948966 rad
pos: 46.5,36.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12753
+ - uid: 12775
components:
- rot: 1.5707963267948966 rad
pos: 47.5,36.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12754
+ - uid: 12776
components:
- rot: 3.141592653589793 rad
pos: 48.5,36.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12755
+ - uid: 12777
components:
- rot: 3.141592653589793 rad
pos: 48.5,37.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12756
+ - uid: 12778
components:
- rot: 1.5707963267948966 rad
pos: -9.5,22.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12757
+ - uid: 12779
components:
- pos: -9.5,27.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12758
+ - uid: 12780
components:
- pos: -9.5,26.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12759
+ - uid: 12781
components:
- pos: -9.5,25.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12760
+ - uid: 12782
components:
- pos: -9.5,24.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12761
+ - uid: 12783
components:
- pos: -9.5,23.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- type: ActiveConveyor
- - uid: 12762
+ - uid: 12784
components:
- rot: 3.141592653589793 rad
pos: -10.5,22.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12763
+ - uid: 12785
components:
- rot: 1.5707963267948966 rad
pos: -10.5,23.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12764
+ - uid: 12786
components:
- rot: -1.5707963267948966 rad
pos: -10.5,27.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12765
+ - uid: 12787
components:
- rot: -1.5707963267948966 rad
pos: -11.5,27.5
parent: 2
type: Transform
- links:
- - 25866
+ - 25933
type: DeviceLinkSink
- - uid: 12766
+ - uid: 12788
components:
- rot: 3.141592653589793 rad
pos: 48.5,38.5
parent: 2
type: Transform
- links:
- - 25870
+ - 25937
type: DeviceLinkSink
- - uid: 12767
+ - uid: 12789
components:
- rot: 3.141592653589793 rad
pos: -37.5,-99.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12768
+ - uid: 12790
components:
- rot: 3.141592653589793 rad
pos: -37.5,-98.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12769
+ - uid: 12791
components:
- rot: 3.141592653589793 rad
pos: -37.5,-100.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12770
+ - uid: 12792
components:
- rot: 3.141592653589793 rad
pos: -37.5,-101.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12771
+ - uid: 12793
components:
- rot: 3.141592653589793 rad
pos: -37.5,-102.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12772
+ - uid: 12794
components:
- rot: 3.141592653589793 rad
pos: -37.5,-103.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12773
+ - uid: 12795
components:
- rot: 3.141592653589793 rad
pos: -37.5,-104.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12774
+ - uid: 12796
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-105.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12775
+ - uid: 12797
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-105.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12776
+ - uid: 12798
components:
- rot: 3.141592653589793 rad
pos: -38.5,-105.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12777
+ - uid: 12799
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-104.5
parent: 2
type: Transform
- links:
- - 25871
- - 25872
+ - 25938
+ - 25939
type: DeviceLinkSink
- - uid: 12778
+ - uid: 12800
components:
- rot: 3.141592653589793 rad
pos: -11.5,-11.5
parent: 2
type: Transform
- links:
- - 25873
+ - 25940
type: DeviceLinkSink
- - uid: 12779
+ - uid: 12801
components:
- rot: 3.141592653589793 rad
pos: -11.5,-12.5
parent: 2
type: Transform
- links:
- - 25873
+ - 25940
type: DeviceLinkSink
- - uid: 12780
+ - uid: 12802
components:
- rot: 3.141592653589793 rad
pos: -42.5,16.5
parent: 2
type: Transform
- links:
- - 25862
+ - 25929
type: DeviceLinkSink
- - uid: 12781
+ - uid: 12803
components:
- pos: -16.5,10.5
parent: 2
type: Transform
- invokeCounter: 2
links:
- - 25874
+ - 25941
type: DeviceLinkSink
- - uid: 12782
+ - uid: 12804
components:
- pos: -16.5,9.5
parent: 2
type: Transform
- invokeCounter: 2
links:
- - 25874
+ - 25941
type: DeviceLinkSink
- - uid: 12783
+ - uid: 12805
components:
- pos: -16.5,8.5
parent: 2
type: Transform
- invokeCounter: 2
links:
- - 25874
+ - 25941
type: DeviceLinkSink
- proto: ConveyorBeltAssembly
entities:
- - uid: 12784
+ - uid: 12806
components:
- pos: -27.603226,-31.351301
parent: 2
type: Transform
- proto: CounterWoodFrame
entities:
- - uid: 12785
+ - uid: 12807
components:
- pos: -47.5,-64.5
parent: 2
type: Transform
- proto: CrateAirlockKit
entities:
- - uid: 12786
+ - uid: 12808
components:
- pos: 44.5,-7.5
parent: 2
type: Transform
- proto: CrateArtifactContainer
entities:
- - uid: 12787
+ - uid: 12809
components:
- pos: 73.5,-36.5
parent: 2
@@ -80498,12 +80625,12 @@ entities:
type: EntityStorage
- proto: CrateCoffin
entities:
- - uid: 12788
+ - uid: 12810
components:
- pos: -31.5,10.5
parent: 2
type: Transform
- - uid: 12789
+ - uid: 12811
components:
- pos: -32.5,10.5
parent: 2
@@ -80526,7 +80653,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12790
+ - uid: 12812
components:
- pos: -31.5,8.5
parent: 2
@@ -80549,14 +80676,14 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12791
+ - uid: 12813
components:
- pos: -55.5,-67.5
parent: 2
type: Transform
- proto: CrateEmergencyFire
entities:
- - uid: 12792
+ - uid: 12814
components:
- pos: -39.5,-15.5
parent: 2
@@ -80579,7 +80706,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12793
+ - uid: 12815
components:
- pos: -38.5,23.5
parent: 2
@@ -80628,44 +80755,44 @@ entities:
type: PlaceableSurface
- proto: CrateEmptySpawner
entities:
- - uid: 12794
+ - uid: 12816
components:
- pos: -43.5,23.5
parent: 2
type: Transform
- - uid: 12795
+ - uid: 12817
components:
- pos: -44.5,22.5
parent: 2
type: Transform
- - uid: 12796
+ - uid: 12818
components:
- pos: -40.5,20.5
parent: 2
type: Transform
- - uid: 12797
+ - uid: 12819
components:
- pos: -38.5,19.5
parent: 2
type: Transform
- - uid: 12798
+ - uid: 12820
components:
- pos: 6.5,49.5
parent: 2
type: Transform
- - uid: 12799
+ - uid: 12821
components:
- pos: -35.5,-96.5
parent: 2
type: Transform
- - uid: 12800
+ - uid: 12822
components:
- pos: -36.5,-96.5
parent: 2
type: Transform
- proto: CrateEngineeringAMEJar
entities:
- - uid: 12801
+ - uid: 12823
components:
- pos: -50.5,-13.5
parent: 2
@@ -80690,7 +80817,7 @@ entities:
type: EntityStorage
- proto: CrateEngineeringAMEShielding
entities:
- - uid: 12802
+ - uid: 12824
components:
- pos: -50.5,-14.5
parent: 2
@@ -80713,7 +80840,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12803
+ - uid: 12825
components:
- pos: -50.5,-12.5
parent: 2
@@ -80738,7 +80865,7 @@ entities:
type: EntityStorage
- proto: CrateEngineeringCableLV
entities:
- - uid: 12804
+ - uid: 12826
components:
- pos: -42.5,-15.5
parent: 2
@@ -80763,7 +80890,7 @@ entities:
type: EntityStorage
- proto: CrateEngineeringElectricalSupplies
entities:
- - uid: 12805
+ - uid: 12827
components:
- pos: 22.5,-49.5
parent: 2
@@ -80788,24 +80915,24 @@ entities:
type: EntityStorage
- proto: CrateFilledSpawner
entities:
- - uid: 12806
+ - uid: 12828
components:
- pos: -31.5,-48.5
parent: 2
type: Transform
- - uid: 12807
+ - uid: 12829
components:
- pos: 72.5,-56.5
parent: 2
type: Transform
- - uid: 12808
+ - uid: 12830
components:
- pos: 71.5,-62.5
parent: 2
type: Transform
- proto: CrateFoodCooking
entities:
- - uid: 12809
+ - uid: 12831
components:
- pos: -47.5,-80.5
parent: 2
@@ -80830,7 +80957,7 @@ entities:
type: EntityStorage
- proto: CrateFunBoardGames
entities:
- - uid: 12810
+ - uid: 12832
components:
- pos: 63.5,6.5
parent: 2
@@ -80855,14 +80982,14 @@ entities:
type: EntityStorage
- proto: CrateFunToyBox
entities:
- - uid: 12811
+ - uid: 12833
components:
- pos: 1.5,-19.5
parent: 2
type: Transform
- proto: CrateHydroponicsSeeds
entities:
- - uid: 12812
+ - uid: 12834
components:
- pos: 12.5,-52.5
parent: 2
@@ -80887,7 +81014,7 @@ entities:
type: EntityStorage
- proto: CrateHydroponicsSeedsExotic
entities:
- - uid: 12813
+ - uid: 12835
components:
- pos: -47.5,-70.5
parent: 2
@@ -80912,21 +81039,21 @@ entities:
type: EntityStorage
- proto: CrateMaterialGlass
entities:
- - uid: 12814
+ - uid: 12836
components:
- pos: 43.5,-7.5
parent: 2
type: Transform
- proto: CrateMindShieldImplants
entities:
- - uid: 12815
+ - uid: 12837
components:
- pos: 29.5,29.5
parent: 2
type: Transform
- proto: CrateMousetrapBoxes
entities:
- - uid: 12816
+ - uid: 12838
components:
- pos: 60.5,42.5
parent: 2
@@ -80951,7 +81078,7 @@ entities:
type: EntityStorage
- proto: CratePirate
entities:
- - uid: 12817
+ - uid: 12839
components:
- pos: 3.5,-11.5
parent: 2
@@ -80976,7 +81103,7 @@ entities:
type: EntityStorage
- proto: CrateScience
entities:
- - uid: 12818
+ - uid: 12840
components:
- pos: 73.5,-34.5
parent: 2
@@ -81001,14 +81128,14 @@ entities:
type: EntityStorage
- proto: CrateSecurityNonlethal
entities:
- - uid: 12819
+ - uid: 12841
components:
- pos: 29.5,28.5
parent: 2
type: Transform
- proto: CrateServiceJanitorialSupplies
entities:
- - uid: 12820
+ - uid: 12842
components:
- pos: -9.5,-21.5
parent: 2
@@ -81033,7 +81160,7 @@ entities:
type: EntityStorage
- proto: CrateServiceSmokeables
entities:
- - uid: 12821
+ - uid: 12843
components:
- pos: 56.5,59.5
parent: 2
@@ -81058,7 +81185,7 @@ entities:
type: EntityStorage
- proto: CrateStoneGrave
entities:
- - uid: 12822
+ - uid: 12844
components:
- pos: -32.5,4.5
parent: 2
@@ -81083,63 +81210,58 @@ entities:
type: EntityStorage
- proto: CrateTrashCart
entities:
- - uid: 12823
+ - uid: 12845
components:
- pos: 19.5,-49.5
parent: 2
type: Transform
- - uid: 12824
+ - uid: 12846
components:
- pos: -38.5,-93.5
parent: 2
type: Transform
- - uid: 12825
+ - uid: 12847
components:
- pos: -10.5,14.5
parent: 2
type: Transform
- - uid: 12826
+ - uid: 12848
components:
- pos: -52.5,-34.5
parent: 2
type: Transform
- proto: CrateTrashCartFilled
entities:
- - uid: 12827
- components:
- - pos: 1.5,-12.5
- parent: 2
- type: Transform
- - uid: 12828
+ - uid: 12849
components:
- pos: 18.5,-49.5
parent: 2
type: Transform
- - uid: 12829
+ - uid: 12850
components:
- pos: 5.5,-17.5
parent: 2
type: Transform
- - uid: 12830
+ - uid: 12851
components:
- pos: -40.5,-3.5
parent: 2
type: Transform
- proto: CrateTrashCartJani
entities:
- - uid: 12831
+ - uid: 12852
components:
- pos: -15.5,-8.5
parent: 2
type: Transform
- proto: CrateWoodenGrave
entities:
- - uid: 12832
+ - uid: 12853
components:
- pos: -10.5,55.5
parent: 2
type: Transform
- - uid: 12833
+ - uid: 12854
components:
- pos: -30.5,4.5
parent: 2
@@ -81162,39 +81284,39 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 12834
+ - uid: 12855
components:
- pos: -32.5,6.5
parent: 2
type: Transform
- proto: CrayonBox
entities:
- - uid: 12835
+ - uid: 12856
components:
- pos: -29.428709,8.545935
parent: 2
type: Transform
- - uid: 12836
+ - uid: 12857
components:
- rot: 3.141592653589793 rad
pos: 54.561592,-64.4996
parent: 2
type: Transform
- - uid: 12837
+ - uid: 12858
components:
- pos: 0.5708022,-23.573645
parent: 2
type: Transform
- proto: CrayonMime
entities:
- - uid: 12838
+ - uid: 12859
components:
- pos: -28.463287,46.56972
parent: 2
type: Transform
- proto: Crematorium
entities:
- - uid: 12839
+ - uid: 12860
components:
- pos: -33.5,11.5
parent: 2
@@ -81219,130 +81341,130 @@ entities:
type: EntityStorage
- proto: CrewMonitoringComputerCircuitboard
entities:
- - uid: 12840
+ - uid: 12861
components:
- pos: 53.35249,35.65033
parent: 2
type: Transform
- proto: CrewMonitoringServer
entities:
- - uid: 12841
+ - uid: 12862
components:
- pos: 8.5,-58.5
parent: 2
type: Transform
- proto: Crowbar
entities:
- - uid: 12842
+ - uid: 12863
components:
- pos: 73.47424,-38.51016
parent: 2
type: Transform
- - uid: 12843
+ - uid: 12864
components:
- pos: -29.495306,-23.60064
parent: 2
type: Transform
- - uid: 12844
+ - uid: 12865
components:
- pos: 40.56214,-53.476734
parent: 2
type: Transform
- - uid: 12845
+ - uid: 12866
components:
- pos: -56.61051,-70.40599
parent: 2
type: Transform
- - uid: 12846
+ - uid: 12867
components:
- pos: -23.432364,-28.473803
parent: 2
type: Transform
- - uid: 12847
+ - uid: 12868
components:
- pos: -36.564224,18.558977
parent: 2
type: Transform
- - uid: 12848
+ - uid: 12869
components:
- rot: 6.283185307179586 rad
pos: 57.539654,47.47334
parent: 2
type: Transform
- - uid: 12849
+ - uid: 12870
components:
- pos: -9.421157,-15.518739
parent: 2
type: Transform
- - uid: 12850
+ - uid: 12871
components:
- pos: 62.5,6.5
parent: 2
type: Transform
- proto: CrowbarRed
entities:
- - uid: 12851
+ - uid: 12872
components:
- pos: 52.637024,11.413784
parent: 2
type: Transform
- - uid: 12852
+ - uid: 12873
components:
- pos: -16.370653,65.49348
parent: 2
type: Transform
- - uid: 12853
+ - uid: 12874
components:
- pos: 2.5771694,-21.302826
parent: 2
type: Transform
- proto: CryoPod
entities:
- - uid: 12854
+ - uid: 12875
components:
- pos: -24.5,-59.5
parent: 2
type: Transform
- proto: CryoxadoneBeakerSmall
entities:
- - uid: 12855
+ - uid: 12876
components:
- pos: -26.756777,-59.261105
parent: 2
type: Transform
- proto: CultAltarSpawner
entities:
- - uid: 12856
+ - uid: 12877
components:
- pos: -56.5,-62.5
parent: 2
type: Transform
- proto: d10Dice
entities:
- - uid: 12857
+ - uid: 12878
components:
- pos: 9.458234,-7.2284737
parent: 2
type: Transform
- - uid: 12858
+ - uid: 12879
components:
- pos: -29.44911,-46.43667
parent: 2
type: Transform
- proto: d6Dice
entities:
- - uid: 12859
+ - uid: 12880
components:
- pos: -1.2845753,31.100819
parent: 2
type: Transform
- - uid: 12860
+ - uid: 12881
components:
- rot: 1.5707963267948966 rad
pos: 54.383816,29.301033
parent: 2
type: Transform
- - uid: 12861
+ - uid: 12882
components:
- rot: 1.5707963267948966 rad
pos: 54.165066,28.926033
@@ -81350,110 +81472,110 @@ entities:
type: Transform
- proto: d8Dice
entities:
- - uid: 12862
+ - uid: 12883
components:
- pos: 10.036359,-7.0722237
parent: 2
type: Transform
- proto: DefibrillatorCabinet
entities:
- - uid: 12863
+ - uid: 12884
components:
- rot: 1.5707963267948966 rad
- pos: 19.5,21.5
+ pos: 27.5,19.5
parent: 2
type: Transform
- proto: DefibrillatorCabinetFilled
entities:
- - uid: 12864
+ - uid: 12885
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-72.5
parent: 2
type: Transform
- - uid: 12865
+ - uid: 12886
components:
- pos: 44.5,16.5
parent: 2
type: Transform
- - uid: 12866
+ - uid: 12887
components:
- pos: -1.5,-58.5
parent: 2
type: Transform
- - uid: 12867
+ - uid: 12888
components:
- pos: -4.5,-58.5
parent: 2
type: Transform
- - uid: 12868
+ - uid: 12889
components:
- pos: -7.5,-58.5
parent: 2
type: Transform
- - uid: 12869
+ - uid: 12890
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-38.5
parent: 2
type: Transform
- - uid: 12870
+ - uid: 12891
components:
- pos: -32.5,-8.5
parent: 2
type: Transform
- - uid: 12871
+ - uid: 12892
components:
- pos: -28.5,20.5
parent: 2
type: Transform
- - uid: 12872
+ - uid: 12893
components:
- pos: -9.5,47.5
parent: 2
type: Transform
- - uid: 12873
+ - uid: 12894
components:
- rot: -1.5707963267948966 rad
pos: 33.5,18.5
parent: 2
type: Transform
- - uid: 12874
+ - uid: 12895
components:
- pos: -5.5,-51.5
parent: 2
type: Transform
- - uid: 12875
+ - uid: 12896
components:
- pos: 29.5,-3.5
parent: 2
type: Transform
- - uid: 12876
+ - uid: 12897
components:
- pos: 33.5,-70.5
parent: 2
type: Transform
- - uid: 12877
+ - uid: 12898
components:
- pos: 56.5,-43.5
parent: 2
type: Transform
- - uid: 12878
+ - uid: 12899
components:
- pos: 6.5,-24.5
parent: 2
type: Transform
- - uid: 12879
+ - uid: 12900
components:
- pos: 32.5,-23.5
parent: 2
type: Transform
- - uid: 12880
+ - uid: 12901
components:
- pos: -48.5,45.5
parent: 2
type: Transform
- - uid: 12881
+ - uid: 12902
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-10.5
@@ -81461,73 +81583,73 @@ entities:
type: Transform
- proto: DeployableBarrier
entities:
- - uid: 12882
+ - uid: 12903
components:
- pos: 29.5,25.5
parent: 2
type: Transform
- - uid: 12883
+ - uid: 12904
components:
- pos: -16.5,27.5
parent: 2
type: Transform
- - uid: 12884
+ - uid: 12905
components:
- pos: 62.5,7.5
parent: 2
type: Transform
- proto: DeskBell
entities:
- - uid: 12885
+ - uid: 12906
components:
- pos: 26.493649,19.578499
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12886
+ - uid: 12907
components:
- pos: -26.393543,22.737104
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12887
+ - uid: 12908
components:
- pos: 2.482698,4.566377
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12888
+ - uid: 12909
components:
- pos: 7.4455647,7.463886
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12889
+ - uid: 12910
components:
- pos: 15.491525,13.615058
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12890
+ - uid: 12911
components:
- pos: -2.9507003,-48.39704
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12891
+ - uid: 12912
components:
- pos: 42.281975,-40.51448
parent: 2
type: Transform
missingComponents:
- Item
- - uid: 12892
+ - uid: 12913
components:
- pos: 51.51352,-39.9676
parent: 2
@@ -81536,848 +81658,848 @@ entities:
- Item
- proto: DiceBag
entities:
- - uid: 12893
+ - uid: 12914
components:
- pos: 10.645734,-7.4315987
parent: 2
type: Transform
- - uid: 12894
+ - uid: 12915
components:
- pos: 23.269382,-29.34838
parent: 2
type: Transform
- - uid: 12895
+ - uid: 12916
components:
- pos: -0.45645034,30.694569
parent: 2
type: Transform
- - uid: 12896
+ - uid: 12917
components:
- pos: -16.724815,61.696495
parent: 2
type: Transform
- - uid: 12897
+ - uid: 12918
components:
- pos: -18.55294,62.55587
parent: 2
type: Transform
- proto: DiseaseDiagnoser
entities:
- - uid: 12898
+ - uid: 12919
components:
- pos: -22.5,-75.5
parent: 2
type: Transform
- proto: DisposalBend
entities:
- - uid: 12899
+ - uid: 12920
components:
- rot: 1.5707963267948966 rad
pos: -0.5,1.5
parent: 2
type: Transform
- - uid: 12900
+ - uid: 12921
components:
- pos: 21.5,-29.5
parent: 2
type: Transform
- - uid: 12901
+ - uid: 12922
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-60.5
parent: 2
type: Transform
- - uid: 12902
+ - uid: 12923
components:
- pos: 34.5,8.5
parent: 2
type: Transform
- - uid: 12903
+ - uid: 12924
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-9.5
parent: 2
type: Transform
- - uid: 12904
+ - uid: 12925
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-18.5
parent: 2
type: Transform
- - uid: 12905
+ - uid: 12926
components:
- pos: 0.5,0.5
parent: 2
type: Transform
- - uid: 12906
+ - uid: 12927
components:
- rot: 1.5707963267948966 rad
pos: 0.5,2.5
parent: 2
type: Transform
- - uid: 12907
+ - uid: 12928
components:
- rot: 3.141592653589793 rad
pos: 8.5,13.5
parent: 2
type: Transform
- - uid: 12908
+ - uid: 12929
components:
- rot: 1.5707963267948966 rad
pos: 17.5,7.5
parent: 2
type: Transform
- - uid: 12909
+ - uid: 12930
components:
- rot: -1.5707963267948966 rad
pos: 22.5,7.5
parent: 2
type: Transform
- - uid: 12910
+ - uid: 12931
components:
- rot: 1.5707963267948966 rad
pos: 22.5,8.5
parent: 2
type: Transform
- - uid: 12911
+ - uid: 12932
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-25.5
parent: 2
type: Transform
- - uid: 12912
+ - uid: 12933
components:
- pos: 36.5,-17.5
parent: 2
type: Transform
- - uid: 12913
+ - uid: 12934
components:
- pos: 1.5,-53.5
parent: 2
type: Transform
- - uid: 12914
+ - uid: 12935
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-6.5
parent: 2
type: Transform
- - uid: 12915
+ - uid: 12936
components:
- pos: 18.5,-49.5
parent: 2
type: Transform
- - uid: 12916
+ - uid: 12937
components:
- rot: 3.141592653589793 rad
pos: -4.5,-12.5
parent: 2
type: Transform
- - uid: 12917
+ - uid: 12938
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-53.5
parent: 2
type: Transform
- - uid: 12918
+ - uid: 12939
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-54.5
parent: 2
type: Transform
- - uid: 12919
+ - uid: 12940
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-54.5
parent: 2
type: Transform
- - uid: 12920
+ - uid: 12941
components:
- pos: 18.5,1.5
parent: 2
type: Transform
- - uid: 12921
+ - uid: 12942
components:
- rot: 3.141592653589793 rad
pos: 10.5,-3.5
parent: 2
type: Transform
- - uid: 12922
+ - uid: 12943
components:
- rot: -1.5707963267948966 rad
pos: 0.5,1.5
parent: 2
type: Transform
- - uid: 12923
+ - uid: 12944
components:
- rot: 3.141592653589793 rad
pos: 0.5,-0.5
parent: 2
type: Transform
- - uid: 12924
+ - uid: 12945
components:
- pos: 12.5,13.5
parent: 2
type: Transform
- - uid: 12925
+ - uid: 12946
components:
- rot: 3.141592653589793 rad
pos: 22.5,-11.5
parent: 2
type: Transform
- - uid: 12926
+ - uid: 12947
components:
- rot: 3.141592653589793 rad
pos: 18.5,-6.5
parent: 2
type: Transform
- - uid: 12927
+ - uid: 12948
components:
- rot: 3.141592653589793 rad
pos: -23.5,-84.5
parent: 2
type: Transform
- - uid: 12928
+ - uid: 12949
components:
- rot: -1.5707963267948966 rad
pos: 17.5,0.5
parent: 2
type: Transform
- - uid: 12929
+ - uid: 12950
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-18.5
parent: 2
type: Transform
- - uid: 12930
+ - uid: 12951
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-60.5
parent: 2
type: Transform
- - uid: 12931
+ - uid: 12952
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-0.5
parent: 2
type: Transform
- - uid: 12932
+ - uid: 12953
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-73.5
parent: 2
type: Transform
- - uid: 12933
+ - uid: 12954
components:
- pos: 15.5,19.5
parent: 2
type: Transform
- - uid: 12934
+ - uid: 12955
components:
- pos: -3.5,-12.5
parent: 2
type: Transform
- - uid: 12935
+ - uid: 12956
components:
- pos: 15.5,-25.5
parent: 2
type: Transform
- - uid: 12936
+ - uid: 12957
components:
- rot: 3.141592653589793 rad
pos: 17.5,-49.5
parent: 2
type: Transform
- - uid: 12937
+ - uid: 12958
components:
- rot: -1.5707963267948966 rad
pos: 34.5,16.5
parent: 2
type: Transform
- - uid: 12938
+ - uid: 12959
components:
- pos: 29.5,17.5
parent: 2
type: Transform
- - uid: 12939
+ - uid: 12960
components:
- rot: 3.141592653589793 rad
pos: 29.5,16.5
parent: 2
type: Transform
- - uid: 12940
+ - uid: 12961
components:
- pos: 41.5,6.5
parent: 2
type: Transform
- - uid: 12941
+ - uid: 12962
components:
- rot: 3.141592653589793 rad
pos: 52.5,-13.5
parent: 2
type: Transform
- - uid: 12942
+ - uid: 12963
components:
- pos: 54.5,-13.5
parent: 2
type: Transform
- - uid: 12943
+ - uid: 12964
components:
- pos: 49.5,-43.5
parent: 2
type: Transform
- - uid: 12944
+ - uid: 12965
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-50.5
parent: 2
type: Transform
- - uid: 12945
+ - uid: 12966
components:
- pos: 67.5,-45.5
parent: 2
type: Transform
- - uid: 12946
+ - uid: 12967
components:
- pos: 49.5,-55.5
parent: 2
type: Transform
- - uid: 12947
+ - uid: 12968
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-66.5
parent: 2
type: Transform
- - uid: 12948
+ - uid: 12969
components:
- rot: 3.141592653589793 rad
pos: -23.5,-15.5
parent: 2
type: Transform
- - uid: 12949
+ - uid: 12970
components:
- rot: 3.141592653589793 rad
pos: 25.5,-60.5
parent: 2
type: Transform
- - uid: 12950
+ - uid: 12971
components:
- pos: 39.5,-60.5
parent: 2
type: Transform
- - uid: 12951
+ - uid: 12972
components:
- rot: 3.141592653589793 rad
pos: -19.5,-43.5
parent: 2
type: Transform
- - uid: 12952
+ - uid: 12973
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-73.5
parent: 2
type: Transform
- - uid: 12953
+ - uid: 12974
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-6.5
parent: 2
type: Transform
- - uid: 12954
+ - uid: 12975
components:
- pos: -13.5,8.5
parent: 2
type: Transform
- - uid: 12955
+ - uid: 12976
components:
- rot: -1.5707963267948966 rad
pos: -19.5,6.5
parent: 2
type: Transform
- - uid: 12956
+ - uid: 12977
components:
- rot: 3.141592653589793 rad
pos: -25.5,-6.5
parent: 2
type: Transform
- - uid: 12957
+ - uid: 12978
components:
- rot: 3.141592653589793 rad
pos: -32.5,-13.5
parent: 2
type: Transform
- - uid: 12958
+ - uid: 12979
components:
- pos: -32.5,-10.5
parent: 2
type: Transform
- - uid: 12959
+ - uid: 12980
components:
- rot: 3.141592653589793 rad
pos: -36.5,-10.5
parent: 2
type: Transform
- - uid: 12960
+ - uid: 12981
components:
- pos: -36.5,-5.5
parent: 2
type: Transform
- - uid: 12961
+ - uid: 12982
components:
- rot: 3.141592653589793 rad
pos: -38.5,-5.5
parent: 2
type: Transform
- - uid: 12962
+ - uid: 12983
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-75.5
parent: 2
type: Transform
- - uid: 12963
+ - uid: 12984
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-77.5
parent: 2
type: Transform
- - uid: 12964
+ - uid: 12985
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-77.5
parent: 2
type: Transform
- - uid: 12965
+ - uid: 12986
components:
- rot: 3.141592653589793 rad
pos: -42.5,23.5
parent: 2
type: Transform
- - uid: 12966
+ - uid: 12987
components:
- rot: 1.5707963267948966 rad
pos: -42.5,19.5
parent: 2
type: Transform
- - uid: 12967
+ - uid: 12988
components:
- rot: 1.5707963267948966 rad
pos: -45.5,5.5
parent: 2
type: Transform
- - uid: 12968
+ - uid: 12989
components:
- rot: 3.141592653589793 rad
pos: -45.5,-0.5
parent: 2
type: Transform
- - uid: 12969
+ - uid: 12990
components:
- pos: 2.5,-61.5
parent: 2
type: Transform
- - uid: 12970
+ - uid: 12991
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-61.5
parent: 2
type: Transform
- - uid: 12971
+ - uid: 12992
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-67.5
parent: 2
type: Transform
- - uid: 12972
+ - uid: 12993
components:
- rot: -1.5707963267948966 rad
pos: -12.5,5.5
parent: 2
type: Transform
- - uid: 12973
+ - uid: 12994
components:
- rot: -1.5707963267948966 rad
pos: -45.5,11.5
parent: 2
type: Transform
- - uid: 12974
+ - uid: 12995
components:
- rot: 1.5707963267948966 rad
pos: -45.5,18.5
parent: 2
type: Transform
- - uid: 12975
+ - uid: 12996
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-40.5
parent: 2
type: Transform
- - uid: 12976
+ - uid: 12997
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-40.5
parent: 2
type: Transform
- - uid: 12977
+ - uid: 12998
components:
- rot: 1.5707963267948966 rad
pos: -19.5,29.5
parent: 2
type: Transform
- - uid: 12978
+ - uid: 12999
components:
- rot: -1.5707963267948966 rad
pos: -15.5,29.5
parent: 2
type: Transform
- - uid: 12979
+ - uid: 13000
components:
- rot: 3.141592653589793 rad
pos: -17.5,44.5
parent: 2
type: Transform
- - uid: 12980
+ - uid: 13001
components:
- pos: -4.5,44.5
parent: 2
type: Transform
- - uid: 12981
+ - uid: 13002
components:
- pos: -13.5,50.5
parent: 2
type: Transform
- - uid: 12982
+ - uid: 13003
components:
- rot: 1.5707963267948966 rad
pos: -17.5,50.5
parent: 2
type: Transform
- - uid: 12983
+ - uid: 13004
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-47.5
parent: 2
type: Transform
- - uid: 12984
+ - uid: 13005
components:
- pos: -5.5,-13.5
parent: 2
type: Transform
- - uid: 12985
+ - uid: 13006
components:
- rot: 3.141592653589793 rad
pos: -10.5,-13.5
parent: 2
type: Transform
- - uid: 12986
+ - uid: 13007
components:
- rot: 3.141592653589793 rad
pos: -18.5,-14.5
parent: 2
type: Transform
- - uid: 12987
+ - uid: 13008
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-14.5
parent: 2
type: Transform
- - uid: 12988
+ - uid: 13009
components:
- pos: -18.5,-4.5
parent: 2
type: Transform
- - uid: 12989
+ - uid: 13010
components:
- rot: 3.141592653589793 rad
pos: -24.5,-4.5
parent: 2
type: Transform
- - uid: 12990
+ - uid: 13011
components:
- rot: 1.5707963267948966 rad
pos: -24.5,8.5
parent: 2
type: Transform
- - uid: 12991
+ - uid: 13012
components:
- rot: -1.5707963267948966 rad
pos: -20.5,8.5
parent: 2
type: Transform
- - uid: 12992
+ - uid: 13013
components:
- pos: -20.5,20.5
parent: 2
type: Transform
- - uid: 12993
+ - uid: 13014
components:
- rot: 1.5707963267948966 rad
pos: -25.5,20.5
parent: 2
type: Transform
- - uid: 12994
+ - uid: 13015
components:
- rot: -1.5707963267948966 rad
pos: -25.5,19.5
parent: 2
type: Transform
- - uid: 12995
+ - uid: 13016
components:
- rot: 1.5707963267948966 rad
pos: -46.5,11.5
parent: 2
type: Transform
- - uid: 12996
+ - uid: 13017
components:
- rot: 3.141592653589793 rad
pos: -46.5,0.5
parent: 2
type: Transform
- - uid: 12997
+ - uid: 13018
components:
- pos: -26.5,0.5
parent: 2
type: Transform
- - uid: 12998
+ - uid: 13019
components:
- rot: 3.141592653589793 rad
pos: -26.5,-5.5
parent: 2
type: Transform
- - uid: 12999
+ - uid: 13020
components:
- pos: -20.5,-5.5
parent: 2
type: Transform
- - uid: 13000
+ - uid: 13021
components:
- rot: 3.141592653589793 rad
pos: -20.5,-25.5
parent: 2
type: Transform
- - uid: 13001
+ - uid: 13022
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-86.5
parent: 2
type: Transform
- - uid: 13002
+ - uid: 13023
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-73.5
parent: 2
type: Transform
- - uid: 13003
+ - uid: 13024
components:
- rot: 3.141592653589793 rad
pos: 15.5,17.5
parent: 2
type: Transform
- - uid: 13004
+ - uid: 13025
components:
- pos: -67.5,-41.5
parent: 2
type: Transform
- - uid: 13005
+ - uid: 13026
components:
- rot: 3.141592653589793 rad
pos: -67.5,-42.5
parent: 2
type: Transform
- - uid: 13006
+ - uid: 13027
components:
- rot: -1.5707963267948966 rad
pos: 12.5,2.5
parent: 2
type: Transform
- - uid: 13007
+ - uid: 13028
components:
- rot: 1.5707963267948966 rad
pos: 13.5,0.5
parent: 2
type: Transform
- - uid: 13008
+ - uid: 13029
components:
- rot: 3.141592653589793 rad
pos: -43.5,-38.5
parent: 2
type: Transform
- - uid: 13009
+ - uid: 13030
components:
- rot: 3.141592653589793 rad
pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 13010
+ - uid: 13031
components:
- rot: 3.141592653589793 rad
pos: 3.5,-5.5
parent: 2
type: Transform
- - uid: 13011
+ - uid: 13032
components:
- rot: 3.141592653589793 rad
pos: 15.5,-41.5
parent: 2
type: Transform
- - uid: 13012
+ - uid: 13033
components:
- pos: 17.5,-41.5
parent: 2
type: Transform
- proto: DisposalJunction
entities:
- - uid: 13013
+ - uid: 13034
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-43.5
parent: 2
type: Transform
- - uid: 13014
+ - uid: 13035
components:
- rot: -1.5707963267948966 rad
pos: 25.5,8.5
parent: 2
type: Transform
- - uid: 13015
+ - uid: 13036
components:
- rot: 1.5707963267948966 rad
pos: -7.5,0.5
parent: 2
type: Transform
- - uid: 13016
+ - uid: 13037
components:
- rot: -1.5707963267948966 rad
pos: 6.5,2.5
parent: 2
type: Transform
- - uid: 13017
+ - uid: 13038
components:
- rot: -1.5707963267948966 rad
pos: -0.5,0.5
parent: 2
type: Transform
- - uid: 13018
+ - uid: 13039
components:
- rot: 3.141592653589793 rad
pos: 24.5,-10.5
parent: 2
type: Transform
- - uid: 13019
+ - uid: 13040
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-29.5
parent: 2
type: Transform
- - uid: 13020
+ - uid: 13041
components:
- rot: 3.141592653589793 rad
pos: 34.5,6.5
parent: 2
type: Transform
- - uid: 13021
+ - uid: 13042
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-43.5
parent: 2
type: Transform
- - uid: 13022
+ - uid: 13043
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-53.5
parent: 2
type: Transform
- - uid: 13023
+ - uid: 13044
components:
- rot: 3.141592653589793 rad
pos: 16.5,-29.5
parent: 2
type: Transform
- - uid: 13024
+ - uid: 13045
components:
- rot: -1.5707963267948966 rad
pos: 18.5,7.5
parent: 2
type: Transform
- - uid: 13025
+ - uid: 13046
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-27.5
parent: 2
type: Transform
- - uid: 13026
+ - uid: 13047
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-43.5
parent: 2
type: Transform
- - uid: 13027
+ - uid: 13048
components:
- rot: -1.5707963267948966 rad
pos: 41.5,1.5
parent: 2
type: Transform
- - uid: 13028
+ - uid: 13049
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-43.5
parent: 2
type: Transform
- - uid: 13029
+ - uid: 13050
components:
- rot: 3.141592653589793 rad
pos: 49.5,-45.5
parent: 2
type: Transform
- - uid: 13030
+ - uid: 13051
components:
- rot: 3.141592653589793 rad
pos: 49.5,-47.5
parent: 2
type: Transform
- - uid: 13031
+ - uid: 13052
components:
- rot: 3.141592653589793 rad
pos: 67.5,-47.5
parent: 2
type: Transform
- - uid: 13032
+ - uid: 13053
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-13.5
parent: 2
type: Transform
- - uid: 13033
+ - uid: 13054
components:
- pos: -19.5,-13.5
parent: 2
type: Transform
- - uid: 13034
+ - uid: 13055
components:
- pos: -25.5,-0.5
parent: 2
type: Transform
- - uid: 13035
+ - uid: 13056
components:
- pos: -19.5,23.5
parent: 2
type: Transform
- - uid: 13036
+ - uid: 13057
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-61.5
parent: 2
type: Transform
- - uid: 13037
+ - uid: 13058
components:
- pos: -15.5,37.5
parent: 2
type: Transform
- - uid: 13038
+ - uid: 13059
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-73.5
parent: 2
type: Transform
- - uid: 13039
+ - uid: 13060
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-27.5
@@ -82385,150 +82507,150 @@ entities:
type: Transform
- proto: DisposalJunctionFlipped
entities:
- - uid: 13040
+ - uid: 13061
components:
- rot: 1.5707963267948966 rad
pos: -9.5,0.5
parent: 2
type: Transform
- - uid: 13041
+ - uid: 13062
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-43.5
parent: 2
type: Transform
- - uid: 13042
+ - uid: 13063
components:
- pos: 24.5,-17.5
parent: 2
type: Transform
- - uid: 13043
+ - uid: 13064
components:
- rot: 1.5707963267948966 rad
pos: 21.5,17.5
parent: 2
type: Transform
- - uid: 13044
+ - uid: 13065
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-0.5
parent: 2
type: Transform
- - uid: 13045
+ - uid: 13066
components:
- pos: 36.5,-18.5
parent: 2
type: Transform
- - uid: 13046
+ - uid: 13067
components:
- pos: 16.5,-25.5
parent: 2
type: Transform
- - uid: 13047
+ - uid: 13068
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-25.5
parent: 2
type: Transform
- - uid: 13048
+ - uid: 13069
components:
- rot: 3.141592653589793 rad
pos: -0.5,-45.5
parent: 2
type: Transform
- - uid: 13049
+ - uid: 13070
components:
- pos: 34.5,1.5
parent: 2
type: Transform
- - uid: 13050
+ - uid: 13071
components:
- rot: 3.141592653589793 rad
pos: -17.5,-57.5
parent: 2
type: Transform
- - uid: 13051
+ - uid: 13072
components:
- pos: 12.5,5.5
parent: 2
type: Transform
- - uid: 13052
+ - uid: 13073
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-0.5
parent: 2
type: Transform
- - uid: 13053
+ - uid: 13074
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-0.5
parent: 2
type: Transform
- - uid: 13054
+ - uid: 13075
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-6.5
parent: 2
type: Transform
- - uid: 13055
+ - uid: 13076
components:
- rot: 3.141592653589793 rad
pos: 24.5,-11.5
parent: 2
type: Transform
- - uid: 13056
+ - uid: 13077
components:
- rot: 3.141592653589793 rad
pos: -4.5,-33.5
parent: 2
type: Transform
- - uid: 13057
+ - uid: 13078
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-43.5
parent: 2
type: Transform
- - uid: 13058
+ - uid: 13079
components:
- pos: 17.5,1.5
parent: 2
type: Transform
- - uid: 13059
+ - uid: 13080
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-27.5
parent: 2
type: Transform
- - uid: 13060
+ - uid: 13081
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-43.5
parent: 2
type: Transform
- - uid: 13061
+ - uid: 13082
components:
- rot: 3.141592653589793 rad
pos: -23.5,-75.5
parent: 2
type: Transform
- - uid: 13062
+ - uid: 13083
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-60.5
parent: 2
type: Transform
- - uid: 13063
+ - uid: 13084
components:
- pos: -13.5,5.5
parent: 2
type: Transform
- - uid: 13064
+ - uid: 13085
components:
- rot: 1.5707963267948966 rad
pos: -22.5,23.5
parent: 2
type: Transform
- - uid: 13065
+ - uid: 13086
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-61.5
@@ -82536,6497 +82658,6497 @@ entities:
type: Transform
- proto: DisposalMachineFrame
entities:
- - uid: 13066
+ - uid: 13087
components:
- pos: 46.5,44.5
parent: 2
type: Transform
- - uid: 13067
+ - uid: 13088
components:
- pos: -57.5,-41.5
parent: 2
type: Transform
- - uid: 13068
+ - uid: 13089
components:
- pos: -22.5,-24.5
parent: 2
type: Transform
- - uid: 13069
+ - uid: 13090
components:
- pos: -19.5,-99.5
parent: 2
type: Transform
- proto: DisposalPipe
entities:
- - uid: 13070
+ - uid: 13091
components:
- rot: 3.141592653589793 rad
pos: 17.5,-42.5
parent: 2
type: Transform
- - uid: 13071
+ - uid: 13092
components:
- rot: 3.141592653589793 rad
pos: 17.5,-44.5
parent: 2
type: Transform
- - uid: 13072
+ - uid: 13093
components:
- rot: 3.141592653589793 rad
pos: 17.5,-45.5
parent: 2
type: Transform
- - uid: 13073
+ - uid: 13094
components:
- rot: 3.141592653589793 rad
pos: 17.5,-43.5
parent: 2
type: Transform
- - uid: 13074
+ - uid: 13095
components:
- rot: 3.141592653589793 rad
pos: 2.5,-25.5
parent: 2
type: Transform
- - uid: 13075
+ - uid: 13096
components:
- rot: 3.141592653589793 rad
pos: 2.5,-26.5
parent: 2
type: Transform
- - uid: 13076
+ - uid: 13097
components:
- rot: 3.141592653589793 rad
pos: 2.5,-24.5
parent: 2
type: Transform
- - uid: 13077
+ - uid: 13098
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-9.5
parent: 2
type: Transform
- - uid: 13078
+ - uid: 13099
components:
- pos: 12.5,6.5
parent: 2
type: Transform
- - uid: 13079
+ - uid: 13100
components:
- rot: -1.5707963267948966 rad
pos: 1.5,2.5
parent: 2
type: Transform
- - uid: 13080
+ - uid: 13101
components:
- pos: 36.5,-25.5
parent: 2
type: Transform
- - uid: 13081
+ - uid: 13102
components:
- pos: 36.5,-22.5
parent: 2
type: Transform
- - uid: 13082
+ - uid: 13103
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-6.5
parent: 2
type: Transform
- - uid: 13083
+ - uid: 13104
components:
- pos: 16.5,-42.5
parent: 2
type: Transform
- - uid: 13084
+ - uid: 13105
components:
- pos: 16.5,-41.5
parent: 2
type: Transform
- - uid: 13085
+ - uid: 13106
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-43.5
parent: 2
type: Transform
- - uid: 13086
+ - uid: 13107
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-43.5
parent: 2
type: Transform
- - uid: 13087
+ - uid: 13108
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-43.5
parent: 2
type: Transform
- - uid: 13088
+ - uid: 13109
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-43.5
parent: 2
type: Transform
- - uid: 13089
+ - uid: 13110
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-43.5
parent: 2
type: Transform
- - uid: 13090
+ - uid: 13111
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-43.5
parent: 2
type: Transform
- - uid: 13091
+ - uid: 13112
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-29.5
parent: 2
type: Transform
- - uid: 13092
+ - uid: 13113
components:
- pos: 21.5,-33.5
parent: 2
type: Transform
- - uid: 13093
+ - uid: 13114
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-27.5
parent: 2
type: Transform
- - uid: 13094
+ - uid: 13115
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-17.5
parent: 2
type: Transform
- - uid: 13095
+ - uid: 13116
components:
- pos: 21.5,-30.5
parent: 2
type: Transform
- - uid: 13096
+ - uid: 13117
components:
- pos: 21.5,-31.5
parent: 2
type: Transform
- - uid: 13097
+ - uid: 13118
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-17.5
parent: 2
type: Transform
- - uid: 13098
+ - uid: 13119
components:
- rot: -1.5707963267948966 rad
pos: 32.5,8.5
parent: 2
type: Transform
- - uid: 13099
+ - uid: 13120
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-43.5
parent: 2
type: Transform
- - uid: 13100
+ - uid: 13121
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-43.5
parent: 2
type: Transform
- - uid: 13101
+ - uid: 13122
components:
- pos: -13.5,-45.5
parent: 2
type: Transform
- - uid: 13102
+ - uid: 13123
components:
- pos: -17.5,-55.5
parent: 2
type: Transform
- - uid: 13103
+ - uid: 13124
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-60.5
parent: 2
type: Transform
- - uid: 13104
+ - uid: 13125
components:
- pos: -19.5,-61.5
parent: 2
type: Transform
- - uid: 13105
+ - uid: 13126
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-53.5
parent: 2
type: Transform
- - uid: 13106
+ - uid: 13127
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-0.5
parent: 2
type: Transform
- - uid: 13107
+ - uid: 13128
components:
- rot: 1.5707963267948966 rad
pos: 8.5,2.5
parent: 2
type: Transform
- - uid: 13108
+ - uid: 13129
components:
- rot: 3.141592653589793 rad
pos: -4.5,-1.5
parent: 2
type: Transform
- - uid: 13109
+ - uid: 13130
components:
- rot: 3.141592653589793 rad
pos: 8.5,14.5
parent: 2
type: Transform
- - uid: 13110
+ - uid: 13131
components:
- pos: 19.5,-41.5
parent: 2
type: Transform
- - uid: 13111
+ - uid: 13132
components:
- pos: -9.5,1.5
parent: 2
type: Transform
- - uid: 13112
+ - uid: 13133
components:
- pos: -9.5,4.5
parent: 2
type: Transform
- - uid: 13113
+ - uid: 13134
components:
- pos: -9.5,3.5
parent: 2
type: Transform
- - uid: 13114
+ - uid: 13135
components:
- pos: -9.5,2.5
parent: 2
type: Transform
- - uid: 13115
+ - uid: 13136
components:
- rot: -1.5707963267948966 rad
pos: 10.5,13.5
parent: 2
type: Transform
- - uid: 13116
+ - uid: 13137
components:
- pos: 24.5,-9.5
parent: 2
type: Transform
- - uid: 13117
+ - uid: 13138
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-6.5
parent: 2
type: Transform
- - uid: 13118
+ - uid: 13139
components:
- pos: 24.5,-7.5
parent: 2
type: Transform
- - uid: 13119
+ - uid: 13140
components:
- rot: -1.5707963267948966 rad
pos: 3.5,2.5
parent: 2
type: Transform
- - uid: 13120
+ - uid: 13141
components:
- rot: 1.5707963267948966 rad
pos: -5.5,0.5
parent: 2
type: Transform
- - uid: 13121
+ - uid: 13142
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- - uid: 13122
+ - uid: 13143
components:
- pos: 12.5,11.5
parent: 2
type: Transform
- - uid: 13123
+ - uid: 13144
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-43.5
parent: 2
type: Transform
- - uid: 13124
+ - uid: 13145
components:
- rot: 1.5707963267948966 rad
pos: -8.5,0.5
parent: 2
type: Transform
- - uid: 13125
+ - uid: 13146
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-27.5
parent: 2
type: Transform
- - uid: 13126
+ - uid: 13147
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-9.5
parent: 2
type: Transform
- - uid: 13127
+ - uid: 13148
components:
- rot: 1.5707963267948966 rad
pos: -2.5,0.5
parent: 2
type: Transform
- - uid: 13128
+ - uid: 13149
components:
- rot: -1.5707963267948966 rad
pos: 21.5,7.5
parent: 2
type: Transform
- - uid: 13129
+ - uid: 13150
components:
- pos: 36.5,-24.5
parent: 2
type: Transform
- - uid: 13130
+ - uid: 13151
components:
- pos: 34.5,-4.5
parent: 2
type: Transform
- - uid: 13131
+ - uid: 13152
components:
- pos: 34.5,-2.5
parent: 2
type: Transform
- - uid: 13132
+ - uid: 13153
components:
- rot: 3.141592653589793 rad
pos: 34.5,5.5
parent: 2
type: Transform
- - uid: 13133
+ - uid: 13154
components:
- rot: -1.5707963267948966 rad
pos: 39.5,6.5
parent: 2
type: Transform
- - uid: 13134
+ - uid: 13155
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-6.5
parent: 2
type: Transform
- - uid: 13135
+ - uid: 13156
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-6.5
parent: 2
type: Transform
- - uid: 13136
+ - uid: 13157
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-43.5
parent: 2
type: Transform
- - uid: 13137
+ - uid: 13158
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-43.5
parent: 2
type: Transform
- - uid: 13138
+ - uid: 13159
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-43.5
parent: 2
type: Transform
- - uid: 13139
+ - uid: 13160
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-43.5
parent: 2
type: Transform
- - uid: 13140
+ - uid: 13161
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-43.5
parent: 2
type: Transform
- - uid: 13141
+ - uid: 13162
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-43.5
parent: 2
type: Transform
- - uid: 13142
+ - uid: 13163
components:
- pos: 6.5,-44.5
parent: 2
type: Transform
- - uid: 13143
+ - uid: 13164
components:
- pos: 21.5,-32.5
parent: 2
type: Transform
- - uid: 13144
+ - uid: 13165
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-18.5
parent: 2
type: Transform
- - uid: 13145
+ - uid: 13166
components:
- pos: 24.5,-13.5
parent: 2
type: Transform
- - uid: 13146
+ - uid: 13167
components:
- rot: 1.5707963267948966 rad
pos: 22.5,17.5
parent: 2
type: Transform
- - uid: 13147
+ - uid: 13168
components:
- rot: -1.5707963267948966 rad
pos: 28.5,17.5
parent: 2
type: Transform
- - uid: 13148
+ - uid: 13169
components:
- pos: 25.5,15.5
parent: 2
type: Transform
- - uid: 13149
+ - uid: 13170
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-6.5
parent: 2
type: Transform
- - uid: 13150
+ - uid: 13171
components:
- rot: -1.5707963267948966 rad
pos: 26.5,8.5
parent: 2
type: Transform
- - uid: 13151
+ - uid: 13172
components:
- rot: -1.5707963267948966 rad
pos: 11.5,2.5
parent: 2
type: Transform
- - uid: 13152
+ - uid: 13173
components:
- pos: 6.5,4.5
parent: 2
type: Transform
- - uid: 13153
+ - uid: 13174
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-27.5
parent: 2
type: Transform
- - uid: 13154
+ - uid: 13175
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-27.5
parent: 2
type: Transform
- - uid: 13155
+ - uid: 13176
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-27.5
parent: 2
type: Transform
- - uid: 13156
+ - uid: 13177
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-27.5
parent: 2
type: Transform
- - uid: 13157
+ - uid: 13178
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-27.5
parent: 2
type: Transform
- - uid: 13158
+ - uid: 13179
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-27.5
parent: 2
type: Transform
- - uid: 13159
+ - uid: 13180
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-33.5
parent: 2
type: Transform
- - uid: 13160
+ - uid: 13181
components:
- pos: -19.5,-63.5
parent: 2
type: Transform
- - uid: 13161
+ - uid: 13182
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-27.5
parent: 2
type: Transform
- - uid: 13162
+ - uid: 13183
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-27.5
parent: 2
type: Transform
- - uid: 13163
+ - uid: 13184
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-27.5
parent: 2
type: Transform
- - uid: 13164
+ - uid: 13185
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-27.5
parent: 2
type: Transform
- - uid: 13165
+ - uid: 13186
components:
- pos: -23.5,-77.5
parent: 2
type: Transform
- - uid: 13166
+ - uid: 13187
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-27.5
parent: 2
type: Transform
- - uid: 13167
+ - uid: 13188
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-27.5
parent: 2
type: Transform
- - uid: 13168
+ - uid: 13189
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-27.5
parent: 2
type: Transform
- - uid: 13169
+ - uid: 13190
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-0.5
parent: 2
type: Transform
- - uid: 13170
+ - uid: 13191
components:
- pos: 18.5,-2.5
parent: 2
type: Transform
- - uid: 13171
+ - uid: 13192
components:
- rot: -1.5707963267948966 rad
pos: 27.5,17.5
parent: 2
type: Transform
- - uid: 13172
+ - uid: 13193
components:
- rot: 3.141592653589793 rad
pos: 16.5,-34.5
parent: 2
type: Transform
- - uid: 13173
+ - uid: 13194
components:
- rot: 3.141592653589793 rad
pos: 16.5,-32.5
parent: 2
type: Transform
- - uid: 13174
+ - uid: 13195
components:
- rot: 3.141592653589793 rad
pos: 16.5,-30.5
parent: 2
type: Transform
- - uid: 13175
+ - uid: 13196
components:
- rot: 3.141592653589793 rad
pos: 16.5,-28.5
parent: 2
type: Transform
- - uid: 13176
+ - uid: 13197
components:
- rot: -1.5707963267948966 rad
pos: 28.5,8.5
parent: 2
type: Transform
- - uid: 13177
+ - uid: 13198
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-0.5
parent: 2
type: Transform
- - uid: 13178
+ - uid: 13199
components:
- rot: 3.141592653589793 rad
pos: 18.5,-26.5
parent: 2
type: Transform
- - uid: 13179
+ - uid: 13200
components:
- pos: 18.5,-3.5
parent: 2
type: Transform
- - uid: 13180
+ - uid: 13201
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-27.5
parent: 2
type: Transform
- - uid: 13181
+ - uid: 13202
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-27.5
parent: 2
type: Transform
- - uid: 13182
+ - uid: 13203
components:
- rot: 3.141592653589793 rad
pos: 16.5,-33.5
parent: 2
type: Transform
- - uid: 13183
+ - uid: 13204
components:
- rot: 3.141592653589793 rad
pos: 16.5,-31.5
parent: 2
type: Transform
- - uid: 13184
+ - uid: 13205
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-17.5
parent: 2
type: Transform
- - uid: 13185
+ - uid: 13206
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-0.5
parent: 2
type: Transform
- - uid: 13186
+ - uid: 13207
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-53.5
parent: 2
type: Transform
- - uid: 13187
+ - uid: 13208
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-27.5
parent: 2
type: Transform
- - uid: 13188
+ - uid: 13209
components:
- pos: 24.5,-15.5
parent: 2
type: Transform
- - uid: 13189
+ - uid: 13210
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-18.5
parent: 2
type: Transform
- - uid: 13190
+ - uid: 13211
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-18.5
parent: 2
type: Transform
- - uid: 13191
+ - uid: 13212
components:
- pos: 12.5,7.5
parent: 2
type: Transform
- - uid: 13192
+ - uid: 13213
components:
- rot: 3.141592653589793 rad
pos: 17.5,3.5
parent: 2
type: Transform
- - uid: 13193
+ - uid: 13214
components:
- rot: 1.5707963267948966 rad
pos: -1.5,0.5
parent: 2
type: Transform
- - uid: 13194
+ - uid: 13215
components:
- rot: 1.5707963267948966 rad
pos: -3.5,0.5
parent: 2
type: Transform
- - uid: 13195
+ - uid: 13216
components:
- pos: 10.5,-2.5
parent: 2
type: Transform
- - uid: 13196
+ - uid: 13217
components:
- rot: -1.5707963267948966 rad
pos: 14.5,0.5
parent: 2
type: Transform
- - uid: 13197
+ - uid: 13218
components:
- rot: -1.5707963267948966 rad
pos: 16.5,0.5
parent: 2
type: Transform
- - uid: 13198
+ - uid: 13219
components:
- rot: 3.141592653589793 rad
pos: -4.5,-7.5
parent: 2
type: Transform
- - uid: 13199
+ - uid: 13220
components:
- rot: 3.141592653589793 rad
pos: -3.5,-18.5
parent: 2
type: Transform
- - uid: 13200
+ - uid: 13221
components:
- rot: 3.141592653589793 rad
pos: 18.5,-51.5
parent: 2
type: Transform
- - uid: 13201
+ - uid: 13222
components:
- rot: 3.141592653589793 rad
pos: 18.5,-50.5
parent: 2
type: Transform
- - uid: 13202
+ - uid: 13223
components:
- pos: -4.5,-42.5
parent: 2
type: Transform
- - uid: 13203
+ - uid: 13224
components:
- pos: -4.5,-40.5
parent: 2
type: Transform
- - uid: 13204
+ - uid: 13225
components:
- pos: -4.5,-38.5
parent: 2
type: Transform
- - uid: 13205
+ - uid: 13226
components:
- pos: -4.5,-36.5
parent: 2
type: Transform
- - uid: 13206
+ - uid: 13227
components:
- pos: -4.5,-34.5
parent: 2
type: Transform
- - uid: 13207
+ - uid: 13228
components:
- pos: -4.5,-32.5
parent: 2
type: Transform
- - uid: 13208
+ - uid: 13229
components:
- pos: -4.5,-30.5
parent: 2
type: Transform
- - uid: 13209
+ - uid: 13230
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-43.5
parent: 2
type: Transform
- - uid: 13210
+ - uid: 13231
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-43.5
parent: 2
type: Transform
- - uid: 13211
+ - uid: 13232
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-27.5
parent: 2
type: Transform
- - uid: 13212
+ - uid: 13233
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-27.5
parent: 2
type: Transform
- - uid: 13213
+ - uid: 13234
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-27.5
parent: 2
type: Transform
- - uid: 13214
+ - uid: 13235
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-27.5
parent: 2
type: Transform
- - uid: 13215
+ - uid: 13236
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-27.5
parent: 2
type: Transform
- - uid: 13216
+ - uid: 13237
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-27.5
parent: 2
type: Transform
- - uid: 13217
+ - uid: 13238
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-27.5
parent: 2
type: Transform
- - uid: 13218
+ - uid: 13239
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-27.5
parent: 2
type: Transform
- - uid: 13219
+ - uid: 13240
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-27.5
parent: 2
type: Transform
- - uid: 13220
+ - uid: 13241
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-27.5
parent: 2
type: Transform
- - uid: 13221
+ - uid: 13242
components:
- pos: 17.5,-48.5
parent: 2
type: Transform
- - uid: 13222
+ - uid: 13243
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-0.5
parent: 2
type: Transform
- - uid: 13223
+ - uid: 13244
components:
- rot: -1.5707963267948966 rad
pos: 2.5,2.5
parent: 2
type: Transform
- - uid: 13224
+ - uid: 13245
components:
- rot: -1.5707963267948966 rad
pos: 11.5,13.5
parent: 2
type: Transform
- - uid: 13225
+ - uid: 13246
components:
- pos: 12.5,12.5
parent: 2
type: Transform
- - uid: 13226
+ - uid: 13247
components:
- rot: 1.5707963267948966 rad
pos: 23.5,17.5
parent: 2
type: Transform
- - uid: 13227
+ - uid: 13248
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-17.5
parent: 2
type: Transform
- - uid: 13228
+ - uid: 13249
components:
- pos: 36.5,-19.5
parent: 2
type: Transform
- - uid: 13229
+ - uid: 13250
components:
- rot: -1.5707963267948966 rad
pos: 30.5,8.5
parent: 2
type: Transform
- - uid: 13230
+ - uid: 13251
components:
- rot: -1.5707963267948966 rad
pos: 27.5,8.5
parent: 2
type: Transform
- - uid: 13231
+ - uid: 13252
components:
- rot: -1.5707963267948966 rad
pos: 29.5,8.5
parent: 2
type: Transform
- - uid: 13232
+ - uid: 13253
components:
- rot: -1.5707963267948966 rad
pos: 31.5,8.5
parent: 2
type: Transform
- - uid: 13233
+ - uid: 13254
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-10.5
parent: 2
type: Transform
- - uid: 13234
+ - uid: 13255
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-11.5
parent: 2
type: Transform
- - uid: 13235
+ - uid: 13256
components:
- rot: -1.5707963267948966 rad
pos: 20.5,7.5
parent: 2
type: Transform
- - uid: 13236
+ - uid: 13257
components:
- rot: -1.5707963267948966 rad
pos: 19.5,7.5
parent: 2
type: Transform
- - uid: 13237
+ - uid: 13258
components:
- rot: -1.5707963267948966 rad
pos: 23.5,8.5
parent: 2
type: Transform
- - uid: 13238
+ - uid: 13259
components:
- rot: -1.5707963267948966 rad
pos: 24.5,8.5
parent: 2
type: Transform
- - uid: 13239
+ - uid: 13260
components:
- pos: 25.5,9.5
parent: 2
type: Transform
- - uid: 13240
+ - uid: 13261
components:
- pos: 25.5,10.5
parent: 2
type: Transform
- - uid: 13241
+ - uid: 13262
components:
- pos: 25.5,11.5
parent: 2
type: Transform
- - uid: 13242
+ - uid: 13263
components:
- pos: 25.5,12.5
parent: 2
type: Transform
- - uid: 13243
+ - uid: 13264
components:
- pos: 25.5,13.5
parent: 2
type: Transform
- - uid: 13244
+ - uid: 13265
components:
- pos: 25.5,14.5
parent: 2
type: Transform
- - uid: 13245
+ - uid: 13266
components:
- pos: 25.5,16.5
parent: 2
type: Transform
- - uid: 13246
+ - uid: 13267
components:
- rot: -1.5707963267948966 rad
pos: 26.5,17.5
parent: 2
type: Transform
- - uid: 13247
+ - uid: 13268
components:
- rot: -1.5707963267948966 rad
pos: 24.5,17.5
parent: 2
type: Transform
- - uid: 13248
+ - uid: 13269
components:
- pos: 21.5,18.5
parent: 2
type: Transform
- - uid: 13249
+ - uid: 13270
components:
- pos: 21.5,19.5
parent: 2
type: Transform
- - uid: 13250
+ - uid: 13271
components:
- pos: 24.5,-12.5
parent: 2
type: Transform
- - uid: 13251
+ - uid: 13272
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-18.5
parent: 2
type: Transform
- - uid: 13252
+ - uid: 13273
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-18.5
parent: 2
type: Transform
- - uid: 13253
+ - uid: 13274
components:
- pos: 16.5,-20.5
parent: 2
type: Transform
- - uid: 13254
+ - uid: 13275
components:
- pos: 16.5,-21.5
parent: 2
type: Transform
- - uid: 13255
+ - uid: 13276
components:
- pos: 16.5,-22.5
parent: 2
type: Transform
- - uid: 13256
+ - uid: 13277
components:
- pos: 16.5,-23.5
parent: 2
type: Transform
- - uid: 13257
+ - uid: 13278
components:
- pos: 16.5,-24.5
parent: 2
type: Transform
- - uid: 13258
+ - uid: 13279
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-25.5
parent: 2
type: Transform
- - uid: 13259
+ - uid: 13280
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-25.5
parent: 2
type: Transform
- - uid: 13260
+ - uid: 13281
components:
- pos: 20.5,-24.5
parent: 2
type: Transform
- - uid: 13261
+ - uid: 13282
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-17.5
parent: 2
type: Transform
- - uid: 13262
+ - uid: 13283
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-17.5
parent: 2
type: Transform
- - uid: 13263
+ - uid: 13284
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-17.5
parent: 2
type: Transform
- - uid: 13264
+ - uid: 13285
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-17.5
parent: 2
type: Transform
- - uid: 13265
+ - uid: 13286
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-17.5
parent: 2
type: Transform
- - uid: 13266
+ - uid: 13287
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-17.5
parent: 2
type: Transform
- - uid: 13267
+ - uid: 13288
components:
- rot: 3.141592653589793 rad
pos: 16.5,-26.5
parent: 2
type: Transform
- - uid: 13268
+ - uid: 13289
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-29.5
parent: 2
type: Transform
- - uid: 13269
+ - uid: 13290
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-29.5
parent: 2
type: Transform
- - uid: 13270
+ - uid: 13291
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-17.5
parent: 2
type: Transform
- - uid: 13271
+ - uid: 13292
components:
- rot: 3.141592653589793 rad
pos: 36.5,-20.5
parent: 2
type: Transform
- - uid: 13272
+ - uid: 13293
components:
- rot: 3.141592653589793 rad
pos: 36.5,-21.5
parent: 2
type: Transform
- - uid: 13273
+ - uid: 13294
components:
- rot: -1.5707963267948966 rad
pos: 33.5,8.5
parent: 2
type: Transform
- - uid: 13274
+ - uid: 13295
components:
- rot: 3.141592653589793 rad
pos: -4.5,-10.5
parent: 2
type: Transform
- - uid: 13275
+ - uid: 13296
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-25.5
parent: 2
type: Transform
- - uid: 13276
+ - uid: 13297
components:
- pos: -7.5,-1.5
parent: 2
type: Transform
- - uid: 13277
+ - uid: 13298
components:
- rot: -1.5707963267948966 rad
pos: 20.5,17.5
parent: 2
type: Transform
- - uid: 13278
+ - uid: 13299
components:
- rot: -1.5707963267948966 rad
pos: 19.5,17.5
parent: 2
type: Transform
- - uid: 13279
+ - uid: 13300
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-25.5
parent: 2
type: Transform
- - uid: 13280
+ - uid: 13301
components:
- pos: 16.5,-35.5
parent: 2
type: Transform
- - uid: 13281
+ - uid: 13302
components:
- pos: 16.5,-36.5
parent: 2
type: Transform
- - uid: 13282
+ - uid: 13303
components:
- pos: 16.5,-37.5
parent: 2
type: Transform
- - uid: 13283
+ - uid: 13304
components:
- pos: 16.5,-38.5
parent: 2
type: Transform
- - uid: 13284
+ - uid: 13305
components:
- pos: 16.5,-39.5
parent: 2
type: Transform
- - uid: 13285
+ - uid: 13306
components:
- pos: 16.5,-40.5
parent: 2
type: Transform
- - uid: 13286
+ - uid: 13307
components:
- rot: 3.141592653589793 rad
pos: 1.5,-58.5
parent: 2
type: Transform
- - uid: 13287
+ - uid: 13308
components:
- rot: 3.141592653589793 rad
pos: 1.5,-57.5
parent: 2
type: Transform
- - uid: 13288
+ - uid: 13309
components:
- rot: 3.141592653589793 rad
pos: 1.5,-56.5
parent: 2
type: Transform
- - uid: 13289
+ - uid: 13310
components:
- rot: 3.141592653589793 rad
pos: 1.5,-55.5
parent: 2
type: Transform
- - uid: 13290
+ - uid: 13311
components:
- rot: 3.141592653589793 rad
pos: 1.5,-54.5
parent: 2
type: Transform
- - uid: 13291
+ - uid: 13312
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-53.5
parent: 2
type: Transform
- - uid: 13292
+ - uid: 13313
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-45.5
parent: 2
type: Transform
- - uid: 13293
+ - uid: 13314
components:
- rot: 3.141592653589793 rad
pos: -0.5,-52.5
parent: 2
type: Transform
- - uid: 13294
+ - uid: 13315
components:
- rot: 3.141592653589793 rad
pos: -0.5,-51.5
parent: 2
type: Transform
- - uid: 13295
+ - uid: 13316
components:
- rot: 3.141592653589793 rad
pos: -0.5,-50.5
parent: 2
type: Transform
- - uid: 13296
+ - uid: 13317
components:
- rot: 3.141592653589793 rad
pos: -0.5,-48.5
parent: 2
type: Transform
- - uid: 13297
+ - uid: 13318
components:
- rot: 3.141592653589793 rad
pos: -0.5,-47.5
parent: 2
type: Transform
- - uid: 13298
+ - uid: 13319
components:
- pos: -0.5,-44.5
parent: 2
type: Transform
- - uid: 13299
+ - uid: 13320
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-6.5
parent: 2
type: Transform
- - uid: 13300
+ - uid: 13321
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-6.5
parent: 2
type: Transform
- - uid: 13301
+ - uid: 13322
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-6.5
parent: 2
type: Transform
- - uid: 13302
+ - uid: 13323
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-6.5
parent: 2
type: Transform
- - uid: 13303
+ - uid: 13324
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-6.5
parent: 2
type: Transform
- - uid: 13304
+ - uid: 13325
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-6.5
parent: 2
type: Transform
- - uid: 13305
+ - uid: 13326
components:
- rot: 3.141592653589793 rad
pos: 34.5,7.5
parent: 2
type: Transform
- - uid: 13306
+ - uid: 13327
components:
- rot: -1.5707963267948966 rad
pos: 35.5,6.5
parent: 2
type: Transform
- - uid: 13307
+ - uid: 13328
components:
- rot: -1.5707963267948966 rad
pos: 36.5,6.5
parent: 2
type: Transform
- - uid: 13308
+ - uid: 13329
components:
- rot: -1.5707963267948966 rad
pos: 37.5,6.5
parent: 2
type: Transform
- - uid: 13309
+ - uid: 13330
components:
- rot: -1.5707963267948966 rad
pos: 38.5,6.5
parent: 2
type: Transform
- - uid: 13310
+ - uid: 13331
components:
- rot: -1.5707963267948966 rad
pos: 40.5,6.5
parent: 2
type: Transform
- - uid: 13311
+ - uid: 13332
components:
- rot: 3.141592653589793 rad
pos: 34.5,3.5
parent: 2
type: Transform
- - uid: 13312
+ - uid: 13333
components:
- pos: 34.5,-0.5
parent: 2
type: Transform
- - uid: 13313
+ - uid: 13334
components:
- pos: 34.5,-1.5
parent: 2
type: Transform
- - uid: 13314
+ - uid: 13335
components:
- pos: 36.5,-27.5
parent: 2
type: Transform
- - uid: 13315
+ - uid: 13336
components:
- pos: 36.5,-28.5
parent: 2
type: Transform
- - uid: 13316
+ - uid: 13337
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-41.5
parent: 2
type: Transform
- - uid: 13317
+ - uid: 13338
components:
- pos: 17.5,-46.5
parent: 2
type: Transform
- - uid: 13318
+ - uid: 13339
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-43.5
parent: 2
type: Transform
- - uid: 13319
+ - uid: 13340
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-43.5
parent: 2
type: Transform
- - uid: 13320
+ - uid: 13341
components:
- pos: 19.5,-42.5
parent: 2
type: Transform
- - uid: 13321
+ - uid: 13342
components:
- pos: 18.5,-27.5
parent: 2
type: Transform
- - uid: 13322
+ - uid: 13343
components:
- pos: -23.5,-80.5
parent: 2
type: Transform
- - uid: 13323
+ - uid: 13344
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-25.5
parent: 2
type: Transform
- - uid: 13324
+ - uid: 13345
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-25.5
parent: 2
type: Transform
- - uid: 13325
+ - uid: 13346
components:
- rot: 3.141592653589793 rad
pos: -4.5,-2.5
parent: 2
type: Transform
- - uid: 13326
+ - uid: 13347
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-25.5
parent: 2
type: Transform
- - uid: 13327
+ - uid: 13348
components:
- rot: 3.141592653589793 rad
pos: 15.5,-33.5
parent: 2
type: Transform
- - uid: 13328
+ - uid: 13349
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-43.5
parent: 2
type: Transform
- - uid: 13329
+ - uid: 13350
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-43.5
parent: 2
type: Transform
- - uid: 13330
+ - uid: 13351
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-43.5
parent: 2
type: Transform
- - uid: 13331
+ - uid: 13352
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-43.5
parent: 2
type: Transform
- - uid: 13332
+ - uid: 13353
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-43.5
parent: 2
type: Transform
- - uid: 13333
+ - uid: 13354
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-43.5
parent: 2
type: Transform
- - uid: 13334
+ - uid: 13355
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-43.5
parent: 2
type: Transform
- - uid: 13335
+ - uid: 13356
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-43.5
parent: 2
type: Transform
- - uid: 13336
+ - uid: 13357
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-43.5
parent: 2
type: Transform
- - uid: 13337
+ - uid: 13358
components:
- pos: -13.5,-44.5
parent: 2
type: Transform
- - uid: 13338
+ - uid: 13359
components:
- pos: -13.5,-46.5
parent: 2
type: Transform
- - uid: 13339
+ - uid: 13360
components:
- pos: -13.5,-47.5
parent: 2
type: Transform
- - uid: 13340
+ - uid: 13361
components:
- pos: -13.5,-48.5
parent: 2
type: Transform
- - uid: 13341
+ - uid: 13362
components:
- pos: -13.5,-49.5
parent: 2
type: Transform
- - uid: 13342
+ - uid: 13363
components:
- pos: -13.5,-50.5
parent: 2
type: Transform
- - uid: 13343
+ - uid: 13364
components:
- pos: -13.5,-51.5
parent: 2
type: Transform
- - uid: 13344
+ - uid: 13365
components:
- pos: -13.5,-52.5
parent: 2
type: Transform
- - uid: 13345
+ - uid: 13366
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-53.5
parent: 2
type: Transform
- - uid: 13346
+ - uid: 13367
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-54.5
parent: 2
type: Transform
- - uid: 13347
+ - uid: 13368
components:
- pos: -17.5,-56.5
parent: 2
type: Transform
- - uid: 13348
+ - uid: 13369
components:
- rot: 3.141592653589793 rad
pos: -17.5,-58.5
parent: 2
type: Transform
- - uid: 13349
+ - uid: 13370
components:
- rot: 3.141592653589793 rad
pos: -17.5,-59.5
parent: 2
type: Transform
- - uid: 13350
+ - uid: 13371
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-57.5
parent: 2
type: Transform
- - uid: 13351
+ - uid: 13372
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-57.5
parent: 2
type: Transform
- - uid: 13352
+ - uid: 13373
components:
- pos: -19.5,-69.5
parent: 2
type: Transform
- - uid: 13353
+ - uid: 13374
components:
- pos: -19.5,-70.5
parent: 2
type: Transform
- - uid: 13354
+ - uid: 13375
components:
- pos: -19.5,-71.5
parent: 2
type: Transform
- - uid: 13355
+ - uid: 13376
components:
- pos: -19.5,-72.5
parent: 2
type: Transform
- - uid: 13356
+ - uid: 13377
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-73.5
parent: 2
type: Transform
- - uid: 13357
+ - uid: 13378
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-73.5
parent: 2
type: Transform
- - uid: 13358
+ - uid: 13379
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-73.5
parent: 2
type: Transform
- - uid: 13359
+ - uid: 13380
components:
- pos: -23.5,-82.5
parent: 2
type: Transform
- - uid: 13360
+ - uid: 13381
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-53.5
parent: 2
type: Transform
- - uid: 13361
+ - uid: 13382
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-53.5
parent: 2
type: Transform
- - uid: 13362
+ - uid: 13383
components:
- pos: 18.5,-4.5
parent: 2
type: Transform
- - uid: 13363
+ - uid: 13384
components:
- rot: -1.5707963267948966 rad
pos: 9.5,13.5
parent: 2
type: Transform
- - uid: 13364
+ - uid: 13385
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-25.5
parent: 2
type: Transform
- - uid: 13365
+ - uid: 13386
components:
- pos: 30.5,-77.5
parent: 2
type: Transform
- - uid: 13366
+ - uid: 13387
components:
- pos: -4.5,-29.5
parent: 2
type: Transform
- - uid: 13367
+ - uid: 13388
components:
- rot: 3.141592653589793 rad
pos: 17.5,6.5
parent: 2
type: Transform
- - uid: 13368
+ - uid: 13389
components:
- pos: 12.5,10.5
parent: 2
type: Transform
- - uid: 13369
+ - uid: 13390
components:
- pos: 18.5,-0.5
parent: 2
type: Transform
- - uid: 13370
+ - uid: 13391
components:
- pos: 12.5,9.5
parent: 2
type: Transform
- - uid: 13371
+ - uid: 13392
components:
- pos: 12.5,3.5
parent: 2
type: Transform
- - uid: 13372
+ - uid: 13393
components:
- rot: 3.141592653589793 rad
pos: 17.5,4.5
parent: 2
type: Transform
- - uid: 13373
+ - uid: 13394
components:
- rot: 3.141592653589793 rad
pos: 17.5,2.5
parent: 2
type: Transform
- - uid: 13374
+ - uid: 13395
components:
- pos: 18.5,-1.5
parent: 2
type: Transform
- - uid: 13375
+ - uid: 13396
components:
- rot: -1.5707963267948966 rad
pos: 15.5,0.5
parent: 2
type: Transform
- - uid: 13376
+ - uid: 13397
components:
- pos: 10.5,-1.5
parent: 2
type: Transform
- - uid: 13377
+ - uid: 13398
components:
- pos: 6.5,-1.5
parent: 2
type: Transform
- - uid: 13378
+ - uid: 13399
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-0.5
parent: 2
type: Transform
- - uid: 13379
+ - uid: 13400
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-25.5
parent: 2
type: Transform
- - uid: 13380
+ - uid: 13401
components:
- rot: 1.5707963267948966 rad
pos: 4.5,2.5
parent: 2
type: Transform
- - uid: 13381
+ - uid: 13402
components:
- rot: 1.5707963267948966 rad
pos: 5.5,2.5
parent: 2
type: Transform
- - uid: 13382
+ - uid: 13403
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-53.5
parent: 2
type: Transform
- - uid: 13383
+ - uid: 13404
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-84.5
parent: 2
type: Transform
- - uid: 13384
+ - uid: 13405
components:
- pos: -23.5,-83.5
parent: 2
type: Transform
- - uid: 13385
+ - uid: 13406
components:
- pos: -23.5,-78.5
parent: 2
type: Transform
- - uid: 13386
+ - uid: 13407
components:
- rot: 1.5707963267948966 rad
pos: 7.5,2.5
parent: 2
type: Transform
- - uid: 13387
+ - uid: 13408
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-25.5
parent: 2
type: Transform
- - uid: 13388
+ - uid: 13409
components:
- pos: 24.5,-16.5
parent: 2
type: Transform
- - uid: 13389
+ - uid: 13410
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-43.5
parent: 2
type: Transform
- - uid: 13390
+ - uid: 13411
components:
- rot: -1.5707963267948966 rad
pos: 11.5,2.5
parent: 2
type: Transform
- - uid: 13391
+ - uid: 13412
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-6.5
parent: 2
type: Transform
- - uid: 13392
+ - uid: 13413
components:
- pos: 24.5,-8.5
parent: 2
type: Transform
- - uid: 13393
+ - uid: 13414
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-10.5
parent: 2
type: Transform
- - uid: 13394
+ - uid: 13415
components:
- pos: 16.5,-19.5
parent: 2
type: Transform
- - uid: 13395
+ - uid: 13416
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-25.5
parent: 2
type: Transform
- - uid: 13396
+ - uid: 13417
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-25.5
parent: 2
type: Transform
- - uid: 13397
+ - uid: 13418
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-25.5
parent: 2
type: Transform
- - uid: 13398
+ - uid: 13419
components:
- pos: -7.5,-0.5
parent: 2
type: Transform
- - uid: 13399
+ - uid: 13420
components:
- rot: 3.141592653589793 rad
pos: -5.5,-22.5
parent: 2
type: Transform
- - uid: 13400
+ - uid: 13421
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-25.5
parent: 2
type: Transform
- - uid: 13401
+ - uid: 13422
components:
- rot: 3.141592653589793 rad
pos: -0.5,-49.5
parent: 2
type: Transform
- - uid: 13402
+ - uid: 13423
components:
- rot: 3.141592653589793 rad
pos: -0.5,-46.5
parent: 2
type: Transform
- - uid: 13403
+ - uid: 13424
components:
- rot: 3.141592653589793 rad
pos: 15.5,-28.5
parent: 2
type: Transform
- - uid: 13404
+ - uid: 13425
components:
- pos: 18.5,-5.5
parent: 2
type: Transform
- - uid: 13405
+ - uid: 13426
components:
- rot: 3.141592653589793 rad
pos: 18.5,8.5
parent: 2
type: Transform
- - uid: 13406
+ - uid: 13427
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-6.5
parent: 2
type: Transform
- - uid: 13407
+ - uid: 13428
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-25.5
parent: 2
type: Transform
- - uid: 13408
+ - uid: 13429
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-0.5
parent: 2
type: Transform
- - uid: 13409
+ - uid: 13430
components:
- rot: 3.141592653589793 rad
pos: -4.5,-5.5
parent: 2
type: Transform
- - uid: 13410
+ - uid: 13431
components:
- rot: 3.141592653589793 rad
pos: -3.5,-25.5
parent: 2
type: Transform
- - uid: 13411
+ - uid: 13432
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-27.5
parent: 2
type: Transform
- - uid: 13412
+ - uid: 13433
components:
- pos: 18.5,-28.5
parent: 2
type: Transform
- - uid: 13413
+ - uid: 13434
components:
- pos: -23.5,-79.5
parent: 2
type: Transform
- - uid: 13414
+ - uid: 13435
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-75.5
parent: 2
type: Transform
- - uid: 13415
+ - uid: 13436
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-53.5
parent: 2
type: Transform
- - uid: 13416
+ - uid: 13437
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-0.5
parent: 2
type: Transform
- - uid: 13417
+ - uid: 13438
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-9.5
parent: 2
type: Transform
- - uid: 13418
+ - uid: 13439
components:
- pos: 6.5,3.5
parent: 2
type: Transform
- - uid: 13419
+ - uid: 13440
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-25.5
parent: 2
type: Transform
- - uid: 13420
+ - uid: 13441
components:
- pos: 18.5,0.5
parent: 2
type: Transform
- - uid: 13421
+ - uid: 13442
components:
- rot: 3.141592653589793 rad
pos: 3.5,-1.5
parent: 2
type: Transform
- - uid: 13422
+ - uid: 13443
components:
- rot: 3.141592653589793 rad
pos: -3.5,-24.5
parent: 2
type: Transform
- - uid: 13423
+ - uid: 13444
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-43.5
parent: 2
type: Transform
- - uid: 13424
+ - uid: 13445
components:
- rot: 3.141592653589793 rad
pos: -5.5,-21.5
parent: 2
type: Transform
- - uid: 13425
+ - uid: 13446
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-3.5
parent: 2
type: Transform
- - uid: 13426
+ - uid: 13447
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-25.5
parent: 2
type: Transform
- - uid: 13427
+ - uid: 13448
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-6.5
parent: 2
type: Transform
- - uid: 13428
+ - uid: 13449
components:
- pos: -5.5,-54.5
parent: 2
type: Transform
- - uid: 13429
+ - uid: 13450
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-43.5
parent: 2
type: Transform
- - uid: 13430
+ - uid: 13451
components:
- pos: -4.5,-35.5
parent: 2
type: Transform
- - uid: 13431
+ - uid: 13452
components:
- pos: -4.5,-31.5
parent: 2
type: Transform
- - uid: 13432
+ - uid: 13453
components:
- pos: -4.5,-28.5
parent: 2
type: Transform
- - uid: 13433
+ - uid: 13454
components:
- pos: -19.5,-65.5
parent: 2
type: Transform
- - uid: 13434
+ - uid: 13455
components:
- pos: 36.5,-26.5
parent: 2
type: Transform
- - uid: 13435
+ - uid: 13456
components:
- pos: 36.5,-23.5
parent: 2
type: Transform
- - uid: 13436
+ - uid: 13457
components:
- pos: 34.5,-5.5
parent: 2
type: Transform
- - uid: 13437
+ - uid: 13458
components:
- pos: 34.5,0.5
parent: 2
type: Transform
- - uid: 13438
+ - uid: 13459
components:
- rot: 3.141592653589793 rad
pos: 34.5,2.5
parent: 2
type: Transform
- - uid: 13439
+ - uid: 13460
components:
- rot: 3.141592653589793 rad
pos: 34.5,4.5
parent: 2
type: Transform
- - uid: 13440
+ - uid: 13461
components:
- pos: 34.5,-3.5
parent: 2
type: Transform
- - uid: 13441
+ - uid: 13462
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-43.5
parent: 2
type: Transform
- - uid: 13442
+ - uid: 13463
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-43.5
parent: 2
type: Transform
- - uid: 13443
+ - uid: 13464
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-43.5
parent: 2
type: Transform
- - uid: 13444
+ - uid: 13465
components:
- rot: 3.141592653589793 rad
pos: -3.5,-19.5
parent: 2
type: Transform
- - uid: 13445
+ - uid: 13466
components:
- rot: 3.141592653589793 rad
pos: -4.5,-6.5
parent: 2
type: Transform
- - uid: 13446
+ - uid: 13467
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-18.5
parent: 2
type: Transform
- - uid: 13447
+ - uid: 13468
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-18.5
parent: 2
type: Transform
- - uid: 13448
+ - uid: 13469
components:
- pos: 24.5,-14.5
parent: 2
type: Transform
- - uid: 13449
+ - uid: 13470
components:
- rot: 1.5707963267948966 rad
pos: 9.5,2.5
parent: 2
type: Transform
- - uid: 13450
+ - uid: 13471
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-43.5
parent: 2
type: Transform
- - uid: 13451
+ - uid: 13472
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-73.5
parent: 2
type: Transform
- - uid: 13452
+ - uid: 13473
components:
- pos: -23.5,-76.5
parent: 2
type: Transform
- - uid: 13453
+ - uid: 13474
components:
- pos: -19.5,-64.5
parent: 2
type: Transform
- - uid: 13454
+ - uid: 13475
components:
- pos: -19.5,-62.5
parent: 2
type: Transform
- - uid: 13455
+ - uid: 13476
components:
- pos: -19.5,-66.5
parent: 2
type: Transform
- - uid: 13456
+ - uid: 13477
components:
- pos: -19.5,-68.5
parent: 2
type: Transform
- - uid: 13457
+ - uid: 13478
components:
- pos: -19.5,-67.5
parent: 2
type: Transform
- - uid: 13458
+ - uid: 13479
components:
- rot: 3.141592653589793 rad
pos: -3.5,-20.5
parent: 2
type: Transform
- - uid: 13459
+ - uid: 13480
components:
- rot: 3.141592653589793 rad
pos: 15.5,-26.5
parent: 2
type: Transform
- - uid: 13460
+ - uid: 13481
components:
- rot: 1.5707963267948966 rad
pos: -6.5,0.5
parent: 2
type: Transform
- - uid: 13461
+ - uid: 13482
components:
- rot: 3.141592653589793 rad
pos: -5.5,-23.5
parent: 2
type: Transform
- - uid: 13462
+ - uid: 13483
components:
- rot: 3.141592653589793 rad
pos: -5.5,-24.5
parent: 2
type: Transform
- - uid: 13463
+ - uid: 13484
components:
- rot: -1.5707963267948966 rad
pos: 13.5,5.5
parent: 2
type: Transform
- - uid: 13464
+ - uid: 13485
components:
- pos: 12.5,8.5
parent: 2
type: Transform
- - uid: 13465
+ - uid: 13486
components:
- rot: 3.141592653589793 rad
pos: 17.5,5.5
parent: 2
type: Transform
- - uid: 13466
+ - uid: 13487
components:
- pos: 17.5,9.5
parent: 2
type: Transform
- - uid: 13467
+ - uid: 13488
components:
- pos: 12.5,4.5
parent: 2
type: Transform
- - uid: 13468
+ - uid: 13489
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-0.5
parent: 2
type: Transform
- - uid: 13469
+ - uid: 13490
components:
- pos: -4.5,-41.5
parent: 2
type: Transform
- - uid: 13470
+ - uid: 13491
components:
- pos: -4.5,-39.5
parent: 2
type: Transform
- - uid: 13471
+ - uid: 13492
components:
- pos: -4.5,-37.5
parent: 2
type: Transform
- - uid: 13472
+ - uid: 13493
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-27.5
parent: 2
type: Transform
- - uid: 13473
+ - uid: 13494
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-43.5
parent: 2
type: Transform
- - uid: 13474
+ - uid: 13495
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-43.5
parent: 2
type: Transform
- - uid: 13475
+ - uid: 13496
components:
- rot: 3.141592653589793 rad
pos: -6.5,-65.5
parent: 2
type: Transform
- - uid: 13476
+ - uid: 13497
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-66.5
parent: 2
type: Transform
- - uid: 13477
+ - uid: 13498
components:
- rot: 3.141592653589793 rad
pos: 18.5,-52.5
parent: 2
type: Transform
- - uid: 13478
+ - uid: 13499
components:
- pos: -10.5,-24.5
parent: 2
type: Transform
- - uid: 13479
+ - uid: 13500
components:
- pos: -10.5,-25.5
parent: 2
type: Transform
- - uid: 13480
+ - uid: 13501
components:
- pos: -10.5,-26.5
parent: 2
type: Transform
- - uid: 13481
+ - uid: 13502
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-43.5
parent: 2
type: Transform
- - uid: 13482
+ - uid: 13503
components:
- rot: 3.141592653589793 rad
pos: 25.5,-46.5
parent: 2
type: Transform
- - uid: 13483
+ - uid: 13504
components:
- rot: 3.141592653589793 rad
pos: 25.5,-45.5
parent: 2
type: Transform
- - uid: 13484
+ - uid: 13505
components:
- rot: 3.141592653589793 rad
pos: 25.5,-44.5
parent: 2
type: Transform
- - uid: 13485
+ - uid: 13506
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-43.5
parent: 2
type: Transform
- - uid: 13486
+ - uid: 13507
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-43.5
parent: 2
type: Transform
- - uid: 13487
+ - uid: 13508
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-43.5
parent: 2
type: Transform
- - uid: 13488
+ - uid: 13509
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-43.5
parent: 2
type: Transform
- - uid: 13489
+ - uid: 13510
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-43.5
parent: 2
type: Transform
- - uid: 13490
+ - uid: 13511
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-43.5
parent: 2
type: Transform
- - uid: 13491
+ - uid: 13512
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-43.5
parent: 2
type: Transform
- - uid: 13492
+ - uid: 13513
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-43.5
parent: 2
type: Transform
- - uid: 13493
+ - uid: 13514
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-43.5
parent: 2
type: Transform
- - uid: 13494
+ - uid: 13515
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-9.5
parent: 2
type: Transform
- - uid: 13495
+ - uid: 13516
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-53.5
parent: 2
type: Transform
- - uid: 13496
+ - uid: 13517
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-53.5
parent: 2
type: Transform
- - uid: 13497
+ - uid: 13518
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-53.5
parent: 2
type: Transform
- - uid: 13498
+ - uid: 13519
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-53.5
parent: 2
type: Transform
- - uid: 13499
+ - uid: 13520
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-53.5
parent: 2
type: Transform
- - uid: 13500
+ - uid: 13521
components:
- pos: 36.5,-29.5
parent: 2
type: Transform
- - uid: 13501
+ - uid: 13522
components:
- pos: 36.5,-30.5
parent: 2
type: Transform
- - uid: 13502
+ - uid: 13523
components:
- pos: 36.5,-31.5
parent: 2
type: Transform
- - uid: 13503
+ - uid: 13524
components:
- pos: 36.5,-32.5
parent: 2
type: Transform
- - uid: 13504
+ - uid: 13525
components:
- pos: 36.5,-33.5
parent: 2
type: Transform
- - uid: 13505
+ - uid: 13526
components:
- pos: 36.5,-34.5
parent: 2
type: Transform
- - uid: 13506
+ - uid: 13527
components:
- pos: 36.5,-35.5
parent: 2
type: Transform
- - uid: 13507
+ - uid: 13528
components:
- pos: 36.5,-36.5
parent: 2
type: Transform
- - uid: 13508
+ - uid: 13529
components:
- pos: 36.5,-37.5
parent: 2
type: Transform
- - uid: 13509
+ - uid: 13530
components:
- pos: 36.5,-38.5
parent: 2
type: Transform
- - uid: 13510
+ - uid: 13531
components:
- pos: 36.5,-39.5
parent: 2
type: Transform
- - uid: 13511
+ - uid: 13532
components:
- pos: 36.5,-40.5
parent: 2
type: Transform
- - uid: 13512
+ - uid: 13533
components:
- pos: 36.5,-41.5
parent: 2
type: Transform
- - uid: 13513
+ - uid: 13534
components:
- pos: 36.5,-42.5
parent: 2
type: Transform
- - uid: 13514
+ - uid: 13535
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-43.5
parent: 2
type: Transform
- - uid: 13515
+ - uid: 13536
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-43.5
parent: 2
type: Transform
- - uid: 13516
+ - uid: 13537
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-43.5
parent: 2
type: Transform
- - uid: 13517
+ - uid: 13538
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-43.5
parent: 2
type: Transform
- - uid: 13518
+ - uid: 13539
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-43.5
parent: 2
type: Transform
- - uid: 13519
+ - uid: 13540
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-43.5
parent: 2
type: Transform
- - uid: 13520
+ - uid: 13541
components:
- rot: -1.5707963267948966 rad
pos: 35.5,1.5
parent: 2
type: Transform
- - uid: 13521
+ - uid: 13542
components:
- rot: -1.5707963267948966 rad
pos: 36.5,1.5
parent: 2
type: Transform
- - uid: 13522
+ - uid: 13543
components:
- rot: -1.5707963267948966 rad
pos: 37.5,1.5
parent: 2
type: Transform
- - uid: 13523
+ - uid: 13544
components:
- rot: -1.5707963267948966 rad
pos: 38.5,1.5
parent: 2
type: Transform
- - uid: 13524
+ - uid: 13545
components:
- rot: -1.5707963267948966 rad
pos: 39.5,1.5
parent: 2
type: Transform
- - uid: 13525
+ - uid: 13546
components:
- rot: -1.5707963267948966 rad
pos: 17.5,17.5
parent: 2
type: Transform
- - uid: 13526
+ - uid: 13547
components:
- rot: -1.5707963267948966 rad
pos: 18.5,17.5
parent: 2
type: Transform
- - uid: 13527
+ - uid: 13548
components:
- rot: -1.5707963267948966 rad
pos: 16.5,17.5
parent: 2
type: Transform
- - uid: 13528
+ - uid: 13549
components:
- pos: 15.5,18.5
parent: 2
type: Transform
- - uid: 13529
+ - uid: 13550
components:
- rot: 1.5707963267948966 rad
pos: -10.5,0.5
parent: 2
type: Transform
- - uid: 13530
+ - uid: 13551
components:
- rot: 1.5707963267948966 rad
pos: -11.5,0.5
parent: 2
type: Transform
- - uid: 13531
+ - uid: 13552
components:
- rot: 1.5707963267948966 rad
pos: -12.5,0.5
parent: 2
type: Transform
- - uid: 13532
+ - uid: 13553
components:
- rot: 3.141592653589793 rad
pos: 15.5,-34.5
parent: 2
type: Transform
- - uid: 13533
+ - uid: 13554
components:
- rot: 3.141592653589793 rad
pos: -3.5,-21.5
parent: 2
type: Transform
- - uid: 13534
+ - uid: 13555
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-25.5
parent: 2
type: Transform
- - uid: 13535
+ - uid: 13556
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-25.5
parent: 2
type: Transform
- - uid: 13536
+ - uid: 13557
components:
- rot: 3.141592653589793 rad
pos: -4.5,-8.5
parent: 2
type: Transform
- - uid: 13537
+ - uid: 13558
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-25.5
parent: 2
type: Transform
- - uid: 13538
+ - uid: 13559
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-9.5
parent: 2
type: Transform
- - uid: 13539
+ - uid: 13560
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-9.5
parent: 2
type: Transform
- - uid: 13540
+ - uid: 13561
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-9.5
parent: 2
type: Transform
- - uid: 13541
+ - uid: 13562
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-9.5
parent: 2
type: Transform
- - uid: 13542
+ - uid: 13563
components:
- pos: -4.5,-0.5
parent: 2
type: Transform
- - uid: 13543
+ - uid: 13564
components:
- rot: 3.141592653589793 rad
pos: 15.5,-32.5
parent: 2
type: Transform
- - uid: 13544
+ - uid: 13565
components:
- rot: 3.141592653589793 rad
pos: -4.5,-11.5
parent: 2
type: Transform
- - uid: 13545
+ - uid: 13566
components:
- rot: 3.141592653589793 rad
pos: 15.5,-29.5
parent: 2
type: Transform
- - uid: 13546
+ - uid: 13567
components:
- rot: 3.141592653589793 rad
pos: 15.5,-36.5
parent: 2
type: Transform
- - uid: 13547
+ - uid: 13568
components:
- rot: 3.141592653589793 rad
pos: 15.5,-35.5
parent: 2
type: Transform
- - uid: 13548
+ - uid: 13569
components:
- rot: 3.141592653589793 rad
pos: 15.5,-27.5
parent: 2
type: Transform
- - uid: 13549
+ - uid: 13570
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-25.5
parent: 2
type: Transform
- - uid: 13550
+ - uid: 13571
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-25.5
parent: 2
type: Transform
- - uid: 13551
+ - uid: 13572
components:
- rot: 3.141592653589793 rad
pos: -3.5,-14.5
parent: 2
type: Transform
- - uid: 13552
+ - uid: 13573
components:
- rot: 3.141592653589793 rad
pos: -3.5,-17.5
parent: 2
type: Transform
- - uid: 13553
+ - uid: 13574
components:
- rot: 3.141592653589793 rad
pos: -3.5,-15.5
parent: 2
type: Transform
- - uid: 13554
+ - uid: 13575
components:
- pos: 17.5,-47.5
parent: 2
type: Transform
- - uid: 13555
+ - uid: 13576
components:
- rot: 1.5707963267948966 rad
pos: 33.5,16.5
parent: 2
type: Transform
- - uid: 13556
+ - uid: 13577
components:
- rot: 1.5707963267948966 rad
pos: 32.5,16.5
parent: 2
type: Transform
- - uid: 13557
+ - uid: 13578
components:
- rot: 1.5707963267948966 rad
pos: 31.5,16.5
parent: 2
type: Transform
- - uid: 13558
+ - uid: 13579
components:
- rot: 1.5707963267948966 rad
pos: 30.5,16.5
parent: 2
type: Transform
- - uid: 13559
+ - uid: 13580
components:
- rot: 3.141592653589793 rad
pos: 41.5,5.5
parent: 2
type: Transform
- - uid: 13560
+ - uid: 13581
components:
- rot: 3.141592653589793 rad
pos: 41.5,4.5
parent: 2
type: Transform
- - uid: 13561
+ - uid: 13582
components:
- rot: 3.141592653589793 rad
pos: 41.5,3.5
parent: 2
type: Transform
- - uid: 13562
+ - uid: 13583
components:
- rot: 3.141592653589793 rad
pos: 41.5,2.5
parent: 2
type: Transform
- - uid: 13563
+ - uid: 13584
components:
- rot: -1.5707963267948966 rad
pos: 40.5,1.5
parent: 2
type: Transform
- - uid: 13564
+ - uid: 13585
components:
- rot: -1.5707963267948966 rad
pos: 42.5,1.5
parent: 2
type: Transform
- - uid: 13565
+ - uid: 13586
components:
- rot: -1.5707963267948966 rad
pos: 43.5,1.5
parent: 2
type: Transform
- - uid: 13566
+ - uid: 13587
components:
- rot: -1.5707963267948966 rad
pos: 44.5,1.5
parent: 2
type: Transform
- - uid: 13567
+ - uid: 13588
components:
- rot: -1.5707963267948966 rad
pos: 45.5,1.5
parent: 2
type: Transform
- - uid: 13568
+ - uid: 13589
components:
- rot: -1.5707963267948966 rad
pos: 46.5,1.5
parent: 2
type: Transform
- - uid: 13569
+ - uid: 13590
components:
- rot: -1.5707963267948966 rad
pos: 47.5,1.5
parent: 2
type: Transform
- - uid: 13570
+ - uid: 13591
components:
- rot: -1.5707963267948966 rad
pos: 48.5,1.5
parent: 2
type: Transform
- - uid: 13571
+ - uid: 13592
components:
- rot: -1.5707963267948966 rad
pos: 49.5,1.5
parent: 2
type: Transform
- - uid: 13572
+ - uid: 13593
components:
- rot: -1.5707963267948966 rad
pos: 50.5,1.5
parent: 2
type: Transform
- - uid: 13573
+ - uid: 13594
components:
- rot: -1.5707963267948966 rad
pos: 51.5,1.5
parent: 2
type: Transform
- - uid: 13574
+ - uid: 13595
components:
- rot: 3.141592653589793 rad
pos: 52.5,2.5
parent: 2
type: Transform
- - uid: 13575
+ - uid: 13596
components:
- rot: 3.141592653589793 rad
pos: 52.5,0.5
parent: 2
type: Transform
- - uid: 13576
+ - uid: 13597
components:
- rot: 3.141592653589793 rad
pos: 52.5,-0.5
parent: 2
type: Transform
- - uid: 13577
+ - uid: 13598
components:
- rot: 3.141592653589793 rad
pos: 52.5,-1.5
parent: 2
type: Transform
- - uid: 13578
+ - uid: 13599
components:
- rot: 3.141592653589793 rad
pos: 52.5,-2.5
parent: 2
type: Transform
- - uid: 13579
+ - uid: 13600
components:
- rot: 3.141592653589793 rad
pos: 52.5,-3.5
parent: 2
type: Transform
- - uid: 13580
+ - uid: 13601
components:
- rot: 3.141592653589793 rad
pos: 52.5,-4.5
parent: 2
type: Transform
- - uid: 13581
+ - uid: 13602
components:
- rot: 3.141592653589793 rad
pos: 52.5,-5.5
parent: 2
type: Transform
- - uid: 13582
+ - uid: 13603
components:
- rot: 3.141592653589793 rad
pos: 52.5,-6.5
parent: 2
type: Transform
- - uid: 13583
+ - uid: 13604
components:
- rot: 3.141592653589793 rad
pos: 52.5,-7.5
parent: 2
type: Transform
- - uid: 13584
+ - uid: 13605
components:
- rot: 3.141592653589793 rad
pos: 52.5,-8.5
parent: 2
type: Transform
- - uid: 13585
+ - uid: 13606
components:
- pos: 25.5,-47.5
parent: 2
type: Transform
- - uid: 13586
+ - uid: 13607
components:
- pos: 25.5,-48.5
parent: 2
type: Transform
- - uid: 13587
+ - uid: 13608
components:
- pos: 25.5,-49.5
parent: 2
type: Transform
- - uid: 13588
+ - uid: 13609
components:
- pos: 25.5,-50.5
parent: 2
type: Transform
- - uid: 13589
+ - uid: 13610
components:
- pos: 25.5,-51.5
parent: 2
type: Transform
- - uid: 13590
+ - uid: 13611
components:
- pos: 25.5,-52.5
parent: 2
type: Transform
- - uid: 13591
+ - uid: 13612
components:
- rot: 3.141592653589793 rad
pos: 15.5,-37.5
parent: 2
type: Transform
- - uid: 13592
+ - uid: 13613
components:
- pos: 25.5,-54.5
parent: 2
type: Transform
- - uid: 13593
+ - uid: 13614
components:
- pos: 25.5,-55.5
parent: 2
type: Transform
- - uid: 13594
+ - uid: 13615
components:
- pos: 25.5,-56.5
parent: 2
type: Transform
- - uid: 13595
+ - uid: 13616
components:
- pos: 25.5,-57.5
parent: 2
type: Transform
- - uid: 13596
+ - uid: 13617
components:
- pos: 25.5,-58.5
parent: 2
type: Transform
- - uid: 13597
+ - uid: 13618
components:
- rot: 3.141592653589793 rad
pos: -3.5,-16.5
parent: 2
type: Transform
- - uid: 13598
+ - uid: 13619
components:
- pos: 52.5,-9.5
parent: 2
type: Transform
- - uid: 13599
+ - uid: 13620
components:
- pos: 52.5,-10.5
parent: 2
type: Transform
- - uid: 13600
+ - uid: 13621
components:
- pos: 52.5,-11.5
parent: 2
type: Transform
- - uid: 13601
+ - uid: 13622
components:
- pos: 52.5,-12.5
parent: 2
type: Transform
- - uid: 13602
+ - uid: 13623
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-13.5
parent: 2
type: Transform
- - uid: 13603
+ - uid: 13624
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-43.5
parent: 2
type: Transform
- - uid: 13604
+ - uid: 13625
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-43.5
parent: 2
type: Transform
- - uid: 13605
+ - uid: 13626
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-43.5
parent: 2
type: Transform
- - uid: 13606
+ - uid: 13627
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-43.5
parent: 2
type: Transform
- - uid: 13607
+ - uid: 13628
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-43.5
parent: 2
type: Transform
- - uid: 13608
+ - uid: 13629
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-43.5
parent: 2
type: Transform
- - uid: 13609
+ - uid: 13630
components:
- pos: 49.5,-44.5
parent: 2
type: Transform
- - uid: 13610
+ - uid: 13631
components:
- rot: 3.141592653589793 rad
pos: 49.5,-46.5
parent: 2
type: Transform
- - uid: 13611
+ - uid: 13632
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-47.5
parent: 2
type: Transform
- - uid: 13612
+ - uid: 13633
components:
- pos: 49.5,-48.5
parent: 2
type: Transform
- - uid: 13613
+ - uid: 13634
components:
- pos: 49.5,-49.5
parent: 2
type: Transform
- - uid: 13614
+ - uid: 13635
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-45.5
parent: 2
type: Transform
- - uid: 13615
+ - uid: 13636
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-45.5
parent: 2
type: Transform
- - uid: 13616
+ - uid: 13637
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-45.5
parent: 2
type: Transform
- - uid: 13617
+ - uid: 13638
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-45.5
parent: 2
type: Transform
- - uid: 13618
+ - uid: 13639
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-45.5
parent: 2
type: Transform
- - uid: 13619
+ - uid: 13640
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-45.5
parent: 2
type: Transform
- - uid: 13620
+ - uid: 13641
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-45.5
parent: 2
type: Transform
- - uid: 13621
+ - uid: 13642
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-45.5
parent: 2
type: Transform
- - uid: 13622
+ - uid: 13643
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-45.5
parent: 2
type: Transform
- - uid: 13623
+ - uid: 13644
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-45.5
parent: 2
type: Transform
- - uid: 13624
+ - uid: 13645
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-45.5
parent: 2
type: Transform
- - uid: 13625
+ - uid: 13646
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-45.5
parent: 2
type: Transform
- - uid: 13626
+ - uid: 13647
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-45.5
parent: 2
type: Transform
- - uid: 13627
+ - uid: 13648
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-45.5
parent: 2
type: Transform
- - uid: 13628
+ - uid: 13649
components:
- rot: 3.141592653589793 rad
pos: 46.5,-42.5
parent: 2
type: Transform
- - uid: 13629
+ - uid: 13650
components:
- rot: 3.141592653589793 rad
pos: 46.5,-41.5
parent: 2
type: Transform
- - uid: 13630
+ - uid: 13651
components:
- rot: 3.141592653589793 rad
pos: 46.5,-40.5
parent: 2
type: Transform
- - uid: 13631
+ - uid: 13652
components:
- rot: 3.141592653589793 rad
pos: 46.5,-39.5
parent: 2
type: Transform
- - uid: 13632
+ - uid: 13653
components:
- rot: 3.141592653589793 rad
pos: 46.5,-38.5
parent: 2
type: Transform
- - uid: 13633
+ - uid: 13654
components:
- rot: 3.141592653589793 rad
pos: 46.5,-37.5
parent: 2
type: Transform
- - uid: 13634
+ - uid: 13655
components:
- rot: 3.141592653589793 rad
pos: 46.5,-36.5
parent: 2
type: Transform
- - uid: 13635
+ - uid: 13656
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-45.5
parent: 2
type: Transform
- - uid: 13636
+ - uid: 13657
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-45.5
parent: 2
type: Transform
- - uid: 13637
+ - uid: 13658
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-45.5
parent: 2
type: Transform
- - uid: 13638
+ - uid: 13659
components:
- pos: 67.5,-46.5
parent: 2
type: Transform
- - uid: 13639
+ - uid: 13660
components:
- pos: 67.5,-48.5
parent: 2
type: Transform
- - uid: 13640
+ - uid: 13661
components:
- pos: 49.5,-56.5
parent: 2
type: Transform
- - uid: 13641
+ - uid: 13662
components:
- pos: 49.5,-57.5
parent: 2
type: Transform
- - uid: 13642
+ - uid: 13663
components:
- pos: 49.5,-58.5
parent: 2
type: Transform
- - uid: 13643
+ - uid: 13664
components:
- pos: 49.5,-59.5
parent: 2
type: Transform
- - uid: 13644
+ - uid: 13665
components:
- rot: 3.141592653589793 rad
pos: -3.5,-13.5
parent: 2
type: Transform
- - uid: 13645
+ - uid: 13666
components:
- pos: 29.5,-61.5
parent: 2
type: Transform
- - uid: 13646
+ - uid: 13667
components:
- rot: 3.141592653589793 rad
pos: 25.5,-59.5
parent: 2
type: Transform
- - uid: 13647
+ - uid: 13668
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-60.5
parent: 2
type: Transform
- - uid: 13648
+ - uid: 13669
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-60.5
parent: 2
type: Transform
- - uid: 13649
+ - uid: 13670
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-60.5
parent: 2
type: Transform
- - uid: 13650
+ - uid: 13671
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-60.5
parent: 2
type: Transform
- - uid: 13651
+ - uid: 13672
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-60.5
parent: 2
type: Transform
- - uid: 13652
+ - uid: 13673
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-60.5
parent: 2
type: Transform
- - uid: 13653
+ - uid: 13674
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-60.5
parent: 2
type: Transform
- - uid: 13654
+ - uid: 13675
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-60.5
parent: 2
type: Transform
- - uid: 13655
+ - uid: 13676
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-60.5
parent: 2
type: Transform
- - uid: 13656
+ - uid: 13677
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-60.5
parent: 2
type: Transform
- - uid: 13657
+ - uid: 13678
components:
- rot: 3.141592653589793 rad
pos: -23.5,-14.5
parent: 2
type: Transform
- - uid: 13658
+ - uid: 13679
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-13.5
parent: 2
type: Transform
- - uid: 13659
+ - uid: 13680
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-13.5
parent: 2
type: Transform
- - uid: 13660
+ - uid: 13681
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-13.5
parent: 2
type: Transform
- - uid: 13661
+ - uid: 13682
components:
- pos: -19.5,-14.5
parent: 2
type: Transform
- - uid: 13662
+ - uid: 13683
components:
- pos: -19.5,-15.5
parent: 2
type: Transform
- - uid: 13663
+ - uid: 13684
components:
- pos: -19.5,-16.5
parent: 2
type: Transform
- - uid: 13664
+ - uid: 13685
components:
- pos: -19.5,-17.5
parent: 2
type: Transform
- - uid: 13665
+ - uid: 13686
components:
- pos: -19.5,-18.5
parent: 2
type: Transform
- - uid: 13666
+ - uid: 13687
components:
- pos: -19.5,-19.5
parent: 2
type: Transform
- - uid: 13667
+ - uid: 13688
components:
- pos: -19.5,-20.5
parent: 2
type: Transform
- - uid: 13668
+ - uid: 13689
components:
- pos: -19.5,-21.5
parent: 2
type: Transform
- - uid: 13669
+ - uid: 13690
components:
- pos: -19.5,-22.5
parent: 2
type: Transform
- - uid: 13670
+ - uid: 13691
components:
- pos: -19.5,-23.5
parent: 2
type: Transform
- - uid: 13671
+ - uid: 13692
components:
- pos: -19.5,-24.5
parent: 2
type: Transform
- - uid: 13672
+ - uid: 13693
components:
- pos: -19.5,-25.5
parent: 2
type: Transform
- - uid: 13673
+ - uid: 13694
components:
- pos: -19.5,-26.5
parent: 2
type: Transform
- - uid: 13674
+ - uid: 13695
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-27.5
parent: 2
type: Transform
- - uid: 13675
+ - uid: 13696
components:
- pos: -19.5,-28.5
parent: 2
type: Transform
- - uid: 13676
+ - uid: 13697
components:
- pos: -19.5,-29.5
parent: 2
type: Transform
- - uid: 13677
+ - uid: 13698
components:
- pos: -19.5,-30.5
parent: 2
type: Transform
- - uid: 13678
+ - uid: 13699
components:
- pos: -19.5,-31.5
parent: 2
type: Transform
- - uid: 13679
+ - uid: 13700
components:
- pos: -19.5,-32.5
parent: 2
type: Transform
- - uid: 13680
+ - uid: 13701
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-13.5
parent: 2
type: Transform
- - uid: 13681
+ - uid: 13702
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-13.5
parent: 2
type: Transform
- - uid: 13682
+ - uid: 13703
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-13.5
parent: 2
type: Transform
- - uid: 13683
+ - uid: 13704
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-13.5
parent: 2
type: Transform
- - uid: 13684
+ - uid: 13705
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-13.5
parent: 2
type: Transform
- - uid: 13685
+ - uid: 13706
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-13.5
parent: 2
type: Transform
- - uid: 13686
+ - uid: 13707
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-13.5
parent: 2
type: Transform
- - uid: 13687
+ - uid: 13708
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-13.5
parent: 2
type: Transform
- - uid: 13688
+ - uid: 13709
components:
- rot: 3.141592653589793 rad
pos: 15.5,-39.5
parent: 2
type: Transform
- - uid: 13689
+ - uid: 13710
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-60.5
parent: 2
type: Transform
- - uid: 13690
+ - uid: 13711
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-60.5
parent: 2
type: Transform
- - uid: 13691
+ - uid: 13712
components:
- pos: 39.5,-61.5
parent: 2
type: Transform
- - uid: 13692
+ - uid: 13713
components:
- pos: 39.5,-62.5
parent: 2
type: Transform
- - uid: 13693
+ - uid: 13714
components:
- pos: 39.5,-63.5
parent: 2
type: Transform
- - uid: 13694
+ - uid: 13715
components:
- pos: 39.5,-64.5
parent: 2
type: Transform
- - uid: 13695
+ - uid: 13716
components:
- pos: 39.5,-65.5
parent: 2
type: Transform
- - uid: 13696
+ - uid: 13717
components:
- pos: 39.5,-66.5
parent: 2
type: Transform
- - uid: 13697
+ - uid: 13718
components:
- pos: 39.5,-67.5
parent: 2
type: Transform
- - uid: 13698
+ - uid: 13719
components:
- pos: 39.5,-68.5
parent: 2
type: Transform
- - uid: 13699
+ - uid: 13720
components:
- rot: 3.141592653589793 rad
pos: -19.5,-33.5
parent: 2
type: Transform
- - uid: 13700
+ - uid: 13721
components:
- rot: 3.141592653589793 rad
pos: -19.5,-34.5
parent: 2
type: Transform
- - uid: 13701
+ - uid: 13722
components:
- rot: 3.141592653589793 rad
pos: -19.5,-35.5
parent: 2
type: Transform
- - uid: 13702
+ - uid: 13723
components:
- rot: 3.141592653589793 rad
pos: -19.5,-36.5
parent: 2
type: Transform
- - uid: 13703
+ - uid: 13724
components:
- rot: 3.141592653589793 rad
pos: -19.5,-37.5
parent: 2
type: Transform
- - uid: 13704
+ - uid: 13725
components:
- rot: 3.141592653589793 rad
pos: -19.5,-38.5
parent: 2
type: Transform
- - uid: 13705
+ - uid: 13726
components:
- rot: 3.141592653589793 rad
pos: -19.5,-39.5
parent: 2
type: Transform
- - uid: 13706
+ - uid: 13727
components:
- rot: 3.141592653589793 rad
pos: -19.5,-40.5
parent: 2
type: Transform
- - uid: 13707
+ - uid: 13728
components:
- rot: 3.141592653589793 rad
pos: -19.5,-41.5
parent: 2
type: Transform
- - uid: 13708
+ - uid: 13729
components:
- rot: 3.141592653589793 rad
pos: -19.5,-42.5
parent: 2
type: Transform
- - uid: 13709
+ - uid: 13730
components:
- pos: 30.5,-80.5
parent: 2
type: Transform
- - uid: 13710
+ - uid: 13731
components:
- pos: 30.5,-78.5
parent: 2
type: Transform
- - uid: 13711
+ - uid: 13732
components:
- pos: 30.5,-79.5
parent: 2
type: Transform
- - uid: 13712
+ - uid: 13733
components:
- pos: 39.5,-69.5
parent: 2
type: Transform
- - uid: 13713
+ - uid: 13734
components:
- pos: 39.5,-70.5
parent: 2
type: Transform
- - uid: 13714
+ - uid: 13735
components:
- pos: 39.5,-71.5
parent: 2
type: Transform
- - uid: 13715
+ - uid: 13736
components:
- pos: 39.5,-72.5
parent: 2
type: Transform
- - uid: 13716
+ - uid: 13737
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-73.5
parent: 2
type: Transform
- - uid: 13717
+ - uid: 13738
components:
- pos: 30.5,-83.5
parent: 2
type: Transform
- - uid: 13718
+ - uid: 13739
components:
- pos: 30.5,-84.5
parent: 2
type: Transform
- - uid: 13719
+ - uid: 13740
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-86.5
parent: 2
type: Transform
- - uid: 13720
+ - uid: 13741
components:
- pos: 30.5,-85.5
parent: 2
type: Transform
- - uid: 13721
+ - uid: 13742
components:
- pos: -13.5,1.5
parent: 2
type: Transform
- - uid: 13722
+ - uid: 13743
components:
- pos: -13.5,-0.5
parent: 2
type: Transform
- - uid: 13723
+ - uid: 13744
components:
- pos: -13.5,-1.5
parent: 2
type: Transform
- - uid: 13724
+ - uid: 13745
components:
- pos: -13.5,-2.5
parent: 2
type: Transform
- - uid: 13725
+ - uid: 13746
components:
- pos: -13.5,-3.5
parent: 2
type: Transform
- - uid: 13726
+ - uid: 13747
components:
- pos: -13.5,-4.5
parent: 2
type: Transform
- - uid: 13727
+ - uid: 13748
components:
- pos: -13.5,-5.5
parent: 2
type: Transform
- - uid: 13728
+ - uid: 13749
components:
- pos: -13.5,2.5
parent: 2
type: Transform
- - uid: 13729
+ - uid: 13750
components:
- pos: -13.5,3.5
parent: 2
type: Transform
- - uid: 13730
+ - uid: 13751
components:
- pos: -13.5,4.5
parent: 2
type: Transform
- - uid: 13731
+ - uid: 13752
components:
- pos: -13.5,6.5
parent: 2
type: Transform
- - uid: 13732
+ - uid: 13753
components:
- pos: -13.5,7.5
parent: 2
type: Transform
- - uid: 13733
+ - uid: 13754
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-6.5
parent: 2
type: Transform
- - uid: 13734
+ - uid: 13755
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-6.5
parent: 2
type: Transform
- - uid: 13735
+ - uid: 13756
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-6.5
parent: 2
type: Transform
- - uid: 13736
+ - uid: 13757
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-6.5
parent: 2
type: Transform
- - uid: 13737
+ - uid: 13758
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-6.5
parent: 2
type: Transform
- - uid: 13738
+ - uid: 13759
components:
- pos: -19.5,-12.5
parent: 2
type: Transform
- - uid: 13739
+ - uid: 13760
components:
- pos: -19.5,-11.5
parent: 2
type: Transform
- - uid: 13740
+ - uid: 13761
components:
- pos: -19.5,-10.5
parent: 2
type: Transform
- - uid: 13741
+ - uid: 13762
components:
- pos: -19.5,-9.5
parent: 2
type: Transform
- - uid: 13742
+ - uid: 13763
components:
- pos: -19.5,-8.5
parent: 2
type: Transform
- - uid: 13743
+ - uid: 13764
components:
- pos: -19.5,-7.5
parent: 2
type: Transform
- - uid: 13744
+ - uid: 13765
components:
- rot: -1.5707963267948966 rad
pos: -14.5,8.5
parent: 2
type: Transform
- - uid: 13745
+ - uid: 13766
components:
- rot: -1.5707963267948966 rad
pos: -15.5,8.5
parent: 2
type: Transform
- - uid: 13746
+ - uid: 13767
components:
- rot: -1.5707963267948966 rad
pos: -17.5,8.5
parent: 2
type: Transform
- - uid: 13747
+ - uid: 13768
components:
- rot: -1.5707963267948966 rad
pos: -18.5,8.5
parent: 2
type: Transform
- - uid: 13748
+ - uid: 13769
components:
- rot: 3.141592653589793 rad
pos: -19.5,7.5
parent: 2
type: Transform
- - uid: 13749
+ - uid: 13770
components:
- rot: -1.5707963267948966 rad
pos: -20.5,6.5
parent: 2
type: Transform
- - uid: 13750
+ - uid: 13771
components:
- rot: -1.5707963267948966 rad
pos: -21.5,6.5
parent: 2
type: Transform
- - uid: 13751
+ - uid: 13772
components:
- rot: -1.5707963267948966 rad
pos: -22.5,6.5
parent: 2
type: Transform
- - uid: 13752
+ - uid: 13773
components:
- rot: -1.5707963267948966 rad
pos: -23.5,6.5
parent: 2
type: Transform
- - uid: 13753
+ - uid: 13774
components:
- rot: -1.5707963267948966 rad
pos: -24.5,6.5
parent: 2
type: Transform
- - uid: 13754
+ - uid: 13775
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-6.5
parent: 2
type: Transform
- - uid: 13755
+ - uid: 13776
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-6.5
parent: 2
type: Transform
- - uid: 13756
+ - uid: 13777
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-6.5
parent: 2
type: Transform
- - uid: 13757
+ - uid: 13778
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-6.5
parent: 2
type: Transform
- - uid: 13758
+ - uid: 13779
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-6.5
parent: 2
type: Transform
- - uid: 13759
+ - uid: 13780
components:
- pos: -25.5,5.5
parent: 2
type: Transform
- - uid: 13760
+ - uid: 13781
components:
- pos: -25.5,4.5
parent: 2
type: Transform
- - uid: 13761
+ - uid: 13782
components:
- pos: -25.5,3.5
parent: 2
type: Transform
- - uid: 13762
+ - uid: 13783
components:
- pos: -25.5,2.5
parent: 2
type: Transform
- - uid: 13763
+ - uid: 13784
components:
- pos: -25.5,1.5
parent: 2
type: Transform
- - uid: 13764
+ - uid: 13785
components:
- pos: -25.5,0.5
parent: 2
type: Transform
- - uid: 13765
+ - uid: 13786
components:
- pos: -25.5,-1.5
parent: 2
type: Transform
- - uid: 13766
+ - uid: 13787
components:
- pos: -25.5,-2.5
parent: 2
type: Transform
- - uid: 13767
+ - uid: 13788
components:
- pos: -25.5,-3.5
parent: 2
type: Transform
- - uid: 13768
+ - uid: 13789
components:
- pos: -25.5,-4.5
parent: 2
type: Transform
- - uid: 13769
+ - uid: 13790
components:
- pos: -25.5,-5.5
parent: 2
type: Transform
- - uid: 13770
+ - uid: 13791
components:
- pos: -19.5,9.5
parent: 2
type: Transform
- - uid: 13771
+ - uid: 13792
components:
- pos: -19.5,10.5
parent: 2
type: Transform
- - uid: 13772
+ - uid: 13793
components:
- pos: -19.5,11.5
parent: 2
type: Transform
- - uid: 13773
+ - uid: 13794
components:
- pos: -19.5,12.5
parent: 2
type: Transform
- - uid: 13774
+ - uid: 13795
components:
- rot: 1.5707963267948966 rad
pos: -26.5,6.5
parent: 2
type: Transform
- - uid: 13775
+ - uid: 13796
components:
- rot: 3.141592653589793 rad
pos: -32.5,-12.5
parent: 2
type: Transform
- - uid: 13776
+ - uid: 13797
components:
- rot: 3.141592653589793 rad
pos: -32.5,-11.5
parent: 2
type: Transform
- - uid: 13777
+ - uid: 13798
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-10.5
parent: 2
type: Transform
- - uid: 13778
+ - uid: 13799
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-10.5
parent: 2
type: Transform
- - uid: 13779
+ - uid: 13800
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-10.5
parent: 2
type: Transform
- - uid: 13780
+ - uid: 13801
components:
- pos: -36.5,-9.5
parent: 2
type: Transform
- - uid: 13781
+ - uid: 13802
components:
- pos: -36.5,-8.5
parent: 2
type: Transform
- - uid: 13782
+ - uid: 13803
components:
- pos: -36.5,-7.5
parent: 2
type: Transform
- - uid: 13783
+ - uid: 13804
components:
- pos: -36.5,-6.5
parent: 2
type: Transform
- - uid: 13784
+ - uid: 13805
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-5.5
parent: 2
type: Transform
- - uid: 13785
+ - uid: 13806
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-0.5
parent: 2
type: Transform
- - uid: 13786
+ - uid: 13807
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-0.5
parent: 2
type: Transform
- - uid: 13787
+ - uid: 13808
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-0.5
parent: 2
type: Transform
- - uid: 13788
+ - uid: 13809
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-0.5
parent: 2
type: Transform
- - uid: 13789
+ - uid: 13810
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-0.5
parent: 2
type: Transform
- - uid: 13790
+ - uid: 13811
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-75.5
parent: 2
type: Transform
- - uid: 13791
+ - uid: 13812
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-75.5
parent: 2
type: Transform
- - uid: 13792
+ - uid: 13813
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-75.5
parent: 2
type: Transform
- - uid: 13793
+ - uid: 13814
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-75.5
parent: 2
type: Transform
- - uid: 13794
+ - uid: 13815
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-75.5
parent: 2
type: Transform
- - uid: 13795
+ - uid: 13816
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-75.5
parent: 2
type: Transform
- - uid: 13796
+ - uid: 13817
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-75.5
parent: 2
type: Transform
- - uid: 13797
+ - uid: 13818
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-75.5
parent: 2
type: Transform
- - uid: 13798
+ - uid: 13819
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-75.5
parent: 2
type: Transform
- - uid: 13799
+ - uid: 13820
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-75.5
parent: 2
type: Transform
- - uid: 13800
+ - uid: 13821
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-75.5
parent: 2
type: Transform
- - uid: 13801
+ - uid: 13822
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-75.5
parent: 2
type: Transform
- - uid: 13802
+ - uid: 13823
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-75.5
parent: 2
type: Transform
- - uid: 13803
+ - uid: 13824
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-75.5
parent: 2
type: Transform
- - uid: 13804
+ - uid: 13825
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-75.5
parent: 2
type: Transform
- - uid: 13805
+ - uid: 13826
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-75.5
parent: 2
type: Transform
- - uid: 13806
+ - uid: 13827
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-75.5
parent: 2
type: Transform
- - uid: 13807
+ - uid: 13828
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-75.5
parent: 2
type: Transform
- - uid: 13808
+ - uid: 13829
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-75.5
parent: 2
type: Transform
- - uid: 13809
+ - uid: 13830
components:
- rot: 3.141592653589793 rad
pos: -19.5,-76.5
parent: 2
type: Transform
- - uid: 13810
+ - uid: 13831
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-77.5
parent: 2
type: Transform
- - uid: 13811
+ - uid: 13832
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-77.5
parent: 2
type: Transform
- - uid: 13812
+ - uid: 13833
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-77.5
parent: 2
type: Transform
- - uid: 13813
+ - uid: 13834
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-77.5
parent: 2
type: Transform
- - uid: 13814
+ - uid: 13835
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-77.5
parent: 2
type: Transform
- - uid: 13815
+ - uid: 13836
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-77.5
parent: 2
type: Transform
- - uid: 13816
+ - uid: 13837
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-77.5
parent: 2
type: Transform
- - uid: 13817
+ - uid: 13838
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-77.5
parent: 2
type: Transform
- - uid: 13818
+ - uid: 13839
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-77.5
parent: 2
type: Transform
- - uid: 13819
+ - uid: 13840
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-77.5
parent: 2
type: Transform
- - uid: 13820
+ - uid: 13841
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-77.5
parent: 2
type: Transform
- - uid: 13821
+ - uid: 13842
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-77.5
parent: 2
type: Transform
- - uid: 13822
+ - uid: 13843
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-77.5
parent: 2
type: Transform
- - uid: 13823
+ - uid: 13844
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-77.5
parent: 2
type: Transform
- - uid: 13824
+ - uid: 13845
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-77.5
parent: 2
type: Transform
- - uid: 13825
+ - uid: 13846
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-77.5
parent: 2
type: Transform
- - uid: 13826
+ - uid: 13847
components:
- pos: -36.5,-78.5
parent: 2
type: Transform
- - uid: 13827
+ - uid: 13848
components:
- pos: -36.5,-79.5
parent: 2
type: Transform
- - uid: 13828
+ - uid: 13849
components:
- rot: 3.141592653589793 rad
pos: -19.5,13.5
parent: 2
type: Transform
- - uid: 13829
+ - uid: 13850
components:
- rot: 3.141592653589793 rad
pos: -19.5,14.5
parent: 2
type: Transform
- - uid: 13830
+ - uid: 13851
components:
- rot: 3.141592653589793 rad
pos: -19.5,15.5
parent: 2
type: Transform
- - uid: 13831
+ - uid: 13852
components:
- rot: 3.141592653589793 rad
pos: -19.5,16.5
parent: 2
type: Transform
- - uid: 13832
+ - uid: 13853
components:
- rot: 3.141592653589793 rad
pos: -19.5,17.5
parent: 2
type: Transform
- - uid: 13833
+ - uid: 13854
components:
- rot: 3.141592653589793 rad
pos: -19.5,18.5
parent: 2
type: Transform
- - uid: 13834
+ - uid: 13855
components:
- rot: 3.141592653589793 rad
pos: -19.5,19.5
parent: 2
type: Transform
- - uid: 13835
+ - uid: 13856
components:
- rot: 3.141592653589793 rad
pos: -19.5,20.5
parent: 2
type: Transform
- - uid: 13836
+ - uid: 13857
components:
- rot: 3.141592653589793 rad
pos: -19.5,21.5
parent: 2
type: Transform
- - uid: 13837
+ - uid: 13858
components:
- rot: 3.141592653589793 rad
pos: -19.5,22.5
parent: 2
type: Transform
- - uid: 13838
+ - uid: 13859
components:
- rot: -1.5707963267948966 rad
pos: -20.5,23.5
parent: 2
type: Transform
- - uid: 13839
+ - uid: 13860
components:
- rot: -1.5707963267948966 rad
pos: -21.5,23.5
parent: 2
type: Transform
- - uid: 13840
+ - uid: 13861
components:
- rot: 3.141592653589793 rad
pos: -22.5,24.5
parent: 2
type: Transform
- - uid: 13841
+ - uid: 13862
components:
- rot: -1.5707963267948966 rad
pos: -41.5,19.5
parent: 2
type: Transform
- - uid: 13842
+ - uid: 13863
components:
- rot: -1.5707963267948966 rad
pos: -35.5,19.5
parent: 2
type: Transform
- - uid: 13843
+ - uid: 13864
components:
- rot: 1.5707963267948966 rad
pos: -23.5,23.5
parent: 2
type: Transform
- - uid: 13844
+ - uid: 13865
components:
- rot: 1.5707963267948966 rad
pos: -24.5,23.5
parent: 2
type: Transform
- - uid: 13845
+ - uid: 13866
components:
- rot: 1.5707963267948966 rad
pos: -25.5,23.5
parent: 2
type: Transform
- - uid: 13846
+ - uid: 13867
components:
- rot: 1.5707963267948966 rad
pos: -26.5,23.5
parent: 2
type: Transform
- - uid: 13847
+ - uid: 13868
components:
- rot: 1.5707963267948966 rad
pos: -27.5,23.5
parent: 2
type: Transform
- - uid: 13848
+ - uid: 13869
components:
- rot: 1.5707963267948966 rad
pos: -28.5,23.5
parent: 2
type: Transform
- - uid: 13849
+ - uid: 13870
components:
- rot: 1.5707963267948966 rad
pos: -29.5,23.5
parent: 2
type: Transform
- - uid: 13850
+ - uid: 13871
components:
- rot: 1.5707963267948966 rad
pos: -30.5,23.5
parent: 2
type: Transform
- - uid: 13851
+ - uid: 13872
components:
- rot: 1.5707963267948966 rad
pos: -31.5,23.5
parent: 2
type: Transform
- - uid: 13852
+ - uid: 13873
components:
- rot: 1.5707963267948966 rad
pos: -32.5,23.5
parent: 2
type: Transform
- - uid: 13853
+ - uid: 13874
components:
- rot: 1.5707963267948966 rad
pos: -33.5,23.5
parent: 2
type: Transform
- - uid: 13854
+ - uid: 13875
components:
- rot: 1.5707963267948966 rad
pos: -34.5,23.5
parent: 2
type: Transform
- - uid: 13855
+ - uid: 13876
components:
- rot: 1.5707963267948966 rad
pos: -35.5,23.5
parent: 2
type: Transform
- - uid: 13856
+ - uid: 13877
components:
- rot: 1.5707963267948966 rad
pos: -36.5,23.5
parent: 2
type: Transform
- - uid: 13857
+ - uid: 13878
components:
- rot: 1.5707963267948966 rad
pos: -37.5,23.5
parent: 2
type: Transform
- - uid: 13858
+ - uid: 13879
components:
- rot: 1.5707963267948966 rad
pos: -38.5,23.5
parent: 2
type: Transform
- - uid: 13859
+ - uid: 13880
components:
- rot: 3.141592653589793 rad
pos: -46.5,10.5
parent: 2
type: Transform
- - uid: 13860
+ - uid: 13881
components:
- rot: 1.5707963267948966 rad
pos: -40.5,23.5
parent: 2
type: Transform
- - uid: 13861
+ - uid: 13882
components:
- rot: 1.5707963267948966 rad
pos: -41.5,23.5
parent: 2
type: Transform
- - uid: 13862
+ - uid: 13883
components:
- rot: 3.141592653589793 rad
pos: -42.5,24.5
parent: 2
type: Transform
- - uid: 13863
+ - uid: 13884
components:
- rot: 3.141592653589793 rad
pos: -42.5,25.5
parent: 2
type: Transform
- - uid: 13864
+ - uid: 13885
components:
- rot: 3.141592653589793 rad
pos: -42.5,26.5
parent: 2
type: Transform
- - uid: 13865
+ - uid: 13886
components:
- rot: -1.5707963267948966 rad
pos: -38.5,19.5
parent: 2
type: Transform
- - uid: 13866
+ - uid: 13887
components:
- pos: -42.5,18.5
parent: 2
type: Transform
- - uid: 13867
+ - uid: 13888
components:
- pos: -42.5,17.5
parent: 2
type: Transform
- - uid: 13868
+ - uid: 13889
components:
- pos: -42.5,15.5
parent: 2
type: Transform
- - uid: 13869
+ - uid: 13890
components:
- pos: -42.5,16.5
parent: 2
type: Transform
- - uid: 13870
+ - uid: 13891
components:
- rot: 3.141592653589793 rad
pos: -5.5,-19.5
parent: 2
type: Transform
- - uid: 13871
+ - uid: 13892
components:
- rot: 3.141592653589793 rad
pos: -5.5,-17.5
parent: 2
type: Transform
- - uid: 13872
+ - uid: 13893
components:
- rot: -1.5707963267948966 rad
pos: -44.5,5.5
parent: 2
type: Transform
- - uid: 13873
+ - uid: 13894
components:
- pos: -45.5,4.5
parent: 2
type: Transform
- - uid: 13874
+ - uid: 13895
components:
- pos: -45.5,3.5
parent: 2
type: Transform
- - uid: 13875
+ - uid: 13896
components:
- pos: -45.5,2.5
parent: 2
type: Transform
- - uid: 13876
+ - uid: 13897
components:
- pos: -45.5,1.5
parent: 2
type: Transform
- - uid: 13877
+ - uid: 13898
components:
- pos: -45.5,0.5
parent: 2
type: Transform
- - uid: 13878
+ - uid: 13899
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-0.5
parent: 2
type: Transform
- - uid: 13879
+ - uid: 13900
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-0.5
parent: 2
type: Transform
- - uid: 13880
+ - uid: 13901
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-0.5
parent: 2
type: Transform
- - uid: 13881
+ - uid: 13902
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-0.5
parent: 2
type: Transform
- - uid: 13882
+ - uid: 13903
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-0.5
parent: 2
type: Transform
- - uid: 13883
+ - uid: 13904
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-0.5
parent: 2
type: Transform
- - uid: 13884
+ - uid: 13905
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-0.5
parent: 2
type: Transform
- - uid: 13885
+ - uid: 13906
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-0.5
parent: 2
type: Transform
- - uid: 13886
+ - uid: 13907
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-0.5
parent: 2
type: Transform
- - uid: 13887
+ - uid: 13908
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-0.5
parent: 2
type: Transform
- - uid: 13888
+ - uid: 13909
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-0.5
parent: 2
type: Transform
- - uid: 13889
+ - uid: 13910
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-0.5
parent: 2
type: Transform
- - uid: 13890
+ - uid: 13911
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-0.5
parent: 2
type: Transform
- - uid: 13891
+ - uid: 13912
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-0.5
parent: 2
type: Transform
- - uid: 13892
+ - uid: 13913
components:
- rot: 3.141592653589793 rad
pos: -5.5,-20.5
parent: 2
type: Transform
- - uid: 13893
+ - uid: 13914
components:
- rot: 3.141592653589793 rad
pos: -5.5,-18.5
parent: 2
type: Transform
- - uid: 13894
+ - uid: 13915
components:
- rot: -1.5707963267948966 rad
pos: -42.5,18.5
parent: 2
type: Transform
- - uid: 13895
+ - uid: 13916
components:
- rot: 3.141592653589793 rad
pos: -3.5,-22.5
parent: 2
type: Transform
- - uid: 13896
+ - uid: 13917
components:
- rot: 3.141592653589793 rad
pos: -3.5,-23.5
parent: 2
type: Transform
- - uid: 13897
+ - uid: 13918
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-9.5
parent: 2
type: Transform
- - uid: 13898
+ - uid: 13919
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-86.5
parent: 2
type: Transform
- - uid: 13899
+ - uid: 13920
components:
- rot: 3.141592653589793 rad
pos: 15.5,-30.5
parent: 2
type: Transform
- - uid: 13900
+ - uid: 13921
components:
- rot: 3.141592653589793 rad
pos: 25.5,-53.5
parent: 2
type: Transform
- - uid: 13901
+ - uid: 13922
components:
- rot: 3.141592653589793 rad
pos: 18.5,-53.5
parent: 2
type: Transform
- - uid: 13902
+ - uid: 13923
components:
- rot: 3.141592653589793 rad
pos: 15.5,-40.5
parent: 2
type: Transform
- - uid: 13903
+ - uid: 13924
components:
- rot: 3.141592653589793 rad
pos: 15.5,-38.5
parent: 2
type: Transform
- - uid: 13904
+ - uid: 13925
components:
- pos: -5.5,-55.5
parent: 2
type: Transform
- - uid: 13905
+ - uid: 13926
components:
- pos: -5.5,-56.5
parent: 2
type: Transform
- - uid: 13906
+ - uid: 13927
components:
- pos: -5.5,-57.5
parent: 2
type: Transform
- - uid: 13907
+ - uid: 13928
components:
- pos: -5.5,-58.5
parent: 2
type: Transform
- - uid: 13908
+ - uid: 13929
components:
- pos: -5.5,-59.5
parent: 2
type: Transform
- - uid: 13909
+ - uid: 13930
components:
- pos: -5.5,-60.5
parent: 2
type: Transform
- - uid: 13910
+ - uid: 13931
components:
- pos: -6.5,-62.5
parent: 2
type: Transform
- - uid: 13911
+ - uid: 13932
components:
- pos: -6.5,-63.5
parent: 2
type: Transform
- - uid: 13912
+ - uid: 13933
components:
- pos: -6.5,-64.5
parent: 2
type: Transform
- - uid: 13913
+ - uid: 13934
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-66.5
parent: 2
type: Transform
- - uid: 13914
+ - uid: 13935
components:
- rot: 3.141592653589793 rad
pos: -3.5,-66.5
parent: 2
type: Transform
- - uid: 13915
+ - uid: 13936
components:
- rot: 3.141592653589793 rad
pos: -3.5,-65.5
parent: 2
type: Transform
- - uid: 13916
+ - uid: 13937
components:
- rot: 3.141592653589793 rad
pos: -3.5,-64.5
parent: 2
type: Transform
- - uid: 13917
+ - uid: 13938
components:
- rot: 3.141592653589793 rad
pos: -3.5,-63.5
parent: 2
type: Transform
- - uid: 13918
+ - uid: 13939
components:
- rot: 3.141592653589793 rad
pos: -3.5,-62.5
parent: 2
type: Transform
- - uid: 13919
+ - uid: 13940
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-61.5
parent: 2
type: Transform
- - uid: 13920
+ - uid: 13941
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-61.5
parent: 2
type: Transform
- - uid: 13921
+ - uid: 13942
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-61.5
parent: 2
type: Transform
- - uid: 13922
+ - uid: 13943
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-61.5
parent: 2
type: Transform
- - uid: 13923
+ - uid: 13944
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-61.5
parent: 2
type: Transform
- - uid: 13924
+ - uid: 13945
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-61.5
parent: 2
type: Transform
- - uid: 13925
+ - uid: 13946
components:
- pos: 2.5,-62.5
parent: 2
type: Transform
- - uid: 13926
+ - uid: 13947
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-61.5
parent: 2
type: Transform
- - uid: 13927
+ - uid: 13948
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-61.5
parent: 2
type: Transform
- - uid: 13928
+ - uid: 13949
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-61.5
parent: 2
type: Transform
- - uid: 13929
+ - uid: 13950
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-61.5
parent: 2
type: Transform
- - uid: 13930
+ - uid: 13951
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-61.5
parent: 2
type: Transform
- - uid: 13931
+ - uid: 13952
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-61.5
parent: 2
type: Transform
- - uid: 13932
+ - uid: 13953
components:
- pos: -13.5,-62.5
parent: 2
type: Transform
- - uid: 13933
+ - uid: 13954
components:
- rot: 3.141592653589793 rad
pos: -13.5,-63.5
parent: 2
type: Transform
- - uid: 13934
+ - uid: 13955
components:
- rot: 3.141592653589793 rad
pos: -13.5,-64.5
parent: 2
type: Transform
- - uid: 13935
+ - uid: 13956
components:
- rot: 3.141592653589793 rad
pos: -13.5,-65.5
parent: 2
type: Transform
- - uid: 13936
+ - uid: 13957
components:
- rot: 3.141592653589793 rad
pos: -13.5,-66.5
parent: 2
type: Transform
- - uid: 13937
+ - uid: 13958
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-67.5
parent: 2
type: Transform
- - uid: 13938
+ - uid: 13959
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-67.5
parent: 2
type: Transform
- - uid: 13939
+ - uid: 13960
components:
- rot: 3.141592653589793 rad
pos: -3.5,-26.5
parent: 2
type: Transform
- - uid: 13940
+ - uid: 13961
components:
- rot: 3.141592653589793 rad
pos: -12.5,6.5
parent: 2
type: Transform
- - uid: 13941
+ - uid: 13962
components:
- rot: 3.141592653589793 rad
pos: -12.5,7.5
parent: 2
type: Transform
- - uid: 13942
+ - uid: 13963
components:
- pos: -45.5,12.5
parent: 2
type: Transform
- - uid: 13943
+ - uid: 13964
components:
- pos: -45.5,13.5
parent: 2
type: Transform
- - uid: 13944
+ - uid: 13965
components:
- rot: 1.5707963267948966 rad
pos: -44.5,18.5
parent: 2
type: Transform
- - uid: 13945
+ - uid: 13966
components:
- rot: -1.5707963267948966 rad
pos: -39.5,23.5
parent: 2
type: Transform
- - uid: 13946
+ - uid: 13967
components:
- pos: -45.5,14.5
parent: 2
type: Transform
- - uid: 13947
+ - uid: 13968
components:
- pos: -45.5,15.5
parent: 2
type: Transform
- - uid: 13948
+ - uid: 13969
components:
- pos: -45.5,16.5
parent: 2
type: Transform
- - uid: 13949
+ - uid: 13970
components:
- pos: -45.5,17.5
parent: 2
type: Transform
- - uid: 13950
+ - uid: 13971
components:
- rot: -1.5707963267948966 rad
pos: -43.5,18.5
parent: 2
type: Transform
- - uid: 13951
+ - uid: 13972
components:
- pos: -19.5,24.5
parent: 2
type: Transform
- - uid: 13952
+ - uid: 13973
components:
- pos: -19.5,25.5
parent: 2
type: Transform
- - uid: 13953
+ - uid: 13974
components:
- pos: -19.5,26.5
parent: 2
type: Transform
- - uid: 13954
+ - uid: 13975
components:
- pos: -19.5,27.5
parent: 2
type: Transform
- - uid: 13955
+ - uid: 13976
components:
- pos: -19.5,28.5
parent: 2
type: Transform
- - uid: 13956
+ - uid: 13977
components:
- rot: 1.5707963267948966 rad
pos: -18.5,29.5
parent: 2
type: Transform
- - uid: 13957
+ - uid: 13978
components:
- rot: 1.5707963267948966 rad
pos: -17.5,29.5
parent: 2
type: Transform
- - uid: 13958
+ - uid: 13979
components:
- rot: 1.5707963267948966 rad
pos: -16.5,29.5
parent: 2
type: Transform
- - uid: 13959
+ - uid: 13980
components:
- rot: 3.141592653589793 rad
pos: -15.5,30.5
parent: 2
type: Transform
- - uid: 13960
+ - uid: 13981
components:
- rot: 3.141592653589793 rad
pos: -15.5,31.5
parent: 2
type: Transform
- - uid: 13961
+ - uid: 13982
components:
- rot: 3.141592653589793 rad
pos: -15.5,32.5
parent: 2
type: Transform
- - uid: 13962
+ - uid: 13983
components:
- rot: 3.141592653589793 rad
pos: -15.5,33.5
parent: 2
type: Transform
- - uid: 13963
+ - uid: 13984
components:
- rot: 3.141592653589793 rad
pos: -15.5,34.5
parent: 2
type: Transform
- - uid: 13964
+ - uid: 13985
components:
- rot: 3.141592653589793 rad
pos: -15.5,35.5
parent: 2
type: Transform
- - uid: 13965
+ - uid: 13986
components:
- rot: 3.141592653589793 rad
pos: -15.5,36.5
parent: 2
type: Transform
- - uid: 13966
+ - uid: 13987
components:
- rot: -1.5707963267948966 rad
pos: -16.5,37.5
parent: 2
type: Transform
- - uid: 13967
+ - uid: 13988
components:
- pos: -15.5,38.5
parent: 2
type: Transform
- - uid: 13968
+ - uid: 13989
components:
- pos: -15.5,39.5
parent: 2
type: Transform
- - uid: 13969
+ - uid: 13990
components:
- pos: -15.5,40.5
parent: 2
type: Transform
- - uid: 13970
+ - uid: 13991
components:
- pos: -15.5,41.5
parent: 2
type: Transform
- - uid: 13971
+ - uid: 13992
components:
- pos: -15.5,42.5
parent: 2
type: Transform
- - uid: 13972
+ - uid: 13993
components:
- pos: -15.5,43.5
parent: 2
type: Transform
- - uid: 13973
+ - uid: 13994
components:
- rot: -1.5707963267948966 rad
pos: -14.5,44.5
parent: 2
type: Transform
- - uid: 13974
+ - uid: 13995
components:
- rot: -1.5707963267948966 rad
pos: -13.5,44.5
parent: 2
type: Transform
- - uid: 13975
+ - uid: 13996
components:
- rot: -1.5707963267948966 rad
pos: -12.5,44.5
parent: 2
type: Transform
- - uid: 13976
+ - uid: 13997
components:
- rot: -1.5707963267948966 rad
pos: -11.5,44.5
parent: 2
type: Transform
- - uid: 13977
+ - uid: 13998
components:
- rot: -1.5707963267948966 rad
pos: -16.5,44.5
parent: 2
type: Transform
- - uid: 13978
+ - uid: 13999
components:
- rot: 3.141592653589793 rad
pos: -17.5,45.5
parent: 2
type: Transform
- - uid: 13979
+ - uid: 14000
components:
- rot: 3.141592653589793 rad
pos: -17.5,46.5
parent: 2
type: Transform
- - uid: 13980
+ - uid: 14001
components:
- rot: 3.141592653589793 rad
pos: -17.5,47.5
parent: 2
type: Transform
- - uid: 13981
+ - uid: 14002
components:
- rot: 3.141592653589793 rad
pos: -17.5,48.5
parent: 2
type: Transform
- - uid: 13982
+ - uid: 14003
components:
- rot: 3.141592653589793 rad
pos: -17.5,49.5
parent: 2
type: Transform
- - uid: 13983
+ - uid: 14004
components:
- rot: -1.5707963267948966 rad
pos: -5.5,44.5
parent: 2
type: Transform
- - uid: 13984
+ - uid: 14005
components:
- rot: -1.5707963267948966 rad
pos: -6.5,44.5
parent: 2
type: Transform
- - uid: 13985
+ - uid: 14006
components:
- rot: -1.5707963267948966 rad
pos: -7.5,44.5
parent: 2
type: Transform
- - uid: 13986
+ - uid: 14007
components:
- rot: -1.5707963267948966 rad
pos: -8.5,44.5
parent: 2
type: Transform
- - uid: 13987
+ - uid: 14008
components:
- rot: -1.5707963267948966 rad
pos: -9.5,44.5
parent: 2
type: Transform
- - uid: 13988
+ - uid: 14009
components:
- rot: -1.5707963267948966 rad
pos: -10.5,44.5
parent: 2
type: Transform
- - uid: 13989
+ - uid: 14010
components:
- rot: -1.5707963267948966 rad
pos: -14.5,50.5
parent: 2
type: Transform
- - uid: 13990
+ - uid: 14011
components:
- rot: -1.5707963267948966 rad
pos: -16.5,50.5
parent: 2
type: Transform
- - uid: 13991
+ - uid: 14012
components:
- rot: -1.5707963267948966 rad
pos: -15.5,50.5
parent: 2
type: Transform
- - uid: 13992
+ - uid: 14013
components:
- pos: -37.5,-94.5
parent: 2
type: Transform
- - uid: 13993
+ - uid: 14014
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-95.5
parent: 2
type: Transform
- - uid: 13994
+ - uid: 14015
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-95.5
parent: 2
type: Transform
- - uid: 13995
+ - uid: 14016
components:
- rot: 3.141592653589793 rad
pos: -41.5,-94.5
parent: 2
type: Transform
- - uid: 13996
+ - uid: 14017
components:
- rot: 3.141592653589793 rad
pos: -41.5,-93.5
parent: 2
type: Transform
- - uid: 13997
+ - uid: 14018
components:
- rot: 3.141592653589793 rad
pos: -41.5,-92.5
parent: 2
type: Transform
- - uid: 13998
+ - uid: 14019
components:
- rot: 3.141592653589793 rad
pos: -41.5,-91.5
parent: 2
type: Transform
- - uid: 13999
+ - uid: 14020
components:
- rot: 3.141592653589793 rad
pos: -41.5,-90.5
parent: 2
type: Transform
- - uid: 14000
+ - uid: 14021
components:
- rot: 3.141592653589793 rad
pos: -41.5,-89.5
parent: 2
type: Transform
- - uid: 14001
+ - uid: 14022
components:
- rot: 3.141592653589793 rad
pos: -41.5,-88.5
parent: 2
type: Transform
- - uid: 14002
+ - uid: 14023
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-47.5
parent: 2
type: Transform
- - uid: 14003
+ - uid: 14024
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-47.5
parent: 2
type: Transform
- - uid: 14004
+ - uid: 14025
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-47.5
parent: 2
type: Transform
- - uid: 14005
+ - uid: 14026
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-47.5
parent: 2
type: Transform
- - uid: 14006
+ - uid: 14027
components:
- rot: 1.5707963267948966 rad
pos: 72.5,-47.5
parent: 2
type: Transform
- - uid: 14007
+ - uid: 14028
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-47.5
parent: 2
type: Transform
- - uid: 14008
+ - uid: 14029
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-47.5
parent: 2
type: Transform
- - uid: 14009
+ - uid: 14030
components:
- rot: 3.141592653589793 rad
pos: 75.5,-46.5
parent: 2
type: Transform
- - uid: 14010
+ - uid: 14031
components:
- rot: 3.141592653589793 rad
pos: 75.5,-45.5
parent: 2
type: Transform
- - uid: 14011
+ - uid: 14032
components:
- rot: 3.141592653589793 rad
pos: 75.5,-44.5
parent: 2
type: Transform
- - uid: 14012
+ - uid: 14033
components:
- rot: 3.141592653589793 rad
pos: 75.5,-43.5
parent: 2
type: Transform
- - uid: 14013
+ - uid: 14034
components:
- rot: 3.141592653589793 rad
pos: 75.5,-42.5
parent: 2
type: Transform
- - uid: 14014
+ - uid: 14035
components:
- rot: 3.141592653589793 rad
pos: 75.5,-41.5
parent: 2
type: Transform
- - uid: 14015
+ - uid: 14036
components:
- rot: 3.141592653589793 rad
pos: 75.5,-40.5
parent: 2
type: Transform
- - uid: 14016
+ - uid: 14037
components:
- rot: 3.141592653589793 rad
pos: 75.5,-39.5
parent: 2
type: Transform
- - uid: 14017
+ - uid: 14038
components:
- rot: 3.141592653589793 rad
pos: 75.5,-38.5
parent: 2
type: Transform
- - uid: 14018
+ - uid: 14039
components:
- rot: 3.141592653589793 rad
pos: 75.5,-37.5
parent: 2
type: Transform
- - uid: 14019
+ - uid: 14040
components:
- rot: 3.141592653589793 rad
pos: 75.5,-36.5
parent: 2
type: Transform
- - uid: 14020
+ - uid: 14041
components:
- rot: 3.141592653589793 rad
pos: 75.5,-35.5
parent: 2
type: Transform
- - uid: 14021
+ - uid: 14042
components:
- rot: 3.141592653589793 rad
pos: 75.5,-34.5
parent: 2
type: Transform
- - uid: 14022
+ - uid: 14043
components:
- rot: 3.141592653589793 rad
pos: 75.5,-33.5
parent: 2
type: Transform
- - uid: 14023
+ - uid: 14044
components:
- rot: 3.141592653589793 rad
pos: -4.5,-3.5
parent: 2
type: Transform
- - uid: 14024
+ - uid: 14045
components:
- rot: 3.141592653589793 rad
pos: -4.5,-4.5
parent: 2
type: Transform
- - uid: 14025
+ - uid: 14046
components:
- rot: 3.141592653589793 rad
pos: 15.5,-31.5
parent: 2
type: Transform
- - uid: 14026
+ - uid: 14047
components:
- pos: -42.5,14.5
parent: 2
type: Transform
- - uid: 14027
+ - uid: 14048
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-64.5
parent: 2
type: Transform
- - uid: 14028
+ - uid: 14049
components:
- pos: 30.5,-81.5
parent: 2
type: Transform
- - uid: 14029
+ - uid: 14050
components:
- rot: 3.141592653589793 rad
pos: -5.5,-16.5
parent: 2
type: Transform
- - uid: 14030
+ - uid: 14051
components:
- rot: 3.141592653589793 rad
pos: -5.5,-15.5
parent: 2
type: Transform
- - uid: 14031
+ - uid: 14052
components:
- rot: 3.141592653589793 rad
pos: -5.5,-14.5
parent: 2
type: Transform
- - uid: 14032
+ - uid: 14053
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-13.5
parent: 2
type: Transform
- - uid: 14033
+ - uid: 14054
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-13.5
parent: 2
type: Transform
- - uid: 14034
+ - uid: 14055
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-13.5
parent: 2
type: Transform
- - uid: 14035
+ - uid: 14056
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-13.5
parent: 2
type: Transform
- - uid: 14036
+ - uid: 14057
components:
- pos: -12.5,-13.5
parent: 2
type: Transform
- - uid: 14037
+ - uid: 14058
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-14.5
parent: 2
type: Transform
- - uid: 14038
+ - uid: 14059
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-14.5
parent: 2
type: Transform
- - uid: 14039
+ - uid: 14060
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-14.5
parent: 2
type: Transform
- - uid: 14040
+ - uid: 14061
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-14.5
parent: 2
type: Transform
- - uid: 14041
+ - uid: 14062
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-14.5
parent: 2
type: Transform
- - uid: 14042
+ - uid: 14063
components:
- rot: 3.141592653589793 rad
pos: -18.5,-13.5
parent: 2
type: Transform
- - uid: 14043
+ - uid: 14064
components:
- rot: 3.141592653589793 rad
pos: -18.5,-12.5
parent: 2
type: Transform
- - uid: 14044
+ - uid: 14065
components:
- rot: 3.141592653589793 rad
pos: -18.5,-11.5
parent: 2
type: Transform
- - uid: 14045
+ - uid: 14066
components:
- rot: 3.141592653589793 rad
pos: -18.5,-10.5
parent: 2
type: Transform
- - uid: 14046
+ - uid: 14067
components:
- rot: 3.141592653589793 rad
pos: -18.5,-9.5
parent: 2
type: Transform
- - uid: 14047
+ - uid: 14068
components:
- rot: 3.141592653589793 rad
pos: -18.5,-8.5
parent: 2
type: Transform
- - uid: 14048
+ - uid: 14069
components:
- rot: 3.141592653589793 rad
pos: -18.5,-7.5
parent: 2
type: Transform
- - uid: 14049
+ - uid: 14070
components:
- rot: 3.141592653589793 rad
pos: -18.5,-6.5
parent: 2
type: Transform
- - uid: 14050
+ - uid: 14071
components:
- rot: 3.141592653589793 rad
pos: -18.5,-5.5
parent: 2
type: Transform
- - uid: 14051
+ - uid: 14072
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-4.5
parent: 2
type: Transform
- - uid: 14052
+ - uid: 14073
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-4.5
parent: 2
type: Transform
- - uid: 14053
+ - uid: 14074
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-4.5
parent: 2
type: Transform
- - uid: 14054
+ - uid: 14075
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-4.5
parent: 2
type: Transform
- - uid: 14055
+ - uid: 14076
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-4.5
parent: 2
type: Transform
- - uid: 14056
+ - uid: 14077
components:
- rot: 3.141592653589793 rad
pos: -24.5,-3.5
parent: 2
type: Transform
- - uid: 14057
+ - uid: 14078
components:
- rot: 3.141592653589793 rad
pos: -24.5,-2.5
parent: 2
type: Transform
- - uid: 14058
+ - uid: 14079
components:
- rot: 3.141592653589793 rad
pos: -24.5,-1.5
parent: 2
type: Transform
- - uid: 14059
+ - uid: 14080
components:
- rot: 3.141592653589793 rad
pos: -24.5,-0.5
parent: 2
type: Transform
- - uid: 14060
+ - uid: 14081
components:
- rot: 3.141592653589793 rad
pos: -24.5,0.5
parent: 2
type: Transform
- - uid: 14061
+ - uid: 14082
components:
- rot: 3.141592653589793 rad
pos: -24.5,1.5
parent: 2
type: Transform
- - uid: 14062
+ - uid: 14083
components:
- rot: 3.141592653589793 rad
pos: -24.5,2.5
parent: 2
type: Transform
- - uid: 14063
+ - uid: 14084
components:
- rot: 3.141592653589793 rad
pos: -24.5,3.5
parent: 2
type: Transform
- - uid: 14064
+ - uid: 14085
components:
- rot: 3.141592653589793 rad
pos: -24.5,4.5
parent: 2
type: Transform
- - uid: 14065
+ - uid: 14086
components:
- rot: 3.141592653589793 rad
pos: -24.5,5.5
parent: 2
type: Transform
- - uid: 14066
+ - uid: 14087
components:
- rot: 3.141592653589793 rad
pos: -24.5,6.5
parent: 2
type: Transform
- - uid: 14067
+ - uid: 14088
components:
- rot: 3.141592653589793 rad
pos: -24.5,7.5
parent: 2
type: Transform
- - uid: 14068
+ - uid: 14089
components:
- rot: 1.5707963267948966 rad
pos: -23.5,8.5
parent: 2
type: Transform
- - uid: 14069
+ - uid: 14090
components:
- rot: 1.5707963267948966 rad
pos: -22.5,8.5
parent: 2
type: Transform
- - uid: 14070
+ - uid: 14091
components:
- rot: 1.5707963267948966 rad
pos: -21.5,8.5
parent: 2
type: Transform
- - uid: 14071
+ - uid: 14092
components:
- rot: 3.141592653589793 rad
pos: -20.5,9.5
parent: 2
type: Transform
- - uid: 14072
+ - uid: 14093
components:
- rot: 3.141592653589793 rad
pos: -20.5,10.5
parent: 2
type: Transform
- - uid: 14073
+ - uid: 14094
components:
- rot: 3.141592653589793 rad
pos: -20.5,11.5
parent: 2
type: Transform
- - uid: 14074
+ - uid: 14095
components:
- rot: 3.141592653589793 rad
pos: -20.5,12.5
parent: 2
type: Transform
- - uid: 14075
+ - uid: 14096
components:
- rot: 3.141592653589793 rad
pos: -20.5,13.5
parent: 2
type: Transform
- - uid: 14076
+ - uid: 14097
components:
- rot: 3.141592653589793 rad
pos: -20.5,14.5
parent: 2
type: Transform
- - uid: 14077
+ - uid: 14098
components:
- rot: 3.141592653589793 rad
pos: -20.5,15.5
parent: 2
type: Transform
- - uid: 14078
+ - uid: 14099
components:
- rot: 3.141592653589793 rad
pos: -20.5,16.5
parent: 2
type: Transform
- - uid: 14079
+ - uid: 14100
components:
- rot: 3.141592653589793 rad
pos: -20.5,17.5
parent: 2
type: Transform
- - uid: 14080
+ - uid: 14101
components:
- rot: 3.141592653589793 rad
pos: -20.5,18.5
parent: 2
type: Transform
- - uid: 14081
+ - uid: 14102
components:
- rot: 3.141592653589793 rad
pos: -20.5,19.5
parent: 2
type: Transform
- - uid: 14082
+ - uid: 14103
components:
- rot: -1.5707963267948966 rad
pos: -21.5,20.5
parent: 2
type: Transform
- - uid: 14083
+ - uid: 14104
components:
- rot: -1.5707963267948966 rad
pos: -22.5,20.5
parent: 2
type: Transform
- - uid: 14084
+ - uid: 14105
components:
- rot: -1.5707963267948966 rad
pos: -23.5,20.5
parent: 2
type: Transform
- - uid: 14085
+ - uid: 14106
components:
- rot: -1.5707963267948966 rad
pos: -24.5,20.5
parent: 2
type: Transform
- - uid: 14086
+ - uid: 14107
components:
- rot: -1.5707963267948966 rad
pos: -26.5,19.5
parent: 2
type: Transform
- - uid: 14087
+ - uid: 14108
components:
- rot: -1.5707963267948966 rad
pos: -27.5,19.5
parent: 2
type: Transform
- - uid: 14088
+ - uid: 14109
components:
- rot: -1.5707963267948966 rad
pos: -28.5,19.5
parent: 2
type: Transform
- - uid: 14089
+ - uid: 14110
components:
- rot: -1.5707963267948966 rad
pos: -29.5,19.5
parent: 2
type: Transform
- - uid: 14090
+ - uid: 14111
components:
- rot: -1.5707963267948966 rad
pos: -30.5,19.5
parent: 2
type: Transform
- - uid: 14091
+ - uid: 14112
components:
- rot: -1.5707963267948966 rad
pos: -31.5,19.5
parent: 2
type: Transform
- - uid: 14092
+ - uid: 14113
components:
- rot: -1.5707963267948966 rad
pos: -32.5,19.5
parent: 2
type: Transform
- - uid: 14093
+ - uid: 14114
components:
- rot: -1.5707963267948966 rad
pos: -33.5,19.5
parent: 2
type: Transform
- - uid: 14094
+ - uid: 14115
components:
- rot: -1.5707963267948966 rad
pos: -34.5,19.5
parent: 2
type: Transform
- - uid: 14095
+ - uid: 14116
components:
- rot: -1.5707963267948966 rad
pos: -36.5,19.5
parent: 2
type: Transform
- - uid: 14096
+ - uid: 14117
components:
- rot: -1.5707963267948966 rad
pos: -39.5,19.5
parent: 2
type: Transform
- - uid: 14097
+ - uid: 14118
components:
- rot: -1.5707963267948966 rad
pos: -40.5,19.5
parent: 2
type: Transform
- - uid: 14098
+ - uid: 14119
components:
- rot: -1.5707963267948966 rad
pos: -37.5,19.5
parent: 2
type: Transform
- - uid: 14099
+ - uid: 14120
components:
- rot: 3.141592653589793 rad
pos: -46.5,9.5
parent: 2
type: Transform
- - uid: 14100
+ - uid: 14121
components:
- rot: 3.141592653589793 rad
pos: -46.5,8.5
parent: 2
type: Transform
- - uid: 14101
+ - uid: 14122
components:
- rot: 3.141592653589793 rad
pos: -46.5,7.5
parent: 2
type: Transform
- - uid: 14102
+ - uid: 14123
components:
- rot: 3.141592653589793 rad
pos: -46.5,6.5
parent: 2
type: Transform
- - uid: 14103
+ - uid: 14124
components:
- rot: 3.141592653589793 rad
pos: -46.5,5.5
parent: 2
type: Transform
- - uid: 14104
+ - uid: 14125
components:
- rot: 3.141592653589793 rad
pos: -46.5,4.5
parent: 2
type: Transform
- - uid: 14105
+ - uid: 14126
components:
- rot: 3.141592653589793 rad
pos: -46.5,3.5
parent: 2
type: Transform
- - uid: 14106
+ - uid: 14127
components:
- rot: 3.141592653589793 rad
pos: -46.5,2.5
parent: 2
type: Transform
- - uid: 14107
+ - uid: 14128
components:
- rot: 3.141592653589793 rad
pos: -46.5,1.5
parent: 2
type: Transform
- - uid: 14108
+ - uid: 14129
components:
- rot: 1.5707963267948966 rad
pos: -45.5,0.5
parent: 2
type: Transform
- - uid: 14109
+ - uid: 14130
components:
- rot: 1.5707963267948966 rad
pos: -44.5,0.5
parent: 2
type: Transform
- - uid: 14110
+ - uid: 14131
components:
- rot: 1.5707963267948966 rad
pos: -43.5,0.5
parent: 2
type: Transform
- - uid: 14111
+ - uid: 14132
components:
- rot: 1.5707963267948966 rad
pos: -42.5,0.5
parent: 2
type: Transform
- - uid: 14112
+ - uid: 14133
components:
- rot: 1.5707963267948966 rad
pos: -41.5,0.5
parent: 2
type: Transform
- - uid: 14113
+ - uid: 14134
components:
- rot: 1.5707963267948966 rad
pos: -40.5,0.5
parent: 2
type: Transform
- - uid: 14114
+ - uid: 14135
components:
- rot: 1.5707963267948966 rad
pos: -39.5,0.5
parent: 2
type: Transform
- - uid: 14115
+ - uid: 14136
components:
- rot: 1.5707963267948966 rad
pos: -38.5,0.5
parent: 2
type: Transform
- - uid: 14116
+ - uid: 14137
components:
- rot: 1.5707963267948966 rad
pos: -37.5,0.5
parent: 2
type: Transform
- - uid: 14117
+ - uid: 14138
components:
- rot: 1.5707963267948966 rad
pos: -36.5,0.5
parent: 2
type: Transform
- - uid: 14118
+ - uid: 14139
components:
- rot: 1.5707963267948966 rad
pos: -35.5,0.5
parent: 2
type: Transform
- - uid: 14119
+ - uid: 14140
components:
- rot: 1.5707963267948966 rad
pos: -34.5,0.5
parent: 2
type: Transform
- - uid: 14120
+ - uid: 14141
components:
- rot: 1.5707963267948966 rad
pos: -33.5,0.5
parent: 2
type: Transform
- - uid: 14121
+ - uid: 14142
components:
- rot: 1.5707963267948966 rad
pos: -32.5,0.5
parent: 2
type: Transform
- - uid: 14122
+ - uid: 14143
components:
- rot: 1.5707963267948966 rad
pos: -31.5,0.5
parent: 2
type: Transform
- - uid: 14123
+ - uid: 14144
components:
- rot: 1.5707963267948966 rad
pos: -30.5,0.5
parent: 2
type: Transform
- - uid: 14124
+ - uid: 14145
components:
- rot: 1.5707963267948966 rad
pos: -29.5,0.5
parent: 2
type: Transform
- - uid: 14125
+ - uid: 14146
components:
- rot: 1.5707963267948966 rad
pos: -28.5,0.5
parent: 2
type: Transform
- - uid: 14126
+ - uid: 14147
components:
- rot: 1.5707963267948966 rad
pos: -27.5,0.5
parent: 2
type: Transform
- - uid: 14127
+ - uid: 14148
components:
- pos: -26.5,-0.5
parent: 2
type: Transform
- - uid: 14128
+ - uid: 14149
components:
- pos: -26.5,-1.5
parent: 2
type: Transform
- - uid: 14129
+ - uid: 14150
components:
- pos: -26.5,-2.5
parent: 2
type: Transform
- - uid: 14130
+ - uid: 14151
components:
- pos: -26.5,-3.5
parent: 2
type: Transform
- - uid: 14131
+ - uid: 14152
components:
- pos: -26.5,-4.5
parent: 2
type: Transform
- - uid: 14132
+ - uid: 14153
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-5.5
parent: 2
type: Transform
- - uid: 14133
+ - uid: 14154
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-5.5
parent: 2
type: Transform
- - uid: 14134
+ - uid: 14155
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-5.5
parent: 2
type: Transform
- - uid: 14135
+ - uid: 14156
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-5.5
parent: 2
type: Transform
- - uid: 14136
+ - uid: 14157
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-5.5
parent: 2
type: Transform
- - uid: 14137
+ - uid: 14158
components:
- pos: -20.5,-6.5
parent: 2
type: Transform
- - uid: 14138
+ - uid: 14159
components:
- pos: -20.5,-7.5
parent: 2
type: Transform
- - uid: 14139
+ - uid: 14160
components:
- pos: -20.5,-8.5
parent: 2
type: Transform
- - uid: 14140
+ - uid: 14161
components:
- pos: -20.5,-9.5
parent: 2
type: Transform
- - uid: 14141
+ - uid: 14162
components:
- pos: -20.5,-10.5
parent: 2
type: Transform
- - uid: 14142
+ - uid: 14163
components:
- pos: -20.5,-11.5
parent: 2
type: Transform
- - uid: 14143
+ - uid: 14164
components:
- pos: -20.5,-12.5
parent: 2
type: Transform
- - uid: 14144
+ - uid: 14165
components:
- pos: -20.5,-13.5
parent: 2
type: Transform
- - uid: 14145
+ - uid: 14166
components:
- pos: -20.5,-14.5
parent: 2
type: Transform
- - uid: 14146
+ - uid: 14167
components:
- pos: -20.5,-15.5
parent: 2
type: Transform
- - uid: 14147
+ - uid: 14168
components:
- pos: -20.5,-16.5
parent: 2
type: Transform
- - uid: 14148
+ - uid: 14169
components:
- pos: -20.5,-17.5
parent: 2
type: Transform
- - uid: 14149
+ - uid: 14170
components:
- pos: -20.5,-18.5
parent: 2
type: Transform
- - uid: 14150
+ - uid: 14171
components:
- pos: -20.5,-19.5
parent: 2
type: Transform
- - uid: 14151
+ - uid: 14172
components:
- pos: -20.5,-20.5
parent: 2
type: Transform
- - uid: 14152
+ - uid: 14173
components:
- pos: -20.5,-21.5
parent: 2
type: Transform
- - uid: 14153
+ - uid: 14174
components:
- pos: -20.5,-22.5
parent: 2
type: Transform
- - uid: 14154
+ - uid: 14175
components:
- pos: -20.5,-23.5
parent: 2
type: Transform
- - uid: 14155
+ - uid: 14176
components:
- pos: -20.5,-24.5
parent: 2
type: Transform
- - uid: 14156
+ - uid: 14177
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-25.5
parent: 2
type: Transform
- - uid: 14157
+ - uid: 14178
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-25.5
parent: 2
type: Transform
- - uid: 14158
+ - uid: 14179
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-25.5
parent: 2
type: Transform
- - uid: 14159
+ - uid: 14180
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-25.5
parent: 2
type: Transform
- - uid: 14160
+ - uid: 14181
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-25.5
parent: 2
type: Transform
- - uid: 14161
+ - uid: 14182
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-25.5
parent: 2
type: Transform
- - uid: 14162
+ - uid: 14183
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-25.5
parent: 2
type: Transform
- - uid: 14163
+ - uid: 14184
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-25.5
parent: 2
type: Transform
- - uid: 14164
+ - uid: 14185
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-25.5
parent: 2
type: Transform
- - uid: 14165
+ - uid: 14186
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-25.5
parent: 2
type: Transform
- - uid: 14166
+ - uid: 14187
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-25.5
parent: 2
type: Transform
- - uid: 14167
+ - uid: 14188
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-25.5
parent: 2
type: Transform
- - uid: 14168
+ - uid: 14189
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-25.5
parent: 2
type: Transform
- - uid: 14169
+ - uid: 14190
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-25.5
parent: 2
type: Transform
- - uid: 14170
+ - uid: 14191
components:
- rot: -1.5707963267948966 rad
pos: -41.5,18.5
parent: 2
type: Transform
- - uid: 14171
+ - uid: 14192
components:
- pos: 30.5,-74.5
parent: 2
type: Transform
- - uid: 14172
+ - uid: 14193
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-73.5
parent: 2
type: Transform
- - uid: 14173
+ - uid: 14194
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-73.5
parent: 2
type: Transform
- - uid: 14174
+ - uid: 14195
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-73.5
parent: 2
type: Transform
- - uid: 14175
+ - uid: 14196
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-73.5
parent: 2
type: Transform
- - uid: 14176
+ - uid: 14197
components:
- pos: 30.5,-76.5
parent: 2
type: Transform
- - uid: 14177
+ - uid: 14198
components:
- pos: 30.5,-75.5
parent: 2
type: Transform
- - uid: 14178
+ - uid: 14199
components:
- pos: 30.5,-82.5
parent: 2
type: Transform
- - uid: 14179
+ - uid: 14200
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-73.5
parent: 2
type: Transform
- - uid: 14180
+ - uid: 14201
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-73.5
parent: 2
type: Transform
- - uid: 14181
+ - uid: 14202
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-73.5
parent: 2
type: Transform
- - uid: 14182
+ - uid: 14203
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-73.5
parent: 2
type: Transform
- - uid: 14183
+ - uid: 14204
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-73.5
parent: 2
type: Transform
- - uid: 14184
+ - uid: 14205
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-73.5
parent: 2
type: Transform
- - uid: 14185
+ - uid: 14206
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-73.5
parent: 2
type: Transform
- - uid: 14186
+ - uid: 14207
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-73.5
parent: 2
type: Transform
- - uid: 14187
+ - uid: 14208
components:
- rot: -1.5707963267948966 rad
pos: 10.5,2.5
parent: 2
type: Transform
- - uid: 14188
+ - uid: 14209
components:
- pos: -23.5,-81.5
parent: 2
type: Transform
- - uid: 14189
+ - uid: 14210
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-41.5
parent: 2
type: Transform
- - uid: 14190
+ - uid: 14211
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-41.5
parent: 2
type: Transform
- - uid: 14191
+ - uid: 14212
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-41.5
parent: 2
type: Transform
- - uid: 14192
+ - uid: 14213
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-41.5
parent: 2
type: Transform
- - uid: 14193
+ - uid: 14214
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-41.5
parent: 2
type: Transform
- - uid: 14194
+ - uid: 14215
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-41.5
parent: 2
type: Transform
- - uid: 14195
+ - uid: 14216
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-41.5
parent: 2
type: Transform
- - uid: 14196
+ - uid: 14217
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-41.5
parent: 2
type: Transform
- - uid: 14197
+ - uid: 14218
components:
- rot: 1.5707963267948966 rad
pos: -16.5,8.5
parent: 2
type: Transform
- - uid: 14198
+ - uid: 14219
components:
- pos: -43.5,-36.5
parent: 2
type: Transform
- - uid: 14199
+ - uid: 14220
components:
- pos: -43.5,-37.5
parent: 2
type: Transform
- - uid: 14200
+ - uid: 14221
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 14201
+ - uid: 14222
components:
- pos: 3.5,-2.5
parent: 2
type: Transform
- - uid: 14202
+ - uid: 14223
components:
- pos: 3.5,-4.5
parent: 2
type: Transform
- - uid: 14203
+ - uid: 14224
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-5.5
@@ -89034,417 +89156,417 @@ entities:
type: Transform
- proto: DisposalRouterFlipped
entities:
- - uid: 14204
+ - uid: 14225
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-25.5
parent: 2
type: Transform
- - uid: 14205
+ - uid: 14226
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-53.5
parent: 2
type: Transform
- - uid: 14206
+ - uid: 14227
components:
- pos: -13.5,0.5
parent: 2
type: Transform
- - uid: 14207
+ - uid: 14228
components:
- pos: -19.5,8.5
parent: 2
type: Transform
- proto: DisposalTrunk
entities:
- - uid: 14208
+ - uid: 14229
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-5.5
parent: 2
type: Transform
- - uid: 14209
+ - uid: 14230
components:
- pos: 2.5,-23.5
parent: 2
type: Transform
- - uid: 14210
+ - uid: 14231
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-57.5
parent: 2
type: Transform
- - uid: 14211
+ - uid: 14232
components:
- pos: 52.5,3.5
parent: 2
type: Transform
- - uid: 14212
+ - uid: 14233
components:
- pos: -9.5,5.5
parent: 2
type: Transform
- - uid: 14213
+ - uid: 14234
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-3.5
parent: 2
type: Transform
- - uid: 14214
+ - uid: 14235
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-33.5
parent: 2
type: Transform
- - uid: 14215
+ - uid: 14236
components:
- pos: 21.5,20.5
parent: 2
type: Transform
- - uid: 14216
+ - uid: 14237
components:
- rot: 3.141592653589793 rad
pos: 6.5,-2.5
parent: 2
type: Transform
- - uid: 14217
+ - uid: 14238
components:
- pos: 22.5,-10.5
parent: 2
type: Transform
- - uid: 14218
+ - uid: 14239
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-18.5
parent: 2
type: Transform
- - uid: 14219
+ - uid: 14240
components:
- rot: 3.141592653589793 rad
pos: 1.5,-59.5
parent: 2
type: Transform
- - uid: 14220
+ - uid: 14241
components:
- pos: 6.5,5.5
parent: 2
type: Transform
- - uid: 14221
+ - uid: 14242
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-73.5
parent: 2
type: Transform
- - uid: 14222
+ - uid: 14243
components:
- pos: 8.5,15.5
parent: 2
type: Transform
- - uid: 14223
+ - uid: 14244
components:
- pos: 18.5,9.5
parent: 2
type: Transform
- - uid: 14224
+ - uid: 14245
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-10.5
parent: 2
type: Transform
- - uid: 14225
+ - uid: 14246
components:
- rot: 3.141592653589793 rad
pos: -7.5,-2.5
parent: 2
type: Transform
- - uid: 14226
+ - uid: 14247
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-84.5
parent: 2
type: Transform
- - uid: 14227
+ - uid: 14248
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-75.5
parent: 2
type: Transform
- - uid: 14228
+ - uid: 14249
components:
- rot: -1.5707963267948966 rad
pos: 14.5,5.5
parent: 2
type: Transform
- - uid: 14229
+ - uid: 14250
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-45.5
parent: 2
type: Transform
- - uid: 14230
+ - uid: 14251
components:
- rot: 3.141592653589793 rad
pos: 18.5,-54.5
parent: 2
type: Transform
- - uid: 14231
+ - uid: 14252
components:
- pos: -10.5,-23.5
parent: 2
type: Transform
- - uid: 14232
+ - uid: 14253
components:
- rot: 1.5707963267948966 rad
pos: 14.5,19.5
parent: 2
type: Transform
- - uid: 14233
+ - uid: 14254
components:
- pos: 34.5,17.5
parent: 2
type: Transform
- - uid: 14234
+ - uid: 14255
components:
- rot: 3.141592653589793 rad
pos: -14.5,-10.5
parent: 2
type: Transform
- - uid: 14235
+ - uid: 14256
components:
- rot: 3.141592653589793 rad
pos: 54.5,-14.5
parent: 2
type: Transform
- - uid: 14236
+ - uid: 14257
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-47.5
parent: 2
type: Transform
- - uid: 14237
+ - uid: 14258
components:
- pos: 46.5,-35.5
parent: 2
type: Transform
- - uid: 14238
+ - uid: 14259
components:
- rot: 3.141592653589793 rad
pos: 67.5,-49.5
parent: 2
type: Transform
- - uid: 14239
+ - uid: 14260
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-50.5
parent: 2
type: Transform
- - uid: 14240
+ - uid: 14261
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-55.5
parent: 2
type: Transform
- - uid: 14241
+ - uid: 14262
components:
- rot: 3.141592653589793 rad
pos: 49.5,-60.5
parent: 2
type: Transform
- - uid: 14242
+ - uid: 14263
components:
- rot: 1.5707963267948966 rad
pos: -27.5,6.5
parent: 2
type: Transform
- - uid: 14243
+ - uid: 14264
components:
- rot: 3.141592653589793 rad
pos: 29.5,-62.5
parent: 2
type: Transform
- - uid: 14244
+ - uid: 14265
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-15.5
parent: 2
type: Transform
- - uid: 14245
+ - uid: 14266
components:
- rot: 3.141592653589793 rad
pos: 24.5,-74.5
parent: 2
type: Transform
- - uid: 14246
+ - uid: 14267
components:
- pos: -38.5,-4.5
parent: 2
type: Transform
- - uid: 14247
+ - uid: 14268
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-75.5
parent: 2
type: Transform
- - uid: 14248
+ - uid: 14269
components:
- rot: 3.141592653589793 rad
pos: -36.5,-80.5
parent: 2
type: Transform
- - uid: 14249
+ - uid: 14270
components:
- pos: -22.5,25.5
parent: 2
type: Transform
- - uid: 14250
+ - uid: 14271
components:
- pos: -42.5,27.5
parent: 2
type: Transform
- - uid: 14251
+ - uid: 14272
components:
- rot: -1.5707963267948966 rad
pos: -43.5,5.5
parent: 2
type: Transform
- - uid: 14252
+ - uid: 14273
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-86.5
parent: 2
type: Transform
- - uid: 14253
+ - uid: 14274
components:
- pos: 20.5,-23.5
parent: 2
type: Transform
- - uid: 14254
+ - uid: 14275
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-66.5
parent: 2
type: Transform
- - uid: 14255
+ - uid: 14276
components:
- rot: 3.141592653589793 rad
pos: -3.5,-67.5
parent: 2
type: Transform
- - uid: 14256
+ - uid: 14277
components:
- rot: 3.141592653589793 rad
pos: 2.5,-63.5
parent: 2
type: Transform
- - uid: 14257
+ - uid: 14278
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-67.5
parent: 2
type: Transform
- - uid: 14258
+ - uid: 14279
components:
- pos: -12.5,8.5
parent: 2
type: Transform
- - uid: 14259
+ - uid: 14280
components:
- pos: 20.5,-39.5
parent: 2
type: Transform
- - uid: 14260
+ - uid: 14281
components:
- rot: 1.5707963267948966 rad
pos: -17.5,37.5
parent: 2
type: Transform
- - uid: 14261
+ - uid: 14282
components:
- rot: 3.141592653589793 rad
pos: -4.5,43.5
parent: 2
type: Transform
- - uid: 14262
+ - uid: 14283
components:
- rot: 3.141592653589793 rad
pos: -13.5,49.5
parent: 2
type: Transform
- - uid: 14263
+ - uid: 14284
components:
- pos: -37.5,-93.5
parent: 2
type: Transform
- - uid: 14264
+ - uid: 14285
components:
- pos: 75.5,-32.5
parent: 2
type: Transform
- - uid: 14265
+ - uid: 14286
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-64.5
parent: 2
type: Transform
- - uid: 14266
+ - uid: 14287
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-64.5
parent: 2
type: Transform
- - uid: 14267
+ - uid: 14288
components:
- pos: -10.5,-12.5
parent: 2
type: Transform
- - uid: 14268
+ - uid: 14289
components:
- pos: -12.5,-12.5
parent: 2
type: Transform
- - uid: 14269
+ - uid: 14290
components:
- rot: 3.141592653589793 rad
pos: -42.5,13.5
parent: 2
type: Transform
- - uid: 14270
+ - uid: 14291
components:
- rot: -1.5707963267948966 rad
pos: -40.5,18.5
parent: 2
type: Transform
- - uid: 14271
+ - uid: 14292
components:
- rot: 3.141592653589793 rad
pos: 6.5,-45.5
parent: 2
type: Transform
- - uid: 14272
+ - uid: 14293
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-41.5
parent: 2
type: Transform
- - uid: 14273
+ - uid: 14294
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-42.5
parent: 2
type: Transform
- - uid: 14274
+ - uid: 14295
components:
- pos: -43.5,-35.5
parent: 2
type: Transform
- - uid: 14275
+ - uid: 14296
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-38.5
parent: 2
type: Transform
- - uid: 14276
+ - uid: 14297
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-3.5
@@ -89452,540 +89574,540 @@ entities:
type: Transform
- proto: DisposalUnit
entities:
- - uid: 14277
+ - uid: 14298
components:
- pos: 2.5,-23.5
parent: 2
type: Transform
- - uid: 14278
+ - uid: 14299
components:
- pos: 5.5,-5.5
parent: 2
type: Transform
- - uid: 14279
+ - uid: 14300
components:
- pos: 6.5,-45.5
parent: 2
type: Transform
- - uid: 14280
+ - uid: 14301
components:
- pos: -6.5,-33.5
parent: 2
type: Transform
- - uid: 14281
+ - uid: 14302
components:
- pos: 6.5,5.5
parent: 2
type: Transform
- - uid: 14282
+ - uid: 14303
components:
- pos: 22.5,-10.5
parent: 2
type: Transform
- - uid: 14283
+ - uid: 14304
components:
- pos: 27.5,-10.5
parent: 2
type: Transform
- - uid: 14284
+ - uid: 14305
components:
- pos: 21.5,20.5
parent: 2
type: Transform
- - uid: 14285
+ - uid: 14306
components:
- pos: 37.5,-18.5
parent: 2
type: Transform
- - uid: 14286
+ - uid: 14307
components:
- pos: 1.5,-59.5
parent: 2
type: Transform
- - uid: 14287
+ - uid: 14308
components:
- pos: -2.5,-45.5
parent: 2
type: Transform
- - uid: 14288
+ - uid: 14309
components:
- pos: -10.5,-23.5
parent: 2
type: Transform
- - uid: 14289
+ - uid: 14310
components:
- pos: -20.5,-57.5
parent: 2
type: Transform
- - uid: 14290
+ - uid: 14311
components:
- pos: -17.5,-73.5
parent: 2
type: Transform
- - uid: 14291
+ - uid: 14312
components:
- pos: 12.5,-3.5
parent: 2
type: Transform
- - uid: 14292
+ - uid: 14313
components:
- pos: -7.5,-2.5
parent: 2
type: Transform
- - uid: 14293
+ - uid: 14314
components:
- pos: -9.5,5.5
parent: 2
type: Transform
- - uid: 14294
+ - uid: 14315
components:
- pos: -21.5,-84.5
parent: 2
type: Transform
- - uid: 14295
+ - uid: 14316
components:
- pos: 8.5,15.5
parent: 2
type: Transform
- - uid: 14296
+ - uid: 14317
components:
- pos: 6.5,-2.5
parent: 2
type: Transform
- - uid: 14297
+ - uid: 14318
components:
- pos: 20.5,-23.5
parent: 2
type: Transform
- - uid: 14298
+ - uid: 14319
components:
- pos: -25.5,-75.5
parent: 2
type: Transform
- - uid: 14299
+ - uid: 14320
components:
- pos: 18.5,9.5
parent: 2
type: Transform
- - uid: 14300
+ - uid: 14321
components:
- pos: 14.5,5.5
parent: 2
type: Transform
- - uid: 14301
+ - uid: 14322
components:
- pos: -10.5,-12.5
parent: 2
type: Transform
- type: Timer
- - uid: 14302
+ - uid: 14323
components:
- name: cargo
type: MetaData
- pos: -12.5,-12.5
parent: 2
type: Transform
- - uid: 14303
+ - uid: 14324
components:
- pos: 14.5,19.5
parent: 2
type: Transform
- - uid: 14304
+ - uid: 14325
components:
- pos: 34.5,17.5
parent: 2
type: Transform
- - uid: 14305
+ - uid: 14326
components:
- pos: 52.5,3.5
parent: 2
type: Transform
- - uid: 14306
+ - uid: 14327
components:
- pos: 54.5,-14.5
parent: 2
type: Transform
- - uid: 14307
+ - uid: 14328
components:
- pos: 46.5,-35.5
parent: 2
type: Transform
- - uid: 14308
+ - uid: 14329
components:
- pos: 51.5,-47.5
parent: 2
type: Transform
- - uid: 14309
+ - uid: 14330
components:
- pos: 67.5,-49.5
parent: 2
type: Transform
- - uid: 14310
+ - uid: 14331
components:
- pos: 49.5,-60.5
parent: 2
type: Transform
- - uid: 14311
+ - uid: 14332
components:
- pos: 48.5,-55.5
parent: 2
type: Transform
- - uid: 14312
+ - uid: 14333
components:
- pos: 48.5,-50.5
parent: 2
type: Transform
- - uid: 14313
+ - uid: 14334
components:
- pos: -22.5,-15.5
parent: 2
type: Transform
- - uid: 14314
+ - uid: 14335
components:
- pos: 29.5,-62.5
parent: 2
type: Transform
- - uid: 14315
+ - uid: 14336
components:
- pos: 24.5,-74.5
parent: 2
type: Transform
- - uid: 14316
+ - uid: 14337
components:
- pos: 27.5,-86.5
parent: 2
type: Transform
- - uid: 14317
+ - uid: 14338
components:
- pos: -27.5,6.5
parent: 2
type: Transform
- - uid: 14318
+ - uid: 14339
components:
- pos: -38.5,-4.5
parent: 2
type: Transform
- - uid: 14319
+ - uid: 14340
components:
- name: suspicious disposal unit
type: MetaData
- pos: 0.5,-75.5
parent: 2
type: Transform
- - uid: 14320
+ - uid: 14341
components:
- pos: -22.5,25.5
parent: 2
type: Transform
- - uid: 14321
+ - uid: 14342
components:
- pos: -42.5,27.5
parent: 2
type: Transform
- - uid: 14322
+ - uid: 14343
components:
- pos: -43.5,5.5
parent: 2
type: Transform
- - uid: 14323
+ - uid: 14344
components:
- pos: -9.5,-66.5
parent: 2
type: Transform
- - uid: 14324
+ - uid: 14345
components:
- pos: -16.5,-67.5
parent: 2
type: Transform
- - uid: 14325
+ - uid: 14346
components:
- pos: -3.5,-67.5
parent: 2
type: Transform
- - uid: 14326
+ - uid: 14347
components:
- pos: 2.5,-63.5
parent: 2
type: Transform
- - uid: 14327
+ - uid: 14348
components:
- pos: -12.5,8.5
parent: 2
type: Transform
- - uid: 14328
+ - uid: 14349
components:
- pos: 20.5,-39.5
parent: 2
type: Transform
- - uid: 14329
+ - uid: 14350
components:
- pos: -17.5,37.5
parent: 2
type: Transform
- - uid: 14330
+ - uid: 14351
components:
- pos: -4.5,43.5
parent: 2
type: Transform
- - uid: 14331
+ - uid: 14352
components:
- pos: -13.5,49.5
parent: 2
type: Transform
- - uid: 14332
+ - uid: 14353
components:
- pos: -40.5,18.5
parent: 2
type: Transform
- - uid: 14333
+ - uid: 14354
components:
- pos: 75.5,-32.5
parent: 2
type: Transform
- - uid: 14334
+ - uid: 14355
components:
- pos: -54.5,-64.5
parent: 2
type: Transform
- - uid: 14335
+ - uid: 14356
components:
- pos: -52.5,-64.5
parent: 2
type: Transform
- - uid: 14336
+ - uid: 14357
components:
- pos: -36.5,-80.5
parent: 2
type: Transform
- - uid: 14337
+ - uid: 14358
components:
- pos: -66.5,-42.5
parent: 2
type: Transform
- - uid: 14338
+ - uid: 14359
components:
- pos: -42.5,-38.5
parent: 2
type: Transform
- proto: DisposalYJunction
entities:
- - uid: 14339
+ - uid: 14360
components:
- pos: 25.5,17.5
parent: 2
type: Transform
- - uid: 14340
+ - uid: 14361
components:
- rot: 3.141592653589793 rad
pos: -3.5,-27.5
parent: 2
type: Transform
- - uid: 14341
+ - uid: 14362
components:
- rot: 3.141592653589793 rad
pos: 16.5,-43.5
parent: 2
type: Transform
- - uid: 14342
+ - uid: 14363
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-9.5
parent: 2
type: Transform
- - uid: 14343
+ - uid: 14364
components:
- pos: -4.5,0.5
parent: 2
type: Transform
- - uid: 14344
+ - uid: 14365
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-27.5
parent: 2
type: Transform
- - uid: 14345
+ - uid: 14366
components:
- rot: 3.141592653589793 rad
pos: -0.5,-53.5
parent: 2
type: Transform
- - uid: 14346
+ - uid: 14367
components:
- rot: 3.141592653589793 rad
pos: -4.5,-43.5
parent: 2
type: Transform
- - uid: 14347
+ - uid: 14368
components:
- rot: 3.141592653589793 rad
pos: -19.5,-73.5
parent: 2
type: Transform
- - uid: 14348
+ - uid: 14369
components:
- rot: -1.5707963267948966 rad
pos: 52.5,1.5
parent: 2
type: Transform
- - uid: 14349
+ - uid: 14370
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-27.5
parent: 2
type: Transform
- - uid: 14350
+ - uid: 14371
components:
- pos: -19.5,-6.5
parent: 2
type: Transform
- - uid: 14351
+ - uid: 14372
components:
- pos: -25.5,6.5
parent: 2
type: Transform
- - uid: 14352
+ - uid: 14373
components:
- rot: 3.141592653589793 rad
pos: -5.5,-61.5
parent: 2
type: Transform
- - uid: 14353
+ - uid: 14374
components:
- pos: -15.5,44.5
parent: 2
type: Transform
- proto: DogBed
entities:
- - uid: 14354
+ - uid: 14375
components:
- pos: 3.5,-7.5
parent: 2
type: Transform
- - uid: 14355
+ - uid: 14376
components:
- pos: 62.5,51.5
parent: 2
type: Transform
- - uid: 14356
+ - uid: 14377
components:
- name: fox bed
type: MetaData
- pos: 32.5,-28.5
parent: 2
type: Transform
- - uid: 14357
+ - uid: 14378
components:
- name: racoon bed
type: MetaData
- pos: -33.5,31.5
parent: 2
type: Transform
- - uid: 14358
+ - uid: 14379
components:
- pos: 26.5,23.5
parent: 2
type: Transform
- proto: DonkpocketBoxSpawner
entities:
- - uid: 14359
+ - uid: 14380
components:
- pos: -9.5,41.5
parent: 2
type: Transform
- - uid: 14360
+ - uid: 14381
components:
- pos: -10.5,41.5
parent: 2
type: Transform
- proto: DoorElectronics
entities:
- - uid: 14361
+ - uid: 14382
components:
- pos: -43.560223,-27.412916
parent: 2
type: Transform
- proto: DoubleEmergencyOxygenTankFilled
entities:
- - uid: 14362
+ - uid: 14383
components:
- pos: -36.45104,-33.42174
parent: 2
type: Transform
- proto: Dresser
entities:
- - uid: 14363
+ - uid: 14384
components:
- pos: 22.5,14.5
parent: 2
type: Transform
- - uid: 14364
+ - uid: 14385
components:
- pos: 32.5,-27.5
parent: 2
type: Transform
- - uid: 14365
+ - uid: 14386
components:
- pos: -26.5,46.5
parent: 2
type: Transform
- - uid: 14366
+ - uid: 14387
components:
- pos: 7.5,22.5
parent: 2
type: Transform
- - uid: 14367
+ - uid: 14388
components:
- pos: -42.5,11.5
parent: 2
type: Transform
- - uid: 14368
+ - uid: 14389
components:
- pos: -51.5,15.5
parent: 2
type: Transform
- - uid: 14369
+ - uid: 14390
components:
- pos: -52.5,6.5
parent: 2
type: Transform
- - uid: 14370
+ - uid: 14391
components:
- pos: -31.5,12.5
parent: 2
type: Transform
- - uid: 14371
+ - uid: 14392
components:
- pos: -24.5,31.5
parent: 2
type: Transform
- - uid: 14372
+ - uid: 14393
components:
- pos: 54.5,32.5
parent: 2
type: Transform
- - uid: 14373
+ - uid: 14394
components:
- pos: -19.5,35.5
parent: 2
type: Transform
- - uid: 14374
+ - uid: 14395
components:
- pos: -10.5,32.5
parent: 2
type: Transform
- - uid: 14375
+ - uid: 14396
components:
- pos: -20.5,39.5
parent: 2
type: Transform
- - uid: 14376
+ - uid: 14397
components:
- pos: -37.5,-20.5
parent: 2
type: Transform
- proto: Drill
entities:
- - uid: 14377
+ - uid: 14398
components:
- rot: -1.5707963267948966 rad
pos: -7.0942874,-100.40229
@@ -89993,379 +90115,391 @@ entities:
type: Transform
- proto: DrinkAntifreeze
entities:
- - uid: 14378
+ - uid: 14399
components:
- pos: -25.524792,55.598667
parent: 2
type: Transform
- - uid: 14379
+ - uid: 14400
components:
- pos: 40.348606,63.75022
parent: 2
type: Transform
- proto: DrinkBeerBottleFull
entities:
- - uid: 14380
+ - uid: 14401
components:
- pos: 16.20447,-64.18169
parent: 2
type: Transform
- - uid: 14381
+ - uid: 14402
components:
- pos: 16.48572,-64.21294
parent: 2
type: Transform
- - uid: 14382
+ - uid: 14403
components:
- pos: -56.96358,-25.301325
parent: 2
type: Transform
- proto: DrinkBlackRussianGlass
entities:
- - uid: 14383
+ - uid: 14404
components:
- pos: 65.5063,-0.9249393
parent: 2
type: Transform
- proto: DrinkBloodyMaryGlass
entities:
- - uid: 14384
+ - uid: 14405
components:
- pos: 61.61879,-53.35289
parent: 2
type: Transform
- proto: DrinkBlueCuracaoGlass
entities:
- - uid: 14385
+ - uid: 14406
components:
- pos: 38.58298,63.859596
parent: 2
type: Transform
- proto: DrinkBottleOfNothingFull
entities:
- - uid: 14386
+ - uid: 14407
components:
- pos: -28.300186,46.612503
parent: 2
type: Transform
- proto: DrinkBottleWhiskey
entities:
- - uid: 14387
+ - uid: 14408
components:
- pos: -10.628431,-32.17821
parent: 2
type: Transform
- proto: DrinkBottleWine
entities:
- - uid: 14388
+ - uid: 14409
components:
- pos: -37.38547,16.742819
parent: 2
type: Transform
- proto: DrinkCarrotJuice
entities:
- - uid: 14389
+ - uid: 14410
components:
- pos: -20.541529,49.622677
parent: 2
type: Transform
- proto: DrinkDetFlask
entities:
- - uid: 14390
+ - uid: 14411
components:
- pos: 20.044777,-12.206265
parent: 2
type: Transform
- proto: DrinkDoctorsDelightGlass
entities:
- - uid: 14391
+ - uid: 14412
components:
- pos: -18.294592,-56.251144
parent: 2
type: Transform
- proto: DrinkDriestMartiniGlass
entities:
- - uid: 14392
+ - uid: 14413
components:
- pos: 39.42673,62.828346
parent: 2
type: Transform
- proto: DrinkGinGlass
entities:
- - uid: 14393
+ - uid: 14414
components:
- pos: 39.55173,64.4221
parent: 2
type: Transform
- proto: DrinkGlass
entities:
- - uid: 14394
+ - uid: 14415
components:
- pos: 37.335964,-5.423753
parent: 2
type: Transform
- - uid: 14395
+ - uid: 14416
components:
- pos: 42.510113,-48.4107
parent: 2
type: Transform
- - uid: 14396
+ - uid: 14417
components:
- pos: 42.510113,-48.4107
parent: 2
type: Transform
- - uid: 14397
+ - uid: 14418
components:
- pos: -29.533712,-69.34898
parent: 2
type: Transform
- proto: DrinkGoldenCup
entities:
- - uid: 14398
+ - uid: 14419
components:
- pos: 48.422813,-25.09548
parent: 2
type: Transform
- proto: DrinkGoldschlagerBottleFull
entities:
- - uid: 14399
+ - uid: 14420
components:
- pos: 47.41234,-30.196692
parent: 2
type: Transform
- proto: DrinkGrapeJuice
entities:
- - uid: 14400
+ - uid: 14421
components:
- pos: -21.385279,49.66955
parent: 2
type: Transform
- proto: DrinkGrogGlass
entities:
- - uid: 14401
+ - uid: 14422
components:
- pos: -42.795,-78.417305
parent: 2
type: Transform
- - uid: 14402
+ - uid: 14423
components:
- pos: -40.300255,-77.37566
parent: 2
type: Transform
- - uid: 14403
+ - uid: 14424
components:
- pos: -41.117695,-78.40168
parent: 2
type: Transform
- proto: DrinkHippiesDelightGlass
entities:
- - uid: 14404
+ - uid: 14425
components:
- pos: -22.44165,-100.292145
parent: 2
type: Transform
- proto: DrinkHotCoffee
entities:
- - uid: 14405
+ - uid: 14426
components:
- pos: -26.93719,14.6217785
parent: 2
type: Transform
- proto: DrinkIrishCoffeeGlass
entities:
- - uid: 14406
+ - uid: 14427
components:
- pos: 31.04821,-61.292328
parent: 2
type: Transform
- proto: DrinkLongIslandIcedTeaGlass
entities:
- - uid: 14407
+ - uid: 14428
components:
- pos: 23.326912,-28.451742
parent: 2
type: Transform
- proto: DrinkMilkCarton
entities:
- - uid: 14408
+ - uid: 14429
components:
- pos: 4.089875,7.6089945
parent: 2
type: Transform
- - uid: 14409
+ - uid: 14430
components:
- pos: 4.246125,7.3902445
parent: 2
type: Transform
- proto: DrinkMugBlack
entities:
- - uid: 14410
+ - uid: 14431
components:
- pos: 53.58285,-67.465065
parent: 2
type: Transform
- proto: DrinkMugOne
entities:
- - uid: 14411
+ - uid: 14432
components:
- pos: 47.469124,50.58469
parent: 2
type: Transform
- - uid: 14412
+ - uid: 14433
components:
- pos: -31.248182,29.795187
parent: 2
type: Transform
- proto: DrinkShaker
entities:
- - uid: 14413
+ - uid: 14434
components:
- pos: 18.551043,13.384511
parent: 2
type: Transform
- - uid: 14414
+ - uid: 14435
components:
- pos: 18.316668,13.478261
parent: 2
type: Transform
- - uid: 14415
+ - uid: 14436
components:
- pos: 18.582293,13.603261
parent: 2
type: Transform
- proto: DrinkSpaceMountainWindGlass
entities:
- - uid: 14416
+ - uid: 14437
components:
- pos: 38.7514,49.607887
parent: 2
type: Transform
- proto: DrinkSpaceUpGlass
entities:
- - uid: 14417
+ - uid: 14438
components:
- pos: 38.377674,49.717262
parent: 2
type: Transform
- proto: DrinkToxinsSpecialGlass
entities:
- - uid: 14418
+ - uid: 14439
components:
- pos: -9.4857435,-36.467285
parent: 2
type: Transform
- proto: DrinkVodkaTonicGlass
entities:
- - uid: 14419
+ - uid: 14440
components:
- pos: 43.581966,-2.7850537
parent: 2
type: Transform
- proto: DrinkWaterBottleFull
entities:
- - uid: 14420
+ - uid: 14441
components:
- pos: -14.530239,-37.26908
parent: 2
type: Transform
- proto: DrinkWaterCup
entities:
- - uid: 14421
+ - uid: 14442
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14422
+ - uid: 14443
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14423
+ - uid: 14444
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14424
+ - uid: 14445
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14425
+ - uid: 14446
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- - uid: 14426
+ - uid: 14447
components:
- pos: -9.380106,-35.52635
parent: 2
type: Transform
- proto: DrinkWhiskeyBottleFull
entities:
- - uid: 14427
+ - uid: 14448
components:
- pos: -14.464556,-39.286304
parent: 2
type: Transform
- proto: DrinkWhiskeyGlass
entities:
- - uid: 14428
+ - uid: 14449
components:
- pos: -29.929981,15.531138
parent: 2
type: Transform
- - uid: 14429
+ - uid: 14450
components:
- pos: 15.324228,-79.460625
parent: 2
type: Transform
- proto: DrinkWhiskeySodaGlass
entities:
- - uid: 14430
+ - uid: 14451
components:
- pos: 7.0699005,20.752857
parent: 2
type: Transform
+- proto: Dropper
+ entities:
+ - uid: 14452
+ components:
+ - pos: 7.510676,-45.618256
+ parent: 2
+ type: Transform
+ - uid: 14453
+ components:
+ - pos: 7.510676,-45.618256
+ parent: 2
+ type: Transform
- proto: EggplantSeeds
entities:
- - uid: 14434
+ - uid: 14454
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14435
+ - uid: 14455
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14436
+ - uid: 14456
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14437
+ - uid: 14457
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14438
+ - uid: 14458
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- - uid: 14439
+ - uid: 14459
components:
- pos: 11.993146,54.637722
parent: 2
type: Transform
- proto: EmergencyLight
entities:
- - uid: 14440
+ - uid: 14460
components:
- pos: -70.5,-37.5
parent: 2
type: Transform
- - uid: 14441
+ - uid: 14461
components:
- rot: -1.5707963267948966 rad
pos: -44.5,7.5
@@ -90374,7 +90508,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14442
+ - uid: 14462
components:
- rot: 3.141592653589793 rad
pos: 22.5,-25.5
@@ -90383,7 +90517,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14443
+ - uid: 14463
components:
- rot: 3.141592653589793 rad
pos: 29.5,-25.5
@@ -90392,7 +90526,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14444
+ - uid: 14464
components:
- pos: 30.5,-41.5
parent: 2
@@ -90400,7 +90534,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14445
+ - uid: 14465
components:
- pos: -12.5,-52.5
parent: 2
@@ -90408,7 +90542,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14446
+ - uid: 14466
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-76.5
@@ -90417,7 +90551,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14447
+ - uid: 14467
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-50.5
@@ -90426,7 +90560,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14448
+ - uid: 14468
components:
- pos: 29.5,-4.5
parent: 2
@@ -90434,7 +90568,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14449
+ - uid: 14469
components:
- rot: 1.5707963267948966 rad
pos: 40.5,6.5
@@ -90443,7 +90577,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14450
+ - uid: 14470
components:
- pos: 54.5,-5.5
parent: 2
@@ -90451,7 +90585,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14451
+ - uid: 14471
components:
- rot: 3.141592653589793 rad
pos: -23.5,-62.5
@@ -90460,7 +90594,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14452
+ - uid: 14472
components:
- rot: 1.5707963267948966 rad
pos: -13.5,52.5
@@ -90469,7 +90603,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14453
+ - uid: 14473
components:
- pos: -5.5,59.5
parent: 2
@@ -90477,7 +90611,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14454
+ - uid: 14474
components:
- pos: -10.5,-59.5
parent: 2
@@ -90485,7 +90619,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14455
+ - uid: 14475
components:
- pos: -61.5,-23.5
parent: 2
@@ -90493,7 +90627,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14456
+ - uid: 14476
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-15.5
@@ -90502,7 +90636,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14457
+ - uid: 14477
components:
- pos: 15.5,-52.5
parent: 2
@@ -90510,7 +90644,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14458
+ - uid: 14478
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-4.5
@@ -90519,7 +90653,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14459
+ - uid: 14479
components:
- rot: -1.5707963267948966 rad
pos: -18.5,28.5
@@ -90528,7 +90662,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14460
+ - uid: 14480
components:
- rot: 1.5707963267948966 rad
pos: -16.5,36.5
@@ -90537,7 +90671,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14461
+ - uid: 14481
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-12.5
@@ -90546,7 +90680,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14462
+ - uid: 14482
components:
- pos: -2.5,46.5
parent: 2
@@ -90554,7 +90688,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14463
+ - uid: 14483
components:
- rot: 1.5707963267948966 rad
pos: -22.5,54.5
@@ -90563,15 +90697,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14464
- components:
- - pos: -5.5,3.5
- parent: 2
- type: Transform
- - enabled: True
- type: PointLight
- - type: ActiveEmergencyLight
- - uid: 14465
+ - uid: 14484
components:
- pos: 8.5,3.5
parent: 2
@@ -90579,7 +90705,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14466
+ - uid: 14485
components:
- rot: 1.5707963267948966 rad
pos: -0.5,8.5
@@ -90588,7 +90714,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14467
+ - uid: 14486
components:
- pos: 14.5,14.5
parent: 2
@@ -90596,7 +90722,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14468
+ - uid: 14487
components:
- pos: -20.5,-4.5
parent: 2
@@ -90604,7 +90730,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14469
+ - uid: 14488
components:
- pos: -16.5,4.5
parent: 2
@@ -90612,7 +90738,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14470
+ - uid: 14489
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-12.5
@@ -90621,7 +90747,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14471
+ - uid: 14490
components:
- pos: 30.5,8.5
parent: 2
@@ -90629,7 +90755,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14472
+ - uid: 14491
components:
- pos: 23.5,18.5
parent: 2
@@ -90637,7 +90763,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14473
+ - uid: 14492
components:
- pos: 10.5,-41.5
parent: 2
@@ -90645,15 +90771,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14474
- components:
- - pos: 38.5,-41.5
- parent: 2
- type: Transform
- - enabled: True
- type: PointLight
- - type: ActiveEmergencyLight
- - uid: 14475
+ - uid: 14493
components:
- pos: -14.5,-41.5
parent: 2
@@ -90661,7 +90779,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14476
+ - uid: 14494
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-42.5
@@ -90670,7 +90788,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14477
+ - uid: 14495
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-52.5
@@ -90679,7 +90797,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14478
+ - uid: 14496
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-16.5
@@ -90688,7 +90806,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14479
+ - uid: 14497
components:
- pos: -12.5,-25.5
parent: 2
@@ -90696,7 +90814,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14480
+ - uid: 14498
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-14.5
@@ -90705,7 +90823,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14481
+ - uid: 14499
components:
- rot: 3.141592653589793 rad
pos: -45.5,-6.5
@@ -90714,7 +90832,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14482
+ - uid: 14500
components:
- pos: -17.5,-69.5
parent: 2
@@ -90722,7 +90840,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14483
+ - uid: 14501
components:
- rot: 3.141592653589793 rad
pos: 30.5,-18.5
@@ -90731,7 +90849,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14484
+ - uid: 14502
components:
- rot: 3.141592653589793 rad
pos: 20.5,-18.5
@@ -90740,7 +90858,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14485
+ - uid: 14503
components:
- rot: -1.5707963267948966 rad
pos: 18.5,4.5
@@ -90749,7 +90867,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14486
+ - uid: 14504
components:
- pos: 37.5,-25.5
parent: 2
@@ -90757,7 +90875,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14487
+ - uid: 14505
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-26.5
@@ -90766,7 +90884,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14488
+ - uid: 14506
components:
- rot: 3.141592653589793 rad
pos: 40.5,0.5
@@ -90775,7 +90893,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14489
+ - uid: 14507
components:
- rot: -1.5707963267948966 rad
pos: 54.5,1.5
@@ -90784,7 +90902,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14490
+ - uid: 14508
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-35.5
@@ -90793,7 +90911,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14491
+ - uid: 14509
components:
- pos: 60.5,-51.5
parent: 2
@@ -90801,7 +90919,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14492
+ - uid: 14510
components:
- pos: 53.5,-51.5
parent: 2
@@ -90809,7 +90927,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14493
+ - uid: 14511
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-47.5
@@ -90818,7 +90936,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14494
+ - uid: 14512
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-38.5
@@ -90827,7 +90945,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14495
+ - uid: 14513
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-27.5
@@ -90836,7 +90954,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14496
+ - uid: 14514
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-27.5
@@ -90845,7 +90963,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14497
+ - uid: 14515
components:
- pos: 4.5,-25.5
parent: 2
@@ -90853,7 +90971,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14498
+ - uid: 14516
components:
- pos: -2.5,-25.5
parent: 2
@@ -90861,7 +90979,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14499
+ - uid: 14517
components:
- pos: 5.5,-41.5
parent: 2
@@ -90869,7 +90987,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14500
+ - uid: 14518
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-35.5
@@ -90878,7 +90996,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14501
+ - uid: 14519
components:
- rot: 3.141592653589793 rad
pos: -30.5,-35.5
@@ -90887,7 +91005,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14502
+ - uid: 14520
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-10.5
@@ -90896,7 +91014,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14503
+ - uid: 14521
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-26.5
@@ -90905,7 +91023,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14504
+ - uid: 14522
components:
- pos: -71.5,-23.5
parent: 2
@@ -90913,7 +91031,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14505
+ - uid: 14523
components:
- rot: 3.141592653589793 rad
pos: -35.5,-0.5
@@ -90922,7 +91040,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14506
+ - uid: 14524
components:
- rot: -1.5707963267948966 rad
pos: 30.5,23.5
@@ -90931,7 +91049,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14507
+ - uid: 14525
components:
- rot: 3.141592653589793 rad
pos: 30.5,14.5
@@ -90940,7 +91058,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14508
+ - uid: 14526
components:
- rot: 1.5707963267948966 rad
pos: 20.5,20.5
@@ -90949,7 +91067,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14509
+ - uid: 14527
components:
- rot: -1.5707963267948966 rad
pos: -2.5,8.5
@@ -90958,7 +91076,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14510
+ - uid: 14528
components:
- rot: 3.141592653589793 rad
pos: -27.5,-14.5
@@ -90967,7 +91085,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14511
+ - uid: 14529
components:
- rot: 3.141592653589793 rad
pos: -34.5,-13.5
@@ -90976,7 +91094,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14512
+ - uid: 14530
components:
- rot: 1.5707963267948966 rad
pos: 4.5,20.5
@@ -90985,7 +91103,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14513
+ - uid: 14531
components:
- pos: 45.5,-71.5
parent: 2
@@ -90993,7 +91111,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14514
+ - uid: 14532
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-61.5
@@ -91002,7 +91120,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14515
+ - uid: 14533
components:
- pos: 27.5,-58.5
parent: 2
@@ -91010,7 +91128,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14516
+ - uid: 14534
components:
- rot: 1.5707963267948966 rad
pos: -25.5,20.5
@@ -91019,7 +91137,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14517
+ - uid: 14535
components:
- rot: -1.5707963267948966 rad
pos: -36.5,20.5
@@ -91028,7 +91146,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14518
+ - uid: 14536
components:
- rot: 3.141592653589793 rad
pos: -44.5,28.5
@@ -91037,7 +91155,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14519
+ - uid: 14537
components:
- rot: 1.5707963267948966 rad
pos: -38.5,30.5
@@ -91046,7 +91164,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14520
+ - uid: 14538
components:
- rot: 3.141592653589793 rad
pos: -34.5,28.5
@@ -91055,7 +91173,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14521
+ - uid: 14539
components:
- pos: -17.5,7.5
parent: 2
@@ -91063,7 +91181,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14522
+ - uid: 14540
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-30.5
@@ -91072,7 +91190,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14523
+ - uid: 14541
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-35.5
@@ -91081,7 +91199,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14524
+ - uid: 14542
components:
- rot: 3.141592653589793 rad
pos: 74.5,-49.5
@@ -91090,7 +91208,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14525
+ - uid: 14543
components:
- pos: 60.5,-43.5
parent: 2
@@ -91098,7 +91216,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14526
+ - uid: 14544
components:
- pos: 6.5,-29.5
parent: 2
@@ -91106,7 +91224,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14527
+ - uid: 14545
components:
- pos: 30.5,-71.5
parent: 2
@@ -91114,7 +91232,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14528
+ - uid: 14546
components:
- rot: 3.141592653589793 rad
pos: 18.5,-86.5
@@ -91123,7 +91241,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14529
+ - uid: 14547
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-83.5
@@ -91132,7 +91250,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14530
+ - uid: 14548
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-84.5
@@ -91141,7 +91259,7 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14531
+ - uid: 14549
components:
- rot: -1.5707963267948966 rad
pos: 26.5,23.5
@@ -91150,96 +91268,102 @@ entities:
- enabled: True
type: PointLight
- type: ActiveEmergencyLight
- - uid: 14532
+ - uid: 14550
components:
- pos: -59.5,-36.5
parent: 2
type: Transform
- - uid: 14533
+ - uid: 14551
components:
- pos: 25.5,-34.5
parent: 2
type: Transform
+ - uid: 14552
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-1.5
+ parent: 2
+ type: Transform
- proto: EmergencyOxygenTankFilled
entities:
- - uid: 14534
+ - uid: 14553
components:
- pos: -2.5493312,-73.46234
parent: 2
type: Transform
- proto: EmergencyRollerBed
entities:
- - uid: 14535
+ - uid: 14554
components:
- pos: -20.356709,-75.42545
parent: 2
type: Transform
- proto: Emitter
entities:
- - uid: 14536
+ - uid: 14555
components:
- pos: -55.5,-8.5
parent: 2
type: Transform
- - uid: 14537
+ - uid: 14556
components:
- pos: -62.5,-6.5
parent: 2
type: Transform
- - uid: 14538
+ - uid: 14557
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-9.5
parent: 2
type: Transform
- - uid: 14539
+ - uid: 14558
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-9.5
parent: 2
type: Transform
- - uid: 14540
+ - uid: 14559
components:
- pos: -70.5,-6.5
parent: 2
type: Transform
- - uid: 14541
+ - uid: 14560
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-17.5
parent: 2
type: Transform
- - uid: 14542
+ - uid: 14561
components:
- rot: 3.141592653589793 rad
pos: -70.5,-20.5
parent: 2
type: Transform
- - uid: 14543
+ - uid: 14562
components:
- rot: 3.141592653589793 rad
pos: -62.5,-20.5
parent: 2
type: Transform
- - uid: 14544
+ - uid: 14563
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-17.5
parent: 2
type: Transform
- - uid: 14545
+ - uid: 14564
components:
- rot: 3.141592653589793 rad
pos: -61.5,-30.5
parent: 2
type: Transform
- - uid: 14546
+ - uid: 14565
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-7.5
parent: 2
type: Transform
- - uid: 14547
+ - uid: 14566
components:
- rot: 3.141592653589793 rad
pos: -60.5,-30.5
@@ -91247,104 +91371,104 @@ entities:
type: Transform
- proto: EncryptionKeyCargo
entities:
- - uid: 14549
+ - uid: 14568
components:
- flags: InContainer
type: MetaData
- - parent: 14548
+ - parent: 14567
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyCommand
entities:
- - uid: 14551
+ - uid: 14570
components:
- flags: InContainer
type: MetaData
- - parent: 14550
+ - parent: 14569
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyCommon
entities:
- - uid: 14553
+ - uid: 14572
components:
- flags: InContainer
type: MetaData
- - parent: 14552
+ - parent: 14571
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyEngineering
entities:
- - uid: 14555
+ - uid: 14574
components:
- flags: InContainer
type: MetaData
- - parent: 14554
+ - parent: 14573
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyMedical
entities:
- - uid: 14557
+ - uid: 14576
components:
- flags: InContainer
type: MetaData
- - parent: 14556
+ - parent: 14575
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyRobo
entities:
- - uid: 14559
+ - uid: 14578
components:
- flags: InContainer
type: MetaData
- - parent: 14558
+ - parent: 14577
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyScience
entities:
- - uid: 14560
+ - uid: 14579
components:
- flags: InContainer
type: MetaData
- - parent: 14558
+ - parent: 14577
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeySecurity
entities:
- - uid: 14562
+ - uid: 14581
components:
- flags: InContainer
type: MetaData
- - parent: 14561
+ - parent: 14580
type: Transform
- canCollide: False
type: Physics
- proto: EncryptionKeyService
entities:
- - uid: 14564
+ - uid: 14583
components:
- flags: InContainer
type: MetaData
- - parent: 14563
+ - parent: 14582
type: Transform
- canCollide: False
type: Physics
- proto: ExosuitFabricator
entities:
- - uid: 14565
+ - uid: 14584
components:
- pos: 69.5,-43.5
parent: 2
type: Transform
- proto: ExplosivesSignMed
entities:
- - uid: 14566
+ - uid: 14585
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-32.5
@@ -91352,186 +91476,181 @@ entities:
type: Transform
- proto: ExtendedEmergencyOxygenTankFilled
entities:
- - uid: 14567
+ - uid: 14586
components:
- pos: -70.53087,-25.890057
parent: 2
type: Transform
- - uid: 14568
+ - uid: 14587
components:
- pos: -40.389053,32.87297
parent: 2
type: Transform
- - uid: 14569
+ - uid: 14588
components:
- pos: 3.7780228,-75.4205
parent: 2
type: Transform
- proto: ExtinguisherCabinetFilled
entities:
- - uid: 14570
+ - uid: 14589
components:
- pos: -20.5,64.5
parent: 2
type: Transform
- - uid: 14571
+ - uid: 14590
components:
- pos: -1.5,47.5
parent: 2
type: Transform
- - uid: 14572
+ - uid: 14591
components:
- pos: -20.5,53.5
parent: 2
type: Transform
- - uid: 14573
+ - uid: 14592
components:
- pos: -13.5,32.5
parent: 2
type: Transform
- - uid: 14574
+ - uid: 14593
components:
- pos: -1.5,8.5
parent: 2
type: Transform
- - uid: 14575
+ - uid: 14594
components:
- pos: -33.5,-39.5
parent: 2
type: Transform
- - uid: 14576
+ - uid: 14595
components:
- pos: -15.5,-2.5
parent: 2
type: Transform
- - uid: 14577
+ - uid: 14596
components:
- pos: -17.5,-17.5
parent: 2
type: Transform
- - uid: 14578
+ - uid: 14597
components:
- pos: -21.5,-30.5
parent: 2
type: Transform
- - uid: 14579
+ - uid: 14598
components:
- pos: -2.5,-29.5
parent: 2
type: Transform
- - uid: 14580
+ - uid: 14599
components:
- pos: 52.5,-46.5
parent: 2
type: Transform
- - uid: 14581
+ - uid: 14600
components:
- pos: -10.5,-47.5
parent: 2
type: Transform
- - uid: 14582
+ - uid: 14601
components:
- pos: 19.5,18.5
parent: 2
type: Transform
- - uid: 14583
+ - uid: 14602
components:
- pos: 3.5,13.5
parent: 2
type: Transform
- - uid: 14584
- components:
- - pos: -6.5,-17.5
- parent: 2
- type: Transform
- - uid: 14585
+ - uid: 14603
components:
- pos: 23.5,-51.5
parent: 2
type: Transform
- - uid: 14586
+ - uid: 14604
components:
- pos: 77.5,-48.5
parent: 2
type: Transform
- - uid: 14587
+ - uid: 14605
components:
- pos: 76.5,-38.5
parent: 2
type: Transform
- proto: FaxMachineBase
entities:
- - uid: 14588
+ - uid: 14606
components:
- pos: -28.5,-9.5
parent: 2
type: Transform
- name: engineering fax
type: FaxMachine
- - uid: 14589
+ - uid: 14607
components:
- pos: -34.5,23.5
parent: 2
type: Transform
- name: cargo fax
type: FaxMachine
- - uid: 14590
+ - uid: 14608
components:
- pos: 40.5,-39.5
parent: 2
type: Transform
- name: science fax
type: FaxMachine
- - uid: 14591
+ - uid: 14609
components:
- pos: -16.5,-61.5
parent: 2
type: Transform
- name: medbay fax
type: FaxMachine
- - uid: 14592
+ - uid: 14610
components:
- pos: -25.5,-35.5
parent: 2
type: Transform
- name: atmos fax
type: FaxMachine
- - uid: 14593
+ - uid: 14611
components:
- pos: 18.5,-14.5
parent: 2
type: Transform
- name: detective fax
type: FaxMachine
- - uid: 14594
+ - uid: 14612
components:
- pos: 22.5,23.5
parent: 2
type: Transform
- name: security fax
type: FaxMachine
- - uid: 14595
+ - uid: 14613
components:
- pos: 12.5,-5.5
parent: 2
type: Transform
- name: library fax
type: FaxMachine
- - uid: 14596
+ - uid: 14614
components:
- pos: -22.5,-98.5
parent: 2
type: Transform
- name: maint fax
type: FaxMachine
- - uid: 14597
+ - uid: 14615
components:
- pos: -12.5,-19.5
parent: 2
type: Transform
- name: janitorial fax
type: FaxMachine
- - uid: 14598
+ - uid: 14616
components:
- pos: -1.5,-6.5
parent: 2
@@ -91540,57 +91659,57 @@ entities:
type: FaxMachine
- proto: FaxMachineCaptain
entities:
- - uid: 14599
+ - uid: 14617
components:
- pos: 30.5,-29.5
parent: 2
type: Transform
- proto: FenceMetalCorner
entities:
- - uid: 14600
+ - uid: 14618
components:
- rot: 3.141592653589793 rad
pos: 61.5,47.5
parent: 2
type: Transform
- - uid: 14601
+ - uid: 14619
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-84.5
parent: 2
type: Transform
- - uid: 14602
+ - uid: 14620
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-80.5
parent: 2
type: Transform
- - uid: 14603
+ - uid: 14621
components:
- rot: 3.141592653589793 rad
pos: -44.5,-80.5
parent: 2
type: Transform
- - uid: 14604
+ - uid: 14622
components:
- pos: -39.5,-84.5
parent: 2
type: Transform
- proto: FenceMetalGate
entities:
- - uid: 14605
+ - uid: 14623
components:
- rot: 3.141592653589793 rad
pos: -52.5,-30.5
parent: 2
type: Transform
- - uid: 14606
+ - uid: 14624
components:
- rot: 3.141592653589793 rad
pos: 62.5,47.5
parent: 2
type: Transform
- - uid: 14607
+ - uid: 14625
components:
- rot: 3.141592653589793 rad
pos: -41.5,-84.5
@@ -91602,98 +91721,98 @@ entities:
type: Physics
- proto: FenceMetalStraight
entities:
- - uid: 14608
+ - uid: 14626
components:
- pos: 61.5,49.5
parent: 2
type: Transform
- - uid: 14609
+ - uid: 14627
components:
- rot: 1.5707963267948966 rad
pos: 63.5,47.5
parent: 2
type: Transform
- - uid: 14610
+ - uid: 14628
components:
- pos: 61.5,48.5
parent: 2
type: Transform
- - uid: 14611
+ - uid: 14629
components:
- rot: 3.141592653589793 rad
pos: -39.5,-82.5
parent: 2
type: Transform
- - uid: 14612
+ - uid: 14630
components:
- rot: 3.141592653589793 rad
pos: -39.5,-81.5
parent: 2
type: Transform
- - uid: 14613
+ - uid: 14631
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-80.5
parent: 2
type: Transform
- - uid: 14614
+ - uid: 14632
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-80.5
parent: 2
type: Transform
- - uid: 14615
+ - uid: 14633
components:
- pos: -44.5,-82.5
parent: 2
type: Transform
- - uid: 14616
+ - uid: 14634
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-84.5
parent: 2
type: Transform
- - uid: 14617
+ - uid: 14635
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-80.5
parent: 2
type: Transform
- - uid: 14618
+ - uid: 14636
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-84.5
parent: 2
type: Transform
- - uid: 14619
+ - uid: 14637
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-84.5
parent: 2
type: Transform
- - uid: 14620
+ - uid: 14638
components:
- pos: -44.5,-83.5
parent: 2
type: Transform
- - uid: 14621
+ - uid: 14639
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-80.5
parent: 2
type: Transform
- - uid: 14622
+ - uid: 14640
components:
- pos: -44.5,-81.5
parent: 2
type: Transform
- - uid: 14623
+ - uid: 14641
components:
- rot: 3.141592653589793 rad
pos: -39.5,-83.5
parent: 2
type: Transform
- - uid: 14624
+ - uid: 14642
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-30.5
@@ -91701,191 +91820,191 @@ entities:
type: Transform
- proto: FigureSpawner
entities:
- - uid: 14625
+ - uid: 14643
components:
- pos: 9.5,-6.5
parent: 2
type: Transform
- - uid: 14626
+ - uid: 14644
components:
- pos: 10.5,-6.5
parent: 2
type: Transform
- - uid: 14627
+ - uid: 14645
components:
- pos: -0.5,31.5
parent: 2
type: Transform
- - uid: 14628
+ - uid: 14646
components:
- pos: -1.5,30.5
parent: 2
type: Transform
- proto: filingCabinet
entities:
- - uid: 14629
+ - uid: 14647
components:
- pos: 17.5,-14.5
parent: 2
type: Transform
- - uid: 14630
+ - uid: 14648
components:
- pos: 62.5,-3.5
parent: 2
type: Transform
- proto: filingCabinetDrawer
entities:
- - uid: 14631
+ - uid: 14649
components:
- pos: -24.5,-69.5
parent: 2
type: Transform
- - uid: 14632
+ - uid: 14650
components:
- pos: 58.5,31.5
parent: 2
type: Transform
- - uid: 14633
+ - uid: 14651
components:
- pos: 63.5,-3.5
parent: 2
type: Transform
- proto: filingCabinetDrawerRandom
entities:
- - uid: 14634
+ - uid: 14652
components:
- pos: 41.5,-3.5
parent: 2
type: Transform
- - uid: 14635
+ - uid: 14653
components:
- pos: -22.5,13.5
parent: 2
type: Transform
- proto: filingCabinetRandom
entities:
- - uid: 14636
+ - uid: 14654
components:
- pos: 41.5,-2.5
parent: 2
type: Transform
- - uid: 14637
+ - uid: 14655
components:
- pos: -23.5,13.5
parent: 2
type: Transform
- proto: filingCabinetTallRandom
entities:
- - uid: 14638
+ - uid: 14656
components:
- pos: 57.5,-40.5
parent: 2
type: Transform
- proto: FireAlarm
entities:
- - uid: 14639
+ - uid: 14657
components:
- pos: -6.5,-44.5
parent: 2
type: Transform
- devices:
- 815
- - 15080
- - 15081
- - 14734
- - 14733
- - 14755
- - 14732
- - 14731
- - 14730
- - 14925
- - 14926
- - 14971
- - 15045
- - 15044
- - 15046
- - 14819
- - 14853
+ - 15098
+ - 15099
+ - 14752
+ - 14751
+ - 14773
+ - 14750
+ - 14749
+ - 14748
+ - 14943
+ - 14944
+ - 14989
+ - 15063
+ - 15062
+ - 15064
+ - 14836
+ - 14870
type: DeviceList
- - uid: 14640
+ - uid: 14658
components:
- pos: 30.5,-40.5
parent: 2
type: Transform
- devices:
- - 15022
- - 15021
- - 15020
- - 14974
- - 14896
- - 14918
- - 15109
- - 14985
- - 14911
- - 14910
- - 14970
- - 14972
- - 14977
- - 15012
- - 14949
- - 14742
+ - 15040
+ - 15039
+ - 15038
+ - 14992
+ - 14914
+ - 14936
+ - 15127
+ - 15003
+ - 14929
+ - 14928
+ - 14988
+ - 14990
+ - 14995
+ - 15030
+ - 14967
+ - 14760
- 820
- - 15000
- - 14998
- - 14843
+ - 15018
+ - 15016
+ - 14860
type: DeviceList
- - uid: 14641
+ - uid: 14659
components:
- rot: -1.5707963267948966 rad
pos: -20.5,58.5
parent: 2
type: Transform
- devices:
- - 15162
- - 15157
- - 15158
- - 15151
- - 15150
- - 15149
- - 15154
- - 15153
+ - 15180
+ - 15175
+ - 15176
+ - 15169
+ - 15168
+ - 15167
+ - 15172
+ - 15171
- 861
- - 15141
- - 15140
+ - 15159
+ - 15158
type: DeviceList
- - uid: 14642
+ - uid: 14660
components:
- rot: -1.5707963267948966 rad
pos: -11.5,62.5
parent: 2
type: Transform
- devices:
- - 15157
- - 15158
- - 15160
- - 15155
- - 15156
- - 15152
- - 15130
+ - 15175
+ - 15176
+ - 15178
+ - 15173
+ - 15174
+ - 15170
+ - 15148
- 862
type: DeviceList
- - uid: 14643
+ - uid: 14661
components:
- pos: -29.5,-15.5
parent: 2
type: Transform
- devices:
- 874
- - 15033
- - 15048
- - 15049
- - 15062
- - 15061
- - 14809
- - 15063
- - 15064
+ - 15051
+ - 15066
+ - 15067
+ - 15080
+ - 15079
+ - 14826
+ - 15081
+ - 15082
type: DeviceList
- - uid: 14644
+ - uid: 14662
components:
- rot: 1.5707963267948966 rad
pos: 51.5,12.5
@@ -91893,37 +92012,37 @@ entities:
type: Transform
- devices:
- 856
- - 14869
- - 14868
- - 14867
- - 14866
- - 14865
- - 14870
- - 14871
- - 14872
- - 15004
- - 15003
- - 15011
- - 15087
- - 15006
+ - 14887
+ - 14886
+ - 14885
+ - 14884
+ - 14883
+ - 14888
+ - 14889
+ - 14890
+ - 15022
+ - 15021
+ - 15029
+ - 15105
+ - 15024
type: DeviceList
- - uid: 14645
+ - uid: 14663
components:
- pos: 28.5,-57.5
parent: 2
type: Transform
- devices:
- 855
- - 15038
- - 15037
- - 15039
- - 14727
- - 14911
- - 14985
- - 15109
- - 15114
+ - 15056
+ - 15055
+ - 15057
+ - 14745
+ - 14929
+ - 15003
+ - 15127
+ - 15132
type: DeviceList
- - uid: 14646
+ - uid: 14664
components:
- rot: -1.5707963267948966 rad
pos: -17.5,20.5
@@ -91931,44 +92050,44 @@ entities:
type: Transform
- devices:
- 892
- - 15071
- - 15070
- - 15072
- - 15073
- - 15074
- - 15010
- - 15135
- - 15136
- - 15075
+ - 15089
+ - 15088
+ - 15090
+ - 15091
+ - 15092
+ - 15028
+ - 15153
+ - 15154
+ - 15093
type: DeviceList
- - uid: 14647
+ - uid: 14665
components:
- pos: 65.5,-42.5
parent: 2
type: Transform
- devices:
- 900
- - 15017
- - 14875
- - 14874
- - 14768
- - 15018
- - 15128
- - 15129
+ - 15035
+ - 14893
+ - 14892
+ - 14786
+ - 15036
+ - 15146
+ - 15147
type: DeviceList
- - uid: 14648
+ - uid: 14666
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-11.5
parent: 2
type: Transform
- devices:
- - 15108
- - 14808
- - 14809
+ - 15126
+ - 14825
+ - 14826
- 921
type: DeviceList
- - uid: 14649
+ - uid: 14667
components:
- rot: 3.141592653589793 rad
pos: -38.5,-14.5
@@ -91976,45 +92095,45 @@ entities:
type: Transform
- devices:
- 896
- - 15051
- - 15050
- - 15064
- - 15063
- - 15118
- - 15067
- - 14810
+ - 15069
+ - 15068
+ - 15082
+ - 15081
+ - 15136
+ - 15085
+ - 14827
type: DeviceList
- - uid: 14650
+ - uid: 14668
components:
- pos: 8.5,18.5
parent: 2
type: Transform
- devices:
- - 15123
- - 14824
- - 14825
- - 14991
- - 14992
- - 14744
- - 14758
- - 14947
+ - 15141
+ - 14841
+ - 14842
+ - 15009
+ - 15010
+ - 14762
+ - 14776
+ - 14965
- 844
type: DeviceList
- - uid: 14651
+ - uid: 14669
components:
- pos: -4.5,60.5
parent: 2
type: Transform
- devices:
- - 15155
- - 15156
- - 15161
- - 15148
- - 15147
- - 15146
+ - 15173
+ - 15174
+ - 15179
+ - 15166
+ - 15165
+ - 15164
- 863
type: DeviceList
- - uid: 14652
+ - uid: 14670
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-36.5
@@ -92022,110 +92141,110 @@ entities:
type: Transform
- devices:
- 898
- - 14767
- - 15013
- - 14770
- - 14769
+ - 14785
+ - 15031
+ - 14788
+ - 14787
type: DeviceList
- - uid: 14653
+ - uid: 14671
components:
- pos: 6.5,4.5
parent: 2
type: Transform
- devices:
- - 14996
- - 14956
- - 14997
- - 14962
- - 14904
- - 14942
- - 14940
- - 14948
- - 14883
- - 14882
- - 14916
- - 14881
- - 14912
- - 14905
- - 14891
- - 14761
+ - 15014
+ - 14974
+ - 15015
+ - 14980
+ - 14922
+ - 14960
+ - 14958
+ - 14966
+ - 14901
+ - 14900
+ - 14934
+ - 14899
+ - 14930
+ - 14923
+ - 14909
+ - 14779
- 842
type: DeviceList
- - uid: 14654
+ - uid: 14672
components:
- pos: -9.5,4.5
parent: 2
type: Transform
- devices:
- - 15110
- - 15101
- - 15102
- - 15099
- - 15100
- - 14765
- - 14919
- - 14965
- - 14920
- - 14940
- - 14942
- - 14904
- - 14890
- - 14939
- - 14903
+ - 15128
+ - 15119
+ - 15120
+ - 15117
+ - 15118
+ - 14783
+ - 14937
+ - 14983
+ - 14938
+ - 14958
+ - 14960
+ - 14922
+ - 14908
+ - 14957
+ - 14921
- 841
type: DeviceList
- - uid: 14655
+ - uid: 14673
components:
- pos: -15.5,-3.5
parent: 2
type: Transform
- devices:
- 865
- - 15091
- - 15090
- - 15092
- - 15034
- - 15031
- - 14969
- - 15103
- - 15101
- - 15102
- - 15099
- - 15100
- - 14752
+ - 15109
+ - 15108
+ - 15110
+ - 15052
+ - 15049
+ - 14987
+ - 15121
+ - 15119
+ - 15120
+ - 15117
+ - 15118
+ - 14770
type: DeviceList
- - uid: 14656
+ - uid: 14674
components:
- pos: 22.5,24.5
parent: 2
type: Transform
- devices:
- - 15122
- - 15107
- - 15106
- - 15105
- - 15001
+ - 15140
+ - 15125
+ - 15124
+ - 15123
+ - 15019
- 851
type: DeviceList
- - uid: 14657
+ - uid: 14675
components:
- pos: 6.5,11.5
parent: 2
type: Transform
- devices:
- - 14991
- - 14992
- - 14938
- - 14958
- - 14889
- - 14996
+ - 15009
+ - 15010
- 14956
- - 14997
+ - 14976
+ - 14907
+ - 15014
+ - 14974
+ - 15015
- 845
- - 14966
- - 14962
+ - 14984
+ - 14980
type: DeviceList
- - uid: 14658
+ - uid: 14676
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-15.5
@@ -92133,96 +92252,96 @@ entities:
type: Transform
- devices:
- 872
- - 15108
- - 14917
- - 14921
- - 15061
- - 15062
- - 14808
+ - 15126
+ - 14935
+ - 14939
+ - 15079
+ - 15080
+ - 14825
type: DeviceList
- - uid: 14659
+ - uid: 14677
components:
- pos: -13.5,-40.5
parent: 2
type: Transform
- devices:
- - 14901
- - 14900
- - 14899
- - 14999
- - 14730
- - 14731
- - 14732
- - 14755
- - 14733
- - 14734
- - 14972
- - 14970
- - 14910
- - 816
- - 14993
- - 14994
- - 14995
- type: DeviceList
- - uid: 14660
- components:
- - rot: 3.141592653589793 rad
+ - 14919
+ - 14918
+ - 14917
+ - 15017
+ - 14748
+ - 14749
+ - 14750
+ - 14773
+ - 14751
+ - 14752
+ - 14990
+ - 14988
+ - 14928
+ - 816
+ - 15011
+ - 15012
+ - 15013
+ type: DeviceList
+ - uid: 14678
+ components:
+ - rot: 3.141592653589793 rad
pos: 4.5,-51.5
parent: 2
type: Transform
- devices:
- 833
- - 15082
- - 14898
- - 15081
- - 15080
+ - 15100
+ - 14916
+ - 15099
+ - 15098
type: DeviceList
- - uid: 14661
+ - uid: 14679
components:
- pos: -16.5,-24.5
parent: 2
type: Transform
- devices:
- - 15053
+ - 15071
- 880
- - 14783
- - 14764
- - 15035
- - 14953
- - 14877
- - 14989
- - 15060
- - 15032
- - 15059
- - 15095
- - 15096
- - 15097
+ - 14801
+ - 14782
+ - 15053
+ - 14971
+ - 14895
+ - 15007
+ - 15078
+ - 15050
+ - 15077
+ - 15113
+ - 15114
+ - 15115
type: DeviceList
- - uid: 14662
+ - uid: 14680
components:
- pos: -16.5,-58.5
parent: 2
type: Transform
- devices:
- - 14929
- - 15083
- - 15084
- - 14928
- - 14927
- - 14955
- - 15040
- - 15041
- - 15047
- - 15088
- - 15112
- - 15113
- - 15111
- - 15117
+ - 14947
+ - 15101
+ - 15102
+ - 14946
+ - 14945
+ - 14973
+ - 15058
+ - 15059
+ - 15065
+ - 15106
+ - 15130
+ - 15131
+ - 15129
+ - 15135
- 819
- - 14736
- - 14749
+ - 14754
+ - 14767
type: DeviceList
- - uid: 14663
+ - uid: 14681
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-61.5
@@ -92230,71 +92349,71 @@ entities:
type: Transform
- devices:
- 858
- - 15038
- - 15037
- - 15039
- - 15036
- - 14884
- - 15042
- - 15043
+ - 15056
+ - 15055
+ - 15057
+ - 15054
+ - 14902
+ - 15060
+ - 15061
type: DeviceList
- - uid: 14664
+ - uid: 14682
components:
- pos: -7.5,-24.5
parent: 2
type: Transform
- devices:
- 839
- - 15095
- - 15096
- - 15097
- - 14741
- - 14990
- - 14957
- - 14951
- - 14922
- - 14952
- - 14988
- - 14993
- - 14994
- - 14995
+ - 15113
+ - 15114
+ - 15115
+ - 14759
+ - 15008
+ - 14975
+ - 14969
+ - 14940
+ - 14970
+ - 15006
+ - 15011
+ - 15012
+ - 15013
type: DeviceList
- - uid: 14665
+ - uid: 14683
components:
- pos: 27.5,-15.5
parent: 2
type: Transform
- devices:
- - 14937
- - 14924
- - 14963
- - 14979
- - 14880
- - 14976
- - 14902
- - 14941
- - 14908
- - 14909
+ - 14955
+ - 14942
+ - 14981
+ - 14997
+ - 14898
+ - 14994
+ - 14920
+ - 14959
+ - 14926
+ - 14927
- 882
type: DeviceList
- - uid: 14666
+ - uid: 14684
components:
- pos: 24.5,-3.5
parent: 2
type: Transform
- devices:
- 866
- - 14987
- - 14968
+ - 15005
+ - 14986
+ - 14924
- 14906
- - 14888
- - 14915
- - 14943
- - 14880
- - 14976
- - 14902
+ - 14933
+ - 14961
+ - 14898
+ - 14994
+ - 14920
type: DeviceList
- - uid: 14667
+ - uid: 14685
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-3.5
@@ -92302,155 +92421,159 @@ entities:
type: Transform
- devices:
- 867
- - 14881
- - 14912
- - 14905
- - 14891
- - 14885
- - 14945
- - 14946
+ - 14899
+ - 14930
+ - 14923
+ - 14909
+ - 14903
+ - 14963
- 14964
- - 14987
- - 14968
- - 14906
+ - 14982
+ - 15005
+ - 14986
+ - 14924
type: DeviceList
- - uid: 14668
+ - uid: 14686
components:
- pos: 12.5,-24.5
parent: 2
type: Transform
- devices:
- 837
- - 14723
- - 14960
- - 14879
- - 14954
- - 14937
- - 14924
- - 14963
- - 14949
- - 15012
- - 14977
- - 14719
+ - 14741
+ - 14978
+ - 14897
+ - 14972
+ - 14955
+ - 14942
+ - 14981
+ - 14967
+ - 15030
+ - 14995
+ - 14737
type: DeviceList
- - uid: 14669
+ - uid: 14687
components:
- pos: 37.5,-24.5
parent: 2
type: Transform
- devices:
- - 14722
- - 14718
- - 14717
+ - 14740
+ - 14736
+ - 14735
- 823
- - 14724
- - 14941
- - 14908
- - 14909
- - 14974
- - 14896
- - 14918
+ - 14742
+ - 14959
+ - 14926
+ - 14927
+ - 14992
+ - 14914
+ - 14936
type: DeviceList
- - uid: 14670
+ - uid: 14688
components:
- pos: 33.5,9.5
parent: 2
type: Transform
- devices:
- 869
- - 14982
- - 14888
- - 14915
- - 14943
- - 14930
- - 14913
- - 14944
- - 14934
- - 14959
- - 15093
+ - 15000
+ - 14906
+ - 14933
+ - 14961
+ - 14948
- 14931
+ - 14962
+ - 14952
+ - 14977
+ - 15111
+ - 14949
type: DeviceList
- - uid: 14671
+ - uid: 14689
components:
- pos: 56.5,-4.5
parent: 2
type: Transform
- devices:
- - 14773
+ - 14791
- 854
+ - 15045
- 15027
- - 15009
- - 15008
- - 15007
- - 15115
- 15026
+ - 15025
+ - 15133
+ - 15044
type: DeviceList
- - uid: 14672
+ - uid: 14690
components:
- pos: 40.5,3.5
parent: 2
type: Transform
- devices:
- 852
- - 15081
- - 15080
+ - 15099
+ - 15098
- 833
- - 14934
- - 14959
- - 15093
- - 14975
- - 15007
- - 15008
- - 15009
- - 15164
- - 15163
+ - 14952
+ - 14977
+ - 15111
+ - 14993
+ - 15025
+ - 15026
+ - 15027
+ - 15182
+ - 15181
type: DeviceList
- - uid: 14673
+ - uid: 14691
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-10.5
parent: 2
type: Transform
+ - ShutdownSubscribers:
+ - 15231
+ type: DeviceNetwork
- devices:
- 840
- - 14990
- - 14957
- - 14951
- - 14920
- - 14965
- - 14919
+ - 15008
+ - 14975
+ - 14969
+ - 14938
+ - 14983
+ - 14937
+ - 15231
type: DeviceList
- - uid: 14674
+ - uid: 14692
components:
- pos: -31.5,2.5
parent: 2
type: Transform
- devices:
- 885
- - 14969
- - 15031
- - 15034
- - 14750
- - 15077
- - 15076
- - 15078
- - 15079
- - 15086
+ - 14987
+ - 15049
+ - 15052
+ - 14768
+ - 15095
+ - 15094
+ - 15096
+ - 15097
+ - 15104
type: DeviceList
- - uid: 14675
+ - uid: 14693
components:
- pos: -48.5,9.5
parent: 2
type: Transform
- devices:
- - 15089
- - 15085
+ - 15107
+ - 15103
- 886
- - 15078
- - 15079
- - 15086
+ - 15096
+ - 15097
+ - 15104
type: DeviceList
- - uid: 14676
+ - uid: 14694
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-10.5
@@ -92458,25 +92581,25 @@ entities:
type: Transform
- devices:
- 895
- - 15057
- - 15056
- - 14785
- - 14786
+ - 15075
+ - 15074
+ - 14803
+ - 14804
type: DeviceList
- - uid: 14677
+ - uid: 14695
components:
- pos: -58.5,-22.5
parent: 2
type: Transform
- devices:
- 894
- - 15068
- - 15098
- - 14781
- - 15056
- - 15057
+ - 15086
+ - 15116
+ - 14799
+ - 15074
+ - 15075
type: DeviceList
- - uid: 14678
+ - uid: 14696
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-35.5
@@ -92484,120 +92607,120 @@ entities:
type: Transform
- devices:
- 878
- - 15054
- - 15055
- - 15028
- - 15029
- - 14776
- - 14775
- - 14780
- - 14779
+ - 15072
+ - 15073
+ - 15046
+ - 15047
+ - 14794
+ - 14793
+ - 14798
+ - 14797
type: DeviceList
- - uid: 14679
+ - uid: 14697
components:
- pos: 52.5,-38.5
parent: 2
type: Transform
- devices:
- 860
- - 15013
- - 15016
- - 15025
- - 15014
- - 15015
- - 15019
- - 15023
- - 15024
- - 15126
- - 15127
+ - 15031
+ - 15034
+ - 15043
+ - 15032
+ - 15033
+ - 15037
+ - 15041
+ - 15042
+ - 15144
+ - 15145
type: DeviceList
- - uid: 14680
+ - uid: 14698
components:
- pos: 22.5,9.5
parent: 2
type: Transform
- devices:
- 868
- - 14738
- - 14728
- - 14726
- - 14806
- - 14946
+ - 14756
+ - 14746
+ - 14744
+ - 14823
- 14964
- - 14930
- - 14913
- - 14944
+ - 14982
+ - 14948
+ - 14931
+ - 14962
type: DeviceList
- - uid: 14681
+ - uid: 14699
components:
- pos: -26.5,-76.5
parent: 2
type: Transform
- devices:
- 826
- - 15116
- - 14983
- - 14935
+ - 15134
+ - 15001
+ - 14953
type: DeviceList
- - uid: 14682
+ - uid: 14700
components:
- rot: 1.5707963267948966 rad
pos: 27.5,15.5
parent: 2
type: Transform
- devices:
- - 15005
- - 14914
- - 14936
- - 14887
- - 15001
- - 14759
- - 14748
- - 14729
+ - 15023
+ - 14932
+ - 14954
+ - 14905
+ - 15019
+ - 14777
+ - 14766
+ - 14747
- 853
- - 15164
- - 15163
+ - 15182
+ - 15181
type: DeviceList
- - uid: 14683
+ - uid: 14701
components:
- pos: -17.5,-68.5
parent: 2
type: Transform
- devices:
- 825
- - 15124
- - 15116
- - 14878
- - 14821
+ - 15142
+ - 15134
+ - 14896
+ - 14838
type: DeviceList
- - uid: 14684
+ - uid: 14702
components:
- pos: 46.5,-40.5
parent: 2
type: Transform
- devices:
- - 14767
- - 15016
- - 15025
- - 15014
- - 15022
- - 15021
- - 15020
- - 14769
- - 14770
+ - 14785
+ - 15034
+ - 15043
+ - 15032
+ - 15040
+ - 15039
+ - 15038
+ - 14787
+ - 14788
- 908
type: DeviceList
- - uid: 14685
+ - uid: 14703
components:
- pos: -18.5,68.5
parent: 2
type: Transform
- devices:
- 910
- - 15196
- - 15195
+ - 15214
+ - 15213
type: DeviceList
- - uid: 14686
+ - uid: 14704
components:
- rot: -1.5707963267948966 rad
pos: -13.5,40.5
@@ -92605,41 +92728,41 @@ entities:
type: Transform
- devices:
- 912
- - 15143
- - 15144
- - 15145
- - 14830
- - 14827
- - 14829
- - 14828
- - 15136
- - 15135
- - 15132
- - 15133
- - 15134
- - 15149
+ - 15161
+ - 15162
+ - 15163
+ - 14847
+ - 14844
+ - 14846
+ - 14845
+ - 15154
+ - 15153
- 15150
- 15151
- - 14807
+ - 15152
+ - 15167
+ - 15168
+ - 15169
+ - 14824
type: DeviceList
- - uid: 14687
+ - uid: 14705
components:
- pos: -7.5,47.5
parent: 2
type: Transform
- devices:
- 913
- - 15143
- - 15144
- - 15145
- - 15138
- - 15139
- - 15146
- - 15147
- - 15148
- - 15159
+ - 15161
+ - 15162
+ - 15163
+ - 15156
+ - 15157
+ - 15164
+ - 15165
+ - 15166
+ - 15177
type: DeviceList
- - uid: 14688
+ - uid: 14706
components:
- rot: 3.141592653589793 rad
pos: 65.5,-36.5
@@ -92647,46 +92770,46 @@ entities:
type: Transform
- devices:
- 919
- - 14771
- - 14837
- - 14839
- - 14838
+ - 14789
+ - 14854
+ - 14856
+ - 14855
type: DeviceList
- - uid: 14689
+ - uid: 14707
components:
- pos: 73.5,-42.5
parent: 2
type: Transform
- devices:
- - 15171
- - 15172
- - 14875
- - 14874
- - 14768
+ - 15189
+ - 15190
+ - 14893
+ - 14892
+ - 14786
- 903
type: DeviceList
- - uid: 14690
+ - uid: 14708
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-13.5
parent: 2
type: Transform
- devices:
- - 15092
- - 15090
- - 15091
- - 14917
- - 14921
- - 15059
- - 15032
- - 15060
- - 14842
+ - 15110
+ - 15108
+ - 15109
+ - 14935
+ - 14939
+ - 15077
+ - 15050
+ - 15078
+ - 14859
- 873
- - 15030
- - 15173
- - 15174
+ - 15048
+ - 15191
+ - 15192
type: DeviceList
- - uid: 14691
+ - uid: 14709
components:
- rot: 3.141592653589793 rad
pos: 21.5,-26.5
@@ -92694,15 +92817,15 @@ entities:
type: Transform
- devices:
- 881
- - 14724
- - 14722
- - 14719
- - 14723
- - 14751
- - 14743
- - 14756
+ - 14742
+ - 14740
+ - 14737
+ - 14741
+ - 14769
+ - 14761
+ - 14774
type: DeviceList
- - uid: 14692
+ - uid: 14710
components:
- rot: 3.141592653589793 rad
pos: 72.5,-39.5
@@ -92710,36 +92833,36 @@ entities:
type: Transform
- devices:
- 918
- - 14841
- - 14840
- - 15170
- - 15169
+ - 14858
+ - 14857
+ - 15188
+ - 15187
type: DeviceList
- - uid: 14693
+ - uid: 14711
components:
- pos: 30.5,-70.5
parent: 2
type: Transform
- devices:
- 926
- - 15186
- - 15187
- - 15188
- - 15185
- - 15184
- - 15183
+ - 15204
+ - 15205
+ - 15206
+ - 15203
+ - 15202
+ - 15201
type: DeviceList
- - uid: 14694
+ - uid: 14712
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-85.5
parent: 2
type: Transform
- devices:
- - 15182
+ - 15200
- 927
type: DeviceList
- - uid: 14695
+ - uid: 14713
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-81.5
@@ -92747,27 +92870,27 @@ entities:
type: Transform
- devices:
- 909
- - 15181
- - 15183
- - 15184
- - 15185
+ - 15199
+ - 15201
+ - 15202
+ - 15203
type: DeviceList
- - uid: 14696
+ - uid: 14714
components:
- rot: 3.141592653589793 rad
pos: 42.5,-74.5
parent: 2
type: Transform
- devices:
- - 15189
- - 15190
- - 15191
- - 15186
- - 15187
- - 15188
+ - 15207
+ - 15208
+ - 15209
+ - 15204
+ - 15205
+ - 15206
- 857
type: DeviceList
- - uid: 14697
+ - uid: 14715
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-75.5
@@ -92775,14 +92898,14 @@ entities:
type: Transform
- devices:
- 917
- - 15189
- - 15190
- - 15191
- - 15194
- - 15193
- - 15192
+ - 15207
+ - 15208
+ - 15209
+ - 15212
+ - 15211
+ - 15210
type: DeviceList
- - uid: 14698
+ - uid: 14716
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-85.5
@@ -92790,49 +92913,49 @@ entities:
type: Transform
- devices:
- 916
- - 15192
- - 15193
- - 15194
+ - 15210
+ - 15211
+ - 15212
type: DeviceList
- - uid: 14699
+ - uid: 14717
components:
- rot: -1.5707963267948966 rad
pos: 48.5,4.5
parent: 2
type: Transform
- devices:
- - 15197
- - 15104
+ - 15215
+ - 15122
- 813
- - 15002
+ - 15020
type: DeviceList
- - uid: 14700
+ - uid: 14718
components:
- pos: 1.5,-51.5
parent: 2
type: Transform
- devices:
- - 15082
- - 14898
+ - 15100
+ - 14916
- 818
- - 15045
- - 15044
- - 15046
- - 14980
- - 15052
- - 14961
- - 14893
- - 14973
- - 14978
- - 14925
- - 14926
- - 14971
- - 14986
- - 14984
- - 15121
- - 14853
+ - 15063
+ - 15062
+ - 15064
+ - 14998
+ - 15070
+ - 14979
+ - 14911
+ - 14991
+ - 14996
+ - 14943
+ - 14944
+ - 14989
+ - 15004
+ - 15002
+ - 15139
+ - 14870
type: DeviceList
- - uid: 14701
+ - uid: 14719
components:
- rot: 1.5707963267948966 rad
pos: -9.5,16.5
@@ -92840,78 +92963,78 @@ entities:
type: Transform
- ShutdownSubscribers:
- 931
- - 14855
- - 14774
- - 14801
- - 14854
+ - 14872
+ - 14792
+ - 14818
+ - 14871
type: DeviceNetwork
- devices:
- 931
- - 14855
- - 14774
- - 14801
- - 14854
+ - 14872
+ - 14792
+ - 14818
+ - 14871
type: DeviceList
- - uid: 14702
+ - uid: 14720
components:
- pos: -10.5,13.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 847
- - 15110
- - 14903
- - 14939
- - 14890
- - 14966
- - 14855
- - 14774
+ - 15128
+ - 14921
+ - 14957
+ - 14908
+ - 14984
+ - 14872
+ - 14792
type: DeviceNetwork
- devices:
- 847
- - 15110
- - 14903
- - 14939
- - 14890
- - 14966
- - 14855
- - 14774
+ - 15128
+ - 14921
+ - 14957
+ - 14908
+ - 14984
+ - 14872
+ - 14792
type: DeviceList
- - uid: 14703
+ - uid: 14721
components:
- pos: -71.5,-36.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14856
- - 14860
+ - 14873
+ - 14877
type: DeviceNetwork
- devices:
- 932
- - 15201
- - 15202
- - 14856
- - 14860
+ - 15219
+ - 15220
+ - 14873
+ - 14877
type: DeviceList
- - uid: 14704
+ - uid: 14722
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-6.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 15206
- - 15205
- - 15203
+ - 15224
+ - 15223
+ - 15221
- 936
type: DeviceNetwork
- devices:
- 936
- - 15203
- - 15205
- - 15206
+ - 15221
+ - 15223
+ - 15224
type: DeviceList
- - uid: 14705
+ - uid: 14723
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-4.5
@@ -92919,15 +93042,15 @@ entities:
type: Transform
- ShutdownSubscribers:
- 935
- - 15205
- - 15204
+ - 15223
+ - 15222
type: DeviceNetwork
- devices:
- 935
- - 15205
- - 15204
+ - 15223
+ - 15222
type: DeviceList
- - uid: 14706
+ - uid: 14724
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-22.5
@@ -92935,829 +93058,823 @@ entities:
type: Transform
- ShutdownSubscribers:
- 937
- - 15207
- - 15208
+ - 15225
+ - 15226
type: DeviceNetwork
- devices:
- 937
- - 15207
- - 15208
+ - 15225
+ - 15226
type: DeviceList
- - uid: 14707
+ - uid: 14725
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-37.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 15209
- - 15210
- - 15212
+ - 15227
+ - 15228
+ - 15230
- 938
type: DeviceNetwork
- devices:
- - 15209
- - 15210
- - 15212
+ - 15227
+ - 15228
+ - 15230
- 938
type: DeviceList
- proto: FireAxeCabinetFilled
entities:
- - uid: 14708
+ - uid: 14726
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-49.5
parent: 2
type: Transform
- - uid: 14709
+ - uid: 14727
components:
- pos: 30.5,-20.5
parent: 2
type: Transform
- proto: FireExtinguisher
entities:
- - uid: 14710
+ - uid: 14728
components:
- pos: -40.44795,34.218018
parent: 2
type: Transform
- - uid: 14711
+ - uid: 14729
components:
- pos: -40.7292,33.999268
parent: 2
type: Transform
- - uid: 14712
+ - uid: 14730
components:
- pos: -47.435944,26.604792
parent: 2
type: Transform
- - uid: 14713
+ - uid: 14731
components:
- pos: 22.516739,-54.502064
parent: 2
type: Transform
- proto: Firelock
entities:
- - uid: 14714
+ - uid: 14732
components:
- pos: -47.5,-25.5
parent: 2
type: Transform
- - uid: 14715
+ - uid: 14733
components:
- rot: 1.5707963267948966 rad
pos: -13.5,15.5
parent: 2
type: Transform
- - uid: 14716
+ - uid: 14734
components:
- pos: 10.5,-64.5
parent: 2
type: Transform
- - uid: 14717
+ - uid: 14735
components:
- pos: 39.5,-26.5
parent: 2
type: Transform
- - uid: 14718
+ - uid: 14736
components:
- pos: 39.5,-25.5
parent: 2
type: Transform
- - uid: 14719
+ - uid: 14737
components:
- pos: 18.5,-24.5
parent: 2
type: Transform
- - uid: 14720
+ - uid: 14738
components:
- pos: 56.5,-2.5
parent: 2
type: Transform
- - uid: 14721
+ - uid: 14739
components:
- rot: 3.141592653589793 rad
pos: 15.5,-13.5
parent: 2
type: Transform
- - uid: 14722
+ - uid: 14740
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-25.5
parent: 2
type: Transform
- - uid: 14723
+ - uid: 14741
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-25.5
parent: 2
type: Transform
- - uid: 14724
+ - uid: 14742
components:
- pos: 32.5,-24.5
parent: 2
type: Transform
- - uid: 14725
+ - uid: 14743
components:
- pos: 40.5,-14.5
parent: 2
type: Transform
- - uid: 14726
+ - uid: 14744
components:
- rot: 1.5707963267948966 rad
pos: 26.5,14.5
parent: 2
type: Transform
- - uid: 14727
+ - uid: 14745
components:
- pos: 23.5,-53.5
parent: 2
type: Transform
- - uid: 14728
+ - uid: 14746
components:
- rot: 1.5707963267948966 rad
pos: 25.5,14.5
parent: 2
type: Transform
- - uid: 14729
+ - uid: 14747
components:
- pos: 30.5,23.5
parent: 2
type: Transform
- - uid: 14730
+ - uid: 14748
components:
- pos: -9.5,-44.5
parent: 2
type: Transform
- - uid: 14731
+ - uid: 14749
components:
- pos: -8.5,-44.5
parent: 2
type: Transform
- - uid: 14732
+ - uid: 14750
components:
- pos: -7.5,-44.5
parent: 2
type: Transform
- - uid: 14733
+ - uid: 14751
components:
- pos: -0.5,-44.5
parent: 2
type: Transform
- - uid: 14734
+ - uid: 14752
components:
- pos: 0.5,-44.5
parent: 2
type: Transform
- - uid: 14735
+ - uid: 14753
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-49.5
parent: 2
type: Transform
- - uid: 14736
+ - uid: 14754
components:
- pos: -13.5,-62.5
parent: 2
type: Transform
- - uid: 14737
+ - uid: 14755
components:
- pos: -21.5,-52.5
parent: 2
type: Transform
- - uid: 14738
+ - uid: 14756
components:
- rot: 1.5707963267948966 rad
pos: 24.5,14.5
parent: 2
type: Transform
- - uid: 14739
+ - uid: 14757
components:
- pos: 18.5,-51.5
parent: 2
type: Transform
- - uid: 14740
+ - uid: 14758
components:
- pos: -47.5,-27.5
parent: 2
type: Transform
- - uid: 14741
+ - uid: 14759
components:
- pos: -11.5,-24.5
parent: 2
type: Transform
- - uid: 14742
+ - uid: 14760
components:
- pos: 31.5,-44.5
parent: 2
type: Transform
- - uid: 14743
+ - uid: 14761
components:
- pos: 26.5,-26.5
parent: 2
type: Transform
- - uid: 14744
+ - uid: 14762
components:
- pos: 14.5,17.5
parent: 2
type: Transform
- - uid: 14745
+ - uid: 14763
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-41.5
parent: 2
type: Transform
- - uid: 14746
+ - uid: 14764
components:
- pos: 14.5,-51.5
parent: 2
type: Transform
- - uid: 14747
+ - uid: 14765
components:
- pos: 54.5,38.5
parent: 2
type: Transform
- - uid: 14748
+ - uid: 14766
components:
- pos: 29.5,23.5
parent: 2
type: Transform
- - uid: 14749
+ - uid: 14767
components:
- pos: -19.5,-62.5
parent: 2
type: Transform
- - uid: 14750
+ - uid: 14768
components:
- pos: -29.5,-1.5
parent: 2
type: Transform
- - uid: 14751
+ - uid: 14769
components:
- pos: 23.5,-26.5
parent: 2
type: Transform
- - uid: 14752
+ - uid: 14770
components:
- pos: -19.5,-3.5
parent: 2
type: Transform
- - uid: 14753
+ - uid: 14771
components:
- pos: -10.5,-75.5
parent: 2
type: Transform
- - uid: 14754
+ - uid: 14772
components:
- pos: 34.5,22.5
parent: 2
type: Transform
- - uid: 14755
+ - uid: 14773
components:
- pos: -1.5,-44.5
parent: 2
type: Transform
- - uid: 14756
+ - uid: 14774
components:
- pos: 28.5,-26.5
parent: 2
type: Transform
- - uid: 14757
+ - uid: 14775
components:
- pos: -1.5,-72.5
parent: 2
type: Transform
- - uid: 14758
+ - uid: 14776
components:
- pos: 14.5,16.5
parent: 2
type: Transform
- - uid: 14759
+ - uid: 14777
components:
- pos: 28.5,23.5
parent: 2
type: Transform
- - uid: 14760
+ - uid: 14778
components:
- pos: -50.5,-76.5
parent: 2
type: Transform
- - uid: 14761
+ - uid: 14779
components:
- rot: 3.141592653589793 rad
pos: 14.5,-3.5
parent: 2
type: Transform
- - uid: 14762
+ - uid: 14780
components:
- pos: 19.5,-8.5
parent: 2
type: Transform
- - uid: 14763
+ - uid: 14781
components:
- pos: -9.5,-29.5
parent: 2
type: Transform
- - uid: 14764
+ - uid: 14782
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-30.5
parent: 2
type: Transform
- - uid: 14765
+ - uid: 14783
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-2.5
parent: 2
type: Transform
- - uid: 14766
+ - uid: 14784
components:
- rot: -1.5707963267948966 rad
pos: 37.5,20.5
parent: 2
type: Transform
- - uid: 14767
+ - uid: 14785
components:
- pos: 45.5,-40.5
parent: 2
type: Transform
- - uid: 14768
+ - uid: 14786
components:
- pos: 66.5,-48.5
parent: 2
type: Transform
- - uid: 14769
+ - uid: 14787
components:
- pos: 42.5,-40.5
parent: 2
type: Transform
- - uid: 14770
+ - uid: 14788
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- - uid: 14771
+ - uid: 14789
components:
- pos: 62.5,-37.5
parent: 2
type: Transform
- - uid: 14772
+ - uid: 14790
components:
- pos: -38.5,-22.5
parent: 2
type: Transform
- - uid: 14773
+ - uid: 14791
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-16.5
parent: 2
type: Transform
- - uid: 14774
+ - uid: 14792
components:
- pos: -3.5,13.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14701
- - 14702
+ - 14719
+ - 14720
type: DeviceNetwork
- - uid: 14775
+ - uid: 14793
components:
- pos: -31.5,-30.5
parent: 2
type: Transform
- - uid: 14776
+ - uid: 14794
components:
- pos: -32.5,-30.5
parent: 2
type: Transform
- - uid: 14777
+ - uid: 14795
components:
- pos: 41.5,-11.5
parent: 2
type: Transform
- - uid: 14778
+ - uid: 14796
components:
- pos: 36.5,-8.5
parent: 2
type: Transform
- - uid: 14779
+ - uid: 14797
components:
- pos: -29.5,-34.5
parent: 2
type: Transform
- - uid: 14780
+ - uid: 14798
components:
- pos: -29.5,-33.5
parent: 2
type: Transform
- - uid: 14781
+ - uid: 14799
components:
- pos: -60.5,-26.5
parent: 2
type: Transform
- - uid: 14782
+ - uid: 14800
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-63.5
parent: 2
type: Transform
- - uid: 14783
+ - uid: 14801
components:
- pos: -22.5,-26.5
parent: 2
type: Transform
- - uid: 14784
+ - uid: 14802
components:
- pos: -29.5,-26.5
parent: 2
type: Transform
- - uid: 14785
+ - uid: 14803
components:
- pos: -49.5,-5.5
parent: 2
type: Transform
- - uid: 14786
+ - uid: 14804
components:
- pos: -49.5,-6.5
parent: 2
type: Transform
- - uid: 14787
+ - uid: 14805
components:
- pos: -51.5,-63.5
parent: 2
type: Transform
- - uid: 14788
+ - uid: 14806
components:
- pos: -56.5,-57.5
parent: 2
type: Transform
- - uid: 14789
+ - uid: 14807
components:
- pos: -23.5,-51.5
parent: 2
type: Transform
- - uid: 14790
+ - uid: 14808
components:
- pos: -42.5,-64.5
parent: 2
type: Transform
- - uid: 14791
+ - uid: 14809
components:
- pos: -24.5,-64.5
parent: 2
type: Transform
- - uid: 14792
+ - uid: 14810
components:
- pos: -30.5,-49.5
parent: 2
type: Transform
- - uid: 14793
+ - uid: 14811
components:
- pos: -28.5,-56.5
parent: 2
type: Transform
- - uid: 14794
+ - uid: 14812
components:
- pos: 44.5,-64.5
parent: 2
type: Transform
- - uid: 14795
+ - uid: 14813
components:
- pos: 58.5,27.5
parent: 2
type: Transform
- - uid: 14796
+ - uid: 14814
components:
- pos: 46.5,33.5
parent: 2
type: Transform
- - uid: 14797
+ - uid: 14815
components:
- pos: 48.5,30.5
parent: 2
type: Transform
- - uid: 14798
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-14.5
- parent: 2
- type: Transform
- - uid: 14799
+ - uid: 14816
components:
- pos: -45.5,13.5
parent: 2
type: Transform
- - uid: 14800
+ - uid: 14817
components:
- pos: -26.5,22.5
parent: 2
type: Transform
- - uid: 14801
+ - uid: 14818
components:
- pos: -1.5,14.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14701
+ - 14719
type: DeviceNetwork
- - uid: 14802
+ - uid: 14819
components:
- pos: -45.5,17.5
parent: 2
type: Transform
- - uid: 14803
+ - uid: 14820
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-29.5
parent: 2
type: Transform
- - uid: 14804
+ - uid: 14821
components:
- pos: -24.5,-49.5
parent: 2
type: Transform
- - uid: 14805
+ - uid: 14822
components:
- rot: 3.141592653589793 rad
pos: -46.5,-2.5
parent: 2
type: Transform
- - uid: 14806
+ - uid: 14823
components:
- pos: 21.5,9.5
parent: 2
type: Transform
- - uid: 14807
+ - uid: 14824
components:
- rot: -1.5707963267948966 rad
pos: -15.5,28.5
parent: 2
type: Transform
- - uid: 14808
+ - uid: 14825
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-14.5
parent: 2
type: Transform
- - uid: 14809
+ - uid: 14826
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-10.5
parent: 2
type: Transform
- - uid: 14810
+ - uid: 14827
components:
- pos: -36.5,-14.5
parent: 2
type: Transform
- - uid: 14811
+ - uid: 14828
components:
- rot: -1.5707963267948966 rad
pos: 64.5,16.5
parent: 2
type: Transform
- - uid: 14812
+ - uid: 14829
components:
- rot: -1.5707963267948966 rad
pos: 65.5,3.5
parent: 2
type: Transform
- - uid: 14813
+ - uid: 14830
components:
- pos: 43.5,-55.5
parent: 2
type: Transform
- - uid: 14814
+ - uid: 14831
components:
- rot: 3.141592653589793 rad
pos: 4.5,-15.5
parent: 2
type: Transform
- - uid: 14815
+ - uid: 14832
components:
- rot: 3.141592653589793 rad
pos: -23.5,-45.5
parent: 2
type: Transform
- - uid: 14816
+ - uid: 14833
components:
- pos: 8.5,-54.5
parent: 2
type: Transform
- - uid: 14817
+ - uid: 14834
components:
- pos: 36.5,-47.5
parent: 2
type: Transform
- - uid: 14818
+ - uid: 14835
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-55.5
parent: 2
type: Transform
- - uid: 14819
+ - uid: 14836
components:
- pos: -10.5,-46.5
parent: 2
type: Transform
- - uid: 14820
+ - uid: 14837
components:
- pos: 0.5,10.5
parent: 2
type: Transform
- - uid: 14821
+ - uid: 14838
components:
- pos: -16.5,-69.5
parent: 2
type: Transform
- - uid: 14822
+ - uid: 14839
components:
- pos: -29.5,-72.5
parent: 2
type: Transform
- - uid: 14823
+ - uid: 14840
components:
- pos: -35.5,-70.5
parent: 2
type: Transform
- - uid: 14824
+ - uid: 14841
components:
- pos: 3.5,17.5
parent: 2
type: Transform
- - uid: 14825
+ - uid: 14842
components:
- pos: 3.5,16.5
parent: 2
type: Transform
- - uid: 14826
+ - uid: 14843
components:
- pos: -19.5,45.5
parent: 2
type: Transform
- - uid: 14827
+ - uid: 14844
components:
- pos: -13.5,38.5
parent: 2
type: Transform
- - uid: 14828
+ - uid: 14845
components:
- pos: -17.5,34.5
parent: 2
type: Transform
- - uid: 14829
+ - uid: 14846
components:
- pos: -13.5,34.5
parent: 2
type: Transform
- - uid: 14830
+ - uid: 14847
components:
- pos: -13.5,41.5
parent: 2
type: Transform
- - uid: 14831
+ - uid: 14848
components:
- pos: -38.5,39.5
parent: 2
type: Transform
- - uid: 14832
+ - uid: 14849
components:
- pos: -25.5,41.5
parent: 2
type: Transform
- - uid: 14833
+ - uid: 14850
components:
- pos: -27.5,32.5
parent: 2
type: Transform
- - uid: 14834
+ - uid: 14851
components:
- pos: -8.5,-76.5
parent: 2
type: Transform
- - uid: 14835
+ - uid: 14852
components:
- pos: -13.5,-97.5
parent: 2
type: Transform
- - uid: 14836
+ - uid: 14853
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-27.5
parent: 2
type: Transform
- - uid: 14837
+ - uid: 14854
components:
- pos: 61.5,-37.5
parent: 2
type: Transform
- - uid: 14838
+ - uid: 14855
components:
- pos: 66.5,-33.5
parent: 2
type: Transform
- - uid: 14839
+ - uid: 14856
components:
- pos: 66.5,-34.5
parent: 2
type: Transform
- - uid: 14840
+ - uid: 14857
components:
- pos: 69.5,-33.5
parent: 2
type: Transform
- - uid: 14841
+ - uid: 14858
components:
- pos: 69.5,-34.5
parent: 2
type: Transform
- - uid: 14842
+ - uid: 14859
components:
- pos: -17.5,-20.5
parent: 2
type: Transform
- - uid: 14843
+ - uid: 14860
components:
- pos: 19.5,-44.5
parent: 2
type: Transform
- - uid: 14844
+ - uid: 14861
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-62.5
parent: 2
type: Transform
- - uid: 14845
+ - uid: 14862
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-65.5
parent: 2
type: Transform
- - uid: 14846
+ - uid: 14863
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-65.5
parent: 2
type: Transform
- - uid: 14847
+ - uid: 14864
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-57.5
parent: 2
type: Transform
- - uid: 14848
+ - uid: 14865
components:
- pos: 16.5,30.5
parent: 2
type: Transform
- - uid: 14849
+ - uid: 14866
components:
- pos: -6.5,-9.5
parent: 2
type: Transform
- - uid: 14850
+ - uid: 14867
components:
- pos: -13.5,-7.5
parent: 2
type: Transform
- - uid: 14851
+ - uid: 14868
components:
- pos: -14.5,-14.5
parent: 2
type: Transform
- - uid: 14852
+ - uid: 14869
components:
- pos: -15.5,-17.5
parent: 2
type: Transform
- - uid: 14853
+ - uid: 14870
components:
- pos: -4.5,-51.5
parent: 2
type: Transform
- - uid: 14854
+ - uid: 14871
components:
- pos: -9.5,15.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14701
+ - 14719
type: DeviceNetwork
- - uid: 14855
+ - uid: 14872
components:
- pos: -6.5,13.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 95
- - 14701
- - 14702
+ - 14719
+ - 14720
type: DeviceNetwork
- - uid: 14856
+ - uid: 14873
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-36.5
@@ -93765,25 +93882,25 @@ entities:
type: Transform
- ShutdownSubscribers:
- 96
- - 14703
+ - 14721
type: DeviceNetwork
- - uid: 14857
+ - uid: 14874
components:
- pos: -49.5,-16.5
parent: 2
type: Transform
- - uid: 14858
+ - uid: 14875
components:
- pos: -49.5,-17.5
parent: 2
type: Transform
- - uid: 14859
+ - uid: 14876
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-40.5
parent: 2
type: Transform
- - uid: 14860
+ - uid: 14877
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-37.5
@@ -93791,95 +93908,100 @@ entities:
type: Transform
- ShutdownSubscribers:
- 96
- - 14703
+ - 14721
type: DeviceNetwork
- - uid: 14861
+ - uid: 14878
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-36.5
parent: 2
type: Transform
- - uid: 14862
+ - uid: 14879
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-37.5
parent: 2
type: Transform
+ - uid: 14880
+ components:
+ - pos: 0.5,-12.5
+ parent: 2
+ type: Transform
- proto: FirelockEdge
entities:
- - uid: 14863
+ - uid: 14881
components:
- rot: -1.5707963267948966 rad
pos: 10.5,13.5
parent: 2
type: Transform
- - uid: 14864
+ - uid: 14882
components:
- rot: -1.5707963267948966 rad
pos: 10.5,14.5
parent: 2
type: Transform
- - uid: 14865
+ - uid: 14883
components:
- rot: 3.141592653589793 rad
pos: 59.5,21.5
parent: 2
type: Transform
- - uid: 14866
+ - uid: 14884
components:
- rot: 3.141592653589793 rad
pos: 56.5,21.5
parent: 2
type: Transform
- - uid: 14867
+ - uid: 14885
components:
- rot: 3.141592653589793 rad
pos: 53.5,21.5
parent: 2
type: Transform
- - uid: 14868
+ - uid: 14886
components:
- rot: 3.141592653589793 rad
pos: 50.5,21.5
parent: 2
type: Transform
- - uid: 14869
+ - uid: 14887
components:
- rot: 3.141592653589793 rad
pos: 47.5,21.5
parent: 2
type: Transform
- - uid: 14870
+ - uid: 14888
components:
- rot: 1.5707963267948966 rad
pos: 59.5,18.5
parent: 2
type: Transform
- - uid: 14871
+ - uid: 14889
components:
- rot: 1.5707963267948966 rad
pos: 59.5,15.5
parent: 2
type: Transform
- - uid: 14872
+ - uid: 14890
components:
- rot: 1.5707963267948966 rad
pos: 59.5,13.5
parent: 2
type: Transform
- - uid: 14873
+ - uid: 14891
components:
- rot: -1.5707963267948966 rad
pos: 61.5,21.5
parent: 2
type: Transform
- - uid: 14874
+ - uid: 14892
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-46.5
parent: 2
type: Transform
- - uid: 14875
+ - uid: 14893
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-45.5
@@ -93887,1314 +94009,1314 @@ entities:
type: Transform
- proto: FirelockGlass
entities:
- - uid: 14876
+ - uid: 14894
components:
- pos: -69.5,-23.5
parent: 2
type: Transform
- - uid: 14877
+ - uid: 14895
components:
- pos: -19.5,-39.5
parent: 2
type: Transform
- - uid: 14878
+ - uid: 14896
components:
- pos: -19.5,-68.5
parent: 2
type: Transform
- - uid: 14879
+ - uid: 14897
components:
- pos: 10.5,-26.5
parent: 2
type: Transform
- - uid: 14880
+ - uid: 14898
components:
- pos: 24.5,-15.5
parent: 2
type: Transform
- - uid: 14881
+ - uid: 14899
components:
- rot: -1.5707963267948966 rad
pos: 15.5,3.5
parent: 2
type: Transform
- - uid: 14882
+ - uid: 14900
components:
- pos: 11.5,4.5
parent: 2
type: Transform
- - uid: 14883
+ - uid: 14901
components:
- pos: 11.5,-2.5
parent: 2
type: Transform
- - uid: 14884
+ - uid: 14902
components:
- pos: 38.5,-69.5
parent: 2
type: Transform
- - uid: 14885
+ - uid: 14903
components:
- pos: 15.5,7.5
parent: 2
type: Transform
- - uid: 14886
+ - uid: 14904
components:
- pos: 16.5,18.5
parent: 2
type: Transform
- - uid: 14887
+ - uid: 14905
components:
- pos: 27.5,18.5
parent: 2
type: Transform
- - uid: 14888
+ - uid: 14906
components:
- pos: 31.5,-4.5
parent: 2
type: Transform
- - uid: 14889
+ - uid: 14907
components:
- pos: 7.5,7.5
parent: 2
type: Transform
- - uid: 14890
+ - uid: 14908
components:
- pos: -6.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14720
type: DeviceNetwork
- - uid: 14891
+ - uid: 14909
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-1.5
parent: 2
type: Transform
- - uid: 14892
+ - uid: 14910
components:
- pos: 18.5,-32.5
parent: 2
type: Transform
- - uid: 14893
+ - uid: 14911
components:
- pos: -5.5,-55.5
parent: 2
type: Transform
- - uid: 14894
+ - uid: 14912
components:
- pos: 32.5,-32.5
parent: 2
type: Transform
- - uid: 14895
+ - uid: 14913
components:
- rot: -1.5707963267948966 rad
pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 14896
+ - uid: 14914
components:
- pos: 35.5,-38.5
parent: 2
type: Transform
- - uid: 14897
+ - uid: 14915
components:
- pos: -0.5,-69.5
parent: 2
type: Transform
- - uid: 14898
+ - uid: 14916
components:
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
parent: 2
type: Transform
- - uid: 14899
+ - uid: 14917
components:
- pos: -16.5,-43.5
parent: 2
type: Transform
- - uid: 14900
+ - uid: 14918
components:
- pos: -16.5,-42.5
parent: 2
type: Transform
- - uid: 14901
+ - uid: 14919
components:
- pos: -16.5,-41.5
parent: 2
type: Transform
- - uid: 14902
+ - uid: 14920
components:
- pos: 26.5,-15.5
parent: 2
type: Transform
- - uid: 14903
+ - uid: 14921
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14720
type: DeviceNetwork
- - uid: 14904
+ - uid: 14922
components:
- pos: -1.5,3.5
parent: 2
type: Transform
- - uid: 14905
+ - uid: 14923
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-0.5
parent: 2
type: Transform
- - uid: 14906
+ - uid: 14924
components:
- pos: 19.5,-6.5
parent: 2
type: Transform
- - uid: 14907
+ - uid: 14925
components:
- pos: 8.5,-68.5
parent: 2
type: Transform
- - uid: 14908
+ - uid: 14926
components:
- pos: 35.5,-19.5
parent: 2
type: Transform
- - uid: 14909
+ - uid: 14927
components:
- pos: 36.5,-19.5
parent: 2
type: Transform
- - uid: 14910
+ - uid: 14928
components:
- pos: 7.5,-41.5
parent: 2
type: Transform
- - uid: 14911
+ - uid: 14929
components:
- pos: 24.5,-44.5
parent: 2
type: Transform
- - uid: 14912
+ - uid: 14930
components:
- rot: -1.5707963267948966 rad
pos: 15.5,2.5
parent: 2
type: Transform
- - uid: 14913
+ - uid: 14931
components:
- pos: 31.5,7.5
parent: 2
type: Transform
- - uid: 14914
+ - uid: 14932
components:
- rot: 1.5707963267948966 rad
pos: 43.5,14.5
parent: 2
type: Transform
- - uid: 14915
+ - uid: 14933
components:
- pos: 31.5,-5.5
parent: 2
type: Transform
- - uid: 14916
+ - uid: 14934
components:
- pos: 10.5,4.5
parent: 2
type: Transform
- - uid: 14917
+ - uid: 14935
components:
- pos: -21.5,-11.5
parent: 2
type: Transform
- - uid: 14918
+ - uid: 14936
components:
- pos: 36.5,-38.5
parent: 2
type: Transform
- - uid: 14919
+ - uid: 14937
components:
- pos: -3.5,-2.5
parent: 2
type: Transform
- - uid: 14920
+ - uid: 14938
components:
- pos: -5.5,-2.5
parent: 2
type: Transform
- - uid: 14921
+ - uid: 14939
components:
- pos: -21.5,-12.5
parent: 2
type: Transform
- - uid: 14922
+ - uid: 14940
components:
- pos: -0.5,-25.5
parent: 2
type: Transform
- - uid: 14923
+ - uid: 14941
components:
- rot: -1.5707963267948966 rad
pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 14924
+ - uid: 14942
components:
- pos: 15.5,-19.5
parent: 2
type: Transform
- - uid: 14925
+ - uid: 14943
components:
- pos: -9.5,-51.5
parent: 2
type: Transform
- - uid: 14926
+ - uid: 14944
components:
- pos: -8.5,-51.5
parent: 2
type: Transform
- - uid: 14927
+ - uid: 14945
components:
- pos: -19.5,-58.5
parent: 2
type: Transform
- - uid: 14928
+ - uid: 14946
components:
- pos: -6.5,-62.5
parent: 2
type: Transform
- - uid: 14929
+ - uid: 14947
components:
- pos: -2.5,-62.5
parent: 2
type: Transform
- - uid: 14930
+ - uid: 14948
components:
- pos: 31.5,8.5
parent: 2
type: Transform
- - uid: 14931
+ - uid: 14949
components:
- pos: 31.5,1.5
parent: 2
type: Transform
- - uid: 14932
+ - uid: 14950
components:
- rot: -1.5707963267948966 rad
pos: 19.5,14.5
parent: 2
type: Transform
- - uid: 14933
+ - uid: 14951
components:
- pos: -46.5,27.5
parent: 2
type: Transform
- - uid: 14934
+ - uid: 14952
components:
- pos: 35.5,2.5
parent: 2
type: Transform
- - uid: 14935
+ - uid: 14953
components:
- pos: -23.5,-81.5
parent: 2
type: Transform
- - uid: 14936
+ - uid: 14954
components:
- pos: 27.5,17.5
parent: 2
type: Transform
- - uid: 14937
+ - uid: 14955
components:
- pos: 14.5,-19.5
parent: 2
type: Transform
- - uid: 14938
+ - uid: 14956
components:
- pos: 7.5,9.5
parent: 2
type: Transform
- - uid: 14939
+ - uid: 14957
components:
- pos: -7.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14720
type: DeviceNetwork
- - uid: 14940
+ - uid: 14958
components:
- pos: -1.5,-1.5
parent: 2
type: Transform
- - uid: 14941
+ - uid: 14959
components:
- pos: 34.5,-19.5
parent: 2
type: Transform
- - uid: 14942
+ - uid: 14960
components:
- pos: -1.5,2.5
parent: 2
type: Transform
- - uid: 14943
+ - uid: 14961
components:
- pos: 31.5,-6.5
parent: 2
type: Transform
- - uid: 14944
+ - uid: 14962
components:
- pos: 31.5,6.5
parent: 2
type: Transform
- - uid: 14945
+ - uid: 14963
components:
- pos: 15.5,6.5
parent: 2
type: Transform
- - uid: 14946
+ - uid: 14964
components:
- pos: 19.5,7.5
parent: 2
type: Transform
- - uid: 14947
+ - uid: 14965
components:
- pos: 11.5,18.5
parent: 2
type: Transform
- - uid: 14948
+ - uid: 14966
components:
- pos: 10.5,-2.5
parent: 2
type: Transform
- - uid: 14949
+ - uid: 14967
components:
- pos: 16.5,-38.5
parent: 2
type: Transform
- - uid: 14950
+ - uid: 14968
components:
- pos: 26.5,-31.5
parent: 2
type: Transform
- - uid: 14951
+ - uid: 14969
components:
- pos: -3.5,-22.5
parent: 2
type: Transform
- - uid: 14952
+ - uid: 14970
components:
- pos: -0.5,-26.5
parent: 2
type: Transform
- - uid: 14953
+ - uid: 14971
components:
- pos: -20.5,-39.5
parent: 2
type: Transform
- - uid: 14954
+ - uid: 14972
components:
- pos: 10.5,-27.5
parent: 2
type: Transform
- - uid: 14955
+ - uid: 14973
components:
- pos: -15.5,-58.5
parent: 2
type: Transform
- - uid: 14956
+ - uid: 14974
components:
- pos: 1.5,4.5
parent: 2
type: Transform
- - uid: 14957
+ - uid: 14975
components:
- pos: -4.5,-22.5
parent: 2
type: Transform
- - uid: 14958
+ - uid: 14976
components:
- pos: 7.5,8.5
parent: 2
type: Transform
- - uid: 14959
+ - uid: 14977
components:
- pos: 35.5,1.5
parent: 2
type: Transform
- - uid: 14960
+ - uid: 14978
components:
- pos: 10.5,-25.5
parent: 2
type: Transform
- - uid: 14961
+ - uid: 14979
components:
- pos: -2.5,-55.5
parent: 2
type: Transform
- - uid: 14962
+ - uid: 14980
components:
- pos: 5.5,4.5
parent: 2
type: Transform
- - uid: 14963
+ - uid: 14981
components:
- pos: 16.5,-19.5
parent: 2
type: Transform
- - uid: 14964
+ - uid: 14982
components:
- pos: 19.5,6.5
parent: 2
type: Transform
- - uid: 14965
+ - uid: 14983
components:
- pos: -4.5,-2.5
parent: 2
type: Transform
- - uid: 14966
+ - uid: 14984
components:
- pos: -1.5,7.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14720
type: DeviceNetwork
- - uid: 14967
+ - uid: 14985
components:
- rot: 3.141592653589793 rad
pos: -1.5,-0.5
parent: 2
type: Transform
- - uid: 14968
+ - uid: 14986
components:
- pos: 19.5,-5.5
parent: 2
type: Transform
- - uid: 14969
+ - uid: 14987
components:
- pos: -27.5,1.5
parent: 2
type: Transform
- - uid: 14970
+ - uid: 14988
components:
- pos: 7.5,-42.5
parent: 2
type: Transform
- - uid: 14971
+ - uid: 14989
components:
- pos: -7.5,-51.5
parent: 2
type: Transform
- - uid: 14972
+ - uid: 14990
components:
- pos: 7.5,-43.5
parent: 2
type: Transform
- - uid: 14973
+ - uid: 14991
components:
- pos: -8.5,-55.5
parent: 2
type: Transform
- - uid: 14974
+ - uid: 14992
components:
- pos: 34.5,-38.5
parent: 2
type: Transform
- - uid: 14975
+ - uid: 14993
components:
- pos: 38.5,-0.5
parent: 2
type: Transform
- - uid: 14976
+ - uid: 14994
components:
- pos: 25.5,-15.5
parent: 2
type: Transform
- - uid: 14977
+ - uid: 14995
components:
- pos: 14.5,-38.5
parent: 2
type: Transform
- - uid: 14978
+ - uid: 14996
components:
- pos: -11.5,-55.5
parent: 2
type: Transform
- - uid: 14979
+ - uid: 14997
components:
- pos: 20.5,-15.5
parent: 2
type: Transform
- - uid: 14980
+ - uid: 14998
components:
- pos: 0.5,-55.5
parent: 2
type: Transform
- - uid: 14981
+ - uid: 14999
components:
- pos: 11.5,-29.5
parent: 2
type: Transform
- - uid: 14982
+ - uid: 15000
components:
- pos: 35.5,-3.5
parent: 2
type: Transform
- - uid: 14983
+ - uid: 15001
components:
- pos: -22.5,-81.5
parent: 2
type: Transform
- - uid: 14984
+ - uid: 15002
components:
- pos: -15.5,-55.5
parent: 2
type: Transform
- - uid: 14985
+ - uid: 15003
components:
- pos: 25.5,-44.5
parent: 2
type: Transform
- - uid: 14986
+ - uid: 15004
components:
- pos: -14.5,-55.5
parent: 2
type: Transform
- - uid: 14987
+ - uid: 15005
components:
- pos: 19.5,-4.5
parent: 2
type: Transform
- - uid: 14988
+ - uid: 15006
components:
- pos: -0.5,-27.5
parent: 2
type: Transform
- - uid: 14989
+ - uid: 15007
components:
- pos: -18.5,-39.5
parent: 2
type: Transform
- - uid: 14990
+ - uid: 15008
components:
- pos: -5.5,-22.5
parent: 2
type: Transform
- - uid: 14991
+ - uid: 15009
components:
- pos: 4.5,11.5
parent: 2
type: Transform
- - uid: 14992
+ - uid: 15010
components:
- pos: 5.5,11.5
parent: 2
type: Transform
- - uid: 14993
+ - uid: 15011
components:
- pos: -5.5,-39.5
parent: 2
type: Transform
- - uid: 14994
+ - uid: 15012
components:
- pos: -4.5,-39.5
parent: 2
type: Transform
- - uid: 14995
+ - uid: 15013
components:
- pos: -3.5,-39.5
parent: 2
type: Transform
- - uid: 14996
+ - uid: 15014
components:
- pos: 0.5,4.5
parent: 2
type: Transform
- - uid: 14997
+ - uid: 15015
components:
- pos: 2.5,4.5
parent: 2
type: Transform
- - uid: 14998
+ - uid: 15016
components:
- pos: 22.5,-44.5
parent: 2
type: Transform
- - uid: 14999
+ - uid: 15017
components:
- pos: -8.5,-40.5
parent: 2
type: Transform
- - uid: 15000
+ - uid: 15018
components:
- pos: 21.5,-44.5
parent: 2
type: Transform
- - uid: 15001
+ - uid: 15019
components:
- pos: 27.5,21.5
parent: 2
type: Transform
- - uid: 15002
+ - uid: 15020
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- - uid: 15003
+ - uid: 15021
components:
- rot: 1.5707963267948966 rad
pos: 43.5,19.5
parent: 2
type: Transform
- - uid: 15004
+ - uid: 15022
components:
- rot: 1.5707963267948966 rad
pos: 43.5,20.5
parent: 2
type: Transform
- - uid: 15005
+ - uid: 15023
components:
- rot: 1.5707963267948966 rad
pos: 43.5,15.5
parent: 2
type: Transform
- - uid: 15006
+ - uid: 15024
components:
- rot: 1.5707963267948966 rad
pos: 61.5,4.5
parent: 2
type: Transform
- - uid: 15007
+ - uid: 15025
components:
- pos: 51.5,-3.5
parent: 2
type: Transform
- - uid: 15008
+ - uid: 15026
components:
- pos: 52.5,-3.5
parent: 2
type: Transform
- - uid: 15009
+ - uid: 15027
components:
- pos: 53.5,-3.5
parent: 2
type: Transform
- - uid: 15010
+ - uid: 15028
components:
- pos: -21.5,30.5
parent: 2
type: Transform
- - uid: 15011
+ - uid: 15029
components:
- rot: 1.5707963267948966 rad
pos: 46.5,15.5
parent: 2
type: Transform
- - uid: 15012
+ - uid: 15030
components:
- pos: 15.5,-38.5
parent: 2
type: Transform
- - uid: 15013
+ - uid: 15031
components:
- pos: 47.5,-37.5
parent: 2
type: Transform
- - uid: 15014
+ - uid: 15032
components:
- pos: 47.5,-43.5
parent: 2
type: Transform
- - uid: 15015
+ - uid: 15033
components:
- pos: 47.5,-45.5
parent: 2
type: Transform
- - uid: 15016
+ - uid: 15034
components:
- pos: 47.5,-41.5
parent: 2
type: Transform
- - uid: 15017
+ - uid: 15035
components:
- pos: 62.5,-41.5
parent: 2
type: Transform
- - uid: 15018
+ - uid: 15036
components:
- pos: 62.5,-50.5
parent: 2
type: Transform
- - uid: 15019
+ - uid: 15037
components:
- pos: 47.5,-46.5
parent: 2
type: Transform
- - uid: 15020
+ - uid: 15038
components:
- pos: 40.5,-43.5
parent: 2
type: Transform
- - uid: 15021
+ - uid: 15039
components:
- pos: 40.5,-42.5
parent: 2
type: Transform
- - uid: 15022
+ - uid: 15040
components:
- pos: 40.5,-41.5
parent: 2
type: Transform
- - uid: 15023
+ - uid: 15041
components:
- pos: 49.5,-48.5
parent: 2
type: Transform
- - uid: 15024
+ - uid: 15042
components:
- pos: 50.5,-48.5
parent: 2
type: Transform
- - uid: 15025
+ - uid: 15043
components:
- pos: 47.5,-42.5
parent: 2
type: Transform
- - uid: 15026
+ - uid: 15044
components:
- pos: 46.5,-10.5
parent: 2
type: Transform
- - uid: 15027
+ - uid: 15045
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-4.5
parent: 2
type: Transform
- - uid: 15028
+ - uid: 15046
components:
- pos: -34.5,-33.5
parent: 2
type: Transform
- - uid: 15029
+ - uid: 15047
components:
- pos: -34.5,-34.5
parent: 2
type: Transform
- - uid: 15030
+ - uid: 15048
components:
- pos: -21.5,-21.5
parent: 2
type: Transform
- - uid: 15031
+ - uid: 15049
components:
- pos: -27.5,0.5
parent: 2
type: Transform
- - uid: 15032
+ - uid: 15050
components:
- pos: -19.5,-24.5
parent: 2
type: Transform
- - uid: 15033
+ - uid: 15051
components:
- pos: -33.5,-16.5
parent: 2
type: Transform
- - uid: 15034
+ - uid: 15052
components:
- pos: -27.5,-0.5
parent: 2
type: Transform
- - uid: 15035
+ - uid: 15053
components:
- pos: -21.5,-32.5
parent: 2
type: Transform
- - uid: 15036
+ - uid: 15054
components:
- pos: 39.5,-57.5
parent: 2
type: Transform
- - uid: 15037
+ - uid: 15055
components:
- pos: 35.5,-59.5
parent: 2
type: Transform
- - uid: 15038
+ - uid: 15056
components:
- pos: 35.5,-58.5
parent: 2
type: Transform
- - uid: 15039
+ - uid: 15057
components:
- pos: 35.5,-60.5
parent: 2
type: Transform
- - uid: 15040
+ - uid: 15058
components:
- pos: -14.5,-58.5
parent: 2
type: Transform
- - uid: 15041
+ - uid: 15059
components:
- pos: -11.5,-58.5
parent: 2
type: Transform
- - uid: 15042
+ - uid: 15060
components:
- pos: 39.5,-69.5
parent: 2
type: Transform
- - uid: 15043
+ - uid: 15061
components:
- pos: 40.5,-69.5
parent: 2
type: Transform
- - uid: 15044
+ - uid: 15062
components:
- pos: -0.5,-51.5
parent: 2
type: Transform
- - uid: 15045
+ - uid: 15063
components:
- pos: -1.5,-51.5
parent: 2
type: Transform
- - uid: 15046
+ - uid: 15064
components:
- pos: 0.5,-51.5
parent: 2
type: Transform
- - uid: 15047
+ - uid: 15065
components:
- pos: -8.5,-58.5
parent: 2
type: Transform
- - uid: 15048
+ - uid: 15066
components:
- pos: -32.5,-19.5
parent: 2
type: Transform
- - uid: 15049
+ - uid: 15067
components:
- pos: -31.5,-19.5
parent: 2
type: Transform
- - uid: 15050
+ - uid: 15068
components:
- pos: -40.5,-6.5
parent: 2
type: Transform
- - uid: 15051
+ - uid: 15069
components:
- pos: -40.5,-5.5
parent: 2
type: Transform
- - uid: 15052
+ - uid: 15070
components:
- pos: 3.5,-55.5
parent: 2
type: Transform
- - uid: 15053
+ - uid: 15071
components:
- pos: -21.5,-34.5
parent: 2
type: Transform
- - uid: 15054
+ - uid: 15072
components:
- pos: -33.5,-40.5
parent: 2
type: Transform
- - uid: 15055
+ - uid: 15073
components:
- pos: -33.5,-41.5
parent: 2
type: Transform
- - uid: 15056
+ - uid: 15074
components:
- pos: -54.5,-21.5
parent: 2
type: Transform
- - uid: 15057
+ - uid: 15075
components:
- pos: -53.5,-21.5
parent: 2
type: Transform
- - uid: 15058
+ - uid: 15076
components:
- pos: -69.5,-24.5
parent: 2
type: Transform
- - uid: 15059
+ - uid: 15077
components:
- pos: -20.5,-24.5
parent: 2
type: Transform
- - uid: 15060
+ - uid: 15078
components:
- pos: -18.5,-24.5
parent: 2
type: Transform
- - uid: 15061
+ - uid: 15079
components:
- pos: -26.5,-16.5
parent: 2
type: Transform
- - uid: 15062
+ - uid: 15080
components:
- pos: -26.5,-17.5
parent: 2
type: Transform
- - uid: 15063
+ - uid: 15081
components:
- pos: -33.5,-11.5
parent: 2
type: Transform
- - uid: 15064
+ - uid: 15082
components:
- pos: -33.5,-10.5
parent: 2
type: Transform
- - uid: 15065
+ - uid: 15083
components:
- pos: -41.5,-8.5
parent: 2
type: Transform
- - uid: 15066
+ - uid: 15084
components:
- pos: -42.5,-8.5
parent: 2
type: Transform
- - uid: 15067
+ - uid: 15085
components:
- pos: -40.5,-10.5
parent: 2
type: Transform
- - uid: 15068
+ - uid: 15086
components:
- pos: -63.5,-23.5
parent: 2
type: Transform
- - uid: 15069
+ - uid: 15087
components:
- pos: -21.5,-60.5
parent: 2
type: Transform
- - uid: 15070
+ - uid: 15088
components:
- pos: -21.5,20.5
parent: 2
type: Transform
- - uid: 15071
+ - uid: 15089
components:
- pos: -21.5,21.5
parent: 2
type: Transform
- - uid: 15072
+ - uid: 15090
components:
- pos: -20.5,14.5
parent: 2
type: Transform
- - uid: 15073
+ - uid: 15091
components:
- pos: -19.5,14.5
parent: 2
type: Transform
- - uid: 15074
+ - uid: 15092
components:
- pos: -18.5,14.5
parent: 2
type: Transform
- - uid: 15075
+ - uid: 15093
components:
- rot: -1.5707963267948966 rad
pos: -17.5,25.5
parent: 2
type: Transform
- - uid: 15076
+ - uid: 15094
components:
- pos: -38.5,2.5
parent: 2
type: Transform
- - uid: 15077
+ - uid: 15095
components:
- pos: -37.5,2.5
parent: 2
type: Transform
- - uid: 15078
+ - uid: 15096
components:
- pos: -44.5,1.5
parent: 2
type: Transform
- - uid: 15079
+ - uid: 15097
components:
- pos: -44.5,0.5
parent: 2
type: Transform
- - uid: 15080
+ - uid: 15098
components:
- pos: 1.5,-46.5
parent: 2
type: Transform
- - uid: 15081
+ - uid: 15099
components:
- pos: 1.5,-48.5
parent: 2
type: Transform
- - uid: 15082
+ - uid: 15100
components:
- rot: 3.141592653589793 rad
pos: 5.5,-51.5
parent: 2
type: Transform
- - uid: 15083
+ - uid: 15101
components:
- pos: -3.5,-62.5
parent: 2
type: Transform
- - uid: 15084
+ - uid: 15102
components:
- pos: -5.5,-62.5
parent: 2
type: Transform
- - uid: 15085
+ - uid: 15103
components:
- pos: -45.5,9.5
parent: 2
type: Transform
- - uid: 15086
+ - uid: 15104
components:
- pos: -44.5,-0.5
parent: 2
type: Transform
- - uid: 15087
+ - uid: 15105
components:
- rot: 1.5707963267948966 rad
pos: 46.5,14.5
parent: 2
type: Transform
- - uid: 15088
+ - uid: 15106
components:
- pos: -5.5,-58.5
parent: 2
type: Transform
- - uid: 15089
+ - uid: 15107
components:
- pos: -46.5,9.5
parent: 2
type: Transform
- - uid: 15090
+ - uid: 15108
components:
- pos: -19.5,-7.5
parent: 2
type: Transform
- - uid: 15091
+ - uid: 15109
components:
- pos: -18.5,-7.5
parent: 2
type: Transform
- - uid: 15092
+ - uid: 15110
components:
- pos: -20.5,-7.5
parent: 2
type: Transform
- - uid: 15093
+ - uid: 15111
components:
- pos: 35.5,0.5
parent: 2
type: Transform
- - uid: 15094
+ - uid: 15112
components:
- pos: -32.5,27.5
parent: 2
type: Transform
- - uid: 15095
+ - uid: 15113
components:
- pos: -13.5,-25.5
parent: 2
type: Transform
- - uid: 15096
+ - uid: 15114
components:
- pos: -13.5,-26.5
parent: 2
type: Transform
- - uid: 15097
+ - uid: 15115
components:
- pos: -13.5,-27.5
parent: 2
type: Transform
- - uid: 15098
+ - uid: 15116
components:
- pos: -63.5,-24.5
parent: 2
type: Transform
- - uid: 15099
+ - uid: 15117
components:
- pos: -11.5,-0.5
parent: 2
type: Transform
- - uid: 15100
+ - uid: 15118
components:
- pos: -11.5,-1.5
parent: 2
type: Transform
- - uid: 15101
+ - uid: 15119
components:
- pos: -11.5,3.5
parent: 2
type: Transform
- - uid: 15102
+ - uid: 15120
components:
- pos: -11.5,2.5
parent: 2
type: Transform
- - uid: 15103
+ - uid: 15121
components:
- pos: -24.5,9.5
parent: 2
type: Transform
- - uid: 15104
+ - uid: 15122
components:
- rot: 3.141592653589793 rad
pos: 43.5,6.5
parent: 2
type: Transform
- - uid: 15105
+ - uid: 15123
components:
- pos: 26.5,19.5
parent: 2
type: Transform
- - uid: 15106
+ - uid: 15124
components:
- pos: 25.5,19.5
parent: 2
type: Transform
- - uid: 15107
+ - uid: 15125
components:
- pos: 24.5,19.5
parent: 2
type: Transform
- - uid: 15108
+ - uid: 15126
components:
- rot: 3.141592653589793 rad
pos: -26.5,-12.5
parent: 2
type: Transform
- - uid: 15109
+ - uid: 15127
components:
- pos: 26.5,-44.5
parent: 2
type: Transform
- - uid: 15110
+ - uid: 15128
components:
- pos: -10.5,4.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14702
+ - 14720
type: DeviceNetwork
- - uid: 15111
+ - uid: 15129
components:
- pos: 3.5,-58.5
parent: 2
type: Transform
- - uid: 15112
+ - uid: 15130
components:
- pos: -2.5,-58.5
parent: 2
type: Transform
- - uid: 15113
+ - uid: 15131
components:
- pos: 0.5,-58.5
parent: 2
type: Transform
- - uid: 15114
+ - uid: 15132
components:
- pos: 31.5,-57.5
parent: 2
type: Transform
- - uid: 15115
+ - uid: 15133
components:
- pos: 49.5,-13.5
parent: 2
type: Transform
- - uid: 15116
+ - uid: 15134
components:
- pos: -24.5,-74.5
parent: 2
type: Transform
- - uid: 15117
+ - uid: 15135
components:
- pos: 3.5,-62.5
parent: 2
type: Transform
- - uid: 15118
+ - uid: 15136
components:
- pos: -40.5,-11.5
parent: 2
type: Transform
- - uid: 15119
+ - uid: 15137
components:
- pos: -43.5,-10.5
parent: 2
type: Transform
- - uid: 15120
+ - uid: 15138
components:
- pos: -43.5,-11.5
parent: 2
type: Transform
- - uid: 15121
+ - uid: 15139
components:
- pos: -13.5,-51.5
parent: 2
type: Transform
- - uid: 15122
+ - uid: 15140
components:
- pos: 22.5,19.5
parent: 2
type: Transform
- - uid: 15123
+ - uid: 15141
components:
- pos: 6.5,18.5
parent: 2
type: Transform
- - uid: 15124
+ - uid: 15142
components:
- pos: -18.5,-74.5
parent: 2
type: Transform
- - uid: 15125
+ - uid: 15143
components:
- pos: -20.5,-83.5
parent: 2
type: Transform
- - uid: 15126
+ - uid: 15144
components:
- pos: 54.5,-44.5
parent: 2
type: Transform
- - uid: 15127
+ - uid: 15145
components:
- pos: 54.5,-45.5
parent: 2
type: Transform
- - uid: 15128
+ - uid: 15146
components:
- pos: 58.5,-44.5
parent: 2
type: Transform
- - uid: 15129
+ - uid: 15147
components:
- pos: 58.5,-45.5
parent: 2
type: Transform
- - uid: 15130
+ - uid: 15148
components:
- pos: -12.5,68.5
parent: 2
@@ -95202,113 +95324,113 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15131
+ - uid: 15149
components:
- rot: 1.5707963267948966 rad
pos: -18.5,55.5
parent: 2
type: Transform
- - uid: 15132
+ - uid: 15150
components:
- pos: -19.5,43.5
parent: 2
type: Transform
- - uid: 15133
+ - uid: 15151
components:
- pos: -19.5,42.5
parent: 2
type: Transform
- - uid: 15134
+ - uid: 15152
components:
- pos: -19.5,41.5
parent: 2
type: Transform
- - uid: 15135
+ - uid: 15153
components:
- pos: -17.5,30.5
parent: 2
type: Transform
- - uid: 15136
+ - uid: 15154
components:
- pos: -17.5,29.5
parent: 2
type: Transform
- - uid: 15137
+ - uid: 15155
components:
- pos: -11.5,43.5
parent: 2
type: Transform
- - uid: 15138
+ - uid: 15156
components:
- pos: -10.5,43.5
parent: 2
type: Transform
- - uid: 15139
+ - uid: 15157
components:
- pos: -9.5,43.5
parent: 2
type: Transform
- - uid: 15140
+ - uid: 15158
components:
- pos: -20.5,49.5
parent: 2
type: Transform
- - uid: 15141
+ - uid: 15159
components:
- pos: -21.5,49.5
parent: 2
type: Transform
- - uid: 15142
+ - uid: 15160
components:
- pos: 8.5,-38.5
parent: 2
type: Transform
- - uid: 15143
+ - uid: 15161
components:
- pos: -13.5,46.5
parent: 2
type: Transform
- - uid: 15144
+ - uid: 15162
components:
- pos: -13.5,45.5
parent: 2
type: Transform
- - uid: 15145
+ - uid: 15163
components:
- pos: -13.5,44.5
parent: 2
type: Transform
- - uid: 15146
+ - uid: 15164
components:
- pos: 1.5,53.5
parent: 2
type: Transform
- - uid: 15147
+ - uid: 15165
components:
- pos: 0.5,53.5
parent: 2
type: Transform
- - uid: 15148
+ - uid: 15166
components:
- pos: -0.5,53.5
parent: 2
type: Transform
- - uid: 15149
+ - uid: 15167
components:
- pos: -18.5,48.5
parent: 2
type: Transform
- - uid: 15150
+ - uid: 15168
components:
- pos: -17.5,48.5
parent: 2
type: Transform
- - uid: 15151
+ - uid: 15169
components:
- pos: -16.5,48.5
parent: 2
type: Transform
- - uid: 15152
+ - uid: 15170
components:
- pos: -13.5,68.5
parent: 2
@@ -95316,17 +95438,17 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15153
+ - uid: 15171
components:
- pos: -21.5,68.5
parent: 2
type: Transform
- - uid: 15154
+ - uid: 15172
components:
- pos: -22.5,68.5
parent: 2
type: Transform
- - uid: 15155
+ - uid: 15173
components:
- pos: -11.5,59.5
parent: 2
@@ -95334,7 +95456,7 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15156
+ - uid: 15174
components:
- pos: -11.5,58.5
parent: 2
@@ -95342,7 +95464,7 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15157
+ - uid: 15175
components:
- pos: -15.5,51.5
parent: 2
@@ -95350,7 +95472,7 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15158
+ - uid: 15176
components:
- pos: -15.5,50.5
parent: 2
@@ -95358,13 +95480,13 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15159
+ - uid: 15177
components:
- rot: 3.141592653589793 rad
pos: -4.5,47.5
parent: 2
type: Transform
- - uid: 15160
+ - uid: 15178
components:
- rot: 3.141592653589793 rad
pos: -11.5,52.5
@@ -95373,194 +95495,194 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15161
+ - uid: 15179
components:
- rot: 3.141592653589793 rad
pos: -6.5,57.5
parent: 2
type: Transform
- - uid: 15162
+ - uid: 15180
components:
- pos: -24.5,48.5
parent: 2
type: Transform
- - uid: 15163
+ - uid: 15181
components:
- rot: 3.141592653589793 rad
pos: 42.5,3.5
parent: 2
type: Transform
- - uid: 15164
+ - uid: 15182
components:
- rot: 3.141592653589793 rad
pos: 41.5,3.5
parent: 2
type: Transform
- - uid: 15165
+ - uid: 15183
components:
- pos: -42.5,-86.5
parent: 2
type: Transform
- - uid: 15166
+ - uid: 15184
components:
- pos: -41.5,-86.5
parent: 2
type: Transform
- - uid: 15167
+ - uid: 15185
components:
- pos: -31.5,-97.5
parent: 2
type: Transform
- - uid: 15168
+ - uid: 15186
components:
- pos: 61.5,-41.5
parent: 2
type: Transform
- - uid: 15169
+ - uid: 15187
components:
- pos: 74.5,-39.5
parent: 2
type: Transform
- - uid: 15170
+ - uid: 15188
components:
- pos: 75.5,-39.5
parent: 2
type: Transform
- - uid: 15171
+ - uid: 15189
components:
- pos: 74.5,-42.5
parent: 2
type: Transform
- - uid: 15172
+ - uid: 15190
components:
- pos: 75.5,-42.5
parent: 2
type: Transform
- - uid: 15173
+ - uid: 15191
components:
- pos: -17.5,-22.5
parent: 2
type: Transform
- - uid: 15174
+ - uid: 15192
components:
- pos: -17.5,-23.5
parent: 2
type: Transform
- - uid: 15175
+ - uid: 15193
components:
- rot: 3.141592653589793 rad
pos: 43.5,-33.5
parent: 2
type: Transform
- - uid: 15176
+ - uid: 15194
components:
- pos: 4.5,-28.5
parent: 2
type: Transform
- - uid: 15177
+ - uid: 15195
components:
- pos: -45.5,27.5
parent: 2
type: Transform
- - uid: 15178
+ - uid: 15196
components:
- pos: 55.5,-29.5
parent: 2
type: Transform
- - uid: 15179
+ - uid: 15197
components:
- pos: -41.5,26.5
parent: 2
type: Transform
- - uid: 15180
+ - uid: 15198
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-72.5
parent: 2
type: Transform
- - uid: 15181
+ - uid: 15199
components:
- pos: 23.5,-83.5
parent: 2
type: Transform
- - uid: 15182
+ - uid: 15200
components:
- pos: 20.5,-83.5
parent: 2
type: Transform
- - uid: 15183
+ - uid: 15201
components:
- rot: 3.141592653589793 rad
pos: 29.5,-76.5
parent: 2
type: Transform
- - uid: 15184
+ - uid: 15202
components:
- rot: 3.141592653589793 rad
pos: 30.5,-76.5
parent: 2
type: Transform
- - uid: 15185
+ - uid: 15203
components:
- rot: 3.141592653589793 rad
pos: 31.5,-76.5
parent: 2
type: Transform
- - uid: 15186
+ - uid: 15204
components:
- rot: 3.141592653589793 rad
pos: 32.5,-71.5
parent: 2
type: Transform
- - uid: 15187
+ - uid: 15205
components:
- rot: 3.141592653589793 rad
pos: 32.5,-72.5
parent: 2
type: Transform
- - uid: 15188
+ - uid: 15206
components:
- rot: 3.141592653589793 rad
pos: 32.5,-73.5
parent: 2
type: Transform
- - uid: 15189
+ - uid: 15207
components:
- rot: 3.141592653589793 rad
pos: 46.5,-71.5
parent: 2
type: Transform
- - uid: 15190
+ - uid: 15208
components:
- rot: 3.141592653589793 rad
pos: 46.5,-72.5
parent: 2
type: Transform
- - uid: 15191
+ - uid: 15209
components:
- rot: 3.141592653589793 rad
pos: 46.5,-73.5
parent: 2
type: Transform
- - uid: 15192
+ - uid: 15210
components:
- rot: 3.141592653589793 rad
pos: 47.5,-76.5
parent: 2
type: Transform
- - uid: 15193
+ - uid: 15211
components:
- rot: 3.141592653589793 rad
pos: 48.5,-76.5
parent: 2
type: Transform
- - uid: 15194
+ - uid: 15212
components:
- rot: 3.141592653589793 rad
pos: 49.5,-76.5
parent: 2
type: Transform
- - uid: 15195
+ - uid: 15213
components:
- rot: 3.141592653589793 rad
pos: -14.5,66.5
@@ -95569,220 +95691,230 @@ entities:
- ShutdownSubscribers:
- 74
type: DeviceNetwork
- - uid: 15196
+ - uid: 15214
components:
- rot: 3.141592653589793 rad
pos: -20.5,66.5
parent: 2
type: Transform
- - uid: 15197
+ - uid: 15215
components:
- pos: 45.5,3.5
parent: 2
type: Transform
- - uid: 15198
+ - uid: 15216
components:
- pos: 8.5,-83.5
parent: 2
type: Transform
- - uid: 15199
+ - uid: 15217
components:
- pos: -46.5,37.5
parent: 2
type: Transform
- - uid: 15200
+ - uid: 15218
components:
- pos: -45.5,37.5
parent: 2
type: Transform
- - uid: 15201
+ - uid: 15219
components:
- pos: -72.5,-36.5
parent: 2
type: Transform
- - uid: 15202
+ - uid: 15220
components:
- pos: -73.5,-36.5
parent: 2
type: Transform
- - uid: 15203
+ - uid: 15221
components:
- pos: 6.5,-7.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14704
+ - 14722
- 99
type: DeviceNetwork
- - uid: 15204
+ - uid: 15222
components:
- pos: -2.5,-5.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 100
- - 14705
+ - 14723
type: DeviceNetwork
- - uid: 15205
+ - uid: 15223
components:
- pos: 0.5,-5.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14704
+ - 14722
- 99
- 100
- - 14705
+ - 14723
type: DeviceNetwork
- - uid: 15206
+ - uid: 15224
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-8.5
parent: 2
type: Transform
- ShutdownSubscribers:
- - 14704
+ - 14722
- 99
type: DeviceNetwork
- - uid: 15207
+ - uid: 15225
components:
- pos: 0.5,-18.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 101
- - 14706
+ - 14724
type: DeviceNetwork
- - uid: 15208
+ - uid: 15226
components:
- pos: -1.5,-24.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 101
- - 14706
+ - 14724
type: DeviceNetwork
- - uid: 15209
+ - uid: 15227
components:
- pos: 22.5,-33.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 79
- - 14707
+ - 14725
type: DeviceNetwork
- - uid: 15210
+ - uid: 15228
components:
- pos: 28.5,-33.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 79
- - 14707
+ - 14725
type: DeviceNetwork
- - uid: 15211
+ - uid: 15229
components:
- pos: 7.5,-11.5
parent: 2
type: Transform
- - uid: 15212
+ - uid: 15230
components:
- pos: 25.5,-40.5
parent: 2
type: Transform
- ShutdownSubscribers:
- 79
- - 14707
+ - 14725
+ type: DeviceNetwork
+ - uid: 15231
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-18.5
+ parent: 2
+ type: Transform
+ - ShutdownSubscribers:
+ - 6
+ - 14691
type: DeviceNetwork
- proto: Fireplace
entities:
- - uid: 15213
+ - uid: 15232
components:
- pos: 31.5,-27.5
parent: 2
type: Transform
- - uid: 15214
+ - uid: 15233
components:
- pos: 12.5,14.5
parent: 2
type: Transform
- - uid: 15215
+ - uid: 15234
components:
- pos: -0.5,-3.5
parent: 2
type: Transform
- - uid: 15216
+ - uid: 15235
components:
- pos: 5.5,-9.5
parent: 2
type: Transform
- proto: Flash
entities:
- - uid: 15217
+ - uid: 15236
components:
- pos: 2.3260884,20.921833
parent: 2
type: Transform
- - uid: 15218
+ - uid: 15237
components:
- pos: 2.5760884,21.156208
parent: 2
type: Transform
- - uid: 15219
+ - uid: 15238
components:
- pos: -15.513895,-23.550434
parent: 2
type: Transform
- proto: FlashlightLantern
entities:
- - uid: 15220
+ - uid: 15239
components:
- pos: -57.60324,-35.44005
parent: 2
type: Transform
- - uid: 15221
+ - uid: 15240
components:
- pos: 2.4386559,-17.536861
parent: 2
type: Transform
- - uid: 15222
+ - uid: 15241
components:
- pos: 11.541302,-66.381775
parent: 2
type: Transform
- - uid: 15223
+ - uid: 15242
components:
- pos: 10.459883,-56.492657
parent: 2
type: Transform
- - uid: 15224
+ - uid: 15243
components:
- pos: 6.4653053,-69.51486
parent: 2
type: Transform
- - uid: 15225
+ - uid: 15244
components:
- pos: -31.518282,-62.54614
parent: 2
type: Transform
- - uid: 15226
+ - uid: 15245
components:
- pos: 2.6315942,23.576332
parent: 2
type: Transform
- - uid: 15227
+ - uid: 15246
components:
- pos: 58.39165,-37.43153
parent: 2
type: Transform
- proto: FlashlightSeclite
entities:
- - uid: 15228
+ - uid: 15247
components:
- pos: 17.395416,21.653858
parent: 2
type: Transform
- - uid: 15229
+ - uid: 15248
components:
- rot: 3.141592653589793 rad
pos: 7.161119,12.488324
@@ -95790,129 +95922,129 @@ entities:
type: Transform
- proto: Floodlight
entities:
- - uid: 15230
+ - uid: 15249
components:
- pos: 6.532791,48.672844
parent: 2
type: Transform
- - uid: 15231
+ - uid: 15250
components:
- pos: 9.471183,54.298565
parent: 2
type: Transform
- - uid: 15232
+ - uid: 15251
components:
- pos: -69.53465,-52.447685
parent: 2
type: Transform
- proto: FloodlightBroken
entities:
- - uid: 15233
+ - uid: 15252
components:
- pos: 11.494867,-70.44923
parent: 2
type: Transform
- proto: FloorDrain
entities:
- - uid: 15234
+ - uid: 15253
components:
- pos: 3.5,-48.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15235
+ - uid: 15254
components:
- pos: -1.5,-66.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15236
+ - uid: 15255
components:
- pos: 3.5,8.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15237
+ - uid: 15256
components:
- pos: -15.5,-78.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15238
+ - uid: 15257
components:
- pos: -1.5,-64.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15239
+ - uid: 15258
components:
- pos: -7.5,-65.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15240
+ - uid: 15259
components:
- pos: -9.5,-22.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15241
+ - uid: 15260
components:
- pos: -15.5,-75.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15242
+ - uid: 15261
components:
- pos: -20.5,-89.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15243
+ - uid: 15262
components:
- pos: -25.5,-89.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15244
+ - uid: 15263
components:
- pos: 53.5,17.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15245
+ - uid: 15264
components:
- pos: 57.5,5.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15246
+ - uid: 15265
components:
- pos: 62.5,12.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15247
+ - uid: 15266
components:
- pos: 62.5,22.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15248
+ - uid: 15267
components:
- rot: 3.141592653589793 rad
pos: 71.5,-49.5
@@ -95920,45 +96052,45 @@ entities:
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15249
+ - uid: 15268
components:
- pos: -9.5,-69.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15250
+ - uid: 15269
components:
- pos: 3.5,-46.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15251
+ - uid: 15270
components:
- - pos: 1.5,12.5
+ - rot: 3.141592653589793 rad
+ pos: 45.5,6.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15252
+ - uid: 15271
components:
- - rot: 3.141592653589793 rad
- pos: 45.5,6.5
+ - pos: -15.5,-34.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- - uid: 15253
+ - uid: 15272
components:
- - pos: -15.5,-34.5
+ - pos: 1.5,12.5
parent: 2
type: Transform
- fixtures: {}
type: Fixtures
- proto: FloorTileItemBar
entities:
- - uid: 15254
+ - uid: 15273
components:
- pos: 37.575134,45.699768
parent: 2
@@ -95967,7 +96099,7 @@ entities:
type: Stack
- proto: FloorTileItemFreezer
entities:
- - uid: 15255
+ - uid: 15274
components:
- pos: -9.469288,-100.35687
parent: 2
@@ -95976,7 +96108,7 @@ entities:
type: Stack
- proto: FloorTileItemLaundry
entities:
- - uid: 15256
+ - uid: 15275
components:
- pos: -9.484913,-95.4242
parent: 2
@@ -95985,7 +96117,7 @@ entities:
type: Stack
- proto: FloorTileItemWhite
entities:
- - uid: 15257
+ - uid: 15276
components:
- pos: -10.013714,-95.45264
parent: 2
@@ -95994,291 +96126,304 @@ entities:
type: Stack
- proto: FloraRockSolid01
entities:
- - uid: 15258
+ - uid: 15277
components:
- pos: -35.842815,62.48777
parent: 2
type: Transform
- - uid: 15259
+ - uid: 15278
components:
- pos: 64.48079,45.764553
parent: 2
type: Transform
- proto: FloraRockSolid03
entities:
- - uid: 15260
+ - uid: 15279
components:
- pos: 63.527668,48.936428
parent: 2
type: Transform
- - uid: 15261
+ - uid: 15280
components:
- pos: 13.129076,49.02767
parent: 2
type: Transform
- - uid: 15262
+ - uid: 15281
components:
- pos: 16.257528,57.816456
parent: 2
type: Transform
- - uid: 15263
+ - uid: 15282
components:
- pos: 78.52854,-58.425747
parent: 2
type: Transform
- proto: FloraTree01
entities:
- - uid: 15264
+ - uid: 15283
components:
- pos: -40.510788,5.4778786
parent: 2
type: Transform
- - uid: 15265
- components:
- - pos: 45.883274,-86.48348
- parent: 2
- type: Transform
- proto: FloraTree02
entities:
- - uid: 15266
+ - uid: 15284
components:
- pos: -3.160706,55.605114
parent: 2
type: Transform
- - uid: 15267
- components:
- - pos: 33.292767,-85.71786
- parent: 2
- type: Transform
-- proto: FloraTree03
- entities:
- - uid: 15268
- components:
- - pos: 33.02714,-87.53036
- parent: 2
- type: Transform
- proto: FloraTree04
entities:
- - uid: 15269
+ - uid: 15285
components:
- pos: -9.341627,55.436527
parent: 2
type: Transform
- - uid: 15270
+ - uid: 15286
components:
- pos: -35.771816,4.543429
parent: 2
type: Transform
- proto: FloraTree05
entities:
- - uid: 15271
+ - uid: 15287
components:
- pos: -8.496121,50.8569
parent: 2
type: Transform
- proto: FloraTree06
entities:
- - uid: 15272
+ - uid: 15288
components:
- pos: -35.026413,5.9935036
parent: 2
type: Transform
- proto: FloraTreeChristmas01
entities:
- - uid: 15273
+ - uid: 15289
+ components:
+ - pos: 33.213634,-85.70505
+ parent: 2
+ type: Transform
+ - uid: 15290
components:
- rot: -1.5707963267948966 rad
pos: 31.84649,-40.285706
parent: 2
type: Transform
- - uid: 15274
+ - uid: 15291
components:
- pos: 54.099407,-8.446931
parent: 2
type: Transform
- - uid: 15275
+ - uid: 15292
components:
- pos: 11.658023,0.9697406
parent: 2
type: Transform
- proto: FloraTreeChristmas02
entities:
- - uid: 15276
+ - uid: 15293
components:
- pos: 15.4937935,-83.927025
parent: 2
type: Transform
- proto: FloraTreeConifer02
entities:
- - uid: 15277
+ - uid: 15294
+ components:
+ - pos: 33.307384,-87.62692
+ parent: 2
+ type: Transform
+ - uid: 15295
components:
- pos: 61.099407,-9.025056
parent: 2
type: Transform
+ - uid: 15296
+ components:
+ - pos: 45.751686,-85.55718
+ parent: 2
+ type: Transform
- proto: FloraTreeSnow01
entities:
- - uid: 15278
+ - uid: 15297
components:
- pos: 14.3375435,-84.677025
parent: 2
type: Transform
- - uid: 15279
+ - uid: 15298
components:
- pos: 66.6474,-8.225101
parent: 2
type: Transform
- proto: FloraTreeSnow02
entities:
- - uid: 15280
+ - uid: 15299
components:
- pos: 50.346085,-10.740726
parent: 2
type: Transform
+ - uid: 15300
+ components:
+ - pos: 45.79856,-87.57281
+ parent: 2
+ type: Transform
- proto: FloraTreeSnow03
entities:
- - uid: 15281
+ - uid: 15301
components:
- pos: 5.9392734,1.3447406
parent: 2
type: Transform
- - uid: 15282
+ - uid: 15302
components:
- pos: 50.51796,-6.2476535
parent: 2
type: Transform
- proto: FloraTreeSnow04
entities:
- - uid: 15283
+ - uid: 15303
components:
- pos: 10.798648,0.32911563
parent: 2
type: Transform
- - uid: 15284
+ - uid: 15304
components:
- pos: 53.693157,-9.392998
parent: 2
type: Transform
- proto: FloraTreeSnow06
entities:
- - uid: 15285
+ - uid: 15305
+ components:
+ - pos: 32.744884,-86.7988
+ parent: 2
+ type: Transform
+ - uid: 15306
components:
- pos: 16.747952,-82.39699
parent: 2
type: Transform
- - uid: 15286
+ - uid: 15307
components:
- pos: 7.1423984,0.46974063
parent: 2
type: Transform
+ - uid: 15308
+ components:
+ - pos: 46.14231,-86.51031
+ parent: 2
+ type: Transform
- proto: FoamBlade
entities:
- - uid: 15287
+ - uid: 15309
components:
- pos: -14.780027,-76.18346
parent: 2
type: Transform
- proto: FoamCrossbow
entities:
- - uid: 15288
+ - uid: 15310
components:
- pos: -11.410641,41.56952
parent: 2
type: Transform
- proto: FoodBakedCookieRaisin
entities:
- - uid: 15289
+ - uid: 15311
components:
- pos: -2.526709,-33.523388
parent: 2
type: Transform
- proto: FoodBowlBig
entities:
- - uid: 15290
+ - uid: 15312
components:
- pos: -22.492924,44.20428
parent: 2
type: Transform
- - uid: 15291
+ - uid: 15313
components:
- pos: -22.508549,43.813656
parent: 2
type: Transform
- proto: FoodBoxDonkpocketDink
entities:
- - uid: 15292
+ - uid: 15314
components:
- pos: 46.42201,-49.40806
parent: 2
type: Transform
- proto: FoodBoxDonkpocketHonk
entities:
- - uid: 15293
+ - uid: 15315
components:
- pos: 32.37506,-20.42581
parent: 2
type: Transform
- proto: FoodBoxDonkpocketPizza
entities:
- - uid: 15294
+ - uid: 15316
components:
- pos: -30.632925,-69.35548
parent: 2
type: Transform
- - uid: 15295
+ - uid: 15317
components:
- pos: 46.42201,-49.329933
parent: 2
type: Transform
- proto: FoodBoxDonkpocketSpicy
entities:
- - uid: 15296
+ - uid: 15318
components:
- pos: -39.41441,-32.343586
parent: 2
type: Transform
- proto: FoodBoxDonut
entities:
- - uid: 15297
+ - uid: 15319
components:
- pos: 52.62345,11.736868
parent: 2
type: Transform
- - uid: 15298
+ - uid: 15320
components:
- pos: 25.290524,19.578499
parent: 2
type: Transform
- proto: FoodBreadBanana
entities:
- - uid: 15299
+ - uid: 15321
components:
- pos: -36.588596,16.602194
parent: 2
type: Transform
- proto: FoodBurgerBrain
entities:
- - uid: 15300
+ - uid: 15322
components:
- pos: -12.411479,-50.405228
parent: 2
type: Transform
- proto: FoodCakeChristmas
entities:
- - uid: 15301
+ - uid: 15323
components:
- pos: 0.6606716,4.5542126
parent: 2
type: Transform
- proto: FoodCakeSpacemanSlice
entities:
- - uid: 15302
+ - uid: 15324
components:
- pos: -34.24552,17.570845
parent: 2
type: Transform
- proto: FoodCartHot
entities:
- - uid: 15303
+ - uid: 15325
components:
- rot: -1.5707963267948966 rad
pos: -0.5,9.5
@@ -96286,19 +96431,19 @@ entities:
type: Transform
- proto: FoodCondimentBottleEnzyme
entities:
- - uid: 15304
+ - uid: 15326
components:
- pos: 2.7293262,6.604941
parent: 2
type: Transform
- - uid: 15305
+ - uid: 15327
components:
- pos: 2.8230762,6.636191
parent: 2
type: Transform
- proto: FoodCornTrash
entities:
- - uid: 15306
+ - uid: 15328
components:
- rot: -1.5707963267948966 rad
pos: 48.732845,33.42303
@@ -96306,28 +96451,28 @@ entities:
type: Transform
- proto: FoodDonkpocketBerry
entities:
- - uid: 15307
+ - uid: 15329
components:
- pos: -9.518124,43.595463
parent: 2
type: Transform
- proto: FoodDonkpocketDink
entities:
- - uid: 15308
+ - uid: 15330
components:
- pos: -10.231451,43.574326
parent: 2
type: Transform
- proto: FoodDonutChocolate
entities:
- - uid: 15309
+ - uid: 15331
components:
- pos: 8.49275,13.726382
parent: 2
type: Transform
- proto: FoodFrozenPopsicleTrash
entities:
- - uid: 15310
+ - uid: 15332
components:
- rot: -1.5707963267948966 rad
pos: 50.420345,33.45428
@@ -96335,163 +96480,163 @@ entities:
type: Transform
- proto: FoodLemon
entities:
- - uid: 15311
+ - uid: 15333
components:
- pos: 55.628414,-67.334946
parent: 2
type: Transform
- proto: FoodMealEggplantParm
entities:
- - uid: 15312
+ - uid: 15334
components:
- pos: -23.359459,-71.33451
parent: 2
type: Transform
- proto: FoodMealFriesCarrot
entities:
- - uid: 15313
+ - uid: 15335
components:
- pos: -21.429913,47.709663
parent: 2
type: Transform
- proto: FoodMealPotatoYaki
entities:
- - uid: 15314
+ - uid: 15336
components:
- pos: 44.419395,-49.295273
parent: 2
type: Transform
- proto: FoodMeat
entities:
- - uid: 15315
+ - uid: 15337
components:
- pos: -16.53665,-77.55797
parent: 2
type: Transform
- - uid: 15316
+ - uid: 15338
components:
- pos: 64.3404,48.319218
parent: 2
type: Transform
- proto: FoodMeatHawaiianKebab
entities:
- - uid: 15317
+ - uid: 15339
components:
- pos: -12.469789,31.726183
parent: 2
type: Transform
- proto: FoodPieBananaCream
entities:
- - uid: 15318
+ - uid: 15340
components:
- pos: 1.5036734,4.5642977
parent: 2
type: Transform
- - uid: 15319
+ - uid: 15341
components:
- pos: -21.504532,37.662663
parent: 2
type: Transform
- - uid: 15320
+ - uid: 15342
components:
- pos: 5.023752,11.565053
parent: 2
type: Transform
- - uid: 15321
+ - uid: 15343
components:
- pos: -0.36896515,-23.435265
parent: 2
type: Transform
- proto: FoodPizzaMoldySlice
entities:
- - uid: 15322
+ - uid: 15344
components:
- pos: -58.327778,-27.35657
parent: 2
type: Transform
- proto: FoodPizzaPineapple
entities:
- - uid: 15323
+ - uid: 15345
components:
- pos: -25.559431,-79.20157
parent: 2
type: Transform
- proto: FoodPizzaVegetableSlice
entities:
- - uid: 15324
+ - uid: 15346
components:
- pos: 34.483707,-35.33738
parent: 2
type: Transform
- proto: FoodPlatePlastic
entities:
- - uid: 15325
+ - uid: 15347
components:
- pos: 58.37584,20.738062
parent: 2
type: Transform
- - uid: 15326
+ - uid: 15348
components:
- pos: 57.68834,19.831812
parent: 2
type: Transform
- proto: FoodPlateSmallTrash
entities:
- - uid: 15327
+ - uid: 15349
components:
- pos: 12.393527,-66.326096
parent: 2
type: Transform
- proto: FoodPlateTrash
entities:
- - uid: 15328
+ - uid: 15350
components:
- pos: 49.46722,33.501156
parent: 2
type: Transform
- proto: FoodRiceBoiled
entities:
- - uid: 15329
+ - uid: 15351
components:
- pos: -19.538637,41.826466
parent: 2
type: Transform
- proto: FoodRiceEgg
entities:
- - uid: 15330
+ - uid: 15352
components:
- pos: -19.538637,43.451466
parent: 2
type: Transform
- proto: FoodRicePork
entities:
- - uid: 15331
+ - uid: 15353
components:
- pos: -14.4963455,47.699337
parent: 2
type: Transform
- - uid: 15332
+ - uid: 15354
components:
- pos: -19.554262,42.701466
parent: 2
type: Transform
- proto: FoodRicePudding
entities:
- - uid: 15333
+ - uid: 15355
components:
- pos: -18.492641,33.633274
parent: 2
type: Transform
- proto: FoodSaladValid
entities:
- - uid: 15334
+ - uid: 15356
components:
- pos: -7.4460807,4.484113
parent: 2
type: Transform
- proto: FoodSnackBoritos
entities:
- - uid: 15335
+ - uid: 15357
components:
- rot: -1.5707963267948966 rad
pos: -11.473979,-49.827103
@@ -96499,14 +96644,14 @@ entities:
type: Transform
- proto: FoodSnackDanDanNoodles
entities:
- - uid: 15336
+ - uid: 15358
components:
- pos: -17.010939,42.53945
parent: 2
type: Transform
- proto: FoodSnackRaisins
entities:
- - uid: 15337
+ - uid: 15359
components:
- rot: -1.5707963267948966 rad
pos: -54.526974,-39.17369
@@ -96514,56 +96659,56 @@ entities:
type: Transform
- proto: FoodSnackSus
entities:
- - uid: 15338
+ - uid: 15360
components:
- pos: -12.469789,32.52306
parent: 2
type: Transform
- proto: FoodSoupClown
entities:
- - uid: 15339
+ - uid: 15361
components:
- pos: 48.47484,-21.900894
parent: 2
type: Transform
- proto: FoodSoupVegetable
entities:
- - uid: 15340
+ - uid: 15362
components:
- pos: -16.443905,21.40528
parent: 2
type: Transform
- proto: FoodTartGapple
entities:
- - uid: 15341
+ - uid: 15363
components:
- pos: 44.89154,-26.413532
parent: 2
type: Transform
- proto: FoodTartMime
entities:
- - uid: 15342
+ - uid: 15364
components:
- pos: -28.494537,45.97597
parent: 2
type: Transform
- proto: FoodTinPeachesMaint
entities:
- - uid: 15343
+ - uid: 15365
components:
- pos: -27.385347,-52.20374
parent: 2
type: Transform
- proto: FoodTinPeachesMaintOpen
entities:
- - uid: 15344
+ - uid: 15366
components:
- pos: 50.52597,42.757114
parent: 2
type: Transform
- proto: FoodTinPeachesTrash
entities:
- - uid: 15345
+ - uid: 15367
components:
- rot: -1.5707963267948966 rad
pos: 50.40472,33.469906
@@ -96571,7 +96716,7 @@ entities:
type: Transform
- proto: ForensicScanner
entities:
- - uid: 15346
+ - uid: 15368
components:
- rot: -1.5707963267948966 rad
pos: 22.266937,-14.419123
@@ -96579,14 +96724,14 @@ entities:
type: Transform
- proto: FuelDispenser
entities:
- - uid: 15347
+ - uid: 15369
components:
- pos: -27.5,-15.5
parent: 2
type: Transform
- proto: GarlicSeeds
entities:
- - uid: 15348
+ - uid: 15370
components:
- rot: 3.141592653589793 rad
pos: -9.594382,12.492181
@@ -96594,119 +96739,119 @@ entities:
type: Transform
- proto: GasAnalyzer
entities:
- - uid: 15349
+ - uid: 15371
components:
- pos: -22.469156,-58.33799
parent: 2
type: Transform
- - uid: 15350
+ - uid: 15372
components:
- pos: 53.6123,-53.30506
parent: 2
type: Transform
- - uid: 15351
+ - uid: 15373
components:
- pos: -35.42214,-48.770245
parent: 2
type: Transform
- - uid: 15352
+ - uid: 15374
components:
- pos: 4.481148,-75.45175
parent: 2
type: Transform
- - uid: 15353
+ - uid: 15375
components:
- pos: -55.480183,-48.446095
parent: 2
type: Transform
- - uid: 15354
+ - uid: 15376
components:
- pos: -73.40059,-39.44707
parent: 2
type: Transform
- proto: GasCanisterBrokenBase
entities:
- - uid: 15355
+ - uid: 15377
components:
- pos: -28.5,-21.5
parent: 2
type: Transform
- proto: GasFilterFlipped
entities:
- - uid: 15356
+ - uid: 15378
components:
- rot: 3.141592653589793 rad
pos: 45.5,-59.5
parent: 2
type: Transform
- - uid: 15357
+ - uid: 15379
components:
- pos: -44.5,-46.5
parent: 2
type: Transform
- - uid: 15358
+ - uid: 15380
components:
- pos: -44.5,-44.5
parent: 2
type: Transform
- - uid: 15359
+ - uid: 15381
components:
- pos: -44.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15360
+ - uid: 15382
components:
- pos: -44.5,-48.5
parent: 2
type: Transform
- - uid: 15361
+ - uid: 15383
components:
- pos: -44.5,-50.5
parent: 2
type: Transform
- - uid: 15362
+ - uid: 15384
components:
- pos: -44.5,-52.5
parent: 2
type: Transform
- - uid: 15363
+ - uid: 15385
components:
- pos: -44.5,-54.5
parent: 2
type: Transform
- proto: GasMinerCarbonDioxide
entities:
- - uid: 15364
+ - uid: 15386
components:
- pos: -49.5,-50.5
parent: 2
type: Transform
- proto: GasMinerNitrogenStationLarge
entities:
- - uid: 15365
+ - uid: 15387
components:
- pos: -49.5,-54.5
parent: 2
type: Transform
- proto: GasMinerOxygenStationLarge
entities:
- - uid: 15366
+ - uid: 15388
components:
- pos: -49.5,-52.5
parent: 2
type: Transform
- proto: GasMinerWaterVapor
entities:
- - uid: 15367
+ - uid: 15389
components:
- pos: -49.5,-48.5
parent: 2
type: Transform
- proto: GasMixer
entities:
- - uid: 15368
+ - uid: 15390
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-59.5
@@ -96714,7 +96859,7 @@ entities:
type: Transform
- proto: GasMixerFlipped
entities:
- - uid: 15369
+ - uid: 15391
components:
- pos: -42.5,-51.5
parent: 2
@@ -96722,7 +96867,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15370
+ - uid: 15392
components:
- pos: -42.5,-52.5
parent: 2
@@ -96730,7 +96875,7 @@ entities:
- inletTwoConcentration: 1
inletOneConcentration: 0
type: GasMixer
- - uid: 15371
+ - uid: 15393
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-55.5
@@ -96741,7 +96886,7 @@ entities:
type: GasMixer
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 15372
+ - uid: 15394
components:
- pos: -42.5,-49.5
parent: 2
@@ -96749,7 +96894,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15373
+ - uid: 15395
components:
- pos: -42.5,-47.5
parent: 2
@@ -96757,7 +96902,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15374
+ - uid: 15396
components:
- pos: -42.5,-45.5
parent: 2
@@ -96765,7 +96910,7 @@ entities:
- inletTwoConcentration: 0
inletOneConcentration: 1
type: GasMixer
- - uid: 15375
+ - uid: 15397
components:
- pos: -42.5,-43.5
parent: 2
@@ -96775,97 +96920,91 @@ entities:
type: GasMixer
- proto: GasOutletInjector
entities:
- - uid: 15376
+ - uid: 15398
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-54.5
parent: 2
type: Transform
- - uid: 15377
+ - uid: 15399
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-52.5
parent: 2
type: Transform
- - uid: 15378
+ - uid: 15400
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-50.5
parent: 2
type: Transform
- - uid: 15379
+ - uid: 15401
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-48.5
parent: 2
type: Transform
- - uid: 15380
+ - uid: 15402
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-46.5
parent: 2
type: Transform
- - uid: 15381
+ - uid: 15403
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-44.5
parent: 2
type: Transform
- - uid: 15382
+ - uid: 15404
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-42.5
parent: 2
type: Transform
- - uid: 15383
+ - uid: 15405
components:
- pos: -42.5,-35.5
parent: 2
type: Transform
- proto: GasPassiveVent
entities:
- - uid: 15384
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,13.5
- parent: 2
- type: Transform
- - uid: 15385
+ - uid: 15406
components:
- pos: -44.5,-36.5
parent: 2
type: Transform
- - uid: 15386
+ - uid: 15407
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-43.5
parent: 2
type: Transform
- - uid: 15387
+ - uid: 15408
components:
- pos: -50.5,-52.5
parent: 2
type: Transform
- - uid: 15388
+ - uid: 15409
components:
- pos: 73.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15389
+ - uid: 15410
components:
- rot: 3.141592653589793 rad
pos: 51.5,-60.5
parent: 2
type: Transform
- - uid: 15390
+ - uid: 15411
components:
- rot: 3.141592653589793 rad
pos: 48.5,-60.5
parent: 2
type: Transform
- - uid: 15391
+ - uid: 15412
components:
- rot: 3.141592653589793 rad
pos: 49.5,-63.5
@@ -96873,56 +97012,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15392
+ - uid: 15413
components:
- pos: -50.5,-54.5
parent: 2
type: Transform
- - uid: 15393
+ - uid: 15414
components:
- pos: -50.5,-50.5
parent: 2
type: Transform
- - uid: 15394
+ - uid: 15415
components:
- pos: -50.5,-48.5
parent: 2
type: Transform
- - uid: 15395
+ - uid: 15416
components:
- pos: -50.5,-46.5
parent: 2
type: Transform
- - uid: 15396
+ - uid: 15417
components:
- pos: -50.5,-44.5
parent: 2
type: Transform
- - uid: 15397
+ - uid: 15418
components:
- pos: -50.5,-42.5
parent: 2
type: Transform
- - uid: 15398
+ - uid: 15419
components:
- rot: 3.141592653589793 rad
pos: -38.5,-60.5
parent: 2
type: Transform
- - uid: 15399
- components:
- - pos: 1.5,26.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 15400
+ - uid: 15420
components:
- rot: 3.141592653589793 rad
pos: 70.5,32.5
parent: 2
type: Transform
- - uid: 15401
+ - uid: 15421
components:
- rot: 3.141592653589793 rad
pos: 3.5,64.5
@@ -96930,7 +97062,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15402
+ - uid: 15422
components:
- rot: 3.141592653589793 rad
pos: 2.5,63.5
@@ -96938,7 +97070,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15403
+ - uid: 15423
components:
- rot: 3.141592653589793 rad
pos: -5.5,63.5
@@ -96946,7 +97078,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15404
+ - uid: 15424
components:
- rot: 3.141592653589793 rad
pos: -6.5,64.5
@@ -96954,7 +97086,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15405
+ - uid: 15425
components:
- rot: 1.5707963267948966 rad
pos: -0.5,69.5
@@ -96962,7 +97094,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15406
+ - uid: 15426
components:
- rot: -1.5707963267948966 rad
pos: -2.5,69.5
@@ -96970,7 +97102,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15407
+ - uid: 15427
components:
- rot: 3.141592653589793 rad
pos: 66.5,-40.5
@@ -96978,27 +97110,27 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15408
+ - uid: 15428
components:
- pos: 72.5,-29.5
parent: 2
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 15409
+ - uid: 15429
components:
- rot: 3.141592653589793 rad
pos: -55.5,-63.5
parent: 2
type: Transform
- - uid: 15410
+ - uid: 15430
components:
- pos: 71.5,-29.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 15411
+ - uid: 15431
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-38.5
@@ -97006,13 +97138,13 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 15412
+ - uid: 15432
components:
- rot: 3.141592653589793 rad
pos: 55.5,-51.5
parent: 2
type: Transform
- - uid: 15413
+ - uid: 15433
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-37.5
@@ -97020,13 +97152,13 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 15414
+ - uid: 15434
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-35.5
parent: 2
type: Transform
- - uid: 15415
+ - uid: 15435
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-40.5
@@ -97034,7 +97166,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15416
+ - uid: 15436
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-42.5
@@ -97042,7 +97174,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15417
+ - uid: 15437
components:
- rot: 3.141592653589793 rad
pos: 40.5,58.5
@@ -97050,15 +97182,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
+ - uid: 15438
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,13.5
+ parent: 2
+ type: Transform
- proto: GasPipeBend
entities:
- - uid: 15418
+ - uid: 15439
components:
- rot: 3.141592653589793 rad
pos: 10.5,-47.5
parent: 2
type: Transform
- - uid: 15419
+ - uid: 15440
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-6.5
@@ -97066,12 +97204,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15420
+ - uid: 15441
components:
- pos: -70.5,-37.5
parent: 2
type: Transform
- - uid: 15421
+ - uid: 15442
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-23.5
@@ -97079,7 +97217,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15422
+ - uid: 15443
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-32.5
@@ -97087,7 +97225,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15423
+ - uid: 15444
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-32.5
@@ -97095,7 +97233,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15424
+ - uid: 15445
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-42.5
@@ -97103,7 +97241,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15425
+ - uid: 15446
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-46.5
@@ -97111,7 +97249,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15426
+ - uid: 15447
components:
- rot: 3.141592653589793 rad
pos: -68.5,-46.5
@@ -97119,14 +97257,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15427
+ - uid: 15448
components:
- pos: -3.5,16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15428
+ - uid: 15449
components:
- rot: -1.5707963267948966 rad
pos: 35.5,3.5
@@ -97134,7 +97272,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15429
+ - uid: 15450
components:
- rot: 3.141592653589793 rad
pos: 20.5,-42.5
@@ -97142,7 +97280,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15430
+ - uid: 15451
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-53.5
@@ -97150,7 +97288,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15431
+ - uid: 15452
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-46.5
@@ -97158,21 +97296,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15432
+ - uid: 15453
components:
- pos: -7.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15433
+ - uid: 15454
components:
- pos: -6.5,-63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15434
+ - uid: 15455
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-5.5
@@ -97180,7 +97318,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15435
+ - uid: 15456
components:
- rot: 3.141592653589793 rad
pos: 7.5,13.5
@@ -97188,21 +97326,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15436
+ - uid: 15457
components:
- pos: 36.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15437
+ - uid: 15458
components:
- pos: 29.5,21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15438
+ - uid: 15459
components:
- rot: 3.141592653589793 rad
pos: 29.5,18.5
@@ -97210,7 +97348,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15439
+ - uid: 15460
components:
- rot: 3.141592653589793 rad
pos: -12.5,5.5
@@ -97218,7 +97356,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15440
+ - uid: 15461
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-1.5
@@ -97226,14 +97364,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15441
+ - uid: 15462
components:
- pos: -4.5,-60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15442
+ - uid: 15463
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-60.5
@@ -97241,7 +97379,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15443
+ - uid: 15464
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-61.5
@@ -97249,7 +97387,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15444
+ - uid: 15465
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-22.5
@@ -97257,7 +97395,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15445
+ - uid: 15466
components:
- rot: 3.141592653589793 rad
pos: 36.5,11.5
@@ -97265,7 +97403,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15446
+ - uid: 15467
components:
- rot: 1.5707963267948966 rad
pos: 28.5,10.5
@@ -97273,14 +97411,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15447
+ - uid: 15468
components:
- pos: -12.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15448
+ - uid: 15469
components:
- rot: 3.141592653589793 rad
pos: 5.5,12.5
@@ -97288,14 +97426,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15449
+ - uid: 15470
components:
- pos: 34.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15450
+ - uid: 15471
components:
- rot: 3.141592653589793 rad
pos: 11.5,-43.5
@@ -97303,7 +97441,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15451
+ - uid: 15472
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-41.5
@@ -97311,7 +97449,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15452
+ - uid: 15473
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-53.5
@@ -97319,7 +97457,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15453
+ - uid: 15474
components:
- rot: 3.141592653589793 rad
pos: -7.5,-63.5
@@ -97327,14 +97465,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15454
+ - uid: 15475
components:
- pos: 35.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15455
+ - uid: 15476
components:
- rot: 3.141592653589793 rad
pos: 17.5,-5.5
@@ -97342,7 +97480,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15456
+ - uid: 15477
components:
- rot: 1.5707963267948966 rad
pos: 31.5,10.5
@@ -97350,7 +97488,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15457
+ - uid: 15478
components:
- rot: 3.141592653589793 rad
pos: 29.5,15.5
@@ -97358,14 +97496,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15458
+ - uid: 15479
components:
- pos: 29.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15459
+ - uid: 15480
components:
- rot: 1.5707963267948966 rad
pos: 25.5,12.5
@@ -97373,21 +97511,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15460
+ - uid: 15481
components:
- pos: 14.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15461
+ - uid: 15482
components:
- pos: 11.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15462
+ - uid: 15483
components:
- rot: -1.5707963267948966 rad
pos: 23.5,16.5
@@ -97395,7 +97533,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15463
+ - uid: 15484
components:
- rot: 3.141592653589793 rad
pos: 26.5,9.5
@@ -97403,7 +97541,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15464
+ - uid: 15485
components:
- rot: 3.141592653589793 rad
pos: 21.5,7.5
@@ -97411,7 +97549,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15465
+ - uid: 15486
components:
- rot: -1.5707963267948966 rad
pos: 20.5,7.5
@@ -97419,7 +97557,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15466
+ - uid: 15487
components:
- rot: 1.5707963267948966 rad
pos: 18.5,7.5
@@ -97427,14 +97565,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15467
+ - uid: 15488
components:
- pos: 1.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15468
+ - uid: 15489
components:
- rot: -1.5707963267948966 rad
pos: 10.5,2.5
@@ -97442,7 +97580,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15469
+ - uid: 15490
components:
- rot: 1.5707963267948966 rad
pos: 9.5,2.5
@@ -97450,7 +97588,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15470
+ - uid: 15491
components:
- rot: 3.141592653589793 rad
pos: 9.5,-1.5
@@ -97458,14 +97596,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15471
+ - uid: 15492
components:
- pos: 11.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15472
+ - uid: 15493
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-9.5
@@ -97473,7 +97611,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15473
+ - uid: 15494
components:
- rot: 1.5707963267948966 rad
pos: 19.5,21.5
@@ -97481,7 +97619,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15474
+ - uid: 15495
components:
- rot: 1.5707963267948966 rad
pos: 23.5,20.5
@@ -97489,7 +97627,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15475
+ - uid: 15496
components:
- rot: -1.5707963267948966 rad
pos: 25.5,20.5
@@ -97497,7 +97635,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15476
+ - uid: 15497
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-16.5
@@ -97505,7 +97643,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15477
+ - uid: 15498
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-6.5
@@ -97513,7 +97651,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15478
+ - uid: 15499
components:
- rot: 3.141592653589793 rad
pos: 25.5,-7.5
@@ -97521,7 +97659,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15479
+ - uid: 15500
components:
- rot: 3.141592653589793 rad
pos: 20.5,-23.5
@@ -97529,7 +97667,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15480
+ - uid: 15501
components:
- rot: 3.141592653589793 rad
pos: 24.5,-52.5
@@ -97537,7 +97675,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15481
+ - uid: 15502
components:
- rot: -1.5707963267948966 rad
pos: -10.5,5.5
@@ -97545,7 +97683,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15482
+ - uid: 15503
components:
- rot: 1.5707963267948966 rad
pos: -10.5,7.5
@@ -97553,7 +97691,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15483
+ - uid: 15504
components:
- rot: 3.141592653589793 rad
pos: -9.5,-5.5
@@ -97561,7 +97699,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15484
+ - uid: 15505
components:
- rot: 3.141592653589793 rad
pos: -10.5,-6.5
@@ -97569,7 +97707,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15485
+ - uid: 15506
components:
- rot: 3.141592653589793 rad
pos: -4.5,-61.5
@@ -97577,14 +97715,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15486
+ - uid: 15507
components:
- pos: 11.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15487
+ - uid: 15508
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-84.5
@@ -97592,14 +97730,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15488
+ - uid: 15509
components:
- pos: 36.5,8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15489
+ - uid: 15510
components:
- rot: -1.5707963267948966 rad
pos: -3.5,7.5
@@ -97607,7 +97745,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15490
+ - uid: 15511
components:
- rot: 3.141592653589793 rad
pos: -3.5,-60.5
@@ -97615,7 +97753,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15491
+ - uid: 15512
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-59.5
@@ -97623,14 +97761,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15492
+ - uid: 15513
components:
- pos: 1.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15493
+ - uid: 15514
components:
- rot: 1.5707963267948966 rad
pos: 34.5,10.5
@@ -97638,7 +97776,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15494
+ - uid: 15515
components:
- rot: 3.141592653589793 rad
pos: 4.5,16.5
@@ -97646,14 +97784,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15495
- components:
- - pos: -4.5,14.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 15496
+ - uid: 15516
components:
- rot: -1.5707963267948966 rad
pos: -6.5,8.5
@@ -97661,7 +97792,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15497
+ - uid: 15517
components:
- rot: 3.141592653589793 rad
pos: -16.5,-38.5
@@ -97669,7 +97800,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15498
+ - uid: 15518
components:
- rot: 3.141592653589793 rad
pos: 1.5,5.5
@@ -97677,14 +97808,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15499
+ - uid: 15519
components:
- pos: 8.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15500
+ - uid: 15520
components:
- rot: -1.5707963267948966 rad
pos: 19.5,17.5
@@ -97692,7 +97823,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15501
+ - uid: 15521
components:
- rot: 3.141592653589793 rad
pos: 41.5,-27.5
@@ -97700,7 +97831,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15502
+ - uid: 15522
components:
- rot: -1.5707963267948966 rad
pos: -16.5,30.5
@@ -97708,14 +97839,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15503
+ - uid: 15523
components:
- pos: 36.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15504
+ - uid: 15524
components:
- rot: 3.141592653589793 rad
pos: 0.5,7.5
@@ -97723,21 +97854,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15505
+ - uid: 15525
components:
- pos: 2.5,5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15506
+ - uid: 15526
components:
- pos: 4.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15507
+ - uid: 15527
components:
- rot: 3.141592653589793 rad
pos: 4.5,-0.5
@@ -97745,7 +97876,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15508
+ - uid: 15528
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-53.5
@@ -97753,7 +97884,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15509
+ - uid: 15529
components:
- rot: 1.5707963267948966 rad
pos: -8.5,8.5
@@ -97761,7 +97892,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15510
+ - uid: 15530
components:
- rot: 3.141592653589793 rad
pos: 26.5,-18.5
@@ -97769,7 +97900,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15511
+ - uid: 15531
components:
- rot: 3.141592653589793 rad
pos: 21.5,-18.5
@@ -97777,7 +97908,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15512
+ - uid: 15532
components:
- rot: 1.5707963267948966 rad
pos: 10.5,11.5
@@ -97785,14 +97916,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15513
+ - uid: 15533
components:
- pos: 24.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15514
+ - uid: 15534
components:
- rot: -1.5707963267948966 rad
pos: -15.5,29.5
@@ -97800,7 +97931,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15515
+ - uid: 15535
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-85.5
@@ -97808,7 +97939,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15516
+ - uid: 15536
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-6.5
@@ -97816,7 +97947,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15517
+ - uid: 15537
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-17.5
@@ -97824,7 +97955,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15518
+ - uid: 15538
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-53.5
@@ -97832,7 +97963,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15519
+ - uid: 15539
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-73.5
@@ -97840,7 +97971,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15520
+ - uid: 15540
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-22.5
@@ -97848,21 +97979,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15521
+ - uid: 15541
components:
- pos: 36.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15522
+ - uid: 15542
components:
- pos: 34.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15523
+ - uid: 15543
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-24.5
@@ -97870,7 +98001,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15524
+ - uid: 15544
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-28.5
@@ -97878,14 +98009,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15525
+ - uid: 15545
components:
- pos: 46.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15526
+ - uid: 15546
components:
- rot: 3.141592653589793 rad
pos: 44.5,-28.5
@@ -97893,7 +98024,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15527
+ - uid: 15547
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-23.5
@@ -97901,7 +98032,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15528
+ - uid: 15548
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-79.5
@@ -97909,7 +98040,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15529
+ - uid: 15549
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-72.5
@@ -97917,7 +98048,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15530
+ - uid: 15550
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-61.5
@@ -97925,7 +98056,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15531
+ - uid: 15551
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-41.5
@@ -97933,7 +98064,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15532
+ - uid: 15552
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-42.5
@@ -97941,7 +98072,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15533
+ - uid: 15553
components:
- rot: 3.141592653589793 rad
pos: 30.5,14.5
@@ -97949,7 +98080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15534
+ - uid: 15554
components:
- rot: 3.141592653589793 rad
pos: 47.5,21.5
@@ -97957,7 +98088,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15535
+ - uid: 15555
components:
- rot: 3.141592653589793 rad
pos: 50.5,13.5
@@ -97965,7 +98096,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15536
+ - uid: 15556
components:
- rot: 3.141592653589793 rad
pos: 49.5,12.5
@@ -97973,7 +98104,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15537
+ - uid: 15557
components:
- rot: -1.5707963267948966 rad
pos: 58.5,12.5
@@ -97981,7 +98112,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15538
+ - uid: 15558
components:
- rot: 3.141592653589793 rad
pos: 59.5,11.5
@@ -97989,7 +98120,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15539
+ - uid: 15559
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-3.5
@@ -97997,7 +98128,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15540
+ - uid: 15560
components:
- rot: 3.141592653589793 rad
pos: 25.5,-60.5
@@ -98005,7 +98136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15541
+ - uid: 15561
components:
- rot: 3.141592653589793 rad
pos: 52.5,-11.5
@@ -98013,7 +98144,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15542
+ - uid: 15562
components:
- rot: 3.141592653589793 rad
pos: 55.5,-12.5
@@ -98021,28 +98152,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15543
+ - uid: 15563
components:
- pos: 57.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15544
+ - uid: 15564
components:
- pos: 49.5,-52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15545
+ - uid: 15565
components:
- pos: 63.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15546
+ - uid: 15566
components:
- rot: 3.141592653589793 rad
pos: 62.5,-42.5
@@ -98050,7 +98181,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15547
+ - uid: 15567
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-35.5
@@ -98058,14 +98189,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15548
+ - uid: 15568
components:
- pos: 61.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15549
+ - uid: 15569
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-35.5
@@ -98073,14 +98204,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15550
+ - uid: 15570
components:
- pos: 64.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15551
+ - uid: 15571
components:
- rot: 3.141592653589793 rad
pos: 60.5,-35.5
@@ -98088,7 +98219,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15552
+ - uid: 15572
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-32.5
@@ -98096,7 +98227,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15553
+ - uid: 15573
components:
- rot: 3.141592653589793 rad
pos: 63.5,-32.5
@@ -98104,7 +98235,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15554
+ - uid: 15574
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-10.5
@@ -98112,7 +98243,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15555
+ - uid: 15575
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-10.5
@@ -98120,14 +98251,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15556
+ - uid: 15576
components:
- pos: 64.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15557
+ - uid: 15577
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-46.5
@@ -98135,7 +98266,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15558
+ - uid: 15578
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-45.5
@@ -98143,7 +98274,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15559
+ - uid: 15579
components:
- rot: 3.141592653589793 rad
pos: 26.5,-58.5
@@ -98151,7 +98282,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15560
+ - uid: 15580
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-52.5
@@ -98159,7 +98290,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15561
+ - uid: 15581
components:
- rot: 3.141592653589793 rad
pos: 28.5,-49.5
@@ -98167,19 +98298,19 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15562
+ - uid: 15582
components:
- rot: 3.141592653589793 rad
pos: 50.5,-58.5
parent: 2
type: Transform
- - uid: 15563
+ - uid: 15583
components:
- rot: 3.141592653589793 rad
pos: 47.5,-58.5
parent: 2
type: Transform
- - uid: 15564
+ - uid: 15584
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-22.5
@@ -98187,7 +98318,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15565
+ - uid: 15585
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-21.5
@@ -98195,7 +98326,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15566
+ - uid: 15586
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-17.5
@@ -98203,7 +98334,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15567
+ - uid: 15587
components:
- rot: 3.141592653589793 rad
pos: 50.5,-54.5
@@ -98211,14 +98342,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15568
+ - uid: 15588
components:
- pos: 52.5,-54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15569
+ - uid: 15589
components:
- rot: 3.141592653589793 rad
pos: 52.5,-57.5
@@ -98226,28 +98357,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15570
+ - uid: 15590
components:
- pos: -14.5,6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15571
+ - uid: 15591
components:
- pos: -18.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15572
+ - uid: 15592
components:
- pos: -20.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15573
+ - uid: 15593
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-46.5
@@ -98255,7 +98386,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15574
+ - uid: 15594
components:
- rot: 3.141592653589793 rad
pos: -20.5,-47.5
@@ -98263,7 +98394,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15575
+ - uid: 15595
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-56.5
@@ -98271,7 +98402,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15576
+ - uid: 15596
components:
- rot: 3.141592653589793 rad
pos: -42.5,-15.5
@@ -98279,7 +98410,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15577
+ - uid: 15597
components:
- rot: 1.5707963267948966 rad
pos: -26.5,6.5
@@ -98287,7 +98418,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15578
+ - uid: 15598
components:
- rot: 3.141592653589793 rad
pos: -26.5,-5.5
@@ -98295,7 +98426,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15579
+ - uid: 15599
components:
- rot: 3.141592653589793 rad
pos: -24.5,-4.5
@@ -98303,7 +98434,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15580
+ - uid: 15600
components:
- rot: 1.5707963267948966 rad
pos: -24.5,7.5
@@ -98311,7 +98442,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15581
+ - uid: 15601
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-11.5
@@ -98319,7 +98450,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15582
+ - uid: 15602
components:
- rot: 3.141592653589793 rad
pos: -44.5,-10.5
@@ -98327,28 +98458,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15583
+ - uid: 15603
components:
- pos: -42.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15584
+ - uid: 15604
components:
- pos: -41.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15585
+ - uid: 15605
components:
- pos: -31.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15586
+ - uid: 15606
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-5.5
@@ -98356,7 +98487,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15587
+ - uid: 15607
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-6.5
@@ -98364,28 +98495,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15588
+ - uid: 15608
components:
- pos: -50.5,-17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15589
+ - uid: 15609
components:
- pos: -51.5,-19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15590
+ - uid: 15610
components:
- pos: -47.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15591
+ - uid: 15611
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-17.5
@@ -98393,7 +98524,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15592
+ - uid: 15612
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-23.5
@@ -98401,7 +98532,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15593
+ - uid: 15613
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-25.5
@@ -98409,68 +98540,68 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15594
+ - uid: 15614
components:
- rot: 3.141592653589793 rad
pos: -50.5,-55.5
parent: 2
type: Transform
- - uid: 15595
+ - uid: 15615
components:
- rot: 3.141592653589793 rad
pos: -50.5,-53.5
parent: 2
type: Transform
- - uid: 15596
+ - uid: 15616
components:
- rot: 3.141592653589793 rad
pos: -50.5,-51.5
parent: 2
type: Transform
- - uid: 15597
+ - uid: 15617
components:
- rot: 3.141592653589793 rad
pos: -50.5,-49.5
parent: 2
type: Transform
- - uid: 15598
+ - uid: 15618
components:
- rot: 3.141592653589793 rad
pos: -50.5,-47.5
parent: 2
type: Transform
- - uid: 15599
+ - uid: 15619
components:
- rot: 3.141592653589793 rad
pos: -50.5,-45.5
parent: 2
type: Transform
- - uid: 15600
+ - uid: 15620
components:
- rot: 3.141592653589793 rad
pos: -50.5,-43.5
parent: 2
type: Transform
- - uid: 15601
+ - uid: 15621
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-52.5
parent: 2
type: Transform
- - uid: 15602
+ - uid: 15622
components:
- rot: 3.141592653589793 rad
pos: -44.5,-57.5
parent: 2
type: Transform
- - uid: 15603
+ - uid: 15623
components:
- pos: -37.5,-48.5
parent: 2
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 15604
+ - uid: 15624
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-48.5
@@ -98478,7 +98609,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 15605
+ - uid: 15625
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-57.5
@@ -98486,7 +98617,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15606
+ - uid: 15626
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-40.5
@@ -98494,7 +98625,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15607
+ - uid: 15627
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-40.5
@@ -98502,7 +98633,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15608
+ - uid: 15628
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-41.5
@@ -98510,7 +98641,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15609
+ - uid: 15629
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-41.5
@@ -98518,14 +98649,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15610
+ - uid: 15630
components:
- pos: -38.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15611
+ - uid: 15631
components:
- rot: 3.141592653589793 rad
pos: -40.5,-35.5
@@ -98533,14 +98664,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15612
+ - uid: 15632
components:
- pos: -40.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15613
+ - uid: 15633
components:
- rot: 3.141592653589793 rad
pos: -20.5,-60.5
@@ -98548,7 +98679,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15614
+ - uid: 15634
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-69.5
@@ -98556,14 +98687,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15615
+ - uid: 15635
components:
- pos: -20.5,-58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15616
+ - uid: 15636
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-57.5
@@ -98571,21 +98702,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15617
+ - uid: 15637
components:
- pos: -41.5,31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15618
+ - uid: 15638
components:
- pos: -40.5,33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15619
+ - uid: 15639
components:
- rot: -1.5707963267948966 rad
pos: -49.5,31.5
@@ -98593,7 +98724,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15620
+ - uid: 15640
components:
- rot: 1.5707963267948966 rad
pos: -37.5,13.5
@@ -98601,7 +98732,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15621
+ - uid: 15641
components:
- rot: 1.5707963267948966 rad
pos: -38.5,14.5
@@ -98609,19 +98740,19 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15622
+ - uid: 15642
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-53.5
parent: 2
type: Transform
- - uid: 15623
+ - uid: 15643
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-55.5
parent: 2
type: Transform
- - uid: 15624
+ - uid: 15644
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-53.5
@@ -98629,7 +98760,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15625
+ - uid: 15645
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-71.5
@@ -98637,7 +98768,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15626
+ - uid: 15646
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-76.5
@@ -98645,7 +98776,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15627
+ - uid: 15647
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-72.5
@@ -98653,7 +98784,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15628
+ - uid: 15648
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-72.5
@@ -98661,7 +98792,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15629
+ - uid: 15649
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-75.5
@@ -98669,7 +98800,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15630
+ - uid: 15650
components:
- rot: 3.141592653589793 rad
pos: -54.5,-75.5
@@ -98677,7 +98808,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15631
+ - uid: 15651
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-76.5
@@ -98685,7 +98816,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15632
+ - uid: 15652
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-43.5
@@ -98693,7 +98824,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15633
+ - uid: 15653
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-41.5
@@ -98701,14 +98832,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15634
+ - uid: 15654
components:
- pos: -15.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15635
+ - uid: 15655
components:
- rot: 3.141592653589793 rad
pos: -15.5,-43.5
@@ -98716,30 +98847,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15636
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,11.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 15637
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,11.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 15638
+ - uid: 15656
components:
- pos: -5.5,-64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15639
+ - uid: 15657
components:
- rot: 1.5707963267948966 rad
pos: 45.5,27.5
@@ -98747,7 +98862,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15640
+ - uid: 15658
components:
- rot: 1.5707963267948966 rad
pos: 44.5,26.5
@@ -98755,7 +98870,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15641
+ - uid: 15659
components:
- rot: -1.5707963267948966 rad
pos: 52.5,27.5
@@ -98763,7 +98878,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15642
+ - uid: 15660
components:
- rot: -1.5707963267948966 rad
pos: 54.5,26.5
@@ -98771,14 +98886,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15643
+ - uid: 15661
components:
- pos: -15.5,45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15644
+ - uid: 15662
components:
- rot: 3.141592653589793 rad
pos: -17.5,45.5
@@ -98786,7 +98901,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15645
+ - uid: 15663
components:
- rot: 1.5707963267948966 rad
pos: 47.5,50.5
@@ -98794,7 +98909,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15646
+ - uid: 15664
components:
- rot: 1.5707963267948966 rad
pos: 45.5,49.5
@@ -98802,7 +98917,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15647
+ - uid: 15665
components:
- rot: -1.5707963267948966 rad
pos: 47.5,46.5
@@ -98810,7 +98925,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15648
+ - uid: 15666
components:
- rot: -1.5707963267948966 rad
pos: 45.5,45.5
@@ -98818,7 +98933,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15649
+ - uid: 15667
components:
- rot: 3.141592653589793 rad
pos: 2.5,69.5
@@ -98826,7 +98941,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15650
+ - uid: 15668
components:
- rot: -1.5707963267948966 rad
pos: -5.5,69.5
@@ -98834,14 +98949,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15651
+ - uid: 15669
components:
- pos: 3.5,69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15652
+ - uid: 15670
components:
- rot: 1.5707963267948966 rad
pos: -6.5,69.5
@@ -98849,7 +98964,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15653
+ - uid: 15671
components:
- rot: -1.5707963267948966 rad
pos: -1.5,67.5
@@ -98857,7 +98972,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15654
+ - uid: 15672
components:
- rot: 1.5707963267948966 rad
pos: -2.5,67.5
@@ -98865,7 +98980,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15655
+ - uid: 15673
components:
- rot: -1.5707963267948966 rad
pos: -0.5,46.5
@@ -98873,7 +98988,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15656
+ - uid: 15674
components:
- rot: -1.5707963267948966 rad
pos: 1.5,44.5
@@ -98881,7 +98996,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15657
+ - uid: 15675
components:
- rot: 3.141592653589793 rad
pos: -21.5,51.5
@@ -98889,7 +99004,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15658
+ - uid: 15676
components:
- rot: 3.141592653589793 rad
pos: -22.5,50.5
@@ -98897,7 +99012,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15659
+ - uid: 15677
components:
- rot: -1.5707963267948966 rad
pos: -13.5,51.5
@@ -98905,7 +99020,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15660
+ - uid: 15678
components:
- rot: -1.5707963267948966 rad
pos: -12.5,50.5
@@ -98913,28 +99028,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15661
+ - uid: 15679
components:
- pos: 1.5,59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15662
+ - uid: 15680
components:
- pos: -0.5,58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15663
+ - uid: 15681
components:
- pos: 40.5,47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15664
+ - uid: 15682
components:
- rot: -1.5707963267948966 rad
pos: 40.5,44.5
@@ -98942,7 +99057,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15665
+ - uid: 15683
components:
- rot: 1.5707963267948966 rad
pos: 29.5,47.5
@@ -98950,7 +99065,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15666
+ - uid: 15684
components:
- rot: 1.5707963267948966 rad
pos: 23.5,46.5
@@ -98958,7 +99073,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15667
+ - uid: 15685
components:
- rot: 3.141592653589793 rad
pos: 29.5,44.5
@@ -98966,7 +99081,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15668
+ - uid: 15686
components:
- rot: 3.141592653589793 rad
pos: -22.5,-98.5
@@ -98974,7 +99089,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15669
+ - uid: 15687
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-93.5
@@ -98982,28 +99097,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15670
+ - uid: 15688
components:
- pos: 62.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15671
+ - uid: 15689
components:
- pos: 75.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15672
+ - uid: 15690
components:
- pos: 74.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15673
+ - uid: 15691
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-48.5
@@ -99011,7 +99126,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15674
+ - uid: 15692
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-46.5
@@ -99019,7 +99134,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15675
+ - uid: 15693
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-46.5
@@ -99027,7 +99142,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15676
+ - uid: 15694
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-47.5
@@ -99035,7 +99150,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15677
+ - uid: 15695
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-45.5
@@ -99043,7 +99158,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15678
+ - uid: 15696
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-45.5
@@ -99051,14 +99166,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15679
+ - uid: 15697
components:
- pos: 72.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15680
+ - uid: 15698
components:
- rot: 3.141592653589793 rad
pos: 72.5,-37.5
@@ -99066,7 +99181,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15681
+ - uid: 15699
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-37.5
@@ -99074,40 +99189,40 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15682
+ - uid: 15700
components:
- pos: -56.5,-58.5
parent: 2
type: Transform
- - uid: 15683
+ - uid: 15701
components:
- rot: 3.141592653589793 rad
pos: -57.5,-60.5
parent: 2
type: Transform
- - uid: 15684
+ - uid: 15702
components:
- rot: 3.141592653589793 rad
pos: -56.5,-61.5
parent: 2
type: Transform
- - uid: 15685
+ - uid: 15703
components:
- pos: -55.5,-61.5
parent: 2
type: Transform
- - uid: 15686
+ - uid: 15704
components:
- pos: 55.5,-48.5
parent: 2
type: Transform
- - uid: 15687
+ - uid: 15705
components:
- rot: 3.141592653589793 rad
pos: 53.5,-48.5
parent: 2
type: Transform
- - uid: 15688
+ - uid: 15706
components:
- rot: 3.141592653589793 rad
pos: 53.5,-6.5
@@ -99115,7 +99230,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15689
+ - uid: 15707
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-36.5
@@ -99123,7 +99238,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15690
+ - uid: 15708
components:
- rot: 3.141592653589793 rad
pos: -10.5,-21.5
@@ -99131,14 +99246,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15691
+ - uid: 15709
components:
- pos: -8.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15692
+ - uid: 15710
components:
- rot: 3.141592653589793 rad
pos: -25.5,-60.5
@@ -99146,7 +99261,7 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 15693
+ - uid: 15711
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-62.5
@@ -99154,7 +99269,7 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 15694
+ - uid: 15712
components:
- rot: 3.141592653589793 rad
pos: -23.5,-62.5
@@ -99162,13 +99277,13 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 15695
+ - uid: 15713
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-35.5
parent: 2
type: Transform
- - uid: 15696
+ - uid: 15714
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-82.5
@@ -99176,7 +99291,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15697
+ - uid: 15715
components:
- rot: 3.141592653589793 rad
pos: 25.5,-72.5
@@ -99184,7 +99299,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15698
+ - uid: 15716
components:
- rot: 3.141592653589793 rad
pos: 24.5,-73.5
@@ -99192,7 +99307,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15699
+ - uid: 15717
components:
- rot: 3.141592653589793 rad
pos: 29.5,-85.5
@@ -99200,7 +99315,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15700
+ - uid: 15718
components:
- rot: 3.141592653589793 rad
pos: 47.5,-86.5
@@ -99208,7 +99323,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15701
+ - uid: 15719
components:
- rot: -1.5707963267948966 rad
pos: 45.5,6.5
@@ -99216,7 +99331,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15702
+ - uid: 15720
components:
- rot: 3.141592653589793 rad
pos: -45.5,33.5
@@ -99224,7 +99339,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15703
+ - uid: 15721
components:
- rot: 3.141592653589793 rad
pos: -47.5,31.5
@@ -99232,7 +99347,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15704
+ - uid: 15722
components:
- rot: -1.5707963267948966 rad
pos: -46.5,34.5
@@ -99240,7 +99355,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15705
+ - uid: 15723
components:
- rot: 1.5707963267948966 rad
pos: -47.5,34.5
@@ -99248,7 +99363,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15706
+ - uid: 15724
components:
- rot: 1.5707963267948966 rad
pos: -6.5,16.5
@@ -99256,33 +99371,33 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15707
+ - uid: 15725
components:
- pos: -62.5,-39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15708
+ - uid: 15726
components:
- pos: -67.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15709
+ - uid: 15727
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-44.5
parent: 2
type: Transform
- - uid: 15710
+ - uid: 15728
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-43.5
parent: 2
type: Transform
- - uid: 15711
+ - uid: 15729
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-41.5
@@ -99290,7 +99405,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15712
+ - uid: 15730
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-23.5
@@ -99298,7 +99413,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15713
+ - uid: 15731
components:
- rot: 3.141592653589793 rad
pos: -51.5,-24.5
@@ -99306,22 +99421,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15714
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-14.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 15715
+ - uid: 15732
components:
- pos: 39.5,61.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15716
+ - uid: 15733
components:
- rot: 3.141592653589793 rad
pos: 3.5,-46.5
@@ -99329,7 +99436,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15717
+ - uid: 15734
components:
- rot: 3.141592653589793 rad
pos: 5.5,-47.5
@@ -99337,228 +99444,258 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
+ - uid: 15735
+ components:
+ - pos: 0.5,11.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
- proto: GasPipeFourway
entities:
- - uid: 15718
+ - uid: 15736
components:
- pos: 38.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15719
+ - uid: 15737
components:
- pos: 31.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15720
+ - uid: 15738
components:
- pos: 21.5,16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15721
+ - uid: 15739
components:
- pos: 31.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15722
+ - uid: 15740
components:
- pos: 21.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15723
+ - uid: 15741
components:
- pos: 17.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15724
+ - uid: 15742
components:
- pos: 34.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15725
+ - uid: 15743
components:
- pos: -24.5,-60.5
parent: 2
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 15726
+ - uid: 15744
components:
- pos: -5.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15727
+ - uid: 15745
components:
- pos: -33.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15728
+ - uid: 15746
components:
- pos: -3.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15729
+ - uid: 15747
components:
- pos: 30.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15730
+ - uid: 15748
components:
- pos: -32.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15731
+ - uid: 15749
components:
- pos: -18.5,29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15732
+ - uid: 15750
components:
- pos: 49.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15733
+ - uid: 15751
components:
- pos: 50.5,21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15734
+ - uid: 15752
components:
- pos: 42.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15735
+ - uid: 15753
components:
- pos: 44.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15736
+ - uid: 15754
components:
- pos: 64.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15737
+ - uid: 15755
components:
- pos: 29.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15738
+ - uid: 15756
components:
- pos: -41.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15739
+ - uid: 15757
components:
- pos: -42.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15740
+ - uid: 15758
components:
- pos: -20.5,30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15741
+ - uid: 15759
components:
- pos: -31.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15742
+ - uid: 15760
components:
- pos: -32.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15743
+ - uid: 15761
components:
- pos: -45.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15744
+ - uid: 15762
components:
- pos: -5.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15745
+ - uid: 15763
components:
- pos: -16.5,43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15746
+ - uid: 15764
components:
- pos: -15.5,44.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15747
+ - uid: 15765
components:
- pos: 68.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15748
+ - uid: 15766
components:
- pos: -70.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
+ - uid: 15767
+ components:
+ - pos: -3.5,11.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
- proto: GasPipeStraight
entities:
- - uid: 15749
+ - uid: 15768
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,13.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 15769
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,14.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 15770
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-47.5
@@ -99566,56 +99703,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15750
+ - uid: 15771
components:
- pos: 39.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15751
+ - uid: 15772
components:
- pos: 39.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15752
+ - uid: 15773
components:
- pos: 22.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15753
+ - uid: 15774
components:
- pos: 28.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15754
+ - uid: 15775
components:
- pos: 28.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15755
+ - uid: 15776
components:
- pos: 22.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15756
+ - uid: 15777
components:
- pos: 2.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15757
+ - uid: 15778
components:
- rot: 3.141592653589793 rad
pos: 1.5,-3.5
@@ -99623,7 +99760,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15758
+ - uid: 15779
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-3.5
@@ -99631,21 +99768,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15759
+ - uid: 15780
components:
- pos: 2.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15760
+ - uid: 15781
components:
- pos: 1.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15761
+ - uid: 15782
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-23.5
@@ -99653,21 +99790,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15762
+ - uid: 15783
components:
- pos: -47.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15763
+ - uid: 15784
components:
- pos: -71.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15764
+ - uid: 15785
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-42.5
@@ -99675,7 +99812,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15765
+ - uid: 15786
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-42.5
@@ -99683,7 +99820,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15766
+ - uid: 15787
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-40.5
@@ -99691,14 +99828,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15767
+ - uid: 15788
components:
- pos: -72.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15768
+ - uid: 15789
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-42.5
@@ -99706,14 +99843,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15769
+ - uid: 15790
components:
- pos: -70.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15770
+ - uid: 15791
components:
- rot: 3.141592653589793 rad
pos: -62.5,-40.5
@@ -99721,14 +99858,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15771
+ - uid: 15792
components:
- pos: -68.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15772
+ - uid: 15793
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-39.5
@@ -99736,7 +99873,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15773
+ - uid: 15794
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-42.5
@@ -99744,126 +99881,126 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15774
+ - uid: 15795
components:
- pos: -68.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15775
+ - uid: 15796
components:
- pos: -73.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15776
+ - uid: 15797
components:
- pos: -71.5,-30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15777
+ - uid: 15798
components:
- pos: -71.5,-28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15778
+ - uid: 15799
components:
- pos: -73.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15779
+ - uid: 15800
components:
- pos: -71.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15780
+ - uid: 15801
components:
- pos: -73.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15781
+ - uid: 15802
components:
- pos: -73.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15782
+ - uid: 15803
components:
- pos: -73.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15783
+ - uid: 15804
components:
- pos: -73.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15784
+ - uid: 15805
components:
- pos: -73.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15785
+ - uid: 15806
components:
- pos: -73.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15786
+ - uid: 15807
components:
- pos: -73.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15787
+ - uid: 15808
components:
- pos: -73.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15788
+ - uid: 15809
components:
- pos: -72.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15789
+ - uid: 15810
components:
- pos: -72.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15790
+ - uid: 15811
components:
- pos: -72.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15791
+ - uid: 15812
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-42.5
@@ -99871,7 +100008,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15792
+ - uid: 15813
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-42.5
@@ -99879,7 +100016,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15793
+ - uid: 15814
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-42.5
@@ -99887,7 +100024,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15794
+ - uid: 15815
components:
- rot: 3.141592653589793 rad
pos: -62.5,-41.5
@@ -99895,41 +100032,41 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15795
+ - uid: 15816
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-41.5
parent: 2
type: Transform
- - uid: 15796
+ - uid: 15817
components:
- pos: -73.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15797
+ - uid: 15818
components:
- pos: -73.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15798
+ - uid: 15819
components:
- pos: -71.5,-29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15799
+ - uid: 15820
components:
- pos: -71.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15800
+ - uid: 15821
components:
- rot: 3.141592653589793 rad
pos: -71.5,-45.5
@@ -99937,7 +100074,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15801
+ - uid: 15822
components:
- rot: 3.141592653589793 rad
pos: -71.5,-44.5
@@ -99945,7 +100082,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15802
+ - uid: 15823
components:
- rot: 3.141592653589793 rad
pos: -67.5,-45.5
@@ -99953,7 +100090,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15803
+ - uid: 15824
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-23.5
@@ -99961,7 +100098,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15804
+ - uid: 15825
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-39.5
@@ -99969,21 +100106,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15805
+ - uid: 15826
components:
- pos: -6.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15806
+ - uid: 15827
components:
- pos: -3.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15807
+ - uid: 15828
components:
- rot: 3.141592653589793 rad
pos: -3.5,13.5
@@ -99991,7 +100128,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15808
+ - uid: 15829
components:
- rot: 3.141592653589793 rad
pos: -3.5,12.5
@@ -99999,7 +100136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15809
+ - uid: 15830
components:
- rot: 1.5707963267948966 rad
pos: -11.5,5.5
@@ -100007,7 +100144,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15810
+ - uid: 15831
components:
- rot: 3.141592653589793 rad
pos: 38.5,10.5
@@ -100015,7 +100152,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15811
+ - uid: 15832
components:
- rot: 3.141592653589793 rad
pos: 26.5,-26.5
@@ -100023,7 +100160,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15812
+ - uid: 15833
components:
- rot: 1.5707963267948966 rad
pos: 32.5,9.5
@@ -100031,14 +100168,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15813
+ - uid: 15834
components:
- pos: 28.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15814
+ - uid: 15835
components:
- rot: 3.141592653589793 rad
pos: 42.5,10.5
@@ -100046,21 +100183,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15815
+ - uid: 15836
components:
- pos: -18.5,31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15816
+ - uid: 15837
components:
- pos: 46.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15817
+ - uid: 15838
components:
- rot: 3.141592653589793 rad
pos: 34.5,-36.5
@@ -100068,14 +100205,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15818
+ - uid: 15839
components:
- pos: 46.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15819
+ - uid: 15840
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-42.5
@@ -100083,14 +100220,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15820
+ - uid: 15841
components:
- pos: 34.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15821
+ - uid: 15842
components:
- rot: 3.141592653589793 rad
pos: -9.5,-40.5
@@ -100098,7 +100235,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15822
+ - uid: 15843
components:
- rot: 3.141592653589793 rad
pos: -5.5,-34.5
@@ -100106,7 +100243,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15823
+ - uid: 15844
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-41.5
@@ -100114,7 +100251,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15824
+ - uid: 15845
components:
- rot: 3.141592653589793 rad
pos: -14.5,-42.5
@@ -100122,7 +100259,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15825
+ - uid: 15846
components:
- rot: 3.141592653589793 rad
pos: -14.5,-44.5
@@ -100130,7 +100267,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15826
+ - uid: 15847
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-60.5
@@ -100138,7 +100275,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15827
+ - uid: 15848
components:
- rot: 3.141592653589793 rad
pos: -12.5,-44.5
@@ -100146,7 +100283,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15828
+ - uid: 15849
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-42.5
@@ -100154,42 +100291,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15829
+ - uid: 15850
components:
- pos: -7.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15830
+ - uid: 15851
components:
- pos: -7.5,-47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15831
+ - uid: 15852
components:
- pos: -0.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15832
+ - uid: 15853
components:
- pos: -0.5,-44.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15833
+ - uid: 15854
components:
- pos: -0.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15834
+ - uid: 15855
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-41.5
@@ -100197,14 +100334,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15835
+ - uid: 15856
components:
- pos: -8.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15836
+ - uid: 15857
components:
- rot: 3.141592653589793 rad
pos: 3.5,-44.5
@@ -100212,14 +100349,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15837
+ - uid: 15858
components:
- pos: -12.5,-61.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15838
+ - uid: 15859
components:
- rot: 3.141592653589793 rad
pos: -7.5,-62.5
@@ -100227,7 +100364,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15839
+ - uid: 15860
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-59.5
@@ -100235,7 +100372,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15840
+ - uid: 15861
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-59.5
@@ -100243,7 +100380,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15841
+ - uid: 15862
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-6.5
@@ -100251,7 +100388,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15842
+ - uid: 15863
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-6.5
@@ -100259,7 +100396,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15843
+ - uid: 15864
components:
- rot: 3.141592653589793 rad
pos: 40.5,6.5
@@ -100267,49 +100404,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15844
+ - uid: 15865
components:
- pos: 46.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15845
+ - uid: 15866
components:
- pos: 46.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15846
+ - uid: 15867
components:
- pos: 46.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15847
+ - uid: 15868
components:
- pos: 46.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15848
+ - uid: 15869
components:
- pos: 8.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15849
+ - uid: 15870
components:
- pos: 8.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15850
+ - uid: 15871
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-38.5
@@ -100317,7 +100454,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15851
+ - uid: 15872
components:
- rot: 3.141592653589793 rad
pos: 34.5,-32.5
@@ -100325,7 +100462,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15852
+ - uid: 15873
components:
- rot: 1.5707963267948966 rad
pos: 9.5,17.5
@@ -100333,7 +100470,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15853
+ - uid: 15874
components:
- rot: 1.5707963267948966 rad
pos: 6.5,8.5
@@ -100341,7 +100478,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15854
+ - uid: 15875
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-23.5
@@ -100349,14 +100486,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15855
+ - uid: 15876
components:
- pos: 30.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15856
+ - uid: 15877
components:
- rot: 3.141592653589793 rad
pos: 34.5,-35.5
@@ -100364,7 +100501,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15857
+ - uid: 15878
components:
- rot: 3.141592653589793 rad
pos: -5.5,-35.5
@@ -100372,7 +100509,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15858
+ - uid: 15879
components:
- rot: -1.5707963267948966 rad
pos: 20.5,21.5
@@ -100380,7 +100517,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15859
+ - uid: 15880
components:
- rot: 1.5707963267948966 rad
pos: 23.5,21.5
@@ -100388,7 +100525,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15860
+ - uid: 15881
components:
- rot: 1.5707963267948966 rad
pos: 24.5,21.5
@@ -100396,7 +100533,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15861
+ - uid: 15882
components:
- rot: 1.5707963267948966 rad
pos: 25.5,21.5
@@ -100404,7 +100541,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15862
+ - uid: 15883
components:
- rot: 1.5707963267948966 rad
pos: 28.5,21.5
@@ -100412,21 +100549,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15863
+ - uid: 15884
components:
- pos: 29.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15864
+ - uid: 15885
components:
- pos: 29.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15865
+ - uid: 15886
components:
- rot: 3.141592653589793 rad
pos: 30.5,17.5
@@ -100434,14 +100571,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15866
+ - uid: 15887
components:
- pos: 24.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15867
+ - uid: 15888
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-61.5
@@ -100449,7 +100586,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15868
+ - uid: 15889
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-61.5
@@ -100457,7 +100594,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15869
+ - uid: 15890
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-61.5
@@ -100465,14 +100602,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15870
+ - uid: 15891
components:
- pos: -8.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15871
+ - uid: 15892
components:
- rot: 3.141592653589793 rad
pos: -0.5,-63.5
@@ -100480,7 +100617,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15872
+ - uid: 15893
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-60.5
@@ -100488,7 +100625,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15873
+ - uid: 15894
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-60.5
@@ -100496,7 +100633,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15874
+ - uid: 15895
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-60.5
@@ -100504,7 +100641,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15875
+ - uid: 15896
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-60.5
@@ -100512,7 +100649,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15876
+ - uid: 15897
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-60.5
@@ -100520,7 +100657,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15877
+ - uid: 15898
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-61.5
@@ -100528,7 +100665,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15878
+ - uid: 15899
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-61.5
@@ -100536,7 +100673,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15879
+ - uid: 15900
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-61.5
@@ -100544,7 +100681,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15880
+ - uid: 15901
components:
- rot: 3.141592653589793 rad
pos: -5.5,-28.5
@@ -100552,14 +100689,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15881
+ - uid: 15902
components:
- pos: -3.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15882
+ - uid: 15903
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-43.5
@@ -100567,7 +100704,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15883
+ - uid: 15904
components:
- rot: 1.5707963267948966 rad
pos: -36.5,20.5
@@ -100575,35 +100712,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15884
+ - uid: 15905
components:
- pos: -20.5,-83.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15885
+ - uid: 15906
components:
- pos: -20.5,-74.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15886
+ - uid: 15907
components:
- pos: -25.5,-75.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15887
+ - uid: 15908
components:
- pos: -25.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15888
+ - uid: 15909
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-72.5
@@ -100611,14 +100748,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15889
+ - uid: 15910
components:
- pos: 35.5,6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15890
+ - uid: 15911
components:
- rot: 1.5707963267948966 rad
pos: 33.5,9.5
@@ -100626,7 +100763,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15891
+ - uid: 15912
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-80.5
@@ -100634,7 +100771,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15892
+ - uid: 15913
components:
- rot: 3.141592653589793 rad
pos: 5.5,13.5
@@ -100642,28 +100779,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15893
+ - uid: 15914
components:
- pos: -3.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15894
+ - uid: 15915
components:
- pos: -3.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15895
+ - uid: 15916
components:
- pos: -3.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15896
+ - uid: 15917
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-25.5
@@ -100671,7 +100808,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15897
+ - uid: 15918
components:
- rot: 3.141592653589793 rad
pos: -11.5,-26.5
@@ -100679,7 +100816,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15898
+ - uid: 15919
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-27.5
@@ -100687,7 +100824,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15899
+ - uid: 15920
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-25.5
@@ -100695,14 +100832,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15900
+ - uid: 15921
components:
- pos: 3.5,-28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15901
+ - uid: 15922
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-25.5
@@ -100710,7 +100847,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15902
+ - uid: 15923
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-25.5
@@ -100718,7 +100855,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15903
+ - uid: 15924
components:
- rot: 3.141592653589793 rad
pos: -5.5,-36.5
@@ -100726,7 +100863,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15904
+ - uid: 15925
components:
- rot: 3.141592653589793 rad
pos: -5.5,-37.5
@@ -100734,7 +100871,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15905
+ - uid: 15926
components:
- rot: 3.141592653589793 rad
pos: -5.5,-38.5
@@ -100742,7 +100879,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15906
+ - uid: 15927
components:
- rot: 3.141592653589793 rad
pos: -5.5,-39.5
@@ -100750,7 +100887,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15907
+ - uid: 15928
components:
- rot: 3.141592653589793 rad
pos: -5.5,-40.5
@@ -100758,7 +100895,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15908
+ - uid: 15929
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-27.5
@@ -100766,7 +100903,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15909
+ - uid: 15930
components:
- rot: 3.141592653589793 rad
pos: 14.5,-28.5
@@ -100774,7 +100911,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15910
+ - uid: 15931
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-27.5
@@ -100782,7 +100919,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15911
+ - uid: 15932
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-25.5
@@ -100790,7 +100927,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15912
+ - uid: 15933
components:
- rot: 3.141592653589793 rad
pos: 14.5,-35.5
@@ -100798,14 +100935,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15913
+ - uid: 15934
components:
- pos: 15.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15914
+ - uid: 15935
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-43.5
@@ -100813,7 +100950,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15915
+ - uid: 15936
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-25.5
@@ -100821,7 +100958,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15916
+ - uid: 15937
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-43.5
@@ -100829,7 +100966,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15917
+ - uid: 15938
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-43.5
@@ -100837,21 +100974,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15918
+ - uid: 15939
components:
- pos: 20.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15919
+ - uid: 15940
components:
- pos: 20.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15920
+ - uid: 15941
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-12.5
@@ -100859,7 +100996,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15921
+ - uid: 15942
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-12.5
@@ -100867,7 +101004,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15922
+ - uid: 15943
components:
- rot: 1.5707963267948966 rad
pos: 4.5,19.5
@@ -100875,7 +101012,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15923
+ - uid: 15944
components:
- rot: -1.5707963267948966 rad
pos: 21.5,21.5
@@ -100883,14 +101020,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15924
+ - uid: 15945
components:
- pos: 19.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15925
+ - uid: 15946
components:
- rot: -1.5707963267948966 rad
pos: 35.5,12.5
@@ -100898,7 +101035,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15926
+ - uid: 15947
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-43.5
@@ -100906,7 +101043,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15927
+ - uid: 15948
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-43.5
@@ -100914,14 +101051,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15928
+ - uid: 15949
components:
- pos: 0.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15929
+ - uid: 15950
components:
- rot: 3.141592653589793 rad
pos: 40.5,4.5
@@ -100929,7 +101066,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15930
+ - uid: 15951
components:
- rot: 3.141592653589793 rad
pos: 42.5,8.5
@@ -100937,7 +101074,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15931
+ - uid: 15952
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-41.5
@@ -100945,7 +101082,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15932
+ - uid: 15953
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-41.5
@@ -100953,14 +101090,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15933
+ - uid: 15954
components:
- pos: -3.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15934
+ - uid: 15955
components:
- rot: 3.141592653589793 rad
pos: 29.5,16.5
@@ -100968,7 +101105,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15935
+ - uid: 15956
components:
- rot: 1.5707963267948966 rad
pos: 27.5,17.5
@@ -100976,7 +101113,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15936
+ - uid: 15957
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-25.5
@@ -100984,7 +101121,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15937
+ - uid: 15958
components:
- rot: -1.5707963267948966 rad
pos: 13.5,17.5
@@ -100992,7 +101129,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15938
+ - uid: 15959
components:
- rot: 1.5707963267948966 rad
pos: 1.5,17.5
@@ -101000,22 +101137,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15939
+ - uid: 15960
components:
- pos: 0.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15940
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,13.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 15941
+ - uid: 15961
components:
- rot: -1.5707963267948966 rad
pos: -5.5,14.5
@@ -101023,77 +101152,77 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15942
+ - uid: 15962
components:
- pos: -6.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15943
+ - uid: 15963
components:
- pos: -6.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15944
+ - uid: 15964
components:
- pos: -6.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15945
+ - uid: 15965
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15946
+ - uid: 15966
components:
- pos: 3.5,-29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15947
+ - uid: 15967
components:
- pos: 15.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15948
+ - uid: 15968
components:
- pos: 15.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15949
+ - uid: 15969
components:
- pos: 15.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15950
+ - uid: 15970
components:
- pos: -23.5,-77.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15951
+ - uid: 15971
components:
- pos: 17.5,18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15952
+ - uid: 15972
components:
- rot: 1.5707963267948966 rad
pos: 9.5,8.5
@@ -101101,7 +101230,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15953
+ - uid: 15973
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-1.5
@@ -101109,49 +101238,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15954
+ - uid: 15974
components:
- pos: -18.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15955
+ - uid: 15975
components:
- pos: -20.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15956
+ - uid: 15976
components:
- pos: 34.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15957
+ - uid: 15977
components:
- pos: 31.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15958
+ - uid: 15978
components:
- pos: 24.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15959
+ - uid: 15979
components:
- pos: 36.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15960
+ - uid: 15980
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-18.5
@@ -101159,14 +101288,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15961
+ - uid: 15981
components:
- pos: 47.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15962
+ - uid: 15982
components:
- rot: 3.141592653589793 rad
pos: 34.5,-38.5
@@ -101174,21 +101303,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15963
+ - uid: 15983
components:
- pos: 21.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15964
+ - uid: 15984
components:
- pos: 8.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15965
+ - uid: 15985
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-22.5
@@ -101196,7 +101325,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15966
+ - uid: 15986
components:
- rot: 3.141592653589793 rad
pos: 38.5,6.5
@@ -101204,28 +101333,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15967
+ - uid: 15987
components:
- pos: -20.5,31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15968
+ - uid: 15988
components:
- pos: 8.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15969
+ - uid: 15989
components:
- pos: -18.5,30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15970
+ - uid: 15990
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-1.5
@@ -101233,7 +101362,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15971
+ - uid: 15991
components:
- rot: 3.141592653589793 rad
pos: -5.5,-32.5
@@ -101241,7 +101370,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15972
+ - uid: 15992
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-41.5
@@ -101249,56 +101378,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15973
+ - uid: 15993
components:
- pos: 15.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15974
+ - uid: 15994
components:
- pos: -3.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15975
+ - uid: 15995
components:
- pos: -3.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15976
+ - uid: 15996
components:
- pos: -3.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15977
+ - uid: 15997
components:
- pos: -3.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15978
+ - uid: 15998
components:
- pos: -3.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15979
+ - uid: 15999
components:
- pos: -5.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15980
+ - uid: 16000
components:
- rot: -1.5707963267948966 rad
pos: 24.5,10.5
@@ -101306,7 +101435,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15981
+ - uid: 16001
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-29.5
@@ -101314,7 +101443,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15982
+ - uid: 16002
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-29.5
@@ -101322,7 +101451,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15983
+ - uid: 16003
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-29.5
@@ -101330,7 +101459,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15984
+ - uid: 16004
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-29.5
@@ -101338,7 +101467,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15985
+ - uid: 16005
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-42.5
@@ -101346,7 +101475,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15986
+ - uid: 16006
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-42.5
@@ -101354,7 +101483,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15987
+ - uid: 16007
components:
- rot: 3.141592653589793 rad
pos: -14.5,-45.5
@@ -101362,7 +101491,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15988
+ - uid: 16008
components:
- rot: 3.141592653589793 rad
pos: -17.5,-58.5
@@ -101370,7 +101499,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15989
+ - uid: 16009
components:
- rot: 3.141592653589793 rad
pos: -17.5,-59.5
@@ -101378,7 +101507,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15990
+ - uid: 16010
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-60.5
@@ -101386,7 +101515,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15991
+ - uid: 16011
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-60.5
@@ -101394,7 +101523,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 15992
+ - uid: 16012
components:
- rot: 3.141592653589793 rad
pos: -12.5,-46.5
@@ -101402,7 +101531,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15993
+ - uid: 16013
components:
- rot: 3.141592653589793 rad
pos: -12.5,-43.5
@@ -101410,7 +101539,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15994
+ - uid: 16014
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-42.5
@@ -101418,7 +101547,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15995
+ - uid: 16015
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-42.5
@@ -101426,42 +101555,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15996
+ - uid: 16016
components:
- pos: -9.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15997
+ - uid: 16017
components:
- pos: -9.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15998
+ - uid: 16018
components:
- pos: -9.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 15999
+ - uid: 16019
components:
- pos: -9.5,-56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16000
+ - uid: 16020
components:
- pos: -9.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16001
+ - uid: 16021
components:
- rot: 3.141592653589793 rad
pos: -1.5,-52.5
@@ -101469,42 +101598,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16002
+ - uid: 16022
components:
- pos: -7.5,-52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16003
+ - uid: 16023
components:
- pos: -7.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16004
+ - uid: 16024
components:
- pos: -7.5,-50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16005
+ - uid: 16025
components:
- pos: -7.5,-49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16006
+ - uid: 16026
components:
- pos: -0.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16007
+ - uid: 16027
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-41.5
@@ -101512,7 +101641,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16008
+ - uid: 16028
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-41.5
@@ -101520,21 +101649,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16009
+ - uid: 16029
components:
- pos: -8.5,-44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16010
+ - uid: 16030
components:
- pos: -8.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16011
+ - uid: 16031
components:
- rot: 3.141592653589793 rad
pos: 5.5,-43.5
@@ -101542,7 +101671,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16012
+ - uid: 16032
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-60.5
@@ -101550,7 +101679,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16013
+ - uid: 16033
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-60.5
@@ -101558,14 +101687,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16014
+ - uid: 16034
components:
- pos: -6.5,-64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16015
+ - uid: 16035
components:
- rot: 3.141592653589793 rad
pos: -7.5,-61.5
@@ -101573,7 +101702,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16016
+ - uid: 16036
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-59.5
@@ -101581,14 +101710,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16017
+ - uid: 16037
components:
- pos: 34.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16018
+ - uid: 16038
components:
- rot: 1.5707963267948966 rad
pos: 29.5,9.5
@@ -101596,7 +101725,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16019
+ - uid: 16039
components:
- rot: 1.5707963267948966 rad
pos: 37.5,0.5
@@ -101604,7 +101733,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16020
+ - uid: 16040
components:
- rot: 1.5707963267948966 rad
pos: 7.5,8.5
@@ -101612,14 +101741,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16021
+ - uid: 16041
components:
- pos: 17.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16022
+ - uid: 16042
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-0.5
@@ -101627,7 +101756,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16023
+ - uid: 16043
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-0.5
@@ -101635,7 +101764,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16024
+ - uid: 16044
components:
- rot: -1.5707963267948966 rad
pos: 38.5,15.5
@@ -101643,7 +101772,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16025
+ - uid: 16045
components:
- rot: -1.5707963267948966 rad
pos: 36.5,15.5
@@ -101651,7 +101780,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16026
+ - uid: 16046
components:
- rot: -1.5707963267948966 rad
pos: 34.5,1.5
@@ -101659,7 +101788,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16027
+ - uid: 16047
components:
- rot: -1.5707963267948966 rad
pos: 30.5,1.5
@@ -101667,7 +101796,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16028
+ - uid: 16048
components:
- rot: -1.5707963267948966 rad
pos: 31.5,1.5
@@ -101675,7 +101804,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16029
+ - uid: 16049
components:
- rot: -1.5707963267948966 rad
pos: 32.5,1.5
@@ -101683,7 +101812,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16030
+ - uid: 16050
components:
- rot: -1.5707963267948966 rad
pos: 36.5,1.5
@@ -101691,14 +101820,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16031
+ - uid: 16051
components:
- pos: 42.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16032
+ - uid: 16052
components:
- rot: 1.5707963267948966 rad
pos: 22.5,16.5
@@ -101706,7 +101835,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16033
+ - uid: 16053
components:
- rot: 1.5707963267948966 rad
pos: 24.5,17.5
@@ -101714,7 +101843,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16034
+ - uid: 16054
components:
- rot: 1.5707963267948966 rad
pos: 25.5,17.5
@@ -101722,7 +101851,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16035
+ - uid: 16055
components:
- rot: 1.5707963267948966 rad
pos: 26.5,17.5
@@ -101730,35 +101859,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16036
+ - uid: 16056
components:
- pos: 38.5,2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16037
+ - uid: 16057
components:
- pos: 38.5,4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16038
+ - uid: 16058
components:
- pos: 25.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16039
+ - uid: 16059
components:
- pos: 25.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16040
+ - uid: 16060
components:
- rot: 1.5707963267948966 rad
pos: 26.5,12.5
@@ -101766,14 +101895,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16041
+ - uid: 16061
components:
- pos: 21.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16042
+ - uid: 16062
components:
- rot: 1.5707963267948966 rad
pos: 27.5,9.5
@@ -101781,7 +101910,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16043
+ - uid: 16063
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-1.5
@@ -101789,21 +101918,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16044
+ - uid: 16064
components:
- pos: -5.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16045
+ - uid: 16065
components:
- pos: -5.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16046
+ - uid: 16066
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-42.5
@@ -101811,7 +101940,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16047
+ - uid: 16067
components:
- rot: 3.141592653589793 rad
pos: 17.5,-2.5
@@ -101819,7 +101948,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16048
+ - uid: 16068
components:
- rot: 3.141592653589793 rad
pos: 38.5,9.5
@@ -101827,7 +101956,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16049
+ - uid: 16069
components:
- rot: -1.5707963267948966 rad
pos: 7.5,12.5
@@ -101835,7 +101964,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16050
+ - uid: 16070
components:
- rot: 3.141592653589793 rad
pos: -3.5,-56.5
@@ -101843,7 +101972,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16051
+ - uid: 16071
components:
- rot: 3.141592653589793 rad
pos: -3.5,-57.5
@@ -101851,7 +101980,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16052
+ - uid: 16072
components:
- rot: 3.141592653589793 rad
pos: -1.5,-47.5
@@ -101859,42 +101988,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16053
+ - uid: 16073
components:
- pos: 15.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16054
+ - uid: 16074
components:
- pos: -3.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16055
+ - uid: 16075
components:
- pos: -3.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16056
+ - uid: 16076
components:
- pos: -3.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16057
+ - uid: 16077
components:
- pos: -3.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16058
+ - uid: 16078
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-27.5
@@ -101902,7 +102031,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16059
+ - uid: 16079
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-27.5
@@ -101910,7 +102039,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16060
+ - uid: 16080
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-27.5
@@ -101918,7 +102047,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16061
+ - uid: 16081
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-25.5
@@ -101926,14 +102055,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16062
+ - uid: 16082
components:
- pos: -20.5,29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16063
+ - uid: 16083
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-43.5
@@ -101941,7 +102070,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16064
+ - uid: 16084
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-16.5
@@ -101949,7 +102078,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16065
+ - uid: 16085
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-16.5
@@ -101957,7 +102086,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16066
+ - uid: 16086
components:
- rot: 1.5707963267948966 rad
pos: -6.5,1.5
@@ -101965,7 +102094,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16067
+ - uid: 16087
components:
- rot: 1.5707963267948966 rad
pos: -7.5,1.5
@@ -101973,21 +102102,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16068
+ - uid: 16088
components:
- pos: -8.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16069
+ - uid: 16089
components:
- pos: -8.5,6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16070
+ - uid: 16090
components:
- rot: 1.5707963267948966 rad
pos: 11.5,17.5
@@ -101995,7 +102124,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16071
+ - uid: 16091
components:
- rot: -1.5707963267948966 rad
pos: 23.5,10.5
@@ -102003,14 +102132,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16072
+ - uid: 16092
components:
- pos: -23.5,-82.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16073
+ - uid: 16093
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-16.5
@@ -102018,7 +102147,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16074
+ - uid: 16094
components:
- rot: 3.141592653589793 rad
pos: 8.5,1.5
@@ -102026,7 +102155,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16075
+ - uid: 16095
components:
- rot: 3.141592653589793 rad
pos: 30.5,-19.5
@@ -102034,14 +102163,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16076
+ - uid: 16096
components:
- pos: -5.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16077
+ - uid: 16097
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-42.5
@@ -102049,7 +102178,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16078
+ - uid: 16098
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-27.5
@@ -102057,7 +102186,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16079
+ - uid: 16099
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-25.5
@@ -102065,7 +102194,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16080
+ - uid: 16100
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-25.5
@@ -102073,7 +102202,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16081
+ - uid: 16101
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-18.5
@@ -102081,7 +102210,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16082
+ - uid: 16102
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-18.5
@@ -102089,7 +102218,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16083
+ - uid: 16103
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-16.5
@@ -102097,7 +102226,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16084
+ - uid: 16104
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-16.5
@@ -102105,7 +102234,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16085
+ - uid: 16105
components:
- rot: 3.141592653589793 rad
pos: 14.5,-29.5
@@ -102113,7 +102242,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16086
+ - uid: 16106
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-27.5
@@ -102121,7 +102250,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16087
+ - uid: 16107
components:
- rot: 1.5707963267948966 rad
pos: 11.5,-27.5
@@ -102129,14 +102258,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16088
+ - uid: 16108
components:
- pos: -3.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16089
+ - uid: 16109
components:
- rot: 3.141592653589793 rad
pos: 36.5,-29.5
@@ -102144,14 +102273,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16090
+ - uid: 16110
components:
- pos: 47.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16091
+ - uid: 16111
components:
- rot: -1.5707963267948966 rad
pos: 9.5,16.5
@@ -102159,7 +102288,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16092
+ - uid: 16112
components:
- rot: -1.5707963267948966 rad
pos: 13.5,16.5
@@ -102167,7 +102296,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16093
+ - uid: 16113
components:
- rot: -1.5707963267948966 rad
pos: 35.5,1.5
@@ -102175,7 +102304,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16094
+ - uid: 16114
components:
- rot: -1.5707963267948966 rad
pos: 29.5,1.5
@@ -102183,7 +102312,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16095
+ - uid: 16115
components:
- rot: -1.5707963267948966 rad
pos: 34.5,15.5
@@ -102191,7 +102320,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16096
+ - uid: 16116
components:
- rot: -1.5707963267948966 rad
pos: 32.5,15.5
@@ -102199,7 +102328,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16097
+ - uid: 16117
components:
- rot: -1.5707963267948966 rad
pos: 41.5,15.5
@@ -102207,7 +102336,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16098
+ - uid: 16118
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-0.5
@@ -102215,7 +102344,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16099
+ - uid: 16119
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-42.5
@@ -102223,7 +102352,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16100
+ - uid: 16120
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-42.5
@@ -102231,7 +102360,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16101
+ - uid: 16121
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-42.5
@@ -102239,7 +102368,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16102
+ - uid: 16122
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-42.5
@@ -102247,7 +102376,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16103
+ - uid: 16123
components:
- rot: 3.141592653589793 rad
pos: 14.5,-33.5
@@ -102255,7 +102384,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16104
+ - uid: 16124
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-42.5
@@ -102263,7 +102392,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16105
+ - uid: 16125
components:
- rot: 3.141592653589793 rad
pos: -5.5,-33.5
@@ -102271,7 +102400,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16106
+ - uid: 16126
components:
- rot: 3.141592653589793 rad
pos: -5.5,-31.5
@@ -102279,7 +102408,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16107
+ - uid: 16127
components:
- rot: 3.141592653589793 rad
pos: -5.5,-29.5
@@ -102287,7 +102416,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16108
+ - uid: 16128
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-5.5
@@ -102295,14 +102424,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16109
+ - uid: 16129
components:
- pos: 10.5,7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16110
+ - uid: 16130
components:
- rot: 3.141592653589793 rad
pos: 42.5,7.5
@@ -102310,7 +102439,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16111
+ - uid: 16131
components:
- rot: 3.141592653589793 rad
pos: 8.5,4.5
@@ -102318,7 +102447,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16112
+ - uid: 16132
components:
- rot: 3.141592653589793 rad
pos: 38.5,7.5
@@ -102326,35 +102455,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16113
+ - uid: 16133
components:
- pos: 34.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16114
+ - uid: 16134
components:
- pos: 10.5,18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16115
+ - uid: 16135
components:
- pos: -5.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16116
+ - uid: 16136
components:
- pos: -9.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16117
+ - uid: 16137
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-61.5
@@ -102362,21 +102491,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16118
- components:
- - pos: 0.5,14.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 16119
+ - uid: 16138
components:
- pos: 34.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16120
+ - uid: 16139
components:
- rot: 3.141592653589793 rad
pos: 28.5,-32.5
@@ -102384,7 +102506,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16121
+ - uid: 16140
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-30.5
@@ -102392,7 +102514,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16122
+ - uid: 16141
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-30.5
@@ -102400,7 +102522,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16123
+ - uid: 16142
components:
- rot: -1.5707963267948966 rad
pos: 14.5,16.5
@@ -102408,7 +102530,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16124
+ - uid: 16143
components:
- rot: -1.5707963267948966 rad
pos: 10.5,16.5
@@ -102416,7 +102538,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16125
+ - uid: 16144
components:
- rot: -1.5707963267948966 rad
pos: 8.5,16.5
@@ -102424,28 +102546,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16126
+ - uid: 16145
components:
- pos: 21.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16127
+ - uid: 16146
components:
- pos: 21.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16128
+ - uid: 16147
components:
- pos: 21.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16129
+ - uid: 16148
components:
- rot: 1.5707963267948966 rad
pos: 27.5,12.5
@@ -102453,21 +102575,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16130
+ - uid: 16149
components:
- pos: 25.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16131
+ - uid: 16150
components:
- pos: 25.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16132
+ - uid: 16151
components:
- rot: -1.5707963267948966 rad
pos: 22.5,7.5
@@ -102475,7 +102597,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16133
+ - uid: 16152
components:
- rot: -1.5707963267948966 rad
pos: 23.5,7.5
@@ -102483,7 +102605,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16134
+ - uid: 16153
components:
- rot: 1.5707963267948966 rad
pos: 24.5,7.5
@@ -102491,28 +102613,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16135
+ - uid: 16154
components:
- pos: 38.5,3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16136
+ - uid: 16155
components:
- pos: 31.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16137
+ - uid: 16156
components:
- pos: 31.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16138
+ - uid: 16157
components:
- rot: -1.5707963267948966 rad
pos: 30.5,15.5
@@ -102520,7 +102642,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16139
+ - uid: 16158
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-5.5
@@ -102528,35 +102650,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16140
+ - uid: 16159
components:
- pos: 20.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16141
+ - uid: 16160
components:
- pos: 20.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16142
+ - uid: 16161
components:
- pos: 20.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16143
+ - uid: 16162
components:
- pos: 20.5,8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16144
+ - uid: 16163
components:
- rot: 1.5707963267948966 rad
pos: 19.5,7.5
@@ -102564,7 +102686,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16145
+ - uid: 16164
components:
- rot: 3.141592653589793 rad
pos: 18.5,6.5
@@ -102572,7 +102694,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16146
+ - uid: 16165
components:
- rot: 3.141592653589793 rad
pos: 18.5,5.5
@@ -102580,7 +102702,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16147
+ - uid: 16166
components:
- rot: 3.141592653589793 rad
pos: 18.5,4.5
@@ -102588,7 +102710,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16148
+ - uid: 16167
components:
- rot: 1.5707963267948966 rad
pos: 19.5,13.5
@@ -102596,7 +102718,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16149
+ - uid: 16168
components:
- rot: 1.5707963267948966 rad
pos: 18.5,13.5
@@ -102604,7 +102726,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16150
+ - uid: 16169
components:
- rot: 3.141592653589793 rad
pos: 17.5,14.5
@@ -102612,7 +102734,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16151
+ - uid: 16170
components:
- rot: 3.141592653589793 rad
pos: 17.5,15.5
@@ -102620,7 +102742,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16152
+ - uid: 16171
components:
- rot: 3.141592653589793 rad
pos: 5.5,18.5
@@ -102628,7 +102750,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16153
+ - uid: 16172
components:
- rot: 1.5707963267948966 rad
pos: 14.5,17.5
@@ -102636,7 +102758,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16154
+ - uid: 16173
components:
- rot: 1.5707963267948966 rad
pos: 3.5,17.5
@@ -102644,7 +102766,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16155
+ - uid: 16174
components:
- rot: 1.5707963267948966 rad
pos: 2.5,17.5
@@ -102652,22 +102774,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16156
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,13.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 16157
+ - uid: 16175
components:
- pos: -8.5,3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16158
+ - uid: 16176
components:
- rot: 1.5707963267948966 rad
pos: -4.5,1.5
@@ -102675,7 +102789,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16159
+ - uid: 16177
components:
- rot: 1.5707963267948966 rad
pos: -3.5,1.5
@@ -102683,7 +102797,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16160
+ - uid: 16178
components:
- rot: 1.5707963267948966 rad
pos: -2.5,1.5
@@ -102691,7 +102805,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16161
+ - uid: 16179
components:
- rot: 1.5707963267948966 rad
pos: -1.5,1.5
@@ -102699,7 +102813,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16162
+ - uid: 16180
components:
- rot: 1.5707963267948966 rad
pos: 0.5,1.5
@@ -102707,49 +102821,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16163
+ - uid: 16181
components:
- pos: 1.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16164
+ - uid: 16182
components:
- pos: 1.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16165
+ - uid: 16183
components:
- pos: 1.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16166
+ - uid: 16184
components:
- pos: 1.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16167
+ - uid: 16185
components:
- pos: 9.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16168
+ - uid: 16186
components:
- pos: 9.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16169
+ - uid: 16187
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-1.5
@@ -102757,56 +102871,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16170
+ - uid: 16188
components:
- pos: 11.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16171
+ - uid: 16189
components:
- pos: 11.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16172
+ - uid: 16190
components:
- pos: 11.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16173
+ - uid: 16191
components:
- pos: 11.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16174
+ - uid: 16192
components:
- pos: 11.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16175
+ - uid: 16193
components:
- pos: 11.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16176
+ - uid: 16194
components:
- pos: 11.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16177
+ - uid: 16195
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-9.5
@@ -102814,7 +102928,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16178
+ - uid: 16196
components:
- rot: 3.141592653589793 rad
pos: 19.5,19.5
@@ -102822,7 +102936,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16179
+ - uid: 16197
components:
- rot: 1.5707963267948966 rad
pos: 26.5,21.5
@@ -102830,7 +102944,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16180
+ - uid: 16198
components:
- rot: 1.5707963267948966 rad
pos: 27.5,21.5
@@ -102838,21 +102952,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16181
+ - uid: 16199
components:
- pos: 23.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16182
+ - uid: 16200
components:
- pos: 23.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16183
+ - uid: 16201
components:
- rot: 1.5707963267948966 rad
pos: 24.5,20.5
@@ -102860,7 +102974,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16184
+ - uid: 16202
components:
- rot: 3.141592653589793 rad
pos: 25.5,21.5
@@ -102868,7 +102982,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16185
+ - uid: 16203
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-38.5
@@ -102876,7 +102990,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16186
+ - uid: 16204
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-38.5
@@ -102884,21 +102998,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16187
+ - uid: 16205
components:
- pos: 7.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16188
+ - uid: 16206
components:
- pos: 17.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16189
+ - uid: 16207
components:
- rot: 3.141592653589793 rad
pos: 16.5,19.5
@@ -102906,14 +103020,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16190
+ - uid: 16208
components:
- pos: 34.5,2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16191
+ - uid: 16209
components:
- rot: -1.5707963267948966 rad
pos: 30.5,0.5
@@ -102921,7 +103035,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16192
+ - uid: 16210
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-64.5
@@ -102929,14 +103043,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16193
+ - uid: 16211
components:
- pos: 21.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16194
+ - uid: 16212
components:
- rot: 3.141592653589793 rad
pos: 34.5,-0.5
@@ -102944,7 +103058,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16195
+ - uid: 16213
components:
- rot: 3.141592653589793 rad
pos: 34.5,-1.5
@@ -102952,7 +103066,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16196
+ - uid: 16214
components:
- rot: 3.141592653589793 rad
pos: 34.5,-2.5
@@ -102960,7 +103074,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16197
+ - uid: 16215
components:
- rot: 3.141592653589793 rad
pos: 34.5,-3.5
@@ -102968,7 +103082,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16198
+ - uid: 16216
components:
- rot: 3.141592653589793 rad
pos: 34.5,-4.5
@@ -102976,7 +103090,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16199
+ - uid: 16217
components:
- rot: 3.141592653589793 rad
pos: 34.5,-5.5
@@ -102984,7 +103098,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16200
+ - uid: 16218
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-6.5
@@ -102992,7 +103106,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16201
+ - uid: 16219
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-6.5
@@ -103000,7 +103114,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16202
+ - uid: 16220
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-6.5
@@ -103008,7 +103122,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16203
+ - uid: 16221
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-6.5
@@ -103016,7 +103130,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16204
+ - uid: 16222
components:
- rot: 1.5707963267948966 rad
pos: 5.5,19.5
@@ -103024,7 +103138,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16205
+ - uid: 16223
components:
- rot: 1.5707963267948966 rad
pos: 3.5,19.5
@@ -103032,7 +103146,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16206
+ - uid: 16224
components:
- rot: 1.5707963267948966 rad
pos: 2.5,19.5
@@ -103040,7 +103154,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16207
+ - uid: 16225
components:
- rot: -1.5707963267948966 rad
pos: 1.5,19.5
@@ -103048,21 +103162,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16208
+ - uid: 16226
components:
- pos: 26.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16209
+ - uid: 16227
components:
- pos: 26.5,-10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16210
+ - uid: 16228
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-12.5
@@ -103070,7 +103184,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16211
+ - uid: 16229
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-12.5
@@ -103078,7 +103192,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16212
+ - uid: 16230
components:
- rot: 3.141592653589793 rad
pos: 26.5,-14.5
@@ -103086,7 +103200,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16213
+ - uid: 16231
components:
- rot: 3.141592653589793 rad
pos: 26.5,-15.5
@@ -103094,7 +103208,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16214
+ - uid: 16232
components:
- rot: 3.141592653589793 rad
pos: 26.5,-17.5
@@ -103102,7 +103216,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16215
+ - uid: 16233
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-23.5
@@ -103110,7 +103224,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16216
+ - uid: 16234
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-23.5
@@ -103118,7 +103232,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16217
+ - uid: 16235
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-22.5
@@ -103126,7 +103240,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16218
+ - uid: 16236
components:
- rot: 3.141592653589793 rad
pos: 21.5,-15.5
@@ -103134,7 +103248,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16219
+ - uid: 16237
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-23.5
@@ -103142,21 +103256,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16220
+ - uid: 16238
components:
- pos: 24.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16221
+ - uid: 16239
components:
- pos: 24.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16222
+ - uid: 16240
components:
- rot: 3.141592653589793 rad
pos: 26.5,-25.5
@@ -103164,7 +103278,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16223
+ - uid: 16241
components:
- rot: 3.141592653589793 rad
pos: 26.5,-28.5
@@ -103172,7 +103286,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16224
+ - uid: 16242
components:
- rot: 3.141592653589793 rad
pos: 26.5,-29.5
@@ -103180,7 +103294,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16225
+ - uid: 16243
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-30.5
@@ -103188,7 +103302,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16226
+ - uid: 16244
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-29.5
@@ -103196,28 +103310,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16227
+ - uid: 16245
components:
- pos: 28.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16228
+ - uid: 16246
components:
- pos: 22.5,-31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16229
+ - uid: 16247
components:
- pos: 22.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16230
+ - uid: 16248
components:
- rot: 3.141592653589793 rad
pos: 21.5,-29.5
@@ -103225,21 +103339,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16231
+ - uid: 16249
components:
- pos: -11.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16232
+ - uid: 16250
components:
- pos: -8.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16233
+ - uid: 16251
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-25.5
@@ -103247,7 +103361,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16234
+ - uid: 16252
components:
- rot: 1.5707963267948966 rad
pos: -6.5,7.5
@@ -103255,7 +103369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16235
+ - uid: 16253
components:
- rot: 1.5707963267948966 rad
pos: -7.5,7.5
@@ -103263,7 +103377,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16236
+ - uid: 16254
components:
- rot: 1.5707963267948966 rad
pos: -8.5,7.5
@@ -103271,7 +103385,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16237
+ - uid: 16255
components:
- rot: 1.5707963267948966 rad
pos: -9.5,7.5
@@ -103279,7 +103393,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16238
+ - uid: 16256
components:
- rot: -1.5707963267948966 rad
pos: -9.5,1.5
@@ -103287,7 +103401,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16239
+ - uid: 16257
components:
- rot: -1.5707963267948966 rad
pos: -11.5,1.5
@@ -103295,7 +103409,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16240
+ - uid: 16258
components:
- rot: -1.5707963267948966 rad
pos: -12.5,1.5
@@ -103303,63 +103417,63 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16241
+ - uid: 16259
components:
- pos: -9.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16242
+ - uid: 16260
components:
- pos: -9.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16243
+ - uid: 16261
components:
- pos: -10.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16244
+ - uid: 16262
components:
- pos: -10.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16245
+ - uid: 16263
components:
- pos: -10.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16246
+ - uid: 16264
components:
- pos: -10.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16247
+ - uid: 16265
components:
- pos: -10.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16248
+ - uid: 16266
components:
- pos: -10.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16249
+ - uid: 16267
components:
- rot: 3.141592653589793 rad
pos: -2.5,-64.5
@@ -103367,7 +103481,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16250
+ - uid: 16268
components:
- rot: 3.141592653589793 rad
pos: -2.5,-63.5
@@ -103375,7 +103489,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16251
+ - uid: 16269
components:
- rot: 3.141592653589793 rad
pos: -2.5,-62.5
@@ -103383,7 +103497,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16252
+ - uid: 16270
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-61.5
@@ -103391,7 +103505,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16253
+ - uid: 16271
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-61.5
@@ -103399,7 +103513,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16254
+ - uid: 16272
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-61.5
@@ -103407,7 +103521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16255
+ - uid: 16273
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-61.5
@@ -103415,14 +103529,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16256
+ - uid: 16274
components:
- pos: -8.5,-63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16257
+ - uid: 16275
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-61.5
@@ -103430,7 +103544,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16258
+ - uid: 16276
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-61.5
@@ -103438,7 +103552,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16259
+ - uid: 16277
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-61.5
@@ -103446,7 +103560,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16260
+ - uid: 16278
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-61.5
@@ -103454,7 +103568,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16261
+ - uid: 16279
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-61.5
@@ -103462,28 +103576,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16262
+ - uid: 16280
components:
- pos: -15.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16263
+ - uid: 16281
components:
- pos: -15.5,-63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16264
+ - uid: 16282
components:
- pos: -15.5,-64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16265
+ - uid: 16283
components:
- rot: 3.141592653589793 rad
pos: -0.5,-61.5
@@ -103491,7 +103605,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16266
+ - uid: 16284
components:
- rot: 3.141592653589793 rad
pos: -0.5,-62.5
@@ -103499,7 +103613,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16267
+ - uid: 16285
components:
- rot: 3.141592653589793 rad
pos: -0.5,-64.5
@@ -103507,7 +103621,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16268
+ - uid: 16286
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-60.5
@@ -103515,7 +103629,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16269
+ - uid: 16287
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-60.5
@@ -103523,28 +103637,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16270
+ - uid: 16288
components:
- pos: -12.5,-62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16271
+ - uid: 16289
components:
- pos: -12.5,-63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16272
+ - uid: 16290
components:
- pos: -12.5,-64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16273
+ - uid: 16291
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-60.5
@@ -103552,7 +103666,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16274
+ - uid: 16292
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-60.5
@@ -103560,7 +103674,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16275
+ - uid: 16293
components:
- rot: 1.5707963267948966 rad
pos: 3.5,-60.5
@@ -103568,7 +103682,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16276
+ - uid: 16294
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-60.5
@@ -103576,7 +103690,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16277
+ - uid: 16295
components:
- rot: 3.141592653589793 rad
pos: 5.5,-44.5
@@ -103584,7 +103698,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16278
+ - uid: 16296
components:
- rot: 3.141592653589793 rad
pos: 5.5,-42.5
@@ -103592,7 +103706,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16279
+ - uid: 16297
components:
- rot: 3.141592653589793 rad
pos: 3.5,-43.5
@@ -103600,7 +103714,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16280
+ - uid: 16298
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-42.5
@@ -103608,7 +103722,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16281
+ - uid: 16299
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-42.5
@@ -103616,7 +103730,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16282
+ - uid: 16300
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-42.5
@@ -103624,7 +103738,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16283
+ - uid: 16301
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-42.5
@@ -103632,7 +103746,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16284
+ - uid: 16302
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-42.5
@@ -103640,7 +103754,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16285
+ - uid: 16303
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-41.5
@@ -103648,7 +103762,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16286
+ - uid: 16304
components:
- rot: 3.141592653589793 rad
pos: -1.5,-51.5
@@ -103656,7 +103770,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16287
+ - uid: 16305
components:
- rot: 3.141592653589793 rad
pos: -9.5,-60.5
@@ -103664,7 +103778,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16288
+ - uid: 16306
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-60.5
@@ -103672,7 +103786,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16289
+ - uid: 16307
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-41.5
@@ -103680,7 +103794,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16290
+ - uid: 16308
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-29.5
@@ -103688,7 +103802,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16291
+ - uid: 16309
components:
- rot: -1.5707963267948966 rad
pos: 21.5,10.5
@@ -103696,7 +103810,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16292
+ - uid: 16310
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-25.5
@@ -103704,7 +103818,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16293
+ - uid: 16311
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-27.5
@@ -103712,7 +103826,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16294
+ - uid: 16312
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-27.5
@@ -103720,7 +103834,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16295
+ - uid: 16313
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-27.5
@@ -103728,7 +103842,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16296
+ - uid: 16314
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-27.5
@@ -103736,7 +103850,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16297
+ - uid: 16315
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-27.5
@@ -103744,42 +103858,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16298
+ - uid: 16316
components:
- pos: -3.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16299
+ - uid: 16317
components:
- pos: -3.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16300
+ - uid: 16318
components:
- pos: -3.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16301
+ - uid: 16319
components:
- pos: -3.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16302
+ - uid: 16320
components:
- pos: -3.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16303
+ - uid: 16321
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-41.5
@@ -103787,7 +103901,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16304
+ - uid: 16322
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-43.5
@@ -103795,7 +103909,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16305
+ - uid: 16323
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-43.5
@@ -103803,7 +103917,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16306
+ - uid: 16324
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-43.5
@@ -103811,7 +103925,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16307
+ - uid: 16325
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-43.5
@@ -103819,7 +103933,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16308
+ - uid: 16326
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-43.5
@@ -103827,7 +103941,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16309
+ - uid: 16327
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-12.5
@@ -103835,7 +103949,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16310
+ - uid: 16328
components:
- rot: 3.141592653589793 rad
pos: -11.5,-40.5
@@ -103843,14 +103957,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16311
+ - uid: 16329
components:
- pos: 35.5,7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16312
+ - uid: 16330
components:
- rot: 1.5707963267948966 rad
pos: -34.5,20.5
@@ -103858,7 +103972,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16313
+ - uid: 16331
components:
- rot: 1.5707963267948966 rad
pos: -32.5,20.5
@@ -103866,7 +103980,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16314
+ - uid: 16332
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-77.5
@@ -103874,7 +103988,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16315
+ - uid: 16333
components:
- rot: 3.141592653589793 rad
pos: -18.5,-74.5
@@ -103882,7 +103996,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16316
+ - uid: 16334
components:
- rot: 3.141592653589793 rad
pos: -18.5,-77.5
@@ -103890,7 +104004,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16317
+ - uid: 16335
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-78.5
@@ -103898,7 +104012,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16318
+ - uid: 16336
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-78.5
@@ -103906,7 +104020,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16319
+ - uid: 16337
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-61.5
@@ -103914,7 +104028,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16320
+ - uid: 16338
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-61.5
@@ -103922,14 +104036,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16321
+ - uid: 16339
components:
- pos: -24.5,-87.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16322
+ - uid: 16340
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-61.5
@@ -103937,35 +104051,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16323
+ - uid: 16341
components:
- pos: -3.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16324
+ - uid: 16342
components:
- pos: 35.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16325
+ - uid: 16343
components:
- pos: 17.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16326
+ - uid: 16344
components:
- pos: 17.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16327
+ - uid: 16345
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-0.5
@@ -103973,7 +104087,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16328
+ - uid: 16346
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-0.5
@@ -103981,7 +104095,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16329
+ - uid: 16347
components:
- rot: -1.5707963267948966 rad
pos: 35.5,15.5
@@ -103989,7 +104103,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16330
+ - uid: 16348
components:
- rot: -1.5707963267948966 rad
pos: 33.5,15.5
@@ -103997,7 +104111,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16331
+ - uid: 16349
components:
- rot: 3.141592653589793 rad
pos: 21.5,13.5
@@ -104005,7 +104119,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16332
+ - uid: 16350
components:
- rot: 1.5707963267948966 rad
pos: 30.5,9.5
@@ -104013,7 +104127,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16333
+ - uid: 16351
components:
- rot: -1.5707963267948966 rad
pos: -4.5,7.5
@@ -104021,21 +104135,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16334
+ - uid: 16352
components:
- pos: -3.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16335
+ - uid: 16353
components:
- pos: 7.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16336
+ - uid: 16354
components:
- rot: 3.141592653589793 rad
pos: 2.5,4.5
@@ -104043,14 +104157,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16337
+ - uid: 16355
components:
- pos: 0.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16338
+ - uid: 16356
components:
- rot: 1.5707963267948966 rad
pos: -1.5,11.5
@@ -104058,7 +104172,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16339
+ - uid: 16357
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-1.5
@@ -104066,7 +104180,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16340
+ - uid: 16358
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-1.5
@@ -104074,28 +104188,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16341
+ - uid: 16359
components:
- pos: 10.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16342
+ - uid: 16360
components:
- pos: 10.5,6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16343
+ - uid: 16361
components:
- pos: 10.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16344
+ - uid: 16362
components:
- rot: 3.141592653589793 rad
pos: -21.5,-86.5
@@ -104103,14 +104217,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16345
+ - uid: 16363
components:
- pos: -19.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16346
+ - uid: 16364
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-16.5
@@ -104118,7 +104232,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16347
+ - uid: 16365
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-16.5
@@ -104126,21 +104240,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16348
+ - uid: 16366
components:
- pos: 31.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16349
+ - uid: 16367
components:
- pos: 31.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16350
+ - uid: 16368
components:
- rot: 3.141592653589793 rad
pos: 10.5,-3.5
@@ -104148,7 +104262,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16351
+ - uid: 16369
components:
- rot: 3.141592653589793 rad
pos: 10.5,-2.5
@@ -104156,7 +104270,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16352
+ - uid: 16370
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-0.5
@@ -104164,7 +104278,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16353
+ - uid: 16371
components:
- rot: 3.141592653589793 rad
pos: 10.5,-1.5
@@ -104172,7 +104286,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16354
+ - uid: 16372
components:
- rot: 1.5707963267948966 rad
pos: 18.5,12.5
@@ -104180,7 +104294,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16355
+ - uid: 16373
components:
- rot: 1.5707963267948966 rad
pos: 19.5,12.5
@@ -104188,7 +104302,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16356
+ - uid: 16374
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-0.5
@@ -104196,7 +104310,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16357
+ - uid: 16375
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-0.5
@@ -104204,7 +104318,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16358
+ - uid: 16376
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-0.5
@@ -104212,7 +104326,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16359
+ - uid: 16377
components:
- rot: 3.141592653589793 rad
pos: -9.5,-41.5
@@ -104220,14 +104334,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16360
+ - uid: 16378
components:
- pos: 8.5,6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16361
+ - uid: 16379
components:
- rot: 3.141592653589793 rad
pos: 21.5,14.5
@@ -104235,28 +104349,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16362
+ - uid: 16380
components:
- pos: -3.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16363
+ - uid: 16381
components:
- pos: -3.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16364
+ - uid: 16382
components:
- pos: -3.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16365
+ - uid: 16383
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-1.5
@@ -104264,7 +104378,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16366
+ - uid: 16384
components:
- rot: 1.5707963267948966 rad
pos: 9.5,-25.5
@@ -104272,7 +104386,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16367
+ - uid: 16385
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-25.5
@@ -104280,36 +104394,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16368
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,13.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 16369
+ - uid: 16386
components:
- pos: -6.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16370
+ - uid: 16387
components:
- pos: -6.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16371
+ - uid: 16388
components:
- pos: 15.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16372
+ - uid: 16389
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-27.5
@@ -104317,7 +104423,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16373
+ - uid: 16390
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-27.5
@@ -104325,7 +104431,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16374
+ - uid: 16391
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-43.5
@@ -104333,7 +104439,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16375
+ - uid: 16392
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-42.5
@@ -104341,7 +104447,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16376
+ - uid: 16393
components:
- rot: 3.141592653589793 rad
pos: 14.5,-36.5
@@ -104349,7 +104455,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16377
+ - uid: 16394
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-41.5
@@ -104357,7 +104463,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16378
+ - uid: 16395
components:
- rot: 3.141592653589793 rad
pos: 14.5,-39.5
@@ -104365,7 +104471,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16379
+ - uid: 16396
components:
- rot: 3.141592653589793 rad
pos: 14.5,-40.5
@@ -104373,7 +104479,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16380
+ - uid: 16397
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-41.5
@@ -104381,7 +104487,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16381
+ - uid: 16398
components:
- rot: 3.141592653589793 rad
pos: 14.5,-38.5
@@ -104389,7 +104495,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16382
+ - uid: 16399
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-41.5
@@ -104397,14 +104503,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16383
+ - uid: 16400
components:
- pos: 15.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16384
+ - uid: 16401
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-41.5
@@ -104412,7 +104518,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16385
+ - uid: 16402
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-41.5
@@ -104420,7 +104526,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16386
+ - uid: 16403
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-41.5
@@ -104428,14 +104534,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16387
+ - uid: 16404
components:
- pos: 15.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16388
+ - uid: 16405
components:
- rot: 3.141592653589793 rad
pos: 40.5,-72.5
@@ -104443,7 +104549,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16389
+ - uid: 16406
components:
- rot: 3.141592653589793 rad
pos: 16.5,17.5
@@ -104451,7 +104557,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16390
+ - uid: 16407
components:
- rot: 3.141592653589793 rad
pos: 16.5,18.5
@@ -104459,7 +104565,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16391
+ - uid: 16408
components:
- rot: 3.141592653589793 rad
pos: 16.5,20.5
@@ -104467,7 +104573,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16392
+ - uid: 16409
components:
- rot: 3.141592653589793 rad
pos: 16.5,21.5
@@ -104475,7 +104581,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16393
+ - uid: 16410
components:
- rot: -1.5707963267948966 rad
pos: 33.5,0.5
@@ -104483,7 +104589,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16394
+ - uid: 16411
components:
- rot: -1.5707963267948966 rad
pos: 32.5,0.5
@@ -104491,7 +104597,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16395
+ - uid: 16412
components:
- rot: -1.5707963267948966 rad
pos: 31.5,0.5
@@ -104499,7 +104605,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16396
+ - uid: 16413
components:
- rot: -1.5707963267948966 rad
pos: 29.5,0.5
@@ -104507,7 +104613,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16397
+ - uid: 16414
components:
- rot: -1.5707963267948966 rad
pos: 28.5,0.5
@@ -104515,7 +104621,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16398
+ - uid: 16415
components:
- rot: 3.141592653589793 rad
pos: 14.5,-34.5
@@ -104523,14 +104629,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16399
+ - uid: 16416
components:
- pos: 15.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16400
+ - uid: 16417
components:
- rot: 3.141592653589793 rad
pos: 14.5,-31.5
@@ -104538,49 +104644,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16401
+ - uid: 16418
components:
- pos: 15.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16402
+ - uid: 16419
components:
- pos: 15.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16403
+ - uid: 16420
components:
- pos: 15.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16404
+ - uid: 16421
components:
- pos: 15.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16405
+ - uid: 16422
components:
- pos: 15.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16406
+ - uid: 16423
components:
- pos: 15.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16407
+ - uid: 16424
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-17.5
@@ -104588,14 +104694,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16408
+ - uid: 16425
components:
- pos: 15.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16409
+ - uid: 16426
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-17.5
@@ -104603,7 +104709,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16410
+ - uid: 16427
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-17.5
@@ -104611,7 +104717,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16411
+ - uid: 16428
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-17.5
@@ -104619,7 +104725,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16412
+ - uid: 16429
components:
- rot: 3.141592653589793 rad
pos: 15.5,-27.5
@@ -104627,14 +104733,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16413
+ - uid: 16430
components:
- pos: 26.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16414
+ - uid: 16431
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-25.5
@@ -104642,7 +104748,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16415
+ - uid: 16432
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-30.5
@@ -104650,7 +104756,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16416
+ - uid: 16433
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-30.5
@@ -104658,7 +104764,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16417
+ - uid: 16434
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-30.5
@@ -104666,14 +104772,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16418
+ - uid: 16435
components:
- pos: 28.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16419
+ - uid: 16436
components:
- rot: 3.141592653589793 rad
pos: 15.5,-28.5
@@ -104681,14 +104787,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16420
+ - uid: 16437
components:
- pos: -3.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16421
+ - uid: 16438
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-30.5
@@ -104696,7 +104802,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16422
+ - uid: 16439
components:
- rot: 3.141592653589793 rad
pos: 15.5,-26.5
@@ -104704,14 +104810,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16423
+ - uid: 16440
components:
- pos: -3.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16424
+ - uid: 16441
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-80.5
@@ -104719,7 +104825,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16425
+ - uid: 16442
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-73.5
@@ -104727,14 +104833,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16426
+ - uid: 16443
components:
- pos: -3.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16427
+ - uid: 16444
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-41.5
@@ -104742,21 +104848,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16428
+ - uid: 16445
components:
- pos: -23.5,-76.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16429
+ - uid: 16446
components:
- pos: -23.5,-75.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16430
+ - uid: 16447
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-73.5
@@ -104764,7 +104870,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16431
+ - uid: 16448
components:
- rot: -1.5707963267948966 rad
pos: 8.5,12.5
@@ -104772,7 +104878,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16432
+ - uid: 16449
components:
- rot: 3.141592653589793 rad
pos: 8.5,12.5
@@ -104780,7 +104886,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16433
+ - uid: 16450
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-41.5
@@ -104788,7 +104894,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16434
+ - uid: 16451
components:
- rot: 3.141592653589793 rad
pos: -12.5,-45.5
@@ -104796,14 +104902,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16435
+ - uid: 16452
components:
- pos: -9.5,-54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16436
+ - uid: 16453
components:
- rot: 3.141592653589793 rad
pos: -3.5,-54.5
@@ -104811,7 +104917,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16437
+ - uid: 16454
components:
- rot: 3.141592653589793 rad
pos: -3.5,-55.5
@@ -104819,7 +104925,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16438
+ - uid: 16455
components:
- rot: 3.141592653589793 rad
pos: -1.5,-49.5
@@ -104827,7 +104933,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16439
+ - uid: 16456
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-41.5
@@ -104835,7 +104941,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16440
+ - uid: 16457
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-41.5
@@ -104843,28 +104949,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16441
+ - uid: 16458
components:
- pos: -5.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16442
+ - uid: 16459
components:
- pos: -5.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16443
+ - uid: 16460
components:
- pos: -5.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16444
+ - uid: 16461
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-41.5
@@ -104872,85 +104978,77 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16445
+ - uid: 16462
components:
- pos: -5.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16446
+ - uid: 16463
components:
- pos: -5.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16447
+ - uid: 16464
components:
- pos: -5.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16448
+ - uid: 16465
components:
- pos: -5.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16449
+ - uid: 16466
components:
- pos: -5.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16450
+ - uid: 16467
components:
- pos: -5.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16451
+ - uid: 16468
components:
- pos: -5.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16452
+ - uid: 16469
components:
- pos: -5.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16453
+ - uid: 16470
components:
- pos: -5.5,-19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16454
+ - uid: 16471
components:
- pos: -5.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16455
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,13.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 16456
+ - uid: 16472
components:
- rot: 3.141592653589793 rad
pos: -1.5,-48.5
@@ -104958,7 +105056,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16457
+ - uid: 16473
components:
- rot: 3.141592653589793 rad
pos: -21.5,-88.5
@@ -104966,7 +105064,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16458
+ - uid: 16474
components:
- rot: 3.141592653589793 rad
pos: 34.5,-31.5
@@ -104974,15 +105072,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16459
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-14.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 16460
+ - uid: 16475
components:
- rot: 3.141592653589793 rad
pos: 34.5,-30.5
@@ -104990,7 +105080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16461
+ - uid: 16476
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-24.5
@@ -104998,7 +105088,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16462
+ - uid: 16477
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-78.5
@@ -105006,7 +105096,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16463
+ - uid: 16478
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-78.5
@@ -105014,7 +105104,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16464
+ - uid: 16479
components:
- rot: -1.5707963267948966 rad
pos: -21.5,30.5
@@ -105022,7 +105112,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16465
+ - uid: 16480
components:
- rot: 3.141592653589793 rad
pos: 34.5,-37.5
@@ -105030,7 +105120,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16466
+ - uid: 16481
components:
- rot: 3.141592653589793 rad
pos: 34.5,-33.5
@@ -105038,7 +105128,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16467
+ - uid: 16482
components:
- rot: -1.5707963267948966 rad
pos: 30.5,12.5
@@ -105046,7 +105136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16468
+ - uid: 16483
components:
- rot: -1.5707963267948966 rad
pos: 19.5,16.5
@@ -105054,7 +105144,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16469
+ - uid: 16484
components:
- rot: 3.141592653589793 rad
pos: -12.5,6.5
@@ -105062,7 +105152,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16470
+ - uid: 16485
components:
- rot: -1.5707963267948966 rad
pos: 32.5,12.5
@@ -105070,7 +105160,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16471
+ - uid: 16486
components:
- rot: 3.141592653589793 rad
pos: 30.5,-20.5
@@ -105078,7 +105168,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16472
+ - uid: 16487
components:
- rot: 3.141592653589793 rad
pos: 10.5,10.5
@@ -105086,7 +105176,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16473
+ - uid: 16488
components:
- rot: 1.5707963267948966 rad
pos: 8.5,8.5
@@ -105094,7 +105184,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16474
+ - uid: 16489
components:
- rot: -1.5707963267948966 rad
pos: -22.5,30.5
@@ -105102,7 +105192,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16475
+ - uid: 16490
components:
- rot: -1.5707963267948966 rad
pos: -20.5,29.5
@@ -105110,21 +105200,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16476
+ - uid: 16491
components:
- pos: -20.5,26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16477
+ - uid: 16492
components:
- pos: 26.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16478
+ - uid: 16493
components:
- rot: 3.141592653589793 rad
pos: 2.5,-2.5
@@ -105132,35 +105222,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16479
+ - uid: 16494
components:
- pos: -3.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16480
+ - uid: 16495
components:
- pos: -3.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16481
+ - uid: 16496
components:
- pos: -3.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16482
+ - uid: 16497
components:
- pos: 47.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16483
+ - uid: 16498
components:
- rot: 3.141592653589793 rad
pos: 8.5,5.5
@@ -105168,7 +105258,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16484
+ - uid: 16499
components:
- rot: -1.5707963267948966 rad
pos: 29.5,12.5
@@ -105176,7 +105266,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16485
+ - uid: 16500
components:
- rot: 3.141592653589793 rad
pos: 40.5,3.5
@@ -105184,7 +105274,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16486
+ - uid: 16501
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-27.5
@@ -105192,7 +105282,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16487
+ - uid: 16502
components:
- rot: 1.5707963267948966 rad
pos: 17.5,12.5
@@ -105200,7 +105290,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16488
+ - uid: 16503
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-27.5
@@ -105208,7 +105298,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16489
+ - uid: 16504
components:
- rot: -1.5707963267948966 rad
pos: 10.5,12.5
@@ -105216,21 +105306,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16490
+ - uid: 16505
components:
- pos: 26.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16491
+ - uid: 16506
components:
- pos: 26.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16492
+ - uid: 16507
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-30.5
@@ -105238,7 +105328,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16493
+ - uid: 16508
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-42.5
@@ -105246,7 +105336,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16494
+ - uid: 16509
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-42.5
@@ -105254,7 +105344,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16495
+ - uid: 16510
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-42.5
@@ -105262,7 +105352,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16496
+ - uid: 16511
components:
- rot: 3.141592653589793 rad
pos: 8.5,2.5
@@ -105270,14 +105360,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16497
+ - uid: 16512
components:
- pos: -11.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16498
+ - uid: 16513
components:
- rot: 3.141592653589793 rad
pos: -8.5,-23.5
@@ -105285,7 +105375,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16499
+ - uid: 16514
components:
- rot: 3.141592653589793 rad
pos: 10.5,9.5
@@ -105293,7 +105383,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16500
+ - uid: 16515
components:
- rot: -1.5707963267948966 rad
pos: 20.5,16.5
@@ -105301,7 +105391,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16501
+ - uid: 16516
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-54.5
@@ -105309,28 +105399,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16502
+ - uid: 16517
components:
- pos: -3.5,-17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16503
+ - uid: 16518
components:
- pos: -5.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16504
+ - uid: 16519
components:
- pos: -5.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16505
+ - uid: 16520
components:
- rot: -1.5707963267948966 rad
pos: -23.5,30.5
@@ -105338,7 +105428,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16506
+ - uid: 16521
components:
- rot: -1.5707963267948966 rad
pos: -16.5,29.5
@@ -105346,7 +105436,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16507
+ - uid: 16522
components:
- rot: -1.5707963267948966 rad
pos: -19.5,29.5
@@ -105354,7 +105444,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16508
+ - uid: 16523
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-9.5
@@ -105362,7 +105452,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16509
+ - uid: 16524
components:
- rot: 3.141592653589793 rad
pos: 34.5,-34.5
@@ -105370,7 +105460,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16510
+ - uid: 16525
components:
- rot: 1.5707963267948966 rad
pos: 6.5,19.5
@@ -105378,7 +105468,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16511
+ - uid: 16526
components:
- rot: 3.141592653589793 rad
pos: 40.5,1.5
@@ -105386,29 +105476,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16512
+ - uid: 16527
components:
- pos: 0.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16513
+ - uid: 16528
components:
- pos: 0.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16514
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,11.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 16515
+ - uid: 16529
components:
- rot: 3.141592653589793 rad
pos: 2.5,3.5
@@ -105416,12 +105498,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16516
- components:
- - pos: 2.5,12.5
- parent: 2
- type: Transform
- - uid: 16517
+ - uid: 16530
components:
- rot: 3.141592653589793 rad
pos: 8.5,3.5
@@ -105429,21 +105506,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16518
+ - uid: 16531
components:
- pos: 34.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16519
+ - uid: 16532
components:
- pos: 2.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16520
+ - uid: 16533
components:
- rot: 1.5707963267948966 rad
pos: 3.5,0.5
@@ -105451,7 +105528,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16521
+ - uid: 16534
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-1.5
@@ -105459,7 +105536,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16522
+ - uid: 16535
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-1.5
@@ -105467,7 +105544,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16523
+ - uid: 16536
components:
- rot: 3.141592653589793 rad
pos: -1.5,-50.5
@@ -105475,7 +105552,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16524
+ - uid: 16537
components:
- rot: -1.5707963267948966 rad
pos: 37.5,11.5
@@ -105483,7 +105560,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16525
+ - uid: 16538
components:
- rot: 1.5707963267948966 rad
pos: 8.5,17.5
@@ -105491,7 +105568,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16526
+ - uid: 16539
components:
- rot: 1.5707963267948966 rad
pos: 7.5,17.5
@@ -105499,7 +105576,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16527
+ - uid: 16540
components:
- rot: 1.5707963267948966 rad
pos: 6.5,17.5
@@ -105507,14 +105584,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16528
+ - uid: 16541
components:
- pos: -8.5,7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16529
+ - uid: 16542
components:
- rot: 1.5707963267948966 rad
pos: 12.5,17.5
@@ -105522,7 +105599,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16530
+ - uid: 16543
components:
- rot: 3.141592653589793 rad
pos: -3.5,-58.5
@@ -105530,14 +105607,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16531
+ - uid: 16544
components:
- pos: -3.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16532
+ - uid: 16545
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-42.5
@@ -105545,7 +105622,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16533
+ - uid: 16546
components:
- rot: 3.141592653589793 rad
pos: 2.5,2.5
@@ -105553,7 +105630,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16534
+ - uid: 16547
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-12.5
@@ -105561,7 +105638,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16535
+ - uid: 16548
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-16.5
@@ -105569,7 +105646,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16536
+ - uid: 16549
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-16.5
@@ -105577,7 +105654,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16537
+ - uid: 16550
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-16.5
@@ -105585,7 +105662,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16538
+ - uid: 16551
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-16.5
@@ -105593,56 +105670,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16539
+ - uid: 16552
components:
- pos: 21.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16540
+ - uid: 16553
components:
- pos: 21.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16541
+ - uid: 16554
components:
- pos: 21.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16542
+ - uid: 16555
components:
- pos: 21.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16543
+ - uid: 16556
components:
- pos: 21.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16544
+ - uid: 16557
components:
- pos: 21.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16545
+ - uid: 16558
components:
- pos: 21.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16546
+ - uid: 16559
components:
- rot: 3.141592653589793 rad
pos: 26.5,-23.5
@@ -105650,7 +105727,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16547
+ - uid: 16560
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-22.5
@@ -105658,14 +105735,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16548
+ - uid: 16561
components:
- pos: 20.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16549
+ - uid: 16562
components:
- rot: 3.141592653589793 rad
pos: 26.5,-13.5
@@ -105673,35 +105750,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16550
+ - uid: 16563
components:
- pos: 31.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16551
+ - uid: 16564
components:
- pos: 33.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16552
+ - uid: 16565
components:
- pos: -5.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16553
+ - uid: 16566
components:
- pos: -5.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16554
+ - uid: 16567
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-42.5
@@ -105709,7 +105786,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16555
+ - uid: 16568
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-29.5
@@ -105717,7 +105794,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16556
+ - uid: 16569
components:
- rot: -1.5707963267948966 rad
pos: 6.5,12.5
@@ -105725,7 +105802,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16557
+ - uid: 16570
components:
- rot: -1.5707963267948966 rad
pos: 9.5,12.5
@@ -105733,7 +105810,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16558
+ - uid: 16571
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-12.5
@@ -105741,7 +105818,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16559
+ - uid: 16572
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-41.5
@@ -105749,7 +105826,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16560
+ - uid: 16573
components:
- rot: -1.5707963267948966 rad
pos: -17.5,29.5
@@ -105757,7 +105834,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16561
+ - uid: 16574
components:
- rot: -1.5707963267948966 rad
pos: -17.5,30.5
@@ -105765,7 +105842,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16562
+ - uid: 16575
components:
- rot: -1.5707963267948966 rad
pos: -18.5,30.5
@@ -105773,7 +105850,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16563
+ - uid: 16576
components:
- rot: -1.5707963267948966 rad
pos: -19.5,30.5
@@ -105781,7 +105858,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16564
+ - uid: 16577
components:
- rot: -1.5707963267948966 rad
pos: -22.5,29.5
@@ -105789,7 +105866,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16565
+ - uid: 16578
components:
- rot: -1.5707963267948966 rad
pos: -21.5,29.5
@@ -105797,21 +105874,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16566
+ - uid: 16579
components:
- pos: 36.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16567
+ - uid: 16580
components:
- pos: 36.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16568
+ - uid: 16581
components:
- rot: 3.141592653589793 rad
pos: -10.5,6.5
@@ -105819,28 +105896,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16569
+ - uid: 16582
components:
- pos: -18.5,27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16570
+ - uid: 16583
components:
- pos: 36.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16571
+ - uid: 16584
components:
- pos: 47.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16572
+ - uid: 16585
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-30.5
@@ -105848,7 +105925,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16573
+ - uid: 16586
components:
- rot: 3.141592653589793 rad
pos: 34.5,-29.5
@@ -105856,7 +105933,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16574
+ - uid: 16587
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-12.5
@@ -105864,7 +105941,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16575
+ - uid: 16588
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-61.5
@@ -105872,14 +105949,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16576
+ - uid: 16589
components:
- pos: -10.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16577
+ - uid: 16590
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-30.5
@@ -105887,7 +105964,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16578
+ - uid: 16591
components:
- rot: 1.5707963267948966 rad
pos: 16.5,17.5
@@ -105895,7 +105972,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16579
+ - uid: 16592
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-5.5
@@ -105903,7 +105980,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16580
+ - uid: 16593
components:
- rot: -1.5707963267948966 rad
pos: 15.5,16.5
@@ -105911,7 +105988,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16581
+ - uid: 16594
components:
- rot: -1.5707963267948966 rad
pos: 18.5,16.5
@@ -105919,7 +105996,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16582
+ - uid: 16595
components:
- rot: -1.5707963267948966 rad
pos: 17.5,16.5
@@ -105927,7 +106004,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16583
+ - uid: 16596
components:
- rot: -1.5707963267948966 rad
pos: 33.5,12.5
@@ -105935,7 +106012,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16584
+ - uid: 16597
components:
- rot: 3.141592653589793 rad
pos: 40.5,2.5
@@ -105943,28 +106020,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16585
+ - uid: 16598
components:
- pos: -20.5,27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16586
+ - uid: 16599
components:
- pos: 22.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16587
+ - uid: 16600
components:
- pos: -20.5,32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16588
+ - uid: 16601
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-28.5
@@ -105972,14 +106049,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16589
+ - uid: 16602
components:
- pos: 36.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16590
+ - uid: 16603
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-24.5
@@ -105987,7 +106064,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16591
+ - uid: 16604
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-64.5
@@ -105995,14 +106072,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16592
+ - uid: 16605
components:
- pos: -23.5,-81.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16593
+ - uid: 16606
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-80.5
@@ -106010,7 +106087,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16594
+ - uid: 16607
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-42.5
@@ -106018,14 +106095,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16595
+ - uid: 16608
components:
- pos: -23.5,-79.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16596
+ - uid: 16609
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-80.5
@@ -106033,7 +106110,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16597
+ - uid: 16610
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-80.5
@@ -106041,7 +106118,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16598
+ - uid: 16611
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-42.5
@@ -106049,7 +106126,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16599
+ - uid: 16612
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-42.5
@@ -106057,7 +106134,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16600
+ - uid: 16613
components:
- rot: 3.141592653589793 rad
pos: 14.5,-37.5
@@ -106065,7 +106142,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16601
+ - uid: 16614
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-43.5
@@ -106073,7 +106150,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16602
+ - uid: 16615
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-25.5
@@ -106081,7 +106158,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16603
+ - uid: 16616
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-43.5
@@ -106089,14 +106166,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16604
+ - uid: 16617
components:
- pos: 15.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16605
+ - uid: 16618
components:
- rot: 3.141592653589793 rad
pos: 5.5,14.5
@@ -106104,7 +106181,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16606
+ - uid: 16619
components:
- rot: 3.141592653589793 rad
pos: 5.5,15.5
@@ -106112,28 +106189,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16607
+ - uid: 16620
components:
- pos: -3.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16608
+ - uid: 16621
components:
- pos: 20.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16609
+ - uid: 16622
components:
- pos: 20.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16610
+ - uid: 16623
components:
- rot: -1.5707963267948966 rad
pos: 39.5,15.5
@@ -106141,7 +106218,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16611
+ - uid: 16624
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-0.5
@@ -106149,7 +106226,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16612
+ - uid: 16625
components:
- rot: -1.5707963267948966 rad
pos: 37.5,15.5
@@ -106157,7 +106234,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16613
+ - uid: 16626
components:
- rot: 3.141592653589793 rad
pos: -21.5,-85.5
@@ -106165,7 +106242,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16614
+ - uid: 16627
components:
- rot: 3.141592653589793 rad
pos: -21.5,-87.5
@@ -106173,7 +106250,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16615
+ - uid: 16628
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-88.5
@@ -106181,7 +106258,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16616
+ - uid: 16629
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-88.5
@@ -106189,14 +106266,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16617
+ - uid: 16630
components:
- pos: -24.5,-86.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16618
+ - uid: 16631
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-29.5
@@ -106204,7 +106281,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16619
+ - uid: 16632
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-6.5
@@ -106212,28 +106289,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16620
+ - uid: 16633
components:
- pos: -3.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16621
+ - uid: 16634
components:
- pos: -3.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16622
+ - uid: 16635
components:
- pos: -5.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16623
+ - uid: 16636
components:
- rot: -1.5707963267948966 rad
pos: 22.5,10.5
@@ -106241,7 +106318,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16624
+ - uid: 16637
components:
- rot: -1.5707963267948966 rad
pos: 25.5,10.5
@@ -106249,7 +106326,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16625
+ - uid: 16638
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-29.5
@@ -106257,7 +106334,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16626
+ - uid: 16639
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-29.5
@@ -106265,7 +106342,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16627
+ - uid: 16640
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-41.5
@@ -106273,7 +106350,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16628
+ - uid: 16641
components:
- rot: 3.141592653589793 rad
pos: -5.5,-30.5
@@ -106281,28 +106358,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16629
+ - uid: 16642
components:
- pos: -3.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16630
+ - uid: 16643
components:
- pos: -19.5,-60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16631
+ - uid: 16644
components:
- pos: -19.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16632
+ - uid: 16645
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-41.5
@@ -106310,7 +106387,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16633
+ - uid: 16646
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-25.5
@@ -106318,7 +106395,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16634
+ - uid: 16647
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-27.5
@@ -106326,7 +106403,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16635
+ - uid: 16648
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-27.5
@@ -106334,7 +106411,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16636
+ - uid: 16649
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-27.5
@@ -106342,7 +106419,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16637
+ - uid: 16650
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-27.5
@@ -106350,14 +106427,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16638
+ - uid: 16651
components:
- pos: -3.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16639
+ - uid: 16652
components:
- rot: 3.141592653589793 rad
pos: 34.5,-39.5
@@ -106365,7 +106442,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16640
+ - uid: 16653
components:
- rot: 3.141592653589793 rad
pos: 34.5,-40.5
@@ -106373,28 +106450,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16641
+ - uid: 16654
components:
- pos: 34.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16642
+ - uid: 16655
components:
- pos: -18.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16643
+ - uid: 16656
components:
- pos: -18.5,26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16644
+ - uid: 16657
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-41.5
@@ -106402,7 +106479,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16645
+ - uid: 16658
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-41.5
@@ -106410,7 +106487,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16646
+ - uid: 16659
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-41.5
@@ -106418,15 +106495,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16647
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-14.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 16648
+ - uid: 16660
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-42.5
@@ -106434,14 +106503,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16649
+ - uid: 16661
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16650
+ - uid: 16662
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-73.5
@@ -106449,7 +106518,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16651
+ - uid: 16663
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-18.5
@@ -106457,7 +106526,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16652
+ - uid: 16664
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-18.5
@@ -106465,7 +106534,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16653
+ - uid: 16665
components:
- rot: 3.141592653589793 rad
pos: 34.5,-19.5
@@ -106473,7 +106542,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16654
+ - uid: 16666
components:
- rot: 3.141592653589793 rad
pos: 34.5,-20.5
@@ -106481,7 +106550,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16655
+ - uid: 16667
components:
- rot: 3.141592653589793 rad
pos: 36.5,-20.5
@@ -106489,7 +106558,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16656
+ - uid: 16668
components:
- rot: 3.141592653589793 rad
pos: 36.5,-19.5
@@ -106497,7 +106566,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16657
+ - uid: 16669
components:
- rot: 3.141592653589793 rad
pos: 36.5,-18.5
@@ -106505,7 +106574,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16658
+ - uid: 16670
components:
- rot: 3.141592653589793 rad
pos: 36.5,-17.5
@@ -106513,7 +106582,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16659
+ - uid: 16671
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-16.5
@@ -106521,7 +106590,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16660
+ - uid: 16672
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-16.5
@@ -106529,14 +106598,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16661
+ - uid: 16673
components:
- pos: 25.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16662
+ - uid: 16674
components:
- rot: 3.141592653589793 rad
pos: 24.5,-45.5
@@ -106544,7 +106613,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16663
+ - uid: 16675
components:
- rot: 3.141592653589793 rad
pos: 24.5,-44.5
@@ -106552,7 +106621,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16664
+ - uid: 16676
components:
- rot: 3.141592653589793 rad
pos: 26.5,-45.5
@@ -106560,7 +106629,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16665
+ - uid: 16677
components:
- rot: 3.141592653589793 rad
pos: 26.5,-44.5
@@ -106568,7 +106637,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16666
+ - uid: 16678
components:
- rot: 3.141592653589793 rad
pos: 26.5,-43.5
@@ -106576,7 +106645,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16667
+ - uid: 16679
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-25.5
@@ -106584,7 +106653,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16668
+ - uid: 16680
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-26.5
@@ -106592,7 +106661,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16669
+ - uid: 16681
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-26.5
@@ -106600,7 +106669,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16670
+ - uid: 16682
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-26.5
@@ -106608,7 +106677,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16671
+ - uid: 16683
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-26.5
@@ -106616,7 +106685,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16672
+ - uid: 16684
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-26.5
@@ -106624,7 +106693,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16673
+ - uid: 16685
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-26.5
@@ -106632,14 +106701,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16674
+ - uid: 16686
components:
- pos: 36.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16675
+ - uid: 16687
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-25.5
@@ -106647,7 +106716,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16676
+ - uid: 16688
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-25.5
@@ -106655,7 +106724,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16677
+ - uid: 16689
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-25.5
@@ -106663,21 +106732,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16678
+ - uid: 16690
components:
- pos: 34.5,-28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16679
+ - uid: 16691
components:
- pos: 36.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16680
+ - uid: 16692
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-28.5
@@ -106685,70 +106754,70 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16681
+ - uid: 16693
components:
- pos: -27.5,-78.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16682
+ - uid: 16694
components:
- pos: -20.5,-82.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16683
+ - uid: 16695
components:
- pos: -20.5,-81.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16684
+ - uid: 16696
components:
- pos: -20.5,-79.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16685
+ - uid: 16697
components:
- pos: -20.5,-78.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16686
+ - uid: 16698
components:
- pos: -20.5,-77.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16687
+ - uid: 16699
components:
- pos: -20.5,-76.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16688
+ - uid: 16700
components:
- pos: -20.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16689
+ - uid: 16701
components:
- pos: -25.5,-74.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16690
+ - uid: 16702
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-72.5
@@ -106756,7 +106825,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16691
+ - uid: 16703
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-72.5
@@ -106764,7 +106833,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16692
+ - uid: 16704
components:
- rot: 3.141592653589793 rad
pos: -20.5,-71.5
@@ -106772,7 +106841,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16693
+ - uid: 16705
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-72.5
@@ -106780,21 +106849,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16694
+ - uid: 16706
components:
- pos: -23.5,-84.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16695
+ - uid: 16707
components:
- pos: -23.5,-83.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16696
+ - uid: 16708
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-78.5
@@ -106802,7 +106871,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16697
+ - uid: 16709
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-78.5
@@ -106810,7 +106879,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16698
+ - uid: 16710
components:
- rot: 3.141592653589793 rad
pos: -18.5,-76.5
@@ -106818,7 +106887,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16699
+ - uid: 16711
components:
- rot: 3.141592653589793 rad
pos: -18.5,-75.5
@@ -106826,7 +106895,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16700
+ - uid: 16712
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-73.5
@@ -106834,7 +106903,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16701
+ - uid: 16713
components:
- rot: 3.141592653589793 rad
pos: -25.5,-76.5
@@ -106842,14 +106911,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16702
+ - uid: 16714
components:
- pos: -20.5,-80.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16703
+ - uid: 16715
components:
- rot: 3.141592653589793 rad
pos: -18.5,-70.5
@@ -106857,7 +106926,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16704
+ - uid: 16716
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-46.5
@@ -106865,7 +106934,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16705
+ - uid: 16717
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-46.5
@@ -106873,7 +106942,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16706
+ - uid: 16718
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-46.5
@@ -106881,7 +106950,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16707
+ - uid: 16719
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-47.5
@@ -106889,7 +106958,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16708
+ - uid: 16720
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-46.5
@@ -106897,7 +106966,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16709
+ - uid: 16721
components:
- rot: 1.5707963267948966 rad
pos: 10.5,-41.5
@@ -106905,7 +106974,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16710
+ - uid: 16722
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-88.5
@@ -106913,7 +106982,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16711
+ - uid: 16723
components:
- rot: 3.141592653589793 rad
pos: -18.5,-69.5
@@ -106921,7 +106990,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16712
+ - uid: 16724
components:
- rot: 3.141592653589793 rad
pos: -18.5,-68.5
@@ -106929,7 +106998,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16713
+ - uid: 16725
components:
- rot: 3.141592653589793 rad
pos: -20.5,-68.5
@@ -106937,7 +107006,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16714
+ - uid: 16726
components:
- rot: 3.141592653589793 rad
pos: -20.5,-67.5
@@ -106945,7 +107014,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16715
+ - uid: 16727
components:
- rot: 3.141592653589793 rad
pos: -18.5,-66.5
@@ -106953,7 +107022,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16716
+ - uid: 16728
components:
- rot: 3.141592653589793 rad
pos: -18.5,-65.5
@@ -106961,7 +107030,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16717
+ - uid: 16729
components:
- rot: 3.141592653589793 rad
pos: -20.5,-65.5
@@ -106969,7 +107038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16718
+ - uid: 16730
components:
- rot: 3.141592653589793 rad
pos: -20.5,-64.5
@@ -106977,35 +107046,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16719
+ - uid: 16731
components:
- pos: -20.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16720
+ - uid: 16732
components:
- pos: -18.5,-63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16721
+ - uid: 16733
components:
- pos: -18.5,-62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16722
+ - uid: 16734
components:
- pos: -18.5,-61.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16723
+ - uid: 16735
components:
- rot: 3.141592653589793 rad
pos: 36.5,-30.5
@@ -107013,7 +107082,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16724
+ - uid: 16736
components:
- rot: 3.141592653589793 rad
pos: 36.5,-32.5
@@ -107021,7 +107090,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16725
+ - uid: 16737
components:
- rot: 3.141592653589793 rad
pos: 36.5,-33.5
@@ -107029,7 +107098,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16726
+ - uid: 16738
components:
- rot: 3.141592653589793 rad
pos: 36.5,-34.5
@@ -107037,7 +107106,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16727
+ - uid: 16739
components:
- rot: 3.141592653589793 rad
pos: 36.5,-35.5
@@ -107045,7 +107114,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16728
+ - uid: 16740
components:
- rot: 3.141592653589793 rad
pos: 36.5,-36.5
@@ -107053,7 +107122,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16729
+ - uid: 16741
components:
- rot: 3.141592653589793 rad
pos: 36.5,-37.5
@@ -107061,7 +107130,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16730
+ - uid: 16742
components:
- rot: 3.141592653589793 rad
pos: 36.5,-38.5
@@ -107069,7 +107138,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16731
+ - uid: 16743
components:
- rot: 3.141592653589793 rad
pos: 36.5,-39.5
@@ -107077,7 +107146,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16732
+ - uid: 16744
components:
- rot: 3.141592653589793 rad
pos: 36.5,-40.5
@@ -107085,7 +107154,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16733
+ - uid: 16745
components:
- rot: 3.141592653589793 rad
pos: 36.5,-41.5
@@ -107093,7 +107162,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16734
+ - uid: 16746
components:
- rot: 3.141592653589793 rad
pos: 36.5,-42.5
@@ -107101,7 +107170,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16735
+ - uid: 16747
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-43.5
@@ -107109,7 +107178,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16736
+ - uid: 16748
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-43.5
@@ -107117,7 +107186,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16737
+ - uid: 16749
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-43.5
@@ -107125,7 +107194,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16738
+ - uid: 16750
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-43.5
@@ -107133,7 +107202,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16739
+ - uid: 16751
components:
- rot: -1.5707963267948966 rad
pos: 35.5,0.5
@@ -107141,7 +107210,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16740
+ - uid: 16752
components:
- rot: -1.5707963267948966 rad
pos: 36.5,0.5
@@ -107149,7 +107218,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16741
+ - uid: 16753
components:
- rot: 1.5707963267948966 rad
pos: 37.5,1.5
@@ -107157,7 +107226,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16742
+ - uid: 16754
components:
- rot: -1.5707963267948966 rad
pos: 38.5,0.5
@@ -107165,7 +107234,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16743
+ - uid: 16755
components:
- rot: -1.5707963267948966 rad
pos: 39.5,0.5
@@ -107173,7 +107242,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16744
+ - uid: 16756
components:
- rot: 1.5707963267948966 rad
pos: 20.5,12.5
@@ -107181,21 +107250,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16745
+ - uid: 16757
components:
- pos: 11.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16746
+ - uid: 16758
components:
- pos: 11.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16747
+ - uid: 16759
components:
- rot: 3.141592653589793 rad
pos: 7.5,18.5
@@ -107203,7 +107272,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16748
+ - uid: 16760
components:
- rot: 3.141592653589793 rad
pos: -11.5,-37.5
@@ -107211,7 +107280,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16749
+ - uid: 16761
components:
- rot: 3.141592653589793 rad
pos: -11.5,-36.5
@@ -107219,7 +107288,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16750
+ - uid: 16762
components:
- rot: 3.141592653589793 rad
pos: -11.5,-35.5
@@ -107227,7 +107296,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16751
+ - uid: 16763
components:
- rot: 3.141592653589793 rad
pos: -11.5,-34.5
@@ -107235,7 +107304,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16752
+ - uid: 16764
components:
- rot: 3.141592653589793 rad
pos: -11.5,-33.5
@@ -107243,7 +107312,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16753
+ - uid: 16765
components:
- rot: 3.141592653589793 rad
pos: -9.5,-38.5
@@ -107251,7 +107320,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16754
+ - uid: 16766
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-37.5
@@ -107259,7 +107328,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16755
+ - uid: 16767
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-37.5
@@ -107267,7 +107336,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16756
+ - uid: 16768
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-37.5
@@ -107275,7 +107344,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16757
+ - uid: 16769
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-37.5
@@ -107283,7 +107352,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16758
+ - uid: 16770
components:
- rot: 3.141592653589793 rad
pos: -9.5,-36.5
@@ -107291,7 +107360,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16759
+ - uid: 16771
components:
- rot: 3.141592653589793 rad
pos: -9.5,-35.5
@@ -107299,7 +107368,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16760
+ - uid: 16772
components:
- rot: 3.141592653589793 rad
pos: -9.5,-34.5
@@ -107307,7 +107376,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16761
+ - uid: 16773
components:
- rot: 3.141592653589793 rad
pos: -9.5,-33.5
@@ -107315,7 +107384,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16762
+ - uid: 16774
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-38.5
@@ -107323,14 +107392,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16763
+ - uid: 16775
components:
- pos: 11.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16764
+ - uid: 16776
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-10.5
@@ -107338,7 +107407,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16765
+ - uid: 16777
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-10.5
@@ -107346,7 +107415,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16766
+ - uid: 16778
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-10.5
@@ -107354,7 +107423,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16767
+ - uid: 16779
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-10.5
@@ -107362,7 +107431,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16768
+ - uid: 16780
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-41.5
@@ -107370,7 +107439,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16769
+ - uid: 16781
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-41.5
@@ -107378,7 +107447,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16770
+ - uid: 16782
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-41.5
@@ -107386,7 +107455,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16771
+ - uid: 16783
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-41.5
@@ -107394,7 +107463,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16772
+ - uid: 16784
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-41.5
@@ -107402,7 +107471,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16773
+ - uid: 16785
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-41.5
@@ -107410,7 +107479,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16774
+ - uid: 16786
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-41.5
@@ -107418,7 +107487,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16775
+ - uid: 16787
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-43.5
@@ -107426,7 +107495,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16776
+ - uid: 16788
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-43.5
@@ -107434,7 +107503,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16777
+ - uid: 16789
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-43.5
@@ -107442,7 +107511,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16778
+ - uid: 16790
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-43.5
@@ -107450,7 +107519,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16779
+ - uid: 16791
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-43.5
@@ -107458,35 +107527,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16780
+ - uid: 16792
components:
- pos: 21.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16781
+ - uid: 16793
components:
- pos: 21.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16782
+ - uid: 16794
components:
- pos: 20.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16783
+ - uid: 16795
components:
- pos: 20.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16784
+ - uid: 16796
components:
- rot: 3.141592653589793 rad
pos: 40.5,7.5
@@ -107494,7 +107563,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16785
+ - uid: 16797
components:
- rot: 3.141592653589793 rad
pos: 30.5,16.5
@@ -107502,7 +107571,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16786
+ - uid: 16798
components:
- rot: 3.141592653589793 rad
pos: 30.5,15.5
@@ -107510,7 +107579,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16787
+ - uid: 16799
components:
- rot: 3.141592653589793 rad
pos: 30.5,20.5
@@ -107518,7 +107587,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16788
+ - uid: 16800
components:
- rot: 3.141592653589793 rad
pos: 30.5,21.5
@@ -107526,7 +107595,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16789
+ - uid: 16801
components:
- rot: 3.141592653589793 rad
pos: 30.5,22.5
@@ -107534,7 +107603,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16790
+ - uid: 16802
components:
- rot: 3.141592653589793 rad
pos: 30.5,23.5
@@ -107542,7 +107611,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16791
+ - uid: 16803
components:
- rot: 3.141592653589793 rad
pos: 30.5,24.5
@@ -107550,7 +107619,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16792
+ - uid: 16804
components:
- rot: 3.141592653589793 rad
pos: 30.5,25.5
@@ -107558,7 +107627,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16793
+ - uid: 16805
components:
- rot: 3.141592653589793 rad
pos: 30.5,26.5
@@ -107566,7 +107635,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16794
+ - uid: 16806
components:
- rot: 3.141592653589793 rad
pos: 30.5,27.5
@@ -107574,7 +107643,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16795
+ - uid: 16807
components:
- rot: 3.141592653589793 rad
pos: 28.5,18.5
@@ -107582,7 +107651,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16796
+ - uid: 16808
components:
- rot: 3.141592653589793 rad
pos: 28.5,19.5
@@ -107590,7 +107659,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16797
+ - uid: 16809
components:
- rot: 3.141592653589793 rad
pos: 28.5,20.5
@@ -107598,7 +107667,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16798
+ - uid: 16810
components:
- rot: 3.141592653589793 rad
pos: 28.5,21.5
@@ -107606,7 +107675,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16799
+ - uid: 16811
components:
- rot: 3.141592653589793 rad
pos: 28.5,23.5
@@ -107614,7 +107683,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16800
+ - uid: 16812
components:
- rot: 3.141592653589793 rad
pos: 28.5,24.5
@@ -107622,7 +107691,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16801
+ - uid: 16813
components:
- rot: 3.141592653589793 rad
pos: 28.5,25.5
@@ -107630,7 +107699,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16802
+ - uid: 16814
components:
- rot: 3.141592653589793 rad
pos: 28.5,26.5
@@ -107638,7 +107707,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16803
+ - uid: 16815
components:
- rot: 3.141592653589793 rad
pos: 28.5,27.5
@@ -107646,7 +107715,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16804
+ - uid: 16816
components:
- rot: 1.5707963267948966 rad
pos: 40.5,15.5
@@ -107654,7 +107723,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16805
+ - uid: 16817
components:
- rot: -1.5707963267948966 rad
pos: 43.5,15.5
@@ -107662,7 +107731,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16806
+ - uid: 16818
components:
- rot: -1.5707963267948966 rad
pos: 43.5,14.5
@@ -107670,7 +107739,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16807
+ - uid: 16819
components:
- rot: -1.5707963267948966 rad
pos: 42.5,14.5
@@ -107678,7 +107747,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16808
+ - uid: 16820
components:
- rot: -1.5707963267948966 rad
pos: 40.5,14.5
@@ -107686,7 +107755,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16809
+ - uid: 16821
components:
- rot: -1.5707963267948966 rad
pos: 39.5,14.5
@@ -107694,7 +107763,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16810
+ - uid: 16822
components:
- rot: -1.5707963267948966 rad
pos: 38.5,14.5
@@ -107702,7 +107771,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16811
+ - uid: 16823
components:
- rot: -1.5707963267948966 rad
pos: 37.5,14.5
@@ -107710,7 +107779,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16812
+ - uid: 16824
components:
- rot: -1.5707963267948966 rad
pos: 36.5,14.5
@@ -107718,7 +107787,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16813
+ - uid: 16825
components:
- rot: -1.5707963267948966 rad
pos: 35.5,14.5
@@ -107726,7 +107795,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16814
+ - uid: 16826
components:
- rot: -1.5707963267948966 rad
pos: 34.5,14.5
@@ -107734,7 +107803,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16815
+ - uid: 16827
components:
- rot: -1.5707963267948966 rad
pos: 33.5,14.5
@@ -107742,7 +107811,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16816
+ - uid: 16828
components:
- rot: -1.5707963267948966 rad
pos: 32.5,14.5
@@ -107750,7 +107819,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16817
+ - uid: 16829
components:
- rot: -1.5707963267948966 rad
pos: 31.5,14.5
@@ -107758,7 +107827,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16818
+ - uid: 16830
components:
- rot: 1.5707963267948966 rad
pos: 44.5,14.5
@@ -107766,7 +107835,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16819
+ - uid: 16831
components:
- rot: 1.5707963267948966 rad
pos: 45.5,15.5
@@ -107774,7 +107843,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16820
+ - uid: 16832
components:
- rot: 1.5707963267948966 rad
pos: 46.5,15.5
@@ -107782,7 +107851,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16821
+ - uid: 16833
components:
- rot: 1.5707963267948966 rad
pos: 46.5,14.5
@@ -107790,7 +107859,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16822
+ - uid: 16834
components:
- rot: 1.5707963267948966 rad
pos: 48.5,15.5
@@ -107798,7 +107867,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16823
+ - uid: 16835
components:
- rot: 1.5707963267948966 rad
pos: 48.5,14.5
@@ -107806,7 +107875,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16824
+ - uid: 16836
components:
- rot: -1.5707963267948966 rad
pos: 49.5,14.5
@@ -107814,7 +107883,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16825
+ - uid: 16837
components:
- rot: 3.141592653589793 rad
pos: 49.5,16.5
@@ -107822,7 +107891,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16826
+ - uid: 16838
components:
- rot: 3.141592653589793 rad
pos: 49.5,17.5
@@ -107830,7 +107899,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16827
+ - uid: 16839
components:
- rot: 3.141592653589793 rad
pos: 49.5,18.5
@@ -107838,7 +107907,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16828
+ - uid: 16840
components:
- rot: 3.141592653589793 rad
pos: 49.5,19.5
@@ -107846,7 +107915,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16829
+ - uid: 16841
components:
- rot: -1.5707963267948966 rad
pos: 50.5,20.5
@@ -107854,7 +107923,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16830
+ - uid: 16842
components:
- rot: 3.141592653589793 rad
pos: 50.5,20.5
@@ -107862,7 +107931,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16831
+ - uid: 16843
components:
- rot: 3.141592653589793 rad
pos: 50.5,18.5
@@ -107870,7 +107939,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16832
+ - uid: 16844
components:
- rot: 3.141592653589793 rad
pos: 50.5,17.5
@@ -107878,7 +107947,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16833
+ - uid: 16845
components:
- rot: 3.141592653589793 rad
pos: 50.5,16.5
@@ -107886,7 +107955,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16834
+ - uid: 16846
components:
- rot: 3.141592653589793 rad
pos: 50.5,15.5
@@ -107894,7 +107963,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16835
+ - uid: 16847
components:
- rot: 1.5707963267948966 rad
pos: 48.5,20.5
@@ -107902,7 +107971,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16836
+ - uid: 16848
components:
- rot: 1.5707963267948966 rad
pos: 47.5,20.5
@@ -107910,7 +107979,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16837
+ - uid: 16849
components:
- rot: 1.5707963267948966 rad
pos: 49.5,21.5
@@ -107918,7 +107987,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16838
+ - uid: 16850
components:
- rot: 1.5707963267948966 rad
pos: 48.5,21.5
@@ -107926,7 +107995,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16839
+ - uid: 16851
components:
- rot: 3.141592653589793 rad
pos: 49.5,21.5
@@ -107934,7 +108003,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16840
+ - uid: 16852
components:
- rot: 3.141592653589793 rad
pos: 49.5,22.5
@@ -107942,7 +108011,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16841
+ - uid: 16853
components:
- rot: 3.141592653589793 rad
pos: 50.5,22.5
@@ -107950,7 +108019,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16842
+ - uid: 16854
components:
- rot: 3.141592653589793 rad
pos: 46.5,21.5
@@ -107958,7 +108027,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16843
+ - uid: 16855
components:
- rot: 3.141592653589793 rad
pos: 46.5,22.5
@@ -107966,7 +108035,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16844
+ - uid: 16856
components:
- rot: 3.141592653589793 rad
pos: 47.5,22.5
@@ -107974,7 +108043,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16845
+ - uid: 16857
components:
- rot: 1.5707963267948966 rad
pos: 51.5,21.5
@@ -107982,7 +108051,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16846
+ - uid: 16858
components:
- rot: 1.5707963267948966 rad
pos: 52.5,21.5
@@ -107990,7 +108059,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16847
+ - uid: 16859
components:
- rot: 3.141592653589793 rad
pos: 53.5,22.5
@@ -107998,7 +108067,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16848
+ - uid: 16860
components:
- rot: 3.141592653589793 rad
pos: 52.5,22.5
@@ -108006,7 +108075,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16849
+ - uid: 16861
components:
- rot: 3.141592653589793 rad
pos: 52.5,21.5
@@ -108014,7 +108083,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16850
+ - uid: 16862
components:
- rot: 1.5707963267948966 rad
pos: 51.5,20.5
@@ -108022,7 +108091,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16851
+ - uid: 16863
components:
- rot: 1.5707963267948966 rad
pos: 53.5,20.5
@@ -108030,7 +108099,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16852
+ - uid: 16864
components:
- rot: 1.5707963267948966 rad
pos: 54.5,20.5
@@ -108038,7 +108107,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16853
+ - uid: 16865
components:
- rot: 1.5707963267948966 rad
pos: 56.5,20.5
@@ -108046,7 +108115,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16854
+ - uid: 16866
components:
- rot: 1.5707963267948966 rad
pos: 57.5,20.5
@@ -108054,7 +108123,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16855
+ - uid: 16867
components:
- rot: 3.141592653589793 rad
pos: 55.5,21.5
@@ -108062,7 +108131,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16856
+ - uid: 16868
components:
- rot: 3.141592653589793 rad
pos: 55.5,22.5
@@ -108070,7 +108139,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16857
+ - uid: 16869
components:
- rot: 3.141592653589793 rad
pos: 58.5,21.5
@@ -108078,7 +108147,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16858
+ - uid: 16870
components:
- rot: 3.141592653589793 rad
pos: 58.5,22.5
@@ -108086,7 +108155,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16859
+ - uid: 16871
components:
- rot: 1.5707963267948966 rad
pos: 54.5,21.5
@@ -108094,7 +108163,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16860
+ - uid: 16872
components:
- rot: 1.5707963267948966 rad
pos: 55.5,21.5
@@ -108102,7 +108171,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16861
+ - uid: 16873
components:
- rot: 1.5707963267948966 rad
pos: 57.5,21.5
@@ -108110,7 +108179,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16862
+ - uid: 16874
components:
- rot: 1.5707963267948966 rad
pos: 58.5,21.5
@@ -108118,7 +108187,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16863
+ - uid: 16875
components:
- rot: 3.141592653589793 rad
pos: 56.5,22.5
@@ -108126,7 +108195,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16864
+ - uid: 16876
components:
- rot: 3.141592653589793 rad
pos: 59.5,22.5
@@ -108134,7 +108203,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16865
+ - uid: 16877
components:
- rot: 3.141592653589793 rad
pos: 59.5,20.5
@@ -108142,7 +108211,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16866
+ - uid: 16878
components:
- rot: 3.141592653589793 rad
pos: 59.5,19.5
@@ -108150,7 +108219,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16867
+ - uid: 16879
components:
- rot: 1.5707963267948966 rad
pos: 60.5,18.5
@@ -108158,7 +108227,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16868
+ - uid: 16880
components:
- rot: -1.5707963267948966 rad
pos: 59.5,19.5
@@ -108166,7 +108235,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16869
+ - uid: 16881
components:
- rot: -1.5707963267948966 rad
pos: 60.5,19.5
@@ -108174,7 +108243,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16870
+ - uid: 16882
components:
- rot: -1.5707963267948966 rad
pos: 60.5,16.5
@@ -108182,7 +108251,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16871
+ - uid: 16883
components:
- rot: -1.5707963267948966 rad
pos: 59.5,16.5
@@ -108190,7 +108259,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16872
+ - uid: 16884
components:
- rot: -1.5707963267948966 rad
pos: 60.5,15.5
@@ -108198,21 +108267,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16873
+ - uid: 16885
components:
- pos: 49.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16874
+ - uid: 16886
components:
- pos: 49.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16875
+ - uid: 16887
components:
- rot: -1.5707963267948966 rad
pos: 51.5,13.5
@@ -108220,7 +108289,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16876
+ - uid: 16888
components:
- rot: -1.5707963267948966 rad
pos: 50.5,12.5
@@ -108228,7 +108297,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16877
+ - uid: 16889
components:
- rot: -1.5707963267948966 rad
pos: 51.5,12.5
@@ -108236,77 +108305,77 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16878
+ - uid: 16890
components:
- pos: 58.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16879
+ - uid: 16891
components:
- pos: 58.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16880
+ - uid: 16892
components:
- pos: 59.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16881
+ - uid: 16893
components:
- pos: 59.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16882
+ - uid: 16894
components:
- pos: 58.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16883
+ - uid: 16895
components:
- pos: 58.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16884
+ - uid: 16896
components:
- pos: 58.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16885
+ - uid: 16897
components:
- pos: 59.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16886
+ - uid: 16898
components:
- pos: 59.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16887
+ - uid: 16899
components:
- pos: 59.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16888
+ - uid: 16900
components:
- rot: 1.5707963267948966 rad
pos: 44.5,20.5
@@ -108314,7 +108383,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16889
+ - uid: 16901
components:
- rot: 1.5707963267948966 rad
pos: 43.5,20.5
@@ -108322,7 +108391,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16890
+ - uid: 16902
components:
- rot: 1.5707963267948966 rad
pos: 42.5,20.5
@@ -108330,7 +108399,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16891
+ - uid: 16903
components:
- rot: 1.5707963267948966 rad
pos: 41.5,20.5
@@ -108338,7 +108407,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16892
+ - uid: 16904
components:
- rot: -1.5707963267948966 rad
pos: 39.5,20.5
@@ -108346,7 +108415,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16893
+ - uid: 16905
components:
- rot: -1.5707963267948966 rad
pos: 38.5,20.5
@@ -108354,7 +108423,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16894
+ - uid: 16906
components:
- rot: -1.5707963267948966 rad
pos: 37.5,20.5
@@ -108362,7 +108431,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16895
+ - uid: 16907
components:
- rot: -1.5707963267948966 rad
pos: 36.5,20.5
@@ -108370,7 +108439,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16896
+ - uid: 16908
components:
- rot: -1.5707963267948966 rad
pos: 35.5,20.5
@@ -108378,7 +108447,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16897
+ - uid: 16909
components:
- rot: -1.5707963267948966 rad
pos: 49.5,19.5
@@ -108386,7 +108455,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16898
+ - uid: 16910
components:
- rot: -1.5707963267948966 rad
pos: 48.5,19.5
@@ -108394,7 +108463,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16899
+ - uid: 16911
components:
- rot: -1.5707963267948966 rad
pos: 47.5,19.5
@@ -108402,7 +108471,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16900
+ - uid: 16912
components:
- rot: -1.5707963267948966 rad
pos: 46.5,19.5
@@ -108410,7 +108479,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16901
+ - uid: 16913
components:
- rot: -1.5707963267948966 rad
pos: 45.5,19.5
@@ -108418,7 +108487,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16902
+ - uid: 16914
components:
- rot: -1.5707963267948966 rad
pos: 43.5,19.5
@@ -108426,7 +108495,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16903
+ - uid: 16915
components:
- rot: -1.5707963267948966 rad
pos: 42.5,19.5
@@ -108434,7 +108503,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16904
+ - uid: 16916
components:
- rot: -1.5707963267948966 rad
pos: 41.5,19.5
@@ -108442,7 +108511,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16905
+ - uid: 16917
components:
- rot: -1.5707963267948966 rad
pos: 40.5,19.5
@@ -108450,7 +108519,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16906
+ - uid: 16918
components:
- rot: -1.5707963267948966 rad
pos: 38.5,19.5
@@ -108458,7 +108527,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16907
+ - uid: 16919
components:
- rot: -1.5707963267948966 rad
pos: 37.5,19.5
@@ -108466,7 +108535,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16908
+ - uid: 16920
components:
- rot: -1.5707963267948966 rad
pos: 36.5,19.5
@@ -108474,7 +108543,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16909
+ - uid: 16921
components:
- rot: -1.5707963267948966 rad
pos: 35.5,19.5
@@ -108482,7 +108551,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16910
+ - uid: 16922
components:
- rot: -1.5707963267948966 rad
pos: 39.5,1.5
@@ -108490,7 +108559,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16911
+ - uid: 16923
components:
- rot: -1.5707963267948966 rad
pos: 40.5,1.5
@@ -108498,7 +108567,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16912
+ - uid: 16924
components:
- rot: -1.5707963267948966 rad
pos: 41.5,1.5
@@ -108506,7 +108575,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16913
+ - uid: 16925
components:
- rot: -1.5707963267948966 rad
pos: 43.5,1.5
@@ -108514,7 +108583,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16914
+ - uid: 16926
components:
- rot: -1.5707963267948966 rad
pos: 41.5,0.5
@@ -108522,7 +108591,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16915
+ - uid: 16927
components:
- rot: -1.5707963267948966 rad
pos: 42.5,0.5
@@ -108530,7 +108599,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16916
+ - uid: 16928
components:
- rot: -1.5707963267948966 rad
pos: 43.5,0.5
@@ -108538,7 +108607,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16917
+ - uid: 16929
components:
- rot: -1.5707963267948966 rad
pos: 44.5,1.5
@@ -108546,7 +108615,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16918
+ - uid: 16930
components:
- rot: -1.5707963267948966 rad
pos: 45.5,1.5
@@ -108554,7 +108623,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16919
+ - uid: 16931
components:
- rot: -1.5707963267948966 rad
pos: 46.5,1.5
@@ -108562,7 +108631,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16920
+ - uid: 16932
components:
- rot: -1.5707963267948966 rad
pos: 47.5,1.5
@@ -108570,7 +108639,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16921
+ - uid: 16933
components:
- rot: -1.5707963267948966 rad
pos: 48.5,1.5
@@ -108578,7 +108647,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16922
+ - uid: 16934
components:
- rot: -1.5707963267948966 rad
pos: 49.5,1.5
@@ -108586,7 +108655,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16923
+ - uid: 16935
components:
- rot: -1.5707963267948966 rad
pos: 50.5,1.5
@@ -108594,7 +108663,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16924
+ - uid: 16936
components:
- rot: -1.5707963267948966 rad
pos: 51.5,1.5
@@ -108602,7 +108671,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16925
+ - uid: 16937
components:
- rot: -1.5707963267948966 rad
pos: 46.5,0.5
@@ -108610,7 +108679,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16926
+ - uid: 16938
components:
- rot: -1.5707963267948966 rad
pos: 47.5,0.5
@@ -108618,7 +108687,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16927
+ - uid: 16939
components:
- rot: -1.5707963267948966 rad
pos: 48.5,0.5
@@ -108626,7 +108695,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16928
+ - uid: 16940
components:
- rot: -1.5707963267948966 rad
pos: 49.5,0.5
@@ -108634,7 +108703,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16929
+ - uid: 16941
components:
- rot: -1.5707963267948966 rad
pos: 50.5,0.5
@@ -108642,7 +108711,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16930
+ - uid: 16942
components:
- rot: -1.5707963267948966 rad
pos: 51.5,0.5
@@ -108650,7 +108719,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16931
+ - uid: 16943
components:
- rot: -1.5707963267948966 rad
pos: 52.5,0.5
@@ -108658,7 +108727,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16932
+ - uid: 16944
components:
- rot: -1.5707963267948966 rad
pos: 54.5,0.5
@@ -108666,7 +108735,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16933
+ - uid: 16945
components:
- rot: -1.5707963267948966 rad
pos: 55.5,0.5
@@ -108674,7 +108743,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16934
+ - uid: 16946
components:
- rot: -1.5707963267948966 rad
pos: 56.5,0.5
@@ -108682,7 +108751,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16935
+ - uid: 16947
components:
- rot: -1.5707963267948966 rad
pos: 53.5,1.5
@@ -108690,7 +108759,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16936
+ - uid: 16948
components:
- rot: -1.5707963267948966 rad
pos: 54.5,1.5
@@ -108698,7 +108767,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16937
+ - uid: 16949
components:
- rot: -1.5707963267948966 rad
pos: 55.5,1.5
@@ -108706,105 +108775,105 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16938
+ - uid: 16950
components:
- pos: 52.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16939
+ - uid: 16951
components:
- pos: 52.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16940
+ - uid: 16952
components:
- pos: 52.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16941
+ - uid: 16953
components:
- pos: 52.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16942
+ - uid: 16954
components:
- pos: 52.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16943
+ - uid: 16955
components:
- pos: 52.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16944
+ - uid: 16956
components:
- pos: 52.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16945
+ - uid: 16957
components:
- pos: 52.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16946
+ - uid: 16958
components:
- pos: 52.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16947
+ - uid: 16959
components:
- pos: 53.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16948
+ - uid: 16960
components:
- pos: 53.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16949
+ - uid: 16961
components:
- pos: 53.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16950
+ - uid: 16962
components:
- pos: 53.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16951
+ - uid: 16963
components:
- pos: 53.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16952
+ - uid: 16964
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-5.5
@@ -108812,7 +108881,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16953
+ - uid: 16965
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-5.5
@@ -108820,21 +108889,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16954
+ - uid: 16966
components:
- pos: 42.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16955
+ - uid: 16967
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16956
+ - uid: 16968
components:
- rot: 3.141592653589793 rad
pos: 44.5,-0.5
@@ -108842,7 +108911,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16957
+ - uid: 16969
components:
- rot: 3.141592653589793 rad
pos: 44.5,-2.5
@@ -108850,7 +108919,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16958
+ - uid: 16970
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-3.5
@@ -108858,7 +108927,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16959
+ - uid: 16971
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-3.5
@@ -108866,7 +108935,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16960
+ - uid: 16972
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-3.5
@@ -108874,7 +108943,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16961
+ - uid: 16973
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-3.5
@@ -108882,7 +108951,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16962
+ - uid: 16974
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-3.5
@@ -108890,7 +108959,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16963
+ - uid: 16975
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-3.5
@@ -108898,7 +108967,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16964
+ - uid: 16976
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-3.5
@@ -108906,7 +108975,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16965
+ - uid: 16977
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-2.5
@@ -108914,7 +108983,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16966
+ - uid: 16978
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-2.5
@@ -108922,7 +108991,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16967
+ - uid: 16979
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-2.5
@@ -108930,7 +108999,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16968
+ - uid: 16980
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-2.5
@@ -108938,7 +109007,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16969
+ - uid: 16981
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-2.5
@@ -108946,56 +109015,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16970
+ - uid: 16982
components:
- pos: 42.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16971
+ - uid: 16983
components:
- pos: 42.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16972
+ - uid: 16984
components:
- pos: 41.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16973
+ - uid: 16985
components:
- pos: 41.5,12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16974
+ - uid: 16986
components:
- pos: 41.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16975
+ - uid: 16987
components:
- pos: 41.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16976
+ - uid: 16988
components:
- pos: 42.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16977
+ - uid: 16989
components:
- rot: -1.5707963267948966 rad
pos: 39.5,10.5
@@ -109003,49 +109072,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16978
+ - uid: 16990
components:
- pos: 24.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16979
+ - uid: 16991
components:
- pos: 24.5,-47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16980
+ - uid: 16992
components:
- pos: 24.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16981
+ - uid: 16993
components:
- pos: 24.5,-49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16982
+ - uid: 16994
components:
- pos: 24.5,-50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16983
+ - uid: 16995
components:
- pos: 24.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16984
+ - uid: 16996
components:
- rot: 3.141592653589793 rad
pos: 25.5,-59.5
@@ -109053,7 +109122,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16985
+ - uid: 16997
components:
- rot: 3.141592653589793 rad
pos: 25.5,-53.5
@@ -109061,7 +109130,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16986
+ - uid: 16998
components:
- rot: 3.141592653589793 rad
pos: 25.5,-54.5
@@ -109069,77 +109138,77 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16987
+ - uid: 16999
components:
- pos: 26.5,-46.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16988
+ - uid: 17000
components:
- pos: 26.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16989
+ - uid: 17001
components:
- pos: 26.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16990
+ - uid: 17002
components:
- pos: 26.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16991
+ - uid: 17003
components:
- pos: 26.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16992
+ - uid: 17004
components:
- pos: 26.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16993
+ - uid: 17005
components:
- pos: 26.5,-52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16994
+ - uid: 17006
components:
- pos: 26.5,-54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16995
+ - uid: 17007
components:
- pos: 26.5,-55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16996
+ - uid: 17008
components:
- pos: 26.5,-57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 16997
+ - uid: 17009
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-2.5
@@ -109147,7 +109216,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16998
+ - uid: 17010
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-2.5
@@ -109155,7 +109224,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 16999
+ - uid: 17011
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-2.5
@@ -109163,7 +109232,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17000
+ - uid: 17012
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-1.5
@@ -109171,28 +109240,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17001
+ - uid: 17013
components:
- pos: 52.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17002
+ - uid: 17014
components:
- pos: 52.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17003
+ - uid: 17015
components:
- pos: 52.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17004
+ - uid: 17016
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-11.5
@@ -109200,7 +109269,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17005
+ - uid: 17017
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-11.5
@@ -109208,7 +109277,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17006
+ - uid: 17018
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-12.5
@@ -109216,7 +109285,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17007
+ - uid: 17019
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-5.5
@@ -109224,35 +109293,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17008
+ - uid: 17020
components:
- pos: 62.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17009
+ - uid: 17021
components:
- pos: 62.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17010
+ - uid: 17022
components:
- pos: 73.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17011
+ - uid: 17023
components:
- pos: 49.5,-56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17012
+ - uid: 17024
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-43.5
@@ -109260,7 +109329,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17013
+ - uid: 17025
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-41.5
@@ -109268,7 +109337,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17014
+ - uid: 17026
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-41.5
@@ -109276,7 +109345,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17015
+ - uid: 17027
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-41.5
@@ -109284,7 +109353,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17016
+ - uid: 17028
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-41.5
@@ -109292,7 +109361,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17017
+ - uid: 17029
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-41.5
@@ -109300,7 +109369,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17018
+ - uid: 17030
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-43.5
@@ -109308,7 +109377,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17019
+ - uid: 17031
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-43.5
@@ -109316,7 +109385,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17020
+ - uid: 17032
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-43.5
@@ -109324,7 +109393,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17021
+ - uid: 17033
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-43.5
@@ -109332,63 +109401,63 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17022
+ - uid: 17034
components:
- pos: 43.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17023
+ - uid: 17035
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17024
+ - uid: 17036
components:
- pos: 43.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17025
+ - uid: 17037
components:
- pos: 43.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17026
+ - uid: 17038
components:
- pos: 43.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17027
+ - uid: 17039
components:
- pos: 42.5,-39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17028
+ - uid: 17040
components:
- pos: 42.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17029
+ - uid: 17041
components:
- pos: 42.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17030
+ - uid: 17042
components:
- rot: 3.141592653589793 rad
pos: 49.5,-44.5
@@ -109396,7 +109465,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17031
+ - uid: 17043
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-41.5
@@ -109404,7 +109473,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17032
+ - uid: 17044
components:
- rot: 1.5707963267948966 rad
pos: 52.5,-41.5
@@ -109412,7 +109481,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17033
+ - uid: 17045
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-41.5
@@ -109420,7 +109489,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17034
+ - uid: 17046
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-41.5
@@ -109428,7 +109497,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17035
+ - uid: 17047
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-41.5
@@ -109436,21 +109505,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17036
+ - uid: 17048
components:
- pos: 57.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17037
+ - uid: 17049
components:
- pos: 57.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17038
+ - uid: 17050
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-45.5
@@ -109458,7 +109527,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17039
+ - uid: 17051
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-45.5
@@ -109466,7 +109535,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17040
+ - uid: 17052
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-45.5
@@ -109474,7 +109543,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17041
+ - uid: 17053
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-45.5
@@ -109482,7 +109551,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17042
+ - uid: 17054
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-45.5
@@ -109490,7 +109559,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17043
+ - uid: 17055
components:
- rot: 3.141592653589793 rad
pos: 55.5,-44.5
@@ -109498,7 +109567,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17044
+ - uid: 17056
components:
- rot: 3.141592653589793 rad
pos: 55.5,-43.5
@@ -109506,56 +109575,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17045
+ - uid: 17057
components:
- pos: 50.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17046
+ - uid: 17058
components:
- pos: 50.5,-43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17047
+ - uid: 17059
components:
- pos: 50.5,-44.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17048
+ - uid: 17060
components:
- pos: 50.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17049
+ - uid: 17061
components:
- pos: 50.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17050
+ - uid: 17062
components:
- pos: 50.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17051
+ - uid: 17063
components:
- pos: 49.5,-53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17052
+ - uid: 17064
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-45.5
@@ -109563,7 +109632,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17053
+ - uid: 17065
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-45.5
@@ -109571,7 +109640,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17054
+ - uid: 17066
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-45.5
@@ -109579,7 +109648,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17055
+ - uid: 17067
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-45.5
@@ -109587,7 +109656,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17056
+ - uid: 17068
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-46.5
@@ -109595,7 +109664,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17057
+ - uid: 17069
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-46.5
@@ -109603,7 +109672,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17058
+ - uid: 17070
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-46.5
@@ -109611,7 +109680,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17059
+ - uid: 17071
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-46.5
@@ -109619,7 +109688,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17060
+ - uid: 17072
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-46.5
@@ -109627,7 +109696,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17061
+ - uid: 17073
components:
- rot: 3.141592653589793 rad
pos: 73.5,-32.5
@@ -109635,7 +109704,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17062
+ - uid: 17074
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-44.5
@@ -109643,7 +109712,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17063
+ - uid: 17075
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-44.5
@@ -109651,7 +109720,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17064
+ - uid: 17076
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-44.5
@@ -109659,7 +109728,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17065
+ - uid: 17077
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-45.5
@@ -109667,7 +109736,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17066
+ - uid: 17078
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-45.5
@@ -109675,7 +109744,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17067
+ - uid: 17079
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-45.5
@@ -109683,7 +109752,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17068
+ - uid: 17080
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-45.5
@@ -109691,7 +109760,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17069
+ - uid: 17081
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-45.5
@@ -109699,7 +109768,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17070
+ - uid: 17082
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-45.5
@@ -109707,7 +109776,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17071
+ - uid: 17083
components:
- rot: 3.141592653589793 rad
pos: 61.5,-43.5
@@ -109715,7 +109784,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17072
+ - uid: 17084
components:
- rot: 3.141592653589793 rad
pos: 61.5,-42.5
@@ -109723,7 +109792,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17073
+ - uid: 17085
components:
- rot: 3.141592653589793 rad
pos: 61.5,-41.5
@@ -109731,7 +109800,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17074
+ - uid: 17086
components:
- rot: 3.141592653589793 rad
pos: 61.5,-40.5
@@ -109739,7 +109808,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17075
+ - uid: 17087
components:
- rot: 3.141592653589793 rad
pos: 61.5,-39.5
@@ -109747,7 +109816,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17076
+ - uid: 17088
components:
- rot: 3.141592653589793 rad
pos: 61.5,-37.5
@@ -109755,7 +109824,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17077
+ - uid: 17089
components:
- rot: 3.141592653589793 rad
pos: 61.5,-36.5
@@ -109763,7 +109832,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17078
+ - uid: 17090
components:
- rot: 3.141592653589793 rad
pos: 63.5,-44.5
@@ -109771,7 +109840,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17079
+ - uid: 17091
components:
- rot: 3.141592653589793 rad
pos: 63.5,-43.5
@@ -109779,28 +109848,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17080
+ - uid: 17092
components:
- pos: 62.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17081
+ - uid: 17093
components:
- pos: 62.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17082
+ - uid: 17094
components:
- pos: 62.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17083
+ - uid: 17095
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-35.5
@@ -109808,7 +109877,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17084
+ - uid: 17096
components:
- rot: 3.141592653589793 rad
pos: 61.5,-45.5
@@ -109816,7 +109885,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17085
+ - uid: 17097
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-34.5
@@ -109824,7 +109893,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17086
+ - uid: 17098
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-34.5
@@ -109832,21 +109901,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17087
+ - uid: 17099
components:
- pos: 64.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17088
+ - uid: 17100
components:
- pos: 60.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17089
+ - uid: 17101
components:
- rot: 3.141592653589793 rad
pos: 63.5,-30.5
@@ -109854,7 +109923,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17090
+ - uid: 17102
components:
- rot: 3.141592653589793 rad
pos: 63.5,-29.5
@@ -109862,7 +109931,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17091
+ - uid: 17103
components:
- rot: 3.141592653589793 rad
pos: 63.5,-28.5
@@ -109870,7 +109939,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17092
+ - uid: 17104
components:
- rot: 3.141592653589793 rad
pos: 63.5,-27.5
@@ -109878,7 +109947,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17093
+ - uid: 17105
components:
- rot: 3.141592653589793 rad
pos: 61.5,-31.5
@@ -109886,7 +109955,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17094
+ - uid: 17106
components:
- rot: 3.141592653589793 rad
pos: 61.5,-30.5
@@ -109894,7 +109963,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17095
+ - uid: 17107
components:
- rot: 3.141592653589793 rad
pos: 61.5,-29.5
@@ -109902,7 +109971,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17096
+ - uid: 17108
components:
- rot: 3.141592653589793 rad
pos: 61.5,-28.5
@@ -109910,7 +109979,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17097
+ - uid: 17109
components:
- rot: 3.141592653589793 rad
pos: 61.5,-27.5
@@ -109918,7 +109987,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17098
+ - uid: 17110
components:
- rot: 3.141592653589793 rad
pos: 61.5,-26.5
@@ -109926,7 +109995,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17099
+ - uid: 17111
components:
- rot: 3.141592653589793 rad
pos: 61.5,-25.5
@@ -109934,399 +110003,399 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17100
+ - uid: 17112
components:
- pos: 61.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17101
+ - uid: 17113
components:
- pos: 61.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17102
+ - uid: 17114
components:
- pos: 61.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17103
+ - uid: 17115
components:
- pos: 61.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17104
+ - uid: 17116
components:
- pos: 61.5,-19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17105
+ - uid: 17117
components:
- pos: 61.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17106
+ - uid: 17118
components:
- pos: 61.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17107
+ - uid: 17119
components:
- pos: 61.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17108
+ - uid: 17120
components:
- pos: 61.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17109
+ - uid: 17121
components:
- pos: 61.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17110
+ - uid: 17122
components:
- pos: 61.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17111
+ - uid: 17123
components:
- pos: 61.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17112
+ - uid: 17124
components:
- pos: 61.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17113
+ - uid: 17125
components:
- pos: 62.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17114
+ - uid: 17126
components:
- pos: 62.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17115
+ - uid: 17127
components:
- pos: 62.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17116
+ - uid: 17128
components:
- pos: 61.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17117
+ - uid: 17129
components:
- pos: 61.5,-4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17118
+ - uid: 17130
components:
- pos: 61.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17119
+ - uid: 17131
components:
- pos: 63.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17120
+ - uid: 17132
components:
- pos: 63.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17121
+ - uid: 17133
components:
- pos: 63.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17122
+ - uid: 17134
components:
- pos: 63.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17123
+ - uid: 17135
components:
- pos: 63.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17124
+ - uid: 17136
components:
- pos: 63.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17125
+ - uid: 17137
components:
- pos: 63.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17126
+ - uid: 17138
components:
- pos: 63.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17127
+ - uid: 17139
components:
- pos: 63.5,-17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17128
+ - uid: 17140
components:
- pos: 63.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17129
+ - uid: 17141
components:
- pos: 63.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17130
+ - uid: 17142
components:
- pos: 63.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17131
+ - uid: 17143
components:
- pos: 63.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17132
+ - uid: 17144
components:
- pos: 63.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17133
+ - uid: 17145
components:
- pos: 63.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17134
+ - uid: 17146
components:
- pos: 63.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17135
+ - uid: 17147
components:
- pos: 63.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17136
+ - uid: 17148
components:
- pos: 63.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17137
+ - uid: 17149
components:
- pos: 63.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17138
+ - uid: 17150
components:
- pos: 63.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17139
+ - uid: 17151
components:
- pos: 63.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17140
+ - uid: 17152
components:
- pos: 63.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17141
+ - uid: 17153
components:
- pos: 64.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17142
+ - uid: 17154
components:
- pos: 64.5,-49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17143
+ - uid: 17155
components:
- pos: 64.5,-50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17144
+ - uid: 17156
components:
- pos: 64.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17145
+ - uid: 17157
components:
- pos: 60.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17146
+ - uid: 17158
components:
- pos: 60.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17147
+ - uid: 17159
components:
- pos: 60.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17148
+ - uid: 17160
components:
- pos: 60.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17149
+ - uid: 17161
components:
- pos: 50.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17150
+ - uid: 17162
components:
- pos: 49.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17151
+ - uid: 17163
components:
- pos: 49.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17152
+ - uid: 17164
components:
- pos: 49.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17153
+ - uid: 17165
components:
- pos: 50.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17154
+ - uid: 17166
components:
- pos: 50.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17155
+ - uid: 17167
components:
- pos: 49.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17156
+ - uid: 17168
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-45.5
@@ -110334,7 +110403,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17157
+ - uid: 17169
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-45.5
@@ -110342,7 +110411,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17158
+ - uid: 17170
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-47.5
@@ -110350,7 +110419,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17159
+ - uid: 17171
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-47.5
@@ -110358,7 +110427,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17160
+ - uid: 17172
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-47.5
@@ -110366,7 +110435,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17161
+ - uid: 17173
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-47.5
@@ -110374,7 +110443,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17162
+ - uid: 17174
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-48.5
@@ -110382,7 +110451,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17163
+ - uid: 17175
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-48.5
@@ -110390,7 +110459,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17164
+ - uid: 17176
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-48.5
@@ -110398,7 +110467,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17165
+ - uid: 17177
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-48.5
@@ -110406,7 +110475,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17166
+ - uid: 17178
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-48.5
@@ -110414,7 +110483,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17167
+ - uid: 17179
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-48.5
@@ -110422,7 +110491,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17168
+ - uid: 17180
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-48.5
@@ -110430,7 +110499,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17169
+ - uid: 17181
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-48.5
@@ -110438,7 +110507,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17170
+ - uid: 17182
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-48.5
@@ -110446,7 +110515,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17171
+ - uid: 17183
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-48.5
@@ -110454,7 +110523,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17172
+ - uid: 17184
components:
- rot: 3.141592653589793 rad
pos: 25.5,-55.5
@@ -110462,7 +110531,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17173
+ - uid: 17185
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-58.5
@@ -110470,7 +110539,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17174
+ - uid: 17186
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-58.5
@@ -110478,7 +110547,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17175
+ - uid: 17187
components:
- rot: 3.141592653589793 rad
pos: 25.5,-56.5
@@ -110486,7 +110555,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17176
+ - uid: 17188
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-60.5
@@ -110494,7 +110563,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17177
+ - uid: 17189
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-60.5
@@ -110502,7 +110571,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17178
+ - uid: 17190
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-60.5
@@ -110510,7 +110579,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17179
+ - uid: 17191
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-60.5
@@ -110518,7 +110587,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17180
+ - uid: 17192
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-60.5
@@ -110526,7 +110595,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17181
+ - uid: 17193
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-60.5
@@ -110534,7 +110603,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17182
+ - uid: 17194
components:
- rot: 3.141592653589793 rad
pos: 29.5,-57.5
@@ -110542,56 +110611,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17183
+ - uid: 17195
components:
- pos: 29.5,-55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17184
+ - uid: 17196
components:
- pos: 29.5,-54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17185
+ - uid: 17197
components:
- pos: 29.5,-53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17186
+ - uid: 17198
components:
- pos: 29.5,-51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17187
+ - uid: 17199
components:
- pos: 29.5,-50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17188
+ - uid: 17200
components:
- pos: 29.5,-49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17189
+ - uid: 17201
components:
- pos: 29.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17190
+ - uid: 17202
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-47.5
@@ -110599,7 +110668,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17191
+ - uid: 17203
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-47.5
@@ -110607,7 +110676,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17192
+ - uid: 17204
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-47.5
@@ -110615,7 +110684,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17193
+ - uid: 17205
components:
- rot: 3.141592653589793 rad
pos: 29.5,-46.5
@@ -110623,7 +110692,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17194
+ - uid: 17206
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-58.5
@@ -110631,49 +110700,49 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17195
+ - uid: 17207
components:
- pos: 32.5,-59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17196
+ - uid: 17208
components:
- pos: 32.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17197
+ - uid: 17209
components:
- pos: 32.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17198
+ - uid: 17210
components:
- pos: 32.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17199
+ - uid: 17211
components:
- pos: 32.5,-54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17200
+ - uid: 17212
components:
- pos: 32.5,-53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17201
+ - uid: 17213
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-52.5
@@ -110681,7 +110750,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17202
+ - uid: 17214
components:
- rot: 3.141592653589793 rad
pos: 34.5,-51.5
@@ -110689,7 +110758,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17203
+ - uid: 17215
components:
- rot: 3.141592653589793 rad
pos: 34.5,-50.5
@@ -110697,7 +110766,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17204
+ - uid: 17216
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-49.5
@@ -110705,7 +110774,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17205
+ - uid: 17217
components:
- rot: 3.141592653589793 rad
pos: 34.5,-47.5
@@ -110713,7 +110782,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17206
+ - uid: 17218
components:
- rot: 3.141592653589793 rad
pos: 34.5,-46.5
@@ -110721,7 +110790,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17207
+ - uid: 17219
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-49.5
@@ -110729,7 +110798,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17208
+ - uid: 17220
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-49.5
@@ -110737,7 +110806,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17209
+ - uid: 17221
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-49.5
@@ -110745,7 +110814,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17210
+ - uid: 17222
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-49.5
@@ -110753,33 +110822,33 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17211
+ - uid: 17223
components:
- rot: 3.141592653589793 rad
pos: 48.5,-59.5
parent: 2
type: Transform
- - uid: 17212
+ - uid: 17224
components:
- rot: 3.141592653589793 rad
pos: 51.5,-59.5
parent: 2
type: Transform
- - uid: 17213
+ - uid: 17225
components:
- pos: 49.5,-60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17214
+ - uid: 17226
components:
- pos: 49.5,-62.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17215
+ - uid: 17227
components:
- rot: -1.5707963267948966 rad
pos: -14.5,7.5
@@ -110787,7 +110856,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17216
+ - uid: 17228
components:
- rot: -1.5707963267948966 rad
pos: -15.5,7.5
@@ -110795,7 +110864,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17217
+ - uid: 17229
components:
- rot: -1.5707963267948966 rad
pos: -16.5,7.5
@@ -110803,7 +110872,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17218
+ - uid: 17230
components:
- rot: -1.5707963267948966 rad
pos: -17.5,7.5
@@ -110811,7 +110880,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17219
+ - uid: 17231
components:
- rot: -1.5707963267948966 rad
pos: -18.5,7.5
@@ -110819,7 +110888,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17220
+ - uid: 17232
components:
- rot: 1.5707963267948966 rad
pos: -15.5,1.5
@@ -110827,7 +110896,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17221
+ - uid: 17233
components:
- rot: 1.5707963267948966 rad
pos: -16.5,1.5
@@ -110835,21 +110904,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17222
+ - uid: 17234
components:
- pos: -19.5,6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17223
+ - uid: 17235
components:
- pos: -19.5,5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17224
+ - uid: 17236
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-25.5
@@ -110857,7 +110926,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17225
+ - uid: 17237
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-25.5
@@ -110865,7 +110934,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17226
+ - uid: 17238
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-25.5
@@ -110873,7 +110942,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17227
+ - uid: 17239
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-25.5
@@ -110881,7 +110950,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17228
+ - uid: 17240
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-25.5
@@ -110889,7 +110958,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17229
+ - uid: 17241
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-25.5
@@ -110897,7 +110966,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17230
+ - uid: 17242
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-25.5
@@ -110905,7 +110974,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17231
+ - uid: 17243
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-25.5
@@ -110913,7 +110982,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17232
+ - uid: 17244
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-25.5
@@ -110921,7 +110990,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17233
+ - uid: 17245
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-27.5
@@ -110929,7 +110998,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17234
+ - uid: 17246
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-27.5
@@ -110937,7 +111006,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17235
+ - uid: 17247
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-27.5
@@ -110945,7 +111014,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17236
+ - uid: 17248
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-27.5
@@ -110953,7 +111022,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17237
+ - uid: 17249
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-27.5
@@ -110961,7 +111030,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17238
+ - uid: 17250
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-27.5
@@ -110969,7 +111038,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17239
+ - uid: 17251
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-27.5
@@ -110977,7 +111046,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17240
+ - uid: 17252
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-27.5
@@ -110985,7 +111054,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17241
+ - uid: 17253
components:
- rot: 3.141592653589793 rad
pos: -18.5,-26.5
@@ -110993,7 +111062,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17242
+ - uid: 17254
components:
- rot: 3.141592653589793 rad
pos: -18.5,-27.5
@@ -111001,7 +111070,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17243
+ - uid: 17255
components:
- rot: 3.141592653589793 rad
pos: -18.5,-28.5
@@ -111009,7 +111078,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17244
+ - uid: 17256
components:
- rot: 3.141592653589793 rad
pos: -18.5,-29.5
@@ -111017,7 +111086,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17245
+ - uid: 17257
components:
- rot: 3.141592653589793 rad
pos: -18.5,-30.5
@@ -111025,7 +111094,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17246
+ - uid: 17258
components:
- rot: 3.141592653589793 rad
pos: -20.5,-28.5
@@ -111033,7 +111102,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17247
+ - uid: 17259
components:
- rot: 3.141592653589793 rad
pos: -20.5,-29.5
@@ -111041,7 +111110,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17248
+ - uid: 17260
components:
- rot: 3.141592653589793 rad
pos: -20.5,-30.5
@@ -111049,7 +111118,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17249
+ - uid: 17261
components:
- rot: 3.141592653589793 rad
pos: -20.5,-31.5
@@ -111057,7 +111126,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17250
+ - uid: 17262
components:
- rot: 3.141592653589793 rad
pos: -20.5,-32.5
@@ -111065,7 +111134,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17251
+ - uid: 17263
components:
- rot: 3.141592653589793 rad
pos: -20.5,-26.5
@@ -111073,7 +111142,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17252
+ - uid: 17264
components:
- rot: 3.141592653589793 rad
pos: -20.5,-25.5
@@ -111081,7 +111150,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17253
+ - uid: 17265
components:
- rot: 3.141592653589793 rad
pos: -20.5,-24.5
@@ -111089,7 +111158,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17254
+ - uid: 17266
components:
- rot: 3.141592653589793 rad
pos: -20.5,-23.5
@@ -111097,7 +111166,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17255
+ - uid: 17267
components:
- rot: 3.141592653589793 rad
pos: -18.5,-24.5
@@ -111105,7 +111174,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17256
+ - uid: 17268
components:
- rot: 3.141592653589793 rad
pos: -18.5,-23.5
@@ -111113,7 +111182,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17257
+ - uid: 17269
components:
- rot: 3.141592653589793 rad
pos: -18.5,-22.5
@@ -111121,7 +111190,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17258
+ - uid: 17270
components:
- rot: 3.141592653589793 rad
pos: -18.5,-20.5
@@ -111129,7 +111198,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17259
+ - uid: 17271
components:
- rot: 3.141592653589793 rad
pos: -20.5,-21.5
@@ -111137,7 +111206,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17260
+ - uid: 17272
components:
- rot: 3.141592653589793 rad
pos: -20.5,-20.5
@@ -111145,7 +111214,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17261
+ - uid: 17273
components:
- rot: 3.141592653589793 rad
pos: -20.5,-19.5
@@ -111153,7 +111222,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17262
+ - uid: 17274
components:
- rot: 3.141592653589793 rad
pos: -18.5,-18.5
@@ -111161,7 +111230,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17263
+ - uid: 17275
components:
- rot: 3.141592653589793 rad
pos: -18.5,-17.5
@@ -111169,14 +111238,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17264
+ - uid: 17276
components:
- pos: -23.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17265
+ - uid: 17277
components:
- rot: 3.141592653589793 rad
pos: -20.5,-17.5
@@ -111184,7 +111253,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17266
+ - uid: 17278
components:
- rot: 3.141592653589793 rad
pos: -20.5,-16.5
@@ -111192,7 +111261,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17267
+ - uid: 17279
components:
- rot: 3.141592653589793 rad
pos: -20.5,-15.5
@@ -111200,7 +111269,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17268
+ - uid: 17280
components:
- rot: 3.141592653589793 rad
pos: -18.5,-15.5
@@ -111208,7 +111277,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17269
+ - uid: 17281
components:
- rot: 3.141592653589793 rad
pos: -18.5,-14.5
@@ -111216,7 +111285,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17270
+ - uid: 17282
components:
- rot: 3.141592653589793 rad
pos: -18.5,-13.5
@@ -111224,7 +111293,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17271
+ - uid: 17283
components:
- rot: 3.141592653589793 rad
pos: -18.5,-12.5
@@ -111232,7 +111301,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17272
+ - uid: 17284
components:
- rot: 3.141592653589793 rad
pos: -18.5,-11.5
@@ -111240,7 +111309,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17273
+ - uid: 17285
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-13.5
@@ -111248,7 +111317,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17274
+ - uid: 17286
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-13.5
@@ -111256,7 +111325,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17275
+ - uid: 17287
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-13.5
@@ -111264,7 +111333,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17276
+ - uid: 17288
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-10.5
@@ -111272,7 +111341,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17277
+ - uid: 17289
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-10.5
@@ -111280,7 +111349,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17278
+ - uid: 17290
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-10.5
@@ -111288,7 +111357,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17279
+ - uid: 17291
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-10.5
@@ -111296,7 +111365,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17280
+ - uid: 17292
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-10.5
@@ -111304,7 +111373,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17281
+ - uid: 17293
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-10.5
@@ -111312,7 +111381,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17282
+ - uid: 17294
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-10.5
@@ -111320,7 +111389,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17283
+ - uid: 17295
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-13.5
@@ -111328,7 +111397,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17284
+ - uid: 17296
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-13.5
@@ -111336,91 +111405,91 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17285
+ - uid: 17297
components:
- pos: -20.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17286
+ - uid: 17298
components:
- pos: -20.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17287
+ - uid: 17299
components:
- pos: -20.5,-10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17288
+ - uid: 17300
components:
- pos: -20.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17289
+ - uid: 17301
components:
- pos: -20.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17290
+ - uid: 17302
components:
- pos: -20.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17291
+ - uid: 17303
components:
- pos: -20.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17292
+ - uid: 17304
components:
- pos: -18.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17293
+ - uid: 17305
components:
- pos: -18.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17294
+ - uid: 17306
components:
- pos: -18.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17295
+ - uid: 17307
components:
- pos: -18.5,-6.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17296
+ - uid: 17308
components:
- pos: -18.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17297
+ - uid: 17309
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-22.5
@@ -111428,7 +111497,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17298
+ - uid: 17310
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-22.5
@@ -111436,7 +111505,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17299
+ - uid: 17311
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-22.5
@@ -111444,7 +111513,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17300
+ - uid: 17312
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-21.5
@@ -111452,7 +111521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17301
+ - uid: 17313
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-21.5
@@ -111460,7 +111529,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17302
+ - uid: 17314
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-21.5
@@ -111468,7 +111537,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17303
+ - uid: 17315
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-21.5
@@ -111476,28 +111545,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17304
+ - uid: 17316
components:
- pos: -25.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17305
+ - uid: 17317
components:
- pos: -25.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17306
+ - uid: 17318
components:
- pos: -25.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17307
+ - uid: 17319
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-17.5
@@ -111505,7 +111574,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17308
+ - uid: 17320
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-17.5
@@ -111513,7 +111582,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17309
+ - uid: 17321
components:
- rot: 3.141592653589793 rad
pos: -20.5,-18.5
@@ -111521,42 +111590,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17310
+ - uid: 17322
components:
- pos: -23.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17311
+ - uid: 17323
components:
- pos: -23.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17312
+ - uid: 17324
components:
- pos: -23.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17313
+ - uid: 17325
components:
- pos: -23.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17314
+ - uid: 17326
components:
- pos: -18.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17315
+ - uid: 17327
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-16.5
@@ -111564,7 +111633,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17316
+ - uid: 17328
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-16.5
@@ -111572,7 +111641,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17317
+ - uid: 17329
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-16.5
@@ -111580,7 +111649,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17318
+ - uid: 17330
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-16.5
@@ -111588,7 +111657,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17319
+ - uid: 17331
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-16.5
@@ -111596,7 +111665,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17320
+ - uid: 17332
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-42.5
@@ -111604,7 +111673,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17321
+ - uid: 17333
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-42.5
@@ -111612,7 +111681,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17322
+ - uid: 17334
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-58.5
@@ -111620,7 +111689,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17323
+ - uid: 17335
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-58.5
@@ -111628,7 +111697,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17324
+ - uid: 17336
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-58.5
@@ -111636,7 +111705,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17325
+ - uid: 17337
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-58.5
@@ -111644,7 +111713,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17326
+ - uid: 17338
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-58.5
@@ -111652,7 +111721,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17327
+ - uid: 17339
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-58.5
@@ -111660,7 +111729,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17328
+ - uid: 17340
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-60.5
@@ -111668,7 +111737,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17329
+ - uid: 17341
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-60.5
@@ -111676,7 +111745,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17330
+ - uid: 17342
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-60.5
@@ -111684,7 +111753,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17331
+ - uid: 17343
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-60.5
@@ -111692,7 +111761,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17332
+ - uid: 17344
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-60.5
@@ -111700,7 +111769,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17333
+ - uid: 17345
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-61.5
@@ -111708,7 +111777,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17334
+ - uid: 17346
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-61.5
@@ -111716,7 +111785,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17335
+ - uid: 17347
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-61.5
@@ -111724,7 +111793,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17336
+ - uid: 17348
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-61.5
@@ -111732,7 +111801,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17337
+ - uid: 17349
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-58.5
@@ -111740,7 +111809,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17338
+ - uid: 17350
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-60.5
@@ -111748,7 +111817,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17339
+ - uid: 17351
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-60.5
@@ -111756,7 +111825,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17340
+ - uid: 17352
components:
- rot: 3.141592653589793 rad
pos: 38.5,-57.5
@@ -111764,7 +111833,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17341
+ - uid: 17353
components:
- rot: 3.141592653589793 rad
pos: 38.5,-56.5
@@ -111772,7 +111841,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17342
+ - uid: 17354
components:
- rot: 3.141592653589793 rad
pos: 40.5,-59.5
@@ -111780,7 +111849,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17343
+ - uid: 17355
components:
- rot: 3.141592653589793 rad
pos: 40.5,-58.5
@@ -111788,7 +111857,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17344
+ - uid: 17356
components:
- rot: 3.141592653589793 rad
pos: 40.5,-57.5
@@ -111796,7 +111865,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17345
+ - uid: 17357
components:
- rot: 3.141592653589793 rad
pos: 40.5,-56.5
@@ -111804,7 +111873,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17346
+ - uid: 17358
components:
- rot: 3.141592653589793 rad
pos: 38.5,-59.5
@@ -111812,7 +111881,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17347
+ - uid: 17359
components:
- rot: 3.141592653589793 rad
pos: 38.5,-60.5
@@ -111820,7 +111889,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17348
+ - uid: 17360
components:
- rot: 3.141592653589793 rad
pos: 38.5,-61.5
@@ -111828,7 +111897,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17349
+ - uid: 17361
components:
- rot: 3.141592653589793 rad
pos: 38.5,-62.5
@@ -111836,7 +111905,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17350
+ - uid: 17362
components:
- rot: 3.141592653589793 rad
pos: 40.5,-61.5
@@ -111844,7 +111913,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17351
+ - uid: 17363
components:
- rot: 3.141592653589793 rad
pos: 40.5,-62.5
@@ -111852,7 +111921,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17352
+ - uid: 17364
components:
- rot: 3.141592653589793 rad
pos: 40.5,-63.5
@@ -111860,7 +111929,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17353
+ - uid: 17365
components:
- rot: 3.141592653589793 rad
pos: 40.5,-64.5
@@ -111868,7 +111937,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17354
+ - uid: 17366
components:
- rot: 3.141592653589793 rad
pos: 38.5,-64.5
@@ -111876,7 +111945,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17355
+ - uid: 17367
components:
- rot: 3.141592653589793 rad
pos: 38.5,-65.5
@@ -111884,7 +111953,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17356
+ - uid: 17368
components:
- rot: 3.141592653589793 rad
pos: 38.5,-66.5
@@ -111892,7 +111961,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17357
+ - uid: 17369
components:
- rot: 3.141592653589793 rad
pos: 38.5,-67.5
@@ -111900,7 +111969,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17358
+ - uid: 17370
components:
- rot: 3.141592653589793 rad
pos: 38.5,-68.5
@@ -111908,7 +111977,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17359
+ - uid: 17371
components:
- rot: 3.141592653589793 rad
pos: 40.5,-66.5
@@ -111916,7 +111985,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17360
+ - uid: 17372
components:
- rot: 3.141592653589793 rad
pos: 40.5,-67.5
@@ -111924,7 +111993,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17361
+ - uid: 17373
components:
- rot: 3.141592653589793 rad
pos: 40.5,-68.5
@@ -111932,14 +112001,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17362
+ - uid: 17374
components:
- pos: 50.5,-53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17363
+ - uid: 17375
components:
- rot: 3.141592653589793 rad
pos: 52.5,-56.5
@@ -111947,7 +112016,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17364
+ - uid: 17376
components:
- rot: 3.141592653589793 rad
pos: 52.5,-55.5
@@ -111955,7 +112024,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17365
+ - uid: 17377
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-54.5
@@ -111963,7 +112032,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17366
+ - uid: 17378
components:
- rot: 3.141592653589793 rad
pos: -14.5,2.5
@@ -111971,7 +112040,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17367
+ - uid: 17379
components:
- rot: 3.141592653589793 rad
pos: -14.5,3.5
@@ -111979,7 +112048,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17368
+ - uid: 17380
components:
- rot: 3.141592653589793 rad
pos: -14.5,4.5
@@ -111987,7 +112056,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17369
+ - uid: 17381
components:
- rot: 3.141592653589793 rad
pos: -14.5,5.5
@@ -111995,7 +112064,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17370
+ - uid: 17382
components:
- rot: -1.5707963267948966 rad
pos: -15.5,6.5
@@ -112003,7 +112072,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17371
+ - uid: 17383
components:
- rot: -1.5707963267948966 rad
pos: -16.5,6.5
@@ -112011,7 +112080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17372
+ - uid: 17384
components:
- rot: -1.5707963267948966 rad
pos: -17.5,6.5
@@ -112019,7 +112088,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17373
+ - uid: 17385
components:
- rot: 3.141592653589793 rad
pos: -18.5,7.5
@@ -112027,7 +112096,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17374
+ - uid: 17386
components:
- rot: 3.141592653589793 rad
pos: -18.5,8.5
@@ -112035,7 +112104,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17375
+ - uid: 17387
components:
- rot: 3.141592653589793 rad
pos: -18.5,9.5
@@ -112043,7 +112112,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17376
+ - uid: 17388
components:
- rot: 3.141592653589793 rad
pos: -18.5,10.5
@@ -112051,7 +112120,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17377
+ - uid: 17389
components:
- rot: 3.141592653589793 rad
pos: -18.5,11.5
@@ -112059,7 +112128,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17378
+ - uid: 17390
components:
- rot: 3.141592653589793 rad
pos: -20.5,8.5
@@ -112067,7 +112136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17379
+ - uid: 17391
components:
- rot: 3.141592653589793 rad
pos: -20.5,9.5
@@ -112075,7 +112144,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17380
+ - uid: 17392
components:
- rot: 3.141592653589793 rad
pos: -20.5,10.5
@@ -112083,7 +112152,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17381
+ - uid: 17393
components:
- rot: 3.141592653589793 rad
pos: -20.5,11.5
@@ -112091,7 +112160,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17382
+ - uid: 17394
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-4.5
@@ -112099,7 +112168,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17383
+ - uid: 17395
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-4.5
@@ -112107,7 +112176,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17384
+ - uid: 17396
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-4.5
@@ -112115,7 +112184,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17385
+ - uid: 17397
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-4.5
@@ -112123,7 +112192,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17386
+ - uid: 17398
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-4.5
@@ -112131,7 +112200,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17387
+ - uid: 17399
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-5.5
@@ -112139,7 +112208,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17388
+ - uid: 17400
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-5.5
@@ -112147,7 +112216,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17389
+ - uid: 17401
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-5.5
@@ -112155,7 +112224,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17390
+ - uid: 17402
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-5.5
@@ -112163,7 +112232,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17391
+ - uid: 17403
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-5.5
@@ -112171,7 +112240,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17392
+ - uid: 17404
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-13.5
@@ -112179,7 +112248,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17393
+ - uid: 17405
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-13.5
@@ -112187,7 +112256,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17394
+ - uid: 17406
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-10.5
@@ -112195,7 +112264,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17395
+ - uid: 17407
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-10.5
@@ -112203,7 +112272,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17396
+ - uid: 17408
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-10.5
@@ -112211,152 +112280,152 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17397
+ - uid: 17409
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-60.5
parent: 2
type: Transform
- - uid: 17398
+ - uid: 17410
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-60.5
parent: 2
type: Transform
- - uid: 17399
+ - uid: 17411
components:
- pos: -18.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17400
+ - uid: 17412
components:
- pos: -18.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17401
+ - uid: 17413
components:
- pos: -18.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17402
+ - uid: 17414
components:
- pos: -18.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17403
+ - uid: 17415
components:
- pos: -18.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17404
+ - uid: 17416
components:
- pos: -18.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17405
+ - uid: 17417
components:
- pos: -18.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17406
+ - uid: 17418
components:
- pos: -18.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17407
+ - uid: 17419
components:
- pos: -18.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17408
+ - uid: 17420
components:
- pos: -18.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17409
+ - uid: 17421
components:
- pos: -20.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17410
+ - uid: 17422
components:
- pos: -20.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17411
+ - uid: 17423
components:
- pos: -20.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17412
+ - uid: 17424
components:
- pos: -20.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17413
+ - uid: 17425
components:
- pos: -20.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17414
+ - uid: 17426
components:
- pos: -20.5,-39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17415
+ - uid: 17427
components:
- pos: -20.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17416
+ - uid: 17428
components:
- pos: -18.5,-44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17417
+ - uid: 17429
components:
- pos: -18.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17418
+ - uid: 17430
components:
- rot: 3.141592653589793 rad
pos: -20.5,-42.5
@@ -112364,7 +112433,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17419
+ - uid: 17431
components:
- rot: 3.141592653589793 rad
pos: -20.5,-44.5
@@ -112372,7 +112441,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17420
+ - uid: 17432
components:
- rot: 3.141592653589793 rad
pos: -20.5,-45.5
@@ -112380,7 +112449,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17421
+ - uid: 17433
components:
- rot: 3.141592653589793 rad
pos: -20.5,-46.5
@@ -112388,7 +112457,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17422
+ - uid: 17434
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-72.5
@@ -112396,7 +112465,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17423
+ - uid: 17435
components:
- rot: 3.141592653589793 rad
pos: 29.5,-79.5
@@ -112404,7 +112473,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17424
+ - uid: 17436
components:
- rot: 3.141592653589793 rad
pos: 29.5,-84.5
@@ -112412,7 +112481,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17425
+ - uid: 17437
components:
- rot: 3.141592653589793 rad
pos: 48.5,-79.5
@@ -112420,7 +112489,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17426
+ - uid: 17438
components:
- rot: 3.141592653589793 rad
pos: 48.5,-75.5
@@ -112428,7 +112497,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17427
+ - uid: 17439
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-72.5
@@ -112436,7 +112505,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17428
+ - uid: 17440
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-72.5
@@ -112444,35 +112513,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17429
+ - uid: 17441
components:
- pos: 38.5,-70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17430
+ - uid: 17442
components:
- pos: 38.5,-69.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17431
+ - uid: 17443
components:
- pos: 40.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17432
+ - uid: 17444
components:
- pos: 40.5,-70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17433
+ - uid: 17445
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-73.5
@@ -112480,7 +112549,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17434
+ - uid: 17446
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-73.5
@@ -112488,7 +112557,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17435
+ - uid: 17447
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-73.5
@@ -112496,7 +112565,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17436
+ - uid: 17448
components:
- rot: 3.141592653589793 rad
pos: 30.5,-81.5
@@ -112504,7 +112573,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17437
+ - uid: 17449
components:
- rot: 3.141592653589793 rad
pos: 29.5,-80.5
@@ -112512,7 +112581,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17438
+ - uid: 17450
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-72.5
@@ -112520,7 +112589,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17439
+ - uid: 17451
components:
- rot: 3.141592653589793 rad
pos: 47.5,-79.5
@@ -112528,7 +112597,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17440
+ - uid: 17452
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-72.5
@@ -112536,7 +112605,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17441
+ - uid: 17453
components:
- rot: 3.141592653589793 rad
pos: 47.5,-73.5
@@ -112544,7 +112613,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17442
+ - uid: 17454
components:
- rot: 3.141592653589793 rad
pos: 29.5,-78.5
@@ -112552,7 +112621,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17443
+ - uid: 17455
components:
- rot: 3.141592653589793 rad
pos: 30.5,-73.5
@@ -112560,7 +112629,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17444
+ - uid: 17456
components:
- rot: 3.141592653589793 rad
pos: 29.5,-81.5
@@ -112568,7 +112637,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17445
+ - uid: 17457
components:
- rot: 3.141592653589793 rad
pos: 2.5,-59.5
@@ -112576,7 +112645,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17446
+ - uid: 17458
components:
- rot: 3.141592653589793 rad
pos: 2.5,-58.5
@@ -112584,7 +112653,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17447
+ - uid: 17459
components:
- rot: 3.141592653589793 rad
pos: 3.5,-60.5
@@ -112592,7 +112661,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17448
+ - uid: 17460
components:
- rot: 3.141592653589793 rad
pos: 3.5,-59.5
@@ -112600,7 +112669,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17449
+ - uid: 17461
components:
- rot: 3.141592653589793 rad
pos: 3.5,-58.5
@@ -112608,7 +112677,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17450
+ - uid: 17462
components:
- rot: 3.141592653589793 rad
pos: 2.5,-57.5
@@ -112616,7 +112685,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17451
+ - uid: 17463
components:
- rot: 3.141592653589793 rad
pos: -41.5,-7.5
@@ -112624,14 +112693,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17452
+ - uid: 17464
components:
- pos: -31.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17453
+ - uid: 17465
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-17.5
@@ -112639,7 +112708,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17454
+ - uid: 17466
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-17.5
@@ -112647,7 +112716,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17455
+ - uid: 17467
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-16.5
@@ -112655,7 +112724,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17456
+ - uid: 17468
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-16.5
@@ -112663,28 +112732,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17457
+ - uid: 17469
components:
- pos: -31.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17458
+ - uid: 17470
components:
- pos: -31.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17459
+ - uid: 17471
components:
- pos: -31.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17460
+ - uid: 17472
components:
- rot: 3.141592653589793 rad
pos: -32.5,-11.5
@@ -112692,7 +112761,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17461
+ - uid: 17473
components:
- rot: 3.141592653589793 rad
pos: -32.5,-12.5
@@ -112700,7 +112769,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17462
+ - uid: 17474
components:
- rot: 3.141592653589793 rad
pos: -32.5,-13.5
@@ -112708,7 +112777,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17463
+ - uid: 17475
components:
- rot: 3.141592653589793 rad
pos: -32.5,-14.5
@@ -112716,7 +112785,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17464
+ - uid: 17476
components:
- rot: 3.141592653589793 rad
pos: -32.5,-15.5
@@ -112724,7 +112793,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17465
+ - uid: 17477
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-11.5
@@ -112732,7 +112801,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17466
+ - uid: 17478
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-11.5
@@ -112740,7 +112809,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17467
+ - uid: 17479
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-11.5
@@ -112748,7 +112817,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17468
+ - uid: 17480
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-11.5
@@ -112756,7 +112825,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17469
+ - uid: 17481
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-10.5
@@ -112764,7 +112833,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17470
+ - uid: 17482
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-10.5
@@ -112772,112 +112841,112 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17471
+ - uid: 17483
components:
- pos: -32.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17472
+ - uid: 17484
components:
- pos: -32.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17473
+ - uid: 17485
components:
- pos: -32.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17474
+ - uid: 17486
components:
- pos: -31.5,-19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17475
+ - uid: 17487
components:
- pos: -31.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17476
+ - uid: 17488
components:
- pos: -31.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17477
+ - uid: 17489
components:
- pos: -32.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17478
+ - uid: 17490
components:
- pos: -32.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17479
+ - uid: 17491
components:
- pos: -32.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17480
+ - uid: 17492
components:
- pos: -32.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17481
+ - uid: 17493
components:
- pos: -31.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17482
+ - uid: 17494
components:
- pos: -31.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17483
+ - uid: 17495
components:
- pos: -31.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17484
+ - uid: 17496
components:
- pos: -31.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17485
+ - uid: 17497
components:
- pos: -31.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17486
+ - uid: 17498
components:
- rot: 3.141592653589793 rad
pos: -32.5,-26.5
@@ -112885,7 +112954,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17487
+ - uid: 17499
components:
- rot: 3.141592653589793 rad
pos: -32.5,-27.5
@@ -112893,7 +112962,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17488
+ - uid: 17500
components:
- rot: 3.141592653589793 rad
pos: -32.5,-28.5
@@ -112901,7 +112970,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17489
+ - uid: 17501
components:
- rot: 3.141592653589793 rad
pos: -32.5,-29.5
@@ -112909,7 +112978,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17490
+ - uid: 17502
components:
- rot: 3.141592653589793 rad
pos: -32.5,-30.5
@@ -112917,7 +112986,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17491
+ - uid: 17503
components:
- rot: 3.141592653589793 rad
pos: -31.5,-28.5
@@ -112925,7 +112994,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17492
+ - uid: 17504
components:
- rot: 3.141592653589793 rad
pos: -31.5,-29.5
@@ -112933,7 +113002,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17493
+ - uid: 17505
components:
- rot: 3.141592653589793 rad
pos: -31.5,-30.5
@@ -112941,7 +113010,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17494
+ - uid: 17506
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-15.5
@@ -112949,7 +113018,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17495
+ - uid: 17507
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-15.5
@@ -112957,7 +113026,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17496
+ - uid: 17508
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-17.5
@@ -112965,7 +113034,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17497
+ - uid: 17509
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-11.5
@@ -112973,7 +113042,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17498
+ - uid: 17510
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-11.5
@@ -112981,7 +113050,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17499
+ - uid: 17511
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-11.5
@@ -112989,7 +113058,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17500
+ - uid: 17512
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-11.5
@@ -112997,7 +113066,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17501
+ - uid: 17513
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-10.5
@@ -113005,7 +113074,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17502
+ - uid: 17514
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-10.5
@@ -113013,7 +113082,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17503
+ - uid: 17515
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-10.5
@@ -113021,7 +113090,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17504
+ - uid: 17516
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-10.5
@@ -113029,7 +113098,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17505
+ - uid: 17517
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-10.5
@@ -113037,7 +113106,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17506
+ - uid: 17518
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-10.5
@@ -113045,70 +113114,70 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17507
+ - uid: 17519
components:
- pos: -42.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17508
+ - uid: 17520
components:
- pos: -42.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17509
+ - uid: 17521
components:
- pos: -42.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17510
+ - uid: 17522
components:
- pos: -42.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17511
+ - uid: 17523
components:
- pos: -41.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17512
+ - uid: 17524
components:
- pos: -41.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17513
+ - uid: 17525
components:
- pos: -41.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17514
+ - uid: 17526
components:
- pos: -41.5,-15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17515
+ - uid: 17527
components:
- pos: -20.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17516
+ - uid: 17528
components:
- rot: -1.5707963267948966 rad
pos: -19.5,6.5
@@ -113116,7 +113185,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17517
+ - uid: 17529
components:
- rot: -1.5707963267948966 rad
pos: -20.5,6.5
@@ -113124,7 +113193,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17518
+ - uid: 17530
components:
- rot: -1.5707963267948966 rad
pos: -21.5,6.5
@@ -113132,7 +113201,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17519
+ - uid: 17531
components:
- rot: -1.5707963267948966 rad
pos: -22.5,6.5
@@ -113140,7 +113209,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17520
+ - uid: 17532
components:
- rot: -1.5707963267948966 rad
pos: -23.5,6.5
@@ -113148,7 +113217,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17521
+ - uid: 17533
components:
- rot: -1.5707963267948966 rad
pos: -21.5,7.5
@@ -113156,7 +113225,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17522
+ - uid: 17534
components:
- rot: -1.5707963267948966 rad
pos: -22.5,7.5
@@ -113164,7 +113233,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17523
+ - uid: 17535
components:
- rot: -1.5707963267948966 rad
pos: -23.5,7.5
@@ -113172,7 +113241,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17524
+ - uid: 17536
components:
- rot: -1.5707963267948966 rad
pos: -24.5,6.5
@@ -113180,7 +113249,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17525
+ - uid: 17537
components:
- rot: -1.5707963267948966 rad
pos: -25.5,6.5
@@ -113188,7 +113257,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17526
+ - uid: 17538
components:
- rot: 3.141592653589793 rad
pos: -26.5,-3.5
@@ -113196,7 +113265,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17527
+ - uid: 17539
components:
- rot: 3.141592653589793 rad
pos: -26.5,-2.5
@@ -113204,7 +113273,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17528
+ - uid: 17540
components:
- rot: 3.141592653589793 rad
pos: -26.5,-1.5
@@ -113212,7 +113281,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17529
+ - uid: 17541
components:
- rot: 3.141592653589793 rad
pos: -26.5,-0.5
@@ -113220,7 +113289,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17530
+ - uid: 17542
components:
- rot: 3.141592653589793 rad
pos: -26.5,0.5
@@ -113228,7 +113297,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17531
+ - uid: 17543
components:
- rot: 3.141592653589793 rad
pos: -26.5,2.5
@@ -113236,7 +113305,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17532
+ - uid: 17544
components:
- rot: 3.141592653589793 rad
pos: -26.5,3.5
@@ -113244,7 +113313,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17533
+ - uid: 17545
components:
- rot: 3.141592653589793 rad
pos: -26.5,4.5
@@ -113252,7 +113321,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17534
+ - uid: 17546
components:
- rot: 3.141592653589793 rad
pos: -26.5,5.5
@@ -113260,7 +113329,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17535
+ - uid: 17547
components:
- rot: 3.141592653589793 rad
pos: -24.5,6.5
@@ -113268,7 +113337,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17536
+ - uid: 17548
components:
- rot: 3.141592653589793 rad
pos: -24.5,5.5
@@ -113276,7 +113345,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17537
+ - uid: 17549
components:
- rot: 3.141592653589793 rad
pos: -24.5,4.5
@@ -113284,7 +113353,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17538
+ - uid: 17550
components:
- rot: 3.141592653589793 rad
pos: -24.5,3.5
@@ -113292,7 +113361,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17539
+ - uid: 17551
components:
- rot: 3.141592653589793 rad
pos: -24.5,2.5
@@ -113300,7 +113369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17540
+ - uid: 17552
components:
- rot: 3.141592653589793 rad
pos: -24.5,1.5
@@ -113308,7 +113377,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17541
+ - uid: 17553
components:
- rot: 3.141592653589793 rad
pos: -24.5,-0.5
@@ -113316,7 +113385,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17542
+ - uid: 17554
components:
- rot: 3.141592653589793 rad
pos: -24.5,-1.5
@@ -113324,7 +113393,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17543
+ - uid: 17555
components:
- rot: 3.141592653589793 rad
pos: -24.5,-3.5
@@ -113332,7 +113401,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17544
+ - uid: 17556
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-10.5
@@ -113340,7 +113409,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17545
+ - uid: 17557
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-11.5
@@ -113348,7 +113417,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17546
+ - uid: 17558
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-11.5
@@ -113356,7 +113425,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17547
+ - uid: 17559
components:
- rot: 3.141592653589793 rad
pos: -41.5,-10.5
@@ -113364,7 +113433,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17548
+ - uid: 17560
components:
- rot: 3.141592653589793 rad
pos: -42.5,-7.5
@@ -113372,7 +113441,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17549
+ - uid: 17561
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-5.5
@@ -113380,7 +113449,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17550
+ - uid: 17562
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-5.5
@@ -113388,7 +113457,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17551
+ - uid: 17563
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-5.5
@@ -113396,7 +113465,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17552
+ - uid: 17564
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-5.5
@@ -113404,7 +113473,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17553
+ - uid: 17565
components:
- rot: 3.141592653589793 rad
pos: -41.5,-9.5
@@ -113412,7 +113481,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17554
+ - uid: 17566
components:
- rot: 3.141592653589793 rad
pos: -42.5,-9.5
@@ -113420,7 +113489,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17555
+ - uid: 17567
components:
- rot: 3.141592653589793 rad
pos: -42.5,-8.5
@@ -113428,7 +113497,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17556
+ - uid: 17568
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-6.5
@@ -113436,7 +113505,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17557
+ - uid: 17569
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-6.5
@@ -113444,7 +113513,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17558
+ - uid: 17570
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-6.5
@@ -113452,7 +113521,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17559
+ - uid: 17571
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-6.5
@@ -113460,7 +113529,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17560
+ - uid: 17572
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-5.5
@@ -113468,7 +113537,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17561
+ - uid: 17573
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-5.5
@@ -113476,7 +113545,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17562
+ - uid: 17574
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-5.5
@@ -113484,7 +113553,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17563
+ - uid: 17575
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-5.5
@@ -113492,7 +113561,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17564
+ - uid: 17576
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-5.5
@@ -113500,7 +113569,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17565
+ - uid: 17577
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-5.5
@@ -113508,7 +113577,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17566
+ - uid: 17578
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-6.5
@@ -113516,7 +113585,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17567
+ - uid: 17579
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-6.5
@@ -113524,7 +113593,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17568
+ - uid: 17580
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-6.5
@@ -113532,7 +113601,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17569
+ - uid: 17581
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-6.5
@@ -113540,119 +113609,119 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17570
+ - uid: 17582
components:
- pos: -53.5,-6.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17571
+ - uid: 17583
components:
- pos: -53.5,-7.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17572
+ - uid: 17584
components:
- pos: -53.5,-8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17573
+ - uid: 17585
components:
- pos: -53.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17574
+ - uid: 17586
components:
- pos: -53.5,-10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17575
+ - uid: 17587
components:
- pos: -53.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17576
+ - uid: 17588
components:
- pos: -53.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17577
+ - uid: 17589
components:
- pos: -52.5,-7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17578
+ - uid: 17590
components:
- pos: -52.5,-8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17579
+ - uid: 17591
components:
- pos: -52.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17580
+ - uid: 17592
components:
- pos: -52.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17581
+ - uid: 17593
components:
- pos: -52.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17582
+ - uid: 17594
components:
- pos: -52.5,-12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17583
+ - uid: 17595
components:
- pos: -52.5,-13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17584
+ - uid: 17596
components:
- pos: -52.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17585
+ - uid: 17597
components:
- pos: -52.5,-15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17586
+ - uid: 17598
components:
- rot: 3.141592653589793 rad
pos: -53.5,-14.5
@@ -113660,7 +113729,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17587
+ - uid: 17599
components:
- rot: 3.141592653589793 rad
pos: -53.5,-15.5
@@ -113668,7 +113737,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17588
+ - uid: 17600
components:
- rot: 3.141592653589793 rad
pos: -53.5,-16.5
@@ -113676,7 +113745,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17589
+ - uid: 17601
components:
- rot: 3.141592653589793 rad
pos: -53.5,-17.5
@@ -113684,7 +113753,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17590
+ - uid: 17602
components:
- rot: 3.141592653589793 rad
pos: -53.5,-18.5
@@ -113692,7 +113761,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17591
+ - uid: 17603
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-17.5
@@ -113700,7 +113769,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17592
+ - uid: 17604
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-19.5
@@ -113708,56 +113777,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17593
+ - uid: 17605
components:
- pos: -50.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17594
+ - uid: 17606
components:
- pos: -50.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17595
+ - uid: 17607
components:
- pos: -50.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17596
+ - uid: 17608
components:
- pos: -51.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17597
+ - uid: 17609
components:
- pos: -51.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17598
+ - uid: 17610
components:
- pos: -51.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17599
+ - uid: 17611
components:
- pos: -47.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17600
+ - uid: 17612
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-19.5
@@ -113765,7 +113834,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17601
+ - uid: 17613
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-19.5
@@ -113773,7 +113842,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17602
+ - uid: 17614
components:
- rot: 3.141592653589793 rad
pos: -41.5,-6.5
@@ -113781,7 +113850,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17603
+ - uid: 17615
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-23.5
@@ -113789,7 +113858,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17604
+ - uid: 17616
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-23.5
@@ -113797,77 +113866,77 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17605
+ - uid: 17617
components:
- pos: -53.5,-20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17606
+ - uid: 17618
components:
- pos: -53.5,-21.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17607
+ - uid: 17619
components:
- pos: -53.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17608
+ - uid: 17620
components:
- pos: -53.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17609
+ - uid: 17621
components:
- pos: -53.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17610
+ - uid: 17622
components:
- pos: -54.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17611
+ - uid: 17623
components:
- pos: -54.5,-19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17612
+ - uid: 17624
components:
- pos: -54.5,-20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17613
+ - uid: 17625
components:
- pos: -54.5,-21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17614
+ - uid: 17626
components:
- pos: -54.5,-22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17615
+ - uid: 17627
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-17.5
@@ -113875,7 +113944,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17616
+ - uid: 17628
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-25.5
@@ -113883,7 +113952,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17617
+ - uid: 17629
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-25.5
@@ -113891,7 +113960,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17618
+ - uid: 17630
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-25.5
@@ -113899,7 +113968,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17619
+ - uid: 17631
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-25.5
@@ -113907,7 +113976,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17620
+ - uid: 17632
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-25.5
@@ -113915,7 +113984,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17621
+ - uid: 17633
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-23.5
@@ -113923,7 +113992,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17622
+ - uid: 17634
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-23.5
@@ -113931,7 +114000,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17623
+ - uid: 17635
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-23.5
@@ -113939,7 +114008,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17624
+ - uid: 17636
components:
- rot: -1.5707963267948966 rad
pos: -59.5,-23.5
@@ -113947,7 +114016,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17625
+ - uid: 17637
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-23.5
@@ -113955,7 +114024,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17626
+ - uid: 17638
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-23.5
@@ -113963,7 +114032,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17627
+ - uid: 17639
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-23.5
@@ -113971,7 +114040,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17628
+ - uid: 17640
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-23.5
@@ -113979,7 +114048,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17629
+ - uid: 17641
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-23.5
@@ -113987,7 +114056,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17630
+ - uid: 17642
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-23.5
@@ -113995,49 +114064,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17631
+ - uid: 17643
components:
- pos: -68.5,-24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17632
+ - uid: 17644
components:
- pos: -68.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17633
+ - uid: 17645
components:
- pos: -68.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17634
+ - uid: 17646
components:
- pos: -68.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17635
+ - uid: 17647
components:
- pos: -68.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17636
+ - uid: 17648
components:
- pos: -68.5,-30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17637
+ - uid: 17649
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-25.5
@@ -114045,7 +114114,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17638
+ - uid: 17650
components:
- rot: -1.5707963267948966 rad
pos: -61.5,-25.5
@@ -114053,7 +114122,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17639
+ - uid: 17651
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-25.5
@@ -114061,7 +114130,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17640
+ - uid: 17652
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-25.5
@@ -114069,14 +114138,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17641
+ - uid: 17653
components:
- pos: -64.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17642
+ - uid: 17654
components:
- rot: 3.141592653589793 rad
pos: -64.5,-28.5
@@ -114084,7 +114153,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17643
+ - uid: 17655
components:
- rot: 3.141592653589793 rad
pos: -64.5,-29.5
@@ -114092,7 +114161,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17644
+ - uid: 17656
components:
- rot: 3.141592653589793 rad
pos: -64.5,-30.5
@@ -114100,486 +114169,486 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17645
+ - uid: 17657
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-42.5
parent: 2
type: Transform
- - uid: 17646
+ - uid: 17658
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-44.5
parent: 2
type: Transform
- - uid: 17647
+ - uid: 17659
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-46.5
parent: 2
type: Transform
- - uid: 17648
+ - uid: 17660
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-48.5
parent: 2
type: Transform
- - uid: 17649
+ - uid: 17661
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-50.5
parent: 2
type: Transform
- - uid: 17650
+ - uid: 17662
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-52.5
parent: 2
type: Transform
- - uid: 17651
+ - uid: 17663
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-54.5
parent: 2
type: Transform
- - uid: 17652
+ - uid: 17664
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-55.5
parent: 2
type: Transform
- - uid: 17653
+ - uid: 17665
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-55.5
parent: 2
type: Transform
- - uid: 17654
+ - uid: 17666
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-55.5
parent: 2
type: Transform
- - uid: 17655
+ - uid: 17667
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-53.5
parent: 2
type: Transform
- - uid: 17656
+ - uid: 17668
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-53.5
parent: 2
type: Transform
- - uid: 17657
+ - uid: 17669
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-53.5
parent: 2
type: Transform
- - uid: 17658
+ - uid: 17670
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-51.5
parent: 2
type: Transform
- - uid: 17659
+ - uid: 17671
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-51.5
parent: 2
type: Transform
- - uid: 17660
+ - uid: 17672
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-51.5
parent: 2
type: Transform
- - uid: 17661
+ - uid: 17673
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-49.5
parent: 2
type: Transform
- - uid: 17662
+ - uid: 17674
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-49.5
parent: 2
type: Transform
- - uid: 17663
+ - uid: 17675
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-49.5
parent: 2
type: Transform
- - uid: 17664
+ - uid: 17676
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-47.5
parent: 2
type: Transform
- - uid: 17665
+ - uid: 17677
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-47.5
parent: 2
type: Transform
- - uid: 17666
+ - uid: 17678
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-47.5
parent: 2
type: Transform
- - uid: 17667
+ - uid: 17679
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-45.5
parent: 2
type: Transform
- - uid: 17668
+ - uid: 17680
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-45.5
parent: 2
type: Transform
- - uid: 17669
+ - uid: 17681
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-45.5
parent: 2
type: Transform
- - uid: 17670
+ - uid: 17682
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-43.5
parent: 2
type: Transform
- - uid: 17671
+ - uid: 17683
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-43.5
parent: 2
type: Transform
- - uid: 17672
+ - uid: 17684
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-43.5
parent: 2
type: Transform
- - uid: 17673
+ - uid: 17685
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-52.5
parent: 2
type: Transform
- - uid: 17674
+ - uid: 17686
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-52.5
parent: 2
type: Transform
- - uid: 17675
+ - uid: 17687
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-54.5
parent: 2
type: Transform
- - uid: 17676
+ - uid: 17688
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-54.5
parent: 2
type: Transform
- - uid: 17677
+ - uid: 17689
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-50.5
parent: 2
type: Transform
- - uid: 17678
+ - uid: 17690
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-50.5
parent: 2
type: Transform
- - uid: 17679
+ - uid: 17691
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-48.5
parent: 2
type: Transform
- - uid: 17680
+ - uid: 17692
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-48.5
parent: 2
type: Transform
- - uid: 17681
+ - uid: 17693
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-46.5
parent: 2
type: Transform
- - uid: 17682
+ - uid: 17694
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-46.5
parent: 2
type: Transform
- - uid: 17683
+ - uid: 17695
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-44.5
parent: 2
type: Transform
- - uid: 17684
+ - uid: 17696
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-44.5
parent: 2
type: Transform
- - uid: 17685
+ - uid: 17697
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-42.5
parent: 2
type: Transform
- - uid: 17686
+ - uid: 17698
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-42.5
parent: 2
type: Transform
- - uid: 17687
+ - uid: 17699
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-55.5
parent: 2
type: Transform
- - uid: 17688
+ - uid: 17700
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-55.5
parent: 2
type: Transform
- - uid: 17689
+ - uid: 17701
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-53.5
parent: 2
type: Transform
- - uid: 17690
+ - uid: 17702
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-53.5
parent: 2
type: Transform
- - uid: 17691
+ - uid: 17703
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-53.5
parent: 2
type: Transform
- - uid: 17692
+ - uid: 17704
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-51.5
parent: 2
type: Transform
- - uid: 17693
+ - uid: 17705
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-51.5
parent: 2
type: Transform
- - uid: 17694
+ - uid: 17706
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-51.5
parent: 2
type: Transform
- - uid: 17695
+ - uid: 17707
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-49.5
parent: 2
type: Transform
- - uid: 17696
+ - uid: 17708
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-49.5
parent: 2
type: Transform
- - uid: 17697
+ - uid: 17709
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-49.5
parent: 2
type: Transform
- - uid: 17698
+ - uid: 17710
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-47.5
parent: 2
type: Transform
- - uid: 17699
+ - uid: 17711
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-47.5
parent: 2
type: Transform
- - uid: 17700
+ - uid: 17712
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-47.5
parent: 2
type: Transform
- - uid: 17701
+ - uid: 17713
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-45.5
parent: 2
type: Transform
- - uid: 17702
+ - uid: 17714
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-45.5
parent: 2
type: Transform
- - uid: 17703
+ - uid: 17715
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-45.5
parent: 2
type: Transform
- - uid: 17704
+ - uid: 17716
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-43.5
parent: 2
type: Transform
- - uid: 17705
+ - uid: 17717
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-43.5
parent: 2
type: Transform
- - uid: 17706
+ - uid: 17718
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-43.5
parent: 2
type: Transform
- - uid: 17707
+ - uid: 17719
components:
- rot: 3.141592653589793 rad
pos: -42.5,-54.5
parent: 2
type: Transform
- - uid: 17708
+ - uid: 17720
components:
- rot: 3.141592653589793 rad
pos: -43.5,-54.5
parent: 2
type: Transform
- - uid: 17709
+ - uid: 17721
components:
- rot: 3.141592653589793 rad
pos: -43.5,-53.5
parent: 2
type: Transform
- - uid: 17710
+ - uid: 17722
components:
- pos: -42.5,-50.5
parent: 2
type: Transform
- - uid: 17711
+ - uid: 17723
components:
- pos: -42.5,-48.5
parent: 2
type: Transform
- - uid: 17712
+ - uid: 17724
components:
- pos: -42.5,-46.5
parent: 2
type: Transform
- - uid: 17713
+ - uid: 17725
components:
- pos: -42.5,-44.5
parent: 2
type: Transform
- - uid: 17714
+ - uid: 17726
components:
- pos: -42.5,-42.5
parent: 2
type: Transform
- - uid: 17715
+ - uid: 17727
components:
- pos: -44.5,-43.5
parent: 2
type: Transform
- - uid: 17716
+ - uid: 17728
components:
- pos: -44.5,-45.5
parent: 2
type: Transform
- - uid: 17717
+ - uid: 17729
components:
- pos: -44.5,-47.5
parent: 2
type: Transform
- - uid: 17718
+ - uid: 17730
components:
- pos: -44.5,-49.5
parent: 2
type: Transform
- - uid: 17719
+ - uid: 17731
components:
- pos: -44.5,-51.5
parent: 2
type: Transform
- - uid: 17720
+ - uid: 17732
components:
- pos: -44.5,-53.5
parent: 2
type: Transform
- - uid: 17721
+ - uid: 17733
components:
- pos: -44.5,-55.5
parent: 2
type: Transform
- - uid: 17722
+ - uid: 17734
components:
- pos: -44.5,-56.5
parent: 2
type: Transform
- - uid: 17723
+ - uid: 17735
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-57.5
parent: 2
type: Transform
- - uid: 17724
+ - uid: 17736
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-57.5
parent: 2
type: Transform
- - uid: 17725
+ - uid: 17737
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-57.5
parent: 2
type: Transform
- - uid: 17726
+ - uid: 17738
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-57.5
parent: 2
type: Transform
- - uid: 17727
+ - uid: 17739
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-55.5
@@ -114587,7 +114656,7 @@ entities:
type: Transform
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 17728
+ - uid: 17740
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-57.5
@@ -114595,37 +114664,37 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17729
+ - uid: 17741
components:
- rot: 3.141592653589793 rad
pos: -42.5,-39.5
parent: 2
type: Transform
- - uid: 17730
+ - uid: 17742
components:
- rot: 3.141592653589793 rad
pos: -42.5,-38.5
parent: 2
type: Transform
- - uid: 17731
+ - uid: 17743
components:
- rot: 3.141592653589793 rad
pos: -42.5,-37.5
parent: 2
type: Transform
- - uid: 17732
+ - uid: 17744
components:
- rot: 3.141592653589793 rad
pos: -42.5,-36.5
parent: 2
type: Transform
- - uid: 17733
+ - uid: 17745
components:
- rot: 3.141592653589793 rad
pos: -38.5,-59.5
parent: 2
type: Transform
- - uid: 17734
+ - uid: 17746
components:
- rot: 3.141592653589793 rad
pos: -40.5,-52.5
@@ -114633,7 +114702,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17735
+ - uid: 17747
components:
- rot: 3.141592653589793 rad
pos: -37.5,-52.5
@@ -114641,7 +114710,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17736
+ - uid: 17748
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-55.5
@@ -114649,7 +114718,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17737
+ - uid: 17749
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-55.5
@@ -114657,7 +114726,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17738
+ - uid: 17750
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-48.5
@@ -114665,7 +114734,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17739
+ - uid: 17751
components:
- rot: 3.141592653589793 rad
pos: -38.5,-47.5
@@ -114673,7 +114742,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17740
+ - uid: 17752
components:
- rot: 3.141592653589793 rad
pos: -38.5,-46.5
@@ -114681,7 +114750,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17741
+ - uid: 17753
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-57.5
@@ -114689,35 +114758,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17742
+ - uid: 17754
components:
- pos: -31.5,-31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17743
+ - uid: 17755
components:
- pos: -32.5,-31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17744
+ - uid: 17756
components:
- pos: -32.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17745
+ - uid: 17757
components:
- pos: -31.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17746
+ - uid: 17758
components:
- rot: 3.141592653589793 rad
pos: -31.5,-33.5
@@ -114725,7 +114794,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17747
+ - uid: 17759
components:
- rot: 3.141592653589793 rad
pos: -32.5,-34.5
@@ -114733,7 +114802,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17748
+ - uid: 17760
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-33.5
@@ -114741,7 +114810,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17749
+ - uid: 17761
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-33.5
@@ -114749,7 +114818,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17750
+ - uid: 17762
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-33.5
@@ -114757,7 +114826,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17751
+ - uid: 17763
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-33.5
@@ -114765,7 +114834,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17752
+ - uid: 17764
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-33.5
@@ -114773,7 +114842,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17753
+ - uid: 17765
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-33.5
@@ -114781,7 +114850,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17754
+ - uid: 17766
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-33.5
@@ -114789,7 +114858,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17755
+ - uid: 17767
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-33.5
@@ -114797,7 +114866,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17756
+ - uid: 17768
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-33.5
@@ -114805,7 +114874,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17757
+ - uid: 17769
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-33.5
@@ -114813,7 +114882,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17758
+ - uid: 17770
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-33.5
@@ -114821,7 +114890,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17759
+ - uid: 17771
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-34.5
@@ -114829,7 +114898,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17760
+ - uid: 17772
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-34.5
@@ -114837,7 +114906,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17761
+ - uid: 17773
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-34.5
@@ -114845,7 +114914,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17762
+ - uid: 17774
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-34.5
@@ -114853,7 +114922,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17763
+ - uid: 17775
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-34.5
@@ -114861,7 +114930,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17764
+ - uid: 17776
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-34.5
@@ -114869,70 +114938,70 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17765
+ - uid: 17777
components:
- pos: -32.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17766
+ - uid: 17778
components:
- pos: -32.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17767
+ - uid: 17779
components:
- pos: -32.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17768
+ - uid: 17780
components:
- pos: -31.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17769
+ - uid: 17781
components:
- pos: -31.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17770
+ - uid: 17782
components:
- pos: -31.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17771
+ - uid: 17783
components:
- pos: -31.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17772
+ - uid: 17784
components:
- pos: -31.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17773
+ - uid: 17785
components:
- pos: -32.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17774
+ - uid: 17786
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-34.5
@@ -114940,7 +115009,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17775
+ - uid: 17787
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-34.5
@@ -114948,7 +115017,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17776
+ - uid: 17788
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-34.5
@@ -114956,7 +115025,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17777
+ - uid: 17789
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-34.5
@@ -114964,7 +115033,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17778
+ - uid: 17790
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-34.5
@@ -114972,7 +115041,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17779
+ - uid: 17791
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-34.5
@@ -114980,21 +115049,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17780
+ - uid: 17792
components:
- pos: -37.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17781
+ - uid: 17793
components:
- pos: -37.5,-56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17782
+ - uid: 17794
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-55.5
@@ -115002,7 +115071,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17783
+ - uid: 17795
components:
- rot: 3.141592653589793 rad
pos: -35.5,-54.5
@@ -115010,7 +115079,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17784
+ - uid: 17796
components:
- rot: 3.141592653589793 rad
pos: -35.5,-52.5
@@ -115018,7 +115087,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17785
+ - uid: 17797
components:
- rot: 3.141592653589793 rad
pos: -35.5,-51.5
@@ -115026,7 +115095,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17786
+ - uid: 17798
components:
- rot: 3.141592653589793 rad
pos: -35.5,-50.5
@@ -115034,7 +115103,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17787
+ - uid: 17799
components:
- rot: 3.141592653589793 rad
pos: -35.5,-49.5
@@ -115042,7 +115111,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17788
+ - uid: 17800
components:
- rot: 3.141592653589793 rad
pos: -35.5,-48.5
@@ -115050,7 +115119,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17789
+ - uid: 17801
components:
- rot: 3.141592653589793 rad
pos: -35.5,-47.5
@@ -115058,7 +115127,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17790
+ - uid: 17802
components:
- rot: 3.141592653589793 rad
pos: -35.5,-46.5
@@ -115066,7 +115135,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17791
+ - uid: 17803
components:
- rot: 3.141592653589793 rad
pos: -35.5,-45.5
@@ -115074,7 +115143,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17792
+ - uid: 17804
components:
- rot: 3.141592653589793 rad
pos: -35.5,-43.5
@@ -115082,7 +115151,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17793
+ - uid: 17805
components:
- rot: 3.141592653589793 rad
pos: -35.5,-42.5
@@ -115090,7 +115159,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17794
+ - uid: 17806
components:
- rot: 3.141592653589793 rad
pos: -34.5,-56.5
@@ -115098,7 +115167,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17795
+ - uid: 17807
components:
- rot: 3.141592653589793 rad
pos: -34.5,-55.5
@@ -115106,7 +115175,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17796
+ - uid: 17808
components:
- rot: 3.141592653589793 rad
pos: -34.5,-54.5
@@ -115114,7 +115183,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17797
+ - uid: 17809
components:
- rot: 3.141592653589793 rad
pos: -34.5,-53.5
@@ -115122,7 +115191,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17798
+ - uid: 17810
components:
- rot: 3.141592653589793 rad
pos: -34.5,-52.5
@@ -115130,7 +115199,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17799
+ - uid: 17811
components:
- rot: 3.141592653589793 rad
pos: -34.5,-51.5
@@ -115138,7 +115207,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17800
+ - uid: 17812
components:
- rot: 3.141592653589793 rad
pos: -34.5,-50.5
@@ -115146,7 +115215,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17801
+ - uid: 17813
components:
- rot: 3.141592653589793 rad
pos: -34.5,-49.5
@@ -115154,7 +115223,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17802
+ - uid: 17814
components:
- rot: 3.141592653589793 rad
pos: -34.5,-48.5
@@ -115162,7 +115231,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17803
+ - uid: 17815
components:
- rot: 3.141592653589793 rad
pos: -34.5,-47.5
@@ -115170,7 +115239,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17804
+ - uid: 17816
components:
- rot: 3.141592653589793 rad
pos: -34.5,-46.5
@@ -115178,7 +115247,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17805
+ - uid: 17817
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-40.5
@@ -115186,14 +115255,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17806
+ - uid: 17818
components:
- pos: -34.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17807
+ - uid: 17819
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-41.5
@@ -115201,7 +115270,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17808
+ - uid: 17820
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-41.5
@@ -115209,7 +115278,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17809
+ - uid: 17821
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-41.5
@@ -115217,63 +115286,63 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17810
+ - uid: 17822
components:
- pos: -38.5,-44.5
parent: 2
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17811
+ - uid: 17823
components:
- pos: -38.5,-43.5
parent: 2
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 17812
+ - uid: 17824
components:
- pos: -38.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17813
+ - uid: 17825
components:
- pos: -38.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17814
+ - uid: 17826
components:
- pos: -38.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17815
+ - uid: 17827
components:
- pos: -38.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17816
+ - uid: 17828
components:
- pos: -38.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17817
+ - uid: 17829
components:
- pos: -38.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17818
+ - uid: 17830
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-35.5
@@ -115281,7 +115350,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17819
+ - uid: 17831
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-34.5
@@ -115289,7 +115358,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17820
+ - uid: 17832
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-34.5
@@ -115297,7 +115366,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17821
+ - uid: 17833
components:
- rot: 3.141592653589793 rad
pos: -41.5,-8.5
@@ -115305,7 +115374,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17822
+ - uid: 17834
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-57.5
@@ -115313,7 +115382,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17823
+ - uid: 17835
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-57.5
@@ -115321,7 +115390,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17824
+ - uid: 17836
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-57.5
@@ -115329,7 +115398,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17825
+ - uid: 17837
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-57.5
@@ -115337,7 +115406,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17826
+ - uid: 17838
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-60.5
@@ -115345,7 +115414,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17827
+ - uid: 17839
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-71.5
@@ -115353,7 +115422,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17828
+ - uid: 17840
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-71.5
@@ -115361,7 +115430,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17829
+ - uid: 17841
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-71.5
@@ -115369,7 +115438,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17830
+ - uid: 17842
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-71.5
@@ -115377,7 +115446,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17831
+ - uid: 17843
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-71.5
@@ -115385,7 +115454,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17832
+ - uid: 17844
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-71.5
@@ -115393,7 +115462,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17833
+ - uid: 17845
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-71.5
@@ -115401,7 +115470,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17834
+ - uid: 17846
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-71.5
@@ -115409,7 +115478,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17835
+ - uid: 17847
components:
- rot: 3.141592653589793 rad
pos: -28.5,-71.5
@@ -115417,7 +115486,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17836
+ - uid: 17848
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-71.5
@@ -115425,7 +115494,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17837
+ - uid: 17849
components:
- rot: 3.141592653589793 rad
pos: -28.5,-70.5
@@ -115433,7 +115502,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17838
+ - uid: 17850
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-71.5
@@ -115441,7 +115510,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17839
+ - uid: 17851
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-71.5
@@ -115449,7 +115518,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17840
+ - uid: 17852
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-71.5
@@ -115457,7 +115526,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17841
+ - uid: 17853
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-71.5
@@ -115465,7 +115534,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17842
+ - uid: 17854
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-71.5
@@ -115473,7 +115542,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17843
+ - uid: 17855
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-71.5
@@ -115481,7 +115550,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17844
+ - uid: 17856
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-71.5
@@ -115489,7 +115558,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17845
+ - uid: 17857
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-71.5
@@ -115497,7 +115566,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17846
+ - uid: 17858
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-71.5
@@ -115505,7 +115574,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17847
+ - uid: 17859
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-69.5
@@ -115513,7 +115582,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17848
+ - uid: 17860
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-69.5
@@ -115521,7 +115590,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17849
+ - uid: 17861
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-69.5
@@ -115529,7 +115598,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17850
+ - uid: 17862
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-69.5
@@ -115537,7 +115606,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17851
+ - uid: 17863
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-69.5
@@ -115545,7 +115614,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17852
+ - uid: 17864
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-69.5
@@ -115553,7 +115622,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17853
+ - uid: 17865
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-71.5
@@ -115561,7 +115630,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17854
+ - uid: 17866
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-69.5
@@ -115569,7 +115638,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17855
+ - uid: 17867
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-69.5
@@ -115577,7 +115646,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17856
+ - uid: 17868
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-69.5
@@ -115585,7 +115654,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17857
+ - uid: 17869
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-69.5
@@ -115593,7 +115662,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17858
+ - uid: 17870
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-69.5
@@ -115601,7 +115670,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17859
+ - uid: 17871
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-69.5
@@ -115609,7 +115678,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17860
+ - uid: 17872
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-69.5
@@ -115617,7 +115686,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17861
+ - uid: 17873
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-69.5
@@ -115625,7 +115694,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17862
+ - uid: 17874
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-69.5
@@ -115633,7 +115702,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17863
+ - uid: 17875
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-69.5
@@ -115641,7 +115710,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17864
+ - uid: 17876
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-69.5
@@ -115649,7 +115718,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17865
+ - uid: 17877
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-69.5
@@ -115657,14 +115726,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17866
+ - uid: 17878
components:
- pos: -42.5,-70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17867
+ - uid: 17879
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-58.5
@@ -115672,7 +115741,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17868
+ - uid: 17880
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-58.5
@@ -115680,7 +115749,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17869
+ - uid: 17881
components:
- rot: 3.141592653589793 rad
pos: 21.5,-28.5
@@ -115688,14 +115757,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17870
+ - uid: 17882
components:
- pos: 23.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17871
+ - uid: 17883
components:
- rot: 1.5707963267948966 rad
pos: -35.5,20.5
@@ -115703,7 +115772,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17872
+ - uid: 17884
components:
- rot: -1.5707963267948966 rad
pos: -13.5,39.5
@@ -115711,7 +115780,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17873
+ - uid: 17885
components:
- rot: -1.5707963267948966 rad
pos: -15.5,39.5
@@ -115719,7 +115788,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17874
+ - uid: 17886
components:
- rot: -1.5707963267948966 rad
pos: -14.5,39.5
@@ -115727,7 +115796,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17875
+ - uid: 17887
components:
- rot: -1.5707963267948966 rad
pos: -20.5,23.5
@@ -115735,91 +115804,91 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17876
+ - uid: 17888
components:
- pos: -20.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17877
+ - uid: 17889
components:
- pos: -20.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17878
+ - uid: 17890
components:
- pos: -20.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17879
+ - uid: 17891
components:
- pos: -20.5,18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17880
+ - uid: 17892
components:
- pos: -20.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17881
+ - uid: 17893
components:
- pos: -18.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17882
+ - uid: 17894
components:
- pos: -18.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17883
+ - uid: 17895
components:
- pos: -18.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17884
+ - uid: 17896
components:
- pos: -18.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17885
+ - uid: 17897
components:
- pos: -18.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17886
+ - uid: 17898
components:
- pos: -18.5,18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17887
+ - uid: 17899
components:
- pos: -18.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17888
+ - uid: 17900
components:
- rot: 3.141592653589793 rad
pos: -18.5,21.5
@@ -115827,7 +115896,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17889
+ - uid: 17901
components:
- rot: -1.5707963267948966 rad
pos: -21.5,20.5
@@ -115835,7 +115904,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17890
+ - uid: 17902
components:
- rot: -1.5707963267948966 rad
pos: -22.5,20.5
@@ -115843,7 +115912,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17891
+ - uid: 17903
components:
- rot: 3.141592653589793 rad
pos: -18.5,22.5
@@ -115851,7 +115920,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17892
+ - uid: 17904
components:
- rot: -1.5707963267948966 rad
pos: -19.5,23.5
@@ -115859,7 +115928,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17893
+ - uid: 17905
components:
- rot: -1.5707963267948966 rad
pos: -21.5,23.5
@@ -115867,7 +115936,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17894
+ - uid: 17906
components:
- rot: -1.5707963267948966 rad
pos: -22.5,23.5
@@ -115875,7 +115944,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17895
+ - uid: 17907
components:
- rot: -1.5707963267948966 rad
pos: -23.5,23.5
@@ -115883,7 +115952,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17896
+ - uid: 17908
components:
- rot: -1.5707963267948966 rad
pos: -25.5,23.5
@@ -115891,7 +115960,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17897
+ - uid: 17909
components:
- rot: -1.5707963267948966 rad
pos: -26.5,23.5
@@ -115899,7 +115968,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17898
+ - uid: 17910
components:
- rot: -1.5707963267948966 rad
pos: -27.5,23.5
@@ -115907,7 +115976,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17899
+ - uid: 17911
components:
- rot: 1.5707963267948966 rad
pos: -27.5,20.5
@@ -115915,7 +115984,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17900
+ - uid: 17912
components:
- rot: 1.5707963267948966 rad
pos: -26.5,20.5
@@ -115923,7 +115992,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17901
+ - uid: 17913
components:
- rot: 1.5707963267948966 rad
pos: -25.5,20.5
@@ -115931,7 +116000,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17902
+ - uid: 17914
components:
- rot: 1.5707963267948966 rad
pos: -24.5,20.5
@@ -115939,7 +116008,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17903
+ - uid: 17915
components:
- rot: 1.5707963267948966 rad
pos: -29.5,23.5
@@ -115947,7 +116016,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17904
+ - uid: 17916
components:
- rot: 1.5707963267948966 rad
pos: -30.5,23.5
@@ -115955,7 +116024,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17905
+ - uid: 17917
components:
- rot: 1.5707963267948966 rad
pos: -31.5,23.5
@@ -115963,7 +116032,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17906
+ - uid: 17918
components:
- rot: 1.5707963267948966 rad
pos: -29.5,20.5
@@ -115971,7 +116040,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17907
+ - uid: 17919
components:
- rot: 1.5707963267948966 rad
pos: -30.5,20.5
@@ -115979,7 +116048,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17908
+ - uid: 17920
components:
- rot: 1.5707963267948966 rad
pos: -31.5,20.5
@@ -115987,7 +116056,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17909
+ - uid: 17921
components:
- rot: 1.5707963267948966 rad
pos: -33.5,23.5
@@ -115995,7 +116064,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17910
+ - uid: 17922
components:
- rot: 1.5707963267948966 rad
pos: -34.5,23.5
@@ -116003,7 +116072,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17911
+ - uid: 17923
components:
- rot: 1.5707963267948966 rad
pos: -35.5,23.5
@@ -116011,7 +116080,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17912
+ - uid: 17924
components:
- rot: 1.5707963267948966 rad
pos: -36.5,23.5
@@ -116019,84 +116088,84 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17913
+ - uid: 17925
components:
- pos: -32.5,24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17914
+ - uid: 17926
components:
- pos: -32.5,25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17915
+ - uid: 17927
components:
- pos: -32.5,26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17916
+ - uid: 17928
components:
- pos: -32.5,27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17917
+ - uid: 17929
components:
- pos: -33.5,21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17918
+ - uid: 17930
components:
- pos: -33.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17919
+ - uid: 17931
components:
- pos: -33.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17920
+ - uid: 17932
components:
- pos: -33.5,24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17921
+ - uid: 17933
components:
- pos: -33.5,25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17922
+ - uid: 17934
components:
- pos: -33.5,26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17923
+ - uid: 17935
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17924
+ - uid: 17936
components:
- rot: 1.5707963267948966 rad
pos: -37.5,23.5
@@ -116104,7 +116173,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17925
+ - uid: 17937
components:
- rot: 1.5707963267948966 rad
pos: -38.5,23.5
@@ -116112,7 +116181,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17926
+ - uid: 17938
components:
- rot: 1.5707963267948966 rad
pos: -39.5,23.5
@@ -116120,7 +116189,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17927
+ - uid: 17939
components:
- rot: 1.5707963267948966 rad
pos: -37.5,20.5
@@ -116128,7 +116197,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17928
+ - uid: 17940
components:
- rot: 1.5707963267948966 rad
pos: -38.5,20.5
@@ -116136,7 +116205,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17929
+ - uid: 17941
components:
- rot: 1.5707963267948966 rad
pos: -39.5,20.5
@@ -116144,7 +116213,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17930
+ - uid: 17942
components:
- rot: 1.5707963267948966 rad
pos: -40.5,20.5
@@ -116152,84 +116221,84 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17931
+ - uid: 17943
components:
- pos: -40.5,24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17932
+ - uid: 17944
components:
- pos: -40.5,25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17933
+ - uid: 17945
components:
- pos: -40.5,26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17934
+ - uid: 17946
components:
- pos: -40.5,27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17935
+ - uid: 17947
components:
- pos: -41.5,21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17936
+ - uid: 17948
components:
- pos: -41.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17937
+ - uid: 17949
components:
- pos: -41.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17938
+ - uid: 17950
components:
- pos: -41.5,24.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17939
+ - uid: 17951
components:
- pos: -41.5,25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17940
+ - uid: 17952
components:
- pos: -41.5,26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17941
+ - uid: 17953
components:
- pos: -41.5,27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17942
+ - uid: 17954
components:
- rot: -1.5707963267948966 rad
pos: -12.5,39.5
@@ -116237,49 +116306,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17943
+ - uid: 17955
components:
- pos: -40.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17944
+ - uid: 17956
components:
- pos: -40.5,31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17945
+ - uid: 17957
components:
- pos: -41.5,30.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17946
+ - uid: 17958
components:
- pos: -40.5,29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17947
+ - uid: 17959
components:
- pos: -40.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17948
+ - uid: 17960
components:
- pos: -41.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17949
+ - uid: 17961
components:
- rot: -1.5707963267948966 rad
pos: -40.5,29.5
@@ -116287,7 +116356,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17950
+ - uid: 17962
components:
- rot: -1.5707963267948966 rad
pos: -39.5,29.5
@@ -116295,7 +116364,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17951
+ - uid: 17963
components:
- rot: -1.5707963267948966 rad
pos: -38.5,29.5
@@ -116303,7 +116372,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17952
+ - uid: 17964
components:
- rot: -1.5707963267948966 rad
pos: -39.5,30.5
@@ -116311,7 +116380,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17953
+ - uid: 17965
components:
- rot: -1.5707963267948966 rad
pos: -38.5,30.5
@@ -116319,7 +116388,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17954
+ - uid: 17966
components:
- rot: -1.5707963267948966 rad
pos: -41.5,33.5
@@ -116327,7 +116396,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17955
+ - uid: 17967
components:
- rot: -1.5707963267948966 rad
pos: -42.5,33.5
@@ -116335,7 +116404,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17956
+ - uid: 17968
components:
- rot: -1.5707963267948966 rad
pos: -43.5,33.5
@@ -116343,7 +116412,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17957
+ - uid: 17969
components:
- rot: -1.5707963267948966 rad
pos: -42.5,31.5
@@ -116351,7 +116420,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17958
+ - uid: 17970
components:
- rot: -1.5707963267948966 rad
pos: -43.5,31.5
@@ -116359,14 +116428,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17959
+ - uid: 17971
components:
- pos: -49.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17960
+ - uid: 17972
components:
- rot: 1.5707963267948966 rad
pos: -48.5,33.5
@@ -116374,7 +116443,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17961
+ - uid: 17973
components:
- rot: 1.5707963267948966 rad
pos: -47.5,33.5
@@ -116382,7 +116451,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17962
+ - uid: 17974
components:
- rot: 1.5707963267948966 rad
pos: -46.5,33.5
@@ -116390,7 +116459,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17963
+ - uid: 17975
components:
- rot: 1.5707963267948966 rad
pos: -45.5,31.5
@@ -116398,7 +116467,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17964
+ - uid: 17976
components:
- rot: -1.5707963267948966 rad
pos: -21.5,13.5
@@ -116406,7 +116475,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17965
+ - uid: 17977
components:
- rot: -1.5707963267948966 rad
pos: -22.5,13.5
@@ -116414,7 +116483,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17966
+ - uid: 17978
components:
- rot: -1.5707963267948966 rad
pos: -23.5,13.5
@@ -116422,7 +116491,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17967
+ - uid: 17979
components:
- rot: -1.5707963267948966 rad
pos: -24.5,13.5
@@ -116430,7 +116499,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17968
+ - uid: 17980
components:
- rot: -1.5707963267948966 rad
pos: -19.5,12.5
@@ -116438,7 +116507,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17969
+ - uid: 17981
components:
- rot: -1.5707963267948966 rad
pos: -20.5,12.5
@@ -116446,7 +116515,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17970
+ - uid: 17982
components:
- rot: -1.5707963267948966 rad
pos: -21.5,12.5
@@ -116454,7 +116523,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17971
+ - uid: 17983
components:
- rot: -1.5707963267948966 rad
pos: -22.5,12.5
@@ -116462,7 +116531,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17972
+ - uid: 17984
components:
- rot: -1.5707963267948966 rad
pos: -23.5,12.5
@@ -116470,7 +116539,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17973
+ - uid: 17985
components:
- rot: -1.5707963267948966 rad
pos: -24.5,12.5
@@ -116478,7 +116547,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17974
+ - uid: 17986
components:
- rot: -1.5707963267948966 rad
pos: -25.5,12.5
@@ -116486,14 +116555,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17975
+ - uid: 17987
components:
- pos: 71.5,-30.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 17976
+ - uid: 17988
components:
- rot: -1.5707963267948966 rad
pos: -27.5,1.5
@@ -116501,7 +116570,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17977
+ - uid: 17989
components:
- rot: -1.5707963267948966 rad
pos: -29.5,1.5
@@ -116509,7 +116578,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17978
+ - uid: 17990
components:
- rot: -1.5707963267948966 rad
pos: -30.5,1.5
@@ -116517,7 +116586,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17979
+ - uid: 17991
components:
- rot: -1.5707963267948966 rad
pos: -31.5,1.5
@@ -116525,7 +116594,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17980
+ - uid: 17992
components:
- rot: -1.5707963267948966 rad
pos: -32.5,1.5
@@ -116533,7 +116602,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17981
+ - uid: 17993
components:
- rot: -1.5707963267948966 rad
pos: -33.5,1.5
@@ -116541,7 +116610,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17982
+ - uid: 17994
components:
- rot: -1.5707963267948966 rad
pos: -34.5,1.5
@@ -116549,7 +116618,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17983
+ - uid: 17995
components:
- rot: -1.5707963267948966 rad
pos: -35.5,1.5
@@ -116557,7 +116626,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17984
+ - uid: 17996
components:
- rot: -1.5707963267948966 rad
pos: -36.5,1.5
@@ -116565,7 +116634,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17985
+ - uid: 17997
components:
- rot: -1.5707963267948966 rad
pos: -25.5,0.5
@@ -116573,7 +116642,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17986
+ - uid: 17998
components:
- rot: -1.5707963267948966 rad
pos: -26.5,0.5
@@ -116581,7 +116650,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17987
+ - uid: 17999
components:
- rot: -1.5707963267948966 rad
pos: -27.5,0.5
@@ -116589,7 +116658,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17988
+ - uid: 18000
components:
- rot: -1.5707963267948966 rad
pos: -28.5,0.5
@@ -116597,7 +116666,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17989
+ - uid: 18001
components:
- rot: -1.5707963267948966 rad
pos: -30.5,0.5
@@ -116605,7 +116674,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17990
+ - uid: 18002
components:
- rot: -1.5707963267948966 rad
pos: -31.5,0.5
@@ -116613,7 +116682,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17991
+ - uid: 18003
components:
- rot: -1.5707963267948966 rad
pos: -32.5,0.5
@@ -116621,7 +116690,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17992
+ - uid: 18004
components:
- rot: -1.5707963267948966 rad
pos: -33.5,0.5
@@ -116629,7 +116698,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17993
+ - uid: 18005
components:
- rot: -1.5707963267948966 rad
pos: -34.5,0.5
@@ -116637,7 +116706,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17994
+ - uid: 18006
components:
- rot: -1.5707963267948966 rad
pos: -35.5,0.5
@@ -116645,7 +116714,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17995
+ - uid: 18007
components:
- rot: -1.5707963267948966 rad
pos: -36.5,0.5
@@ -116653,7 +116722,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17996
+ - uid: 18008
components:
- rot: -1.5707963267948966 rad
pos: -37.5,0.5
@@ -116661,56 +116730,56 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 17997
+ - uid: 18009
components:
- pos: -28.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17998
+ - uid: 18010
components:
- pos: -28.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 17999
+ - uid: 18011
components:
- pos: -28.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18000
+ - uid: 18012
components:
- pos: -28.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18001
+ - uid: 18013
components:
- pos: -29.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18002
+ - uid: 18014
components:
- pos: -29.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18003
+ - uid: 18015
components:
- pos: -29.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18004
+ - uid: 18016
components:
- rot: 3.141592653589793 rad
pos: -37.5,2.5
@@ -116718,7 +116787,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18005
+ - uid: 18017
components:
- rot: 3.141592653589793 rad
pos: -37.5,3.5
@@ -116726,7 +116795,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18006
+ - uid: 18018
components:
- rot: 3.141592653589793 rad
pos: -37.5,4.5
@@ -116734,7 +116803,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18007
+ - uid: 18019
components:
- rot: 3.141592653589793 rad
pos: -37.5,6.5
@@ -116742,7 +116811,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18008
+ - uid: 18020
components:
- rot: 3.141592653589793 rad
pos: -37.5,7.5
@@ -116750,7 +116819,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18009
+ - uid: 18021
components:
- rot: 3.141592653589793 rad
pos: -38.5,1.5
@@ -116758,7 +116827,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18010
+ - uid: 18022
components:
- rot: 3.141592653589793 rad
pos: -38.5,2.5
@@ -116766,7 +116835,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18011
+ - uid: 18023
components:
- rot: 3.141592653589793 rad
pos: -38.5,4.5
@@ -116774,7 +116843,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18012
+ - uid: 18024
components:
- rot: 3.141592653589793 rad
pos: -38.5,5.5
@@ -116782,7 +116851,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18013
+ - uid: 18025
components:
- rot: 3.141592653589793 rad
pos: -38.5,6.5
@@ -116790,7 +116859,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18014
+ - uid: 18026
components:
- rot: 3.141592653589793 rad
pos: -38.5,7.5
@@ -116798,7 +116867,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18015
+ - uid: 18027
components:
- rot: 3.141592653589793 rad
pos: -37.5,9.5
@@ -116806,7 +116875,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18016
+ - uid: 18028
components:
- rot: 3.141592653589793 rad
pos: -37.5,10.5
@@ -116814,7 +116883,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18017
+ - uid: 18029
components:
- rot: 3.141592653589793 rad
pos: -37.5,11.5
@@ -116822,7 +116891,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18018
+ - uid: 18030
components:
- rot: 3.141592653589793 rad
pos: -37.5,12.5
@@ -116830,7 +116899,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18019
+ - uid: 18031
components:
- rot: 3.141592653589793 rad
pos: -38.5,9.5
@@ -116838,7 +116907,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18020
+ - uid: 18032
components:
- rot: 3.141592653589793 rad
pos: -38.5,10.5
@@ -116846,7 +116915,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18021
+ - uid: 18033
components:
- rot: 3.141592653589793 rad
pos: -38.5,11.5
@@ -116854,7 +116923,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18022
+ - uid: 18034
components:
- rot: 3.141592653589793 rad
pos: -38.5,12.5
@@ -116862,14 +116931,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18023
+ - uid: 18035
components:
- pos: -38.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18024
+ - uid: 18036
components:
- rot: 1.5707963267948966 rad
pos: -37.5,14.5
@@ -116877,7 +116946,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18025
+ - uid: 18037
components:
- rot: 1.5707963267948966 rad
pos: -36.5,14.5
@@ -116885,7 +116954,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18026
+ - uid: 18038
components:
- rot: 1.5707963267948966 rad
pos: -35.5,14.5
@@ -116893,7 +116962,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18027
+ - uid: 18039
components:
- rot: 1.5707963267948966 rad
pos: -34.5,14.5
@@ -116901,7 +116970,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18028
+ - uid: 18040
components:
- rot: 1.5707963267948966 rad
pos: -33.5,14.5
@@ -116909,7 +116978,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18029
+ - uid: 18041
components:
- rot: 1.5707963267948966 rad
pos: -32.5,14.5
@@ -116917,7 +116986,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18030
+ - uid: 18042
components:
- rot: 1.5707963267948966 rad
pos: -31.5,14.5
@@ -116925,7 +116994,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18031
+ - uid: 18043
components:
- rot: 1.5707963267948966 rad
pos: -36.5,13.5
@@ -116933,7 +117002,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18032
+ - uid: 18044
components:
- rot: 1.5707963267948966 rad
pos: -35.5,13.5
@@ -116941,7 +117010,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18033
+ - uid: 18045
components:
- rot: 1.5707963267948966 rad
pos: -34.5,13.5
@@ -116949,7 +117018,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18034
+ - uid: 18046
components:
- rot: 1.5707963267948966 rad
pos: -33.5,13.5
@@ -116957,7 +117026,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18035
+ - uid: 18047
components:
- rot: 1.5707963267948966 rad
pos: -32.5,13.5
@@ -116965,7 +117034,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18036
+ - uid: 18048
components:
- rot: 1.5707963267948966 rad
pos: -31.5,13.5
@@ -116973,7 +117042,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18037
+ - uid: 18049
components:
- rot: -1.5707963267948966 rad
pos: -38.5,1.5
@@ -116981,7 +117050,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18038
+ - uid: 18050
components:
- rot: -1.5707963267948966 rad
pos: -39.5,1.5
@@ -116989,7 +117058,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18039
+ - uid: 18051
components:
- rot: -1.5707963267948966 rad
pos: -40.5,1.5
@@ -116997,7 +117066,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18040
+ - uid: 18052
components:
- rot: -1.5707963267948966 rad
pos: -40.5,0.5
@@ -117005,7 +117074,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18041
+ - uid: 18053
components:
- rot: -1.5707963267948966 rad
pos: -41.5,0.5
@@ -117013,7 +117082,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18042
+ - uid: 18054
components:
- rot: -1.5707963267948966 rad
pos: -42.5,0.5
@@ -117021,7 +117090,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18043
+ - uid: 18055
components:
- rot: -1.5707963267948966 rad
pos: -43.5,0.5
@@ -117029,7 +117098,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18044
+ - uid: 18056
components:
- rot: -1.5707963267948966 rad
pos: -42.5,1.5
@@ -117037,7 +117106,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18045
+ - uid: 18057
components:
- rot: -1.5707963267948966 rad
pos: -43.5,1.5
@@ -117045,7 +117114,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18046
+ - uid: 18058
components:
- rot: -1.5707963267948966 rad
pos: -30.5,13.5
@@ -117053,7 +117122,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18047
+ - uid: 18059
components:
- rot: 3.141592653589793 rad
pos: -30.5,13.5
@@ -117061,7 +117130,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18048
+ - uid: 18060
components:
- rot: 3.141592653589793 rad
pos: -30.5,12.5
@@ -117069,7 +117138,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18049
+ - uid: 18061
components:
- rot: 3.141592653589793 rad
pos: -30.5,11.5
@@ -117077,7 +117146,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18050
+ - uid: 18062
components:
- rot: 3.141592653589793 rad
pos: -30.5,10.5
@@ -117085,7 +117154,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18051
+ - uid: 18063
components:
- rot: 3.141592653589793 rad
pos: -29.5,12.5
@@ -117093,7 +117162,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18052
+ - uid: 18064
components:
- rot: 3.141592653589793 rad
pos: -29.5,11.5
@@ -117101,7 +117170,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18053
+ - uid: 18065
components:
- rot: 3.141592653589793 rad
pos: -29.5,10.5
@@ -117109,7 +117178,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18054
+ - uid: 18066
components:
- rot: 3.141592653589793 rad
pos: -29.5,14.5
@@ -117117,7 +117186,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18055
+ - uid: 18067
components:
- rot: -1.5707963267948966 rad
pos: -44.5,1.5
@@ -117125,7 +117194,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18056
+ - uid: 18068
components:
- rot: -1.5707963267948966 rad
pos: -44.5,0.5
@@ -117133,7 +117202,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18057
+ - uid: 18069
components:
- rot: -1.5707963267948966 rad
pos: -45.5,0.5
@@ -117141,7 +117210,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18058
+ - uid: 18070
components:
- rot: -1.5707963267948966 rad
pos: -46.5,0.5
@@ -117149,49 +117218,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18059
+ - uid: 18071
components:
- pos: -45.5,2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18060
+ - uid: 18072
components:
- pos: -45.5,3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18061
+ - uid: 18073
components:
- pos: -45.5,4.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18062
+ - uid: 18074
components:
- pos: -45.5,5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18063
+ - uid: 18075
components:
- pos: -47.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18064
+ - uid: 18076
components:
- pos: -47.5,2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18065
+ - uid: 18077
components:
- rot: 3.141592653589793 rad
pos: -47.5,4.5
@@ -117199,7 +117268,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18066
+ - uid: 18078
components:
- rot: 3.141592653589793 rad
pos: -47.5,5.5
@@ -117207,7 +117276,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18067
+ - uid: 18079
components:
- rot: 3.141592653589793 rad
pos: -47.5,6.5
@@ -117215,7 +117284,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18068
+ - uid: 18080
components:
- rot: 3.141592653589793 rad
pos: -47.5,7.5
@@ -117223,7 +117292,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18069
+ - uid: 18081
components:
- rot: 3.141592653589793 rad
pos: -47.5,8.5
@@ -117231,7 +117300,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18070
+ - uid: 18082
components:
- rot: 3.141592653589793 rad
pos: -47.5,9.5
@@ -117239,7 +117308,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18071
+ - uid: 18083
components:
- rot: -1.5707963267948966 rad
pos: -48.5,10.5
@@ -117247,7 +117316,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18072
+ - uid: 18084
components:
- rot: 3.141592653589793 rad
pos: -46.5,11.5
@@ -117255,7 +117324,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18073
+ - uid: 18085
components:
- rot: 3.141592653589793 rad
pos: -46.5,12.5
@@ -117263,7 +117332,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18074
+ - uid: 18086
components:
- rot: 3.141592653589793 rad
pos: -46.5,13.5
@@ -117271,7 +117340,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18075
+ - uid: 18087
components:
- rot: 1.5707963267948966 rad
pos: -49.5,10.5
@@ -117279,7 +117348,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18076
+ - uid: 18088
components:
- rot: 1.5707963267948966 rad
pos: -50.5,10.5
@@ -117287,42 +117356,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18077
+ - uid: 18089
components:
- pos: -52.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18078
+ - uid: 18090
components:
- pos: -52.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18079
+ - uid: 18091
components:
- pos: -52.5,13.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18080
+ - uid: 18092
components:
- pos: -52.5,9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18081
+ - uid: 18093
components:
- pos: -52.5,8.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18082
+ - uid: 18094
components:
- rot: -1.5707963267948966 rad
pos: -45.5,10.5
@@ -117330,7 +117399,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18083
+ - uid: 18095
components:
- rot: -1.5707963267948966 rad
pos: -44.5,10.5
@@ -117338,7 +117407,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18084
+ - uid: 18096
components:
- rot: -1.5707963267948966 rad
pos: -43.5,10.5
@@ -117346,7 +117415,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18085
+ - uid: 18097
components:
- rot: 1.5707963267948966 rad
pos: -46.5,7.5
@@ -117354,7 +117423,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18086
+ - uid: 18098
components:
- rot: 1.5707963267948966 rad
pos: -47.5,7.5
@@ -117362,7 +117431,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18087
+ - uid: 18099
components:
- rot: 1.5707963267948966 rad
pos: -48.5,7.5
@@ -117370,7 +117439,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18088
+ - uid: 18100
components:
- rot: 1.5707963267948966 rad
pos: -49.5,7.5
@@ -117378,7 +117447,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18089
+ - uid: 18101
components:
- rot: 1.5707963267948966 rad
pos: -50.5,7.5
@@ -117386,28 +117455,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18090
+ - uid: 18102
components:
- pos: -45.5,8.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18091
+ - uid: 18103
components:
- pos: -45.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18092
+ - uid: 18104
components:
- pos: -45.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18093
+ - uid: 18105
components:
- rot: 3.141592653589793 rad
pos: -45.5,12.5
@@ -117415,7 +117484,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18094
+ - uid: 18106
components:
- rot: 3.141592653589793 rad
pos: -45.5,13.5
@@ -117423,7 +117492,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18095
+ - uid: 18107
components:
- rot: 1.5707963267948966 rad
pos: -44.5,11.5
@@ -117431,7 +117500,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18096
+ - uid: 18108
components:
- rot: 1.5707963267948966 rad
pos: -46.5,11.5
@@ -117439,7 +117508,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18097
+ - uid: 18109
components:
- rot: 1.5707963267948966 rad
pos: -47.5,11.5
@@ -117447,7 +117516,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18098
+ - uid: 18110
components:
- rot: 1.5707963267948966 rad
pos: -48.5,11.5
@@ -117455,7 +117524,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18099
+ - uid: 18111
components:
- rot: -1.5707963267948966 rad
pos: -49.5,11.5
@@ -117463,7 +117532,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18100
+ - uid: 18112
components:
- rot: 1.5707963267948966 rad
pos: -50.5,11.5
@@ -117471,7 +117540,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18101
+ - uid: 18113
components:
- rot: 3.141592653589793 rad
pos: -51.5,12.5
@@ -117479,7 +117548,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18102
+ - uid: 18114
components:
- rot: 3.141592653589793 rad
pos: -51.5,13.5
@@ -117487,14 +117556,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18103
+ - uid: 18115
components:
- pos: -46.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18104
+ - uid: 18116
components:
- rot: 3.141592653589793 rad
pos: -18.5,25.5
@@ -117502,7 +117571,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18105
+ - uid: 18117
components:
- rot: 3.141592653589793 rad
pos: -20.5,21.5
@@ -117510,7 +117579,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18106
+ - uid: 18118
components:
- rot: 3.141592653589793 rad
pos: -20.5,22.5
@@ -117518,7 +117587,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18107
+ - uid: 18119
components:
- rot: 3.141592653589793 rad
pos: -20.5,23.5
@@ -117526,7 +117595,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18108
+ - uid: 18120
components:
- rot: 3.141592653589793 rad
pos: -20.5,24.5
@@ -117534,7 +117603,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18109
+ - uid: 18121
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-72.5
@@ -117542,7 +117611,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18110
+ - uid: 18122
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-54.5
@@ -117550,7 +117619,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18111
+ - uid: 18123
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-53.5
@@ -117558,7 +117627,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18112
+ - uid: 18124
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-53.5
@@ -117566,7 +117635,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18113
+ - uid: 18125
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-53.5
@@ -117574,7 +117643,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18114
+ - uid: 18126
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-53.5
@@ -117582,7 +117651,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18115
+ - uid: 18127
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-53.5
@@ -117590,7 +117659,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18116
+ - uid: 18128
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-53.5
@@ -117598,7 +117667,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18117
+ - uid: 18129
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-71.5
@@ -117606,7 +117675,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18118
+ - uid: 18130
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-71.5
@@ -117614,35 +117683,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18119
+ - uid: 18131
components:
- pos: -45.5,-72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18120
+ - uid: 18132
components:
- pos: -45.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18121
+ - uid: 18133
components:
- pos: -45.5,-74.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18122
+ - uid: 18134
components:
- pos: -45.5,-75.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18123
+ - uid: 18135
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-76.5
@@ -117650,7 +117719,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18124
+ - uid: 18136
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-76.5
@@ -117658,7 +117727,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18125
+ - uid: 18137
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-76.5
@@ -117666,7 +117735,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18126
+ - uid: 18138
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-76.5
@@ -117674,7 +117743,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18127
+ - uid: 18139
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-76.5
@@ -117682,7 +117751,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18128
+ - uid: 18140
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-76.5
@@ -117690,7 +117759,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18129
+ - uid: 18141
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-76.5
@@ -117698,7 +117767,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18130
+ - uid: 18142
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-76.5
@@ -117706,7 +117775,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18131
+ - uid: 18143
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-72.5
@@ -117714,7 +117783,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18132
+ - uid: 18144
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-72.5
@@ -117722,7 +117791,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18133
+ - uid: 18145
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-72.5
@@ -117730,7 +117799,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18134
+ - uid: 18146
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-72.5
@@ -117738,7 +117807,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18135
+ - uid: 18147
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-72.5
@@ -117746,7 +117815,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18136
+ - uid: 18148
components:
- rot: 3.141592653589793 rad
pos: -46.5,-73.5
@@ -117754,7 +117823,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18137
+ - uid: 18149
components:
- rot: 3.141592653589793 rad
pos: -46.5,-74.5
@@ -117762,7 +117831,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18138
+ - uid: 18150
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-75.5
@@ -117770,7 +117839,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18139
+ - uid: 18151
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-75.5
@@ -117778,7 +117847,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18140
+ - uid: 18152
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-75.5
@@ -117786,7 +117855,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18141
+ - uid: 18153
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-75.5
@@ -117794,7 +117863,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18142
+ - uid: 18154
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-75.5
@@ -117802,7 +117871,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18143
+ - uid: 18155
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-75.5
@@ -117810,7 +117879,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18144
+ - uid: 18156
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-75.5
@@ -117818,7 +117887,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18145
+ - uid: 18157
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-41.5
@@ -117826,7 +117895,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18146
+ - uid: 18158
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-41.5
@@ -117834,7 +117903,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18147
+ - uid: 18159
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-41.5
@@ -117842,133 +117911,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18148
+ - uid: 18160
components:
- pos: -15.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18149
+ - uid: 18161
components:
- pos: -19.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18150
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,12.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18151
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,13.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18152
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,14.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18153
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,15.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18154
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,16.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18155
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,17.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18156
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,18.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18157
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,19.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18158
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,20.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18159
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,21.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18160
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,22.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18161
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,23.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- uid: 18162
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,24.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18163
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,25.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18164
components:
- rot: -1.5707963267948966 rad
pos: 28.5,1.5
@@ -117976,14 +117933,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18165
+ - uid: 18163
components:
- pos: -20.5,-59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18166
+ - uid: 18164
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-23.5
@@ -117991,7 +117948,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18167
+ - uid: 18165
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-23.5
@@ -117999,7 +117956,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18168
+ - uid: 18166
components:
- rot: -1.5707963267948966 rad
pos: -71.5,-23.5
@@ -118007,7 +117964,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18169
+ - uid: 18167
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-25.5
@@ -118015,7 +117972,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18170
+ - uid: 18168
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-25.5
@@ -118023,7 +117980,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18171
+ - uid: 18169
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-25.5
@@ -118031,7 +117988,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18172
+ - uid: 18170
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-25.5
@@ -118039,7 +117996,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18173
+ - uid: 18171
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-25.5
@@ -118047,7 +118004,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18174
+ - uid: 18172
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-25.5
@@ -118055,7 +118012,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18175
+ - uid: 18173
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-30.5
@@ -118063,7 +118020,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18176
+ - uid: 18174
components:
- rot: 3.141592653589793 rad
pos: -23.5,-61.5
@@ -118071,7 +118028,7 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 18177
+ - uid: 18175
components:
- rot: 3.141592653589793 rad
pos: 30.5,-83.5
@@ -118079,7 +118036,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18178
+ - uid: 18176
components:
- rot: 3.141592653589793 rad
pos: 25.5,-58.5
@@ -118087,7 +118044,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18179
+ - uid: 18177
components:
- rot: 3.141592653589793 rad
pos: 25.5,-57.5
@@ -118095,7 +118052,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18180
+ - uid: 18178
components:
- rot: 3.141592653589793 rad
pos: 47.5,-80.5
@@ -118103,7 +118060,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18181
+ - uid: 18179
components:
- rot: 3.141592653589793 rad
pos: 42.5,5.5
@@ -118111,7 +118068,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18182
+ - uid: 18180
components:
- rot: 3.141592653589793 rad
pos: 42.5,2.5
@@ -118119,7 +118076,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18183
+ - uid: 18181
components:
- rot: 3.141592653589793 rad
pos: 42.5,4.5
@@ -118127,7 +118084,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18184
+ - uid: 18182
components:
- rot: 3.141592653589793 rad
pos: 42.5,3.5
@@ -118135,7 +118092,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18185
+ - uid: 18183
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-42.5
@@ -118143,7 +118100,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18186
+ - uid: 18184
components:
- rot: 3.141592653589793 rad
pos: 45.5,21.5
@@ -118151,7 +118108,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18187
+ - uid: 18185
components:
- rot: 3.141592653589793 rad
pos: 45.5,22.5
@@ -118159,7 +118116,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18188
+ - uid: 18186
components:
- rot: 3.141592653589793 rad
pos: 45.5,23.5
@@ -118167,7 +118124,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18189
+ - uid: 18187
components:
- rot: 3.141592653589793 rad
pos: 45.5,24.5
@@ -118175,7 +118132,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18190
+ - uid: 18188
components:
- rot: 3.141592653589793 rad
pos: 45.5,25.5
@@ -118183,7 +118140,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18191
+ - uid: 18189
components:
- rot: 3.141592653589793 rad
pos: 45.5,26.5
@@ -118191,7 +118148,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18192
+ - uid: 18190
components:
- rot: 3.141592653589793 rad
pos: 44.5,21.5
@@ -118199,7 +118156,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18193
+ - uid: 18191
components:
- rot: 3.141592653589793 rad
pos: 44.5,22.5
@@ -118207,7 +118164,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18194
+ - uid: 18192
components:
- rot: 3.141592653589793 rad
pos: 44.5,23.5
@@ -118215,7 +118172,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18195
+ - uid: 18193
components:
- rot: 3.141592653589793 rad
pos: 44.5,24.5
@@ -118223,7 +118180,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18196
+ - uid: 18194
components:
- rot: 3.141592653589793 rad
pos: 44.5,25.5
@@ -118231,7 +118188,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18197
+ - uid: 18195
components:
- rot: 3.141592653589793 rad
pos: 44.5,20.5
@@ -118239,7 +118196,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18198
+ - uid: 18196
components:
- rot: 1.5707963267948966 rad
pos: 46.5,27.5
@@ -118247,7 +118204,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18199
+ - uid: 18197
components:
- rot: 1.5707963267948966 rad
pos: 47.5,27.5
@@ -118255,7 +118212,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18200
+ - uid: 18198
components:
- rot: 1.5707963267948966 rad
pos: 45.5,26.5
@@ -118263,7 +118220,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18201
+ - uid: 18199
components:
- rot: 1.5707963267948966 rad
pos: 46.5,26.5
@@ -118271,7 +118228,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18202
+ - uid: 18200
components:
- rot: 1.5707963267948966 rad
pos: 47.5,26.5
@@ -118279,7 +118236,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18203
+ - uid: 18201
components:
- rot: 1.5707963267948966 rad
pos: 48.5,26.5
@@ -118287,7 +118244,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18204
+ - uid: 18202
components:
- rot: 1.5707963267948966 rad
pos: 49.5,26.5
@@ -118295,7 +118252,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18205
+ - uid: 18203
components:
- rot: 1.5707963267948966 rad
pos: 50.5,26.5
@@ -118303,7 +118260,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18206
+ - uid: 18204
components:
- rot: 1.5707963267948966 rad
pos: 51.5,26.5
@@ -118311,7 +118268,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18207
+ - uid: 18205
components:
- rot: 1.5707963267948966 rad
pos: 52.5,26.5
@@ -118319,7 +118276,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18208
+ - uid: 18206
components:
- rot: 1.5707963267948966 rad
pos: 53.5,26.5
@@ -118327,7 +118284,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18209
+ - uid: 18207
components:
- rot: 1.5707963267948966 rad
pos: 48.5,27.5
@@ -118335,7 +118292,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18210
+ - uid: 18208
components:
- rot: 1.5707963267948966 rad
pos: 49.5,27.5
@@ -118343,7 +118300,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18211
+ - uid: 18209
components:
- rot: 1.5707963267948966 rad
pos: 50.5,27.5
@@ -118351,7 +118308,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18212
+ - uid: 18210
components:
- rot: 1.5707963267948966 rad
pos: 51.5,27.5
@@ -118359,7 +118316,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18213
+ - uid: 18211
components:
- rot: 3.141592653589793 rad
pos: 52.5,28.5
@@ -118367,7 +118324,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18214
+ - uid: 18212
components:
- rot: 3.141592653589793 rad
pos: 52.5,29.5
@@ -118375,7 +118332,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18215
+ - uid: 18213
components:
- rot: 3.141592653589793 rad
pos: 52.5,30.5
@@ -118383,7 +118340,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18216
+ - uid: 18214
components:
- rot: 3.141592653589793 rad
pos: 52.5,31.5
@@ -118391,7 +118348,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18217
+ - uid: 18215
components:
- rot: 3.141592653589793 rad
pos: 52.5,32.5
@@ -118399,7 +118356,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18218
+ - uid: 18216
components:
- rot: 3.141592653589793 rad
pos: 52.5,33.5
@@ -118407,7 +118364,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18219
+ - uid: 18217
components:
- rot: 3.141592653589793 rad
pos: 52.5,34.5
@@ -118415,7 +118372,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18220
+ - uid: 18218
components:
- rot: 3.141592653589793 rad
pos: 52.5,35.5
@@ -118423,7 +118380,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18221
+ - uid: 18219
components:
- rot: 3.141592653589793 rad
pos: 52.5,36.5
@@ -118431,7 +118388,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18222
+ - uid: 18220
components:
- rot: 3.141592653589793 rad
pos: 52.5,37.5
@@ -118439,7 +118396,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18223
+ - uid: 18221
components:
- rot: 3.141592653589793 rad
pos: 52.5,38.5
@@ -118447,7 +118404,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18224
+ - uid: 18222
components:
- rot: 3.141592653589793 rad
pos: 52.5,39.5
@@ -118455,7 +118412,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18225
+ - uid: 18223
components:
- rot: 3.141592653589793 rad
pos: 52.5,40.5
@@ -118463,7 +118420,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18226
+ - uid: 18224
components:
- rot: 3.141592653589793 rad
pos: 52.5,41.5
@@ -118471,7 +118428,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18227
+ - uid: 18225
components:
- rot: 3.141592653589793 rad
pos: 52.5,42.5
@@ -118479,7 +118436,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18228
+ - uid: 18226
components:
- rot: 3.141592653589793 rad
pos: 54.5,27.5
@@ -118487,7 +118444,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18229
+ - uid: 18227
components:
- rot: 3.141592653589793 rad
pos: 54.5,28.5
@@ -118495,7 +118452,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18230
+ - uid: 18228
components:
- rot: 3.141592653589793 rad
pos: 54.5,29.5
@@ -118503,7 +118460,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18231
+ - uid: 18229
components:
- rot: 3.141592653589793 rad
pos: 54.5,30.5
@@ -118511,7 +118468,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18232
+ - uid: 18230
components:
- rot: 3.141592653589793 rad
pos: 54.5,31.5
@@ -118519,7 +118476,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18233
+ - uid: 18231
components:
- rot: 3.141592653589793 rad
pos: 54.5,32.5
@@ -118527,7 +118484,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18234
+ - uid: 18232
components:
- rot: 3.141592653589793 rad
pos: 54.5,33.5
@@ -118535,7 +118492,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18235
+ - uid: 18233
components:
- rot: 3.141592653589793 rad
pos: 54.5,34.5
@@ -118543,7 +118500,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18236
+ - uid: 18234
components:
- rot: 3.141592653589793 rad
pos: 54.5,35.5
@@ -118551,7 +118508,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18237
+ - uid: 18235
components:
- rot: 3.141592653589793 rad
pos: 54.5,36.5
@@ -118559,7 +118516,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18238
+ - uid: 18236
components:
- rot: 3.141592653589793 rad
pos: 54.5,37.5
@@ -118567,7 +118524,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18239
+ - uid: 18237
components:
- rot: 3.141592653589793 rad
pos: 54.5,38.5
@@ -118575,7 +118532,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18240
+ - uid: 18238
components:
- rot: 3.141592653589793 rad
pos: 54.5,39.5
@@ -118583,7 +118540,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18241
+ - uid: 18239
components:
- rot: 3.141592653589793 rad
pos: 54.5,40.5
@@ -118591,7 +118548,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18242
+ - uid: 18240
components:
- rot: 3.141592653589793 rad
pos: 54.5,41.5
@@ -118599,7 +118556,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18243
+ - uid: 18241
components:
- rot: 3.141592653589793 rad
pos: 54.5,42.5
@@ -118607,7 +118564,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18244
+ - uid: 18242
components:
- rot: 3.141592653589793 rad
pos: 54.5,44.5
@@ -118615,7 +118572,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18245
+ - uid: 18243
components:
- rot: 3.141592653589793 rad
pos: 54.5,45.5
@@ -118623,7 +118580,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18246
+ - uid: 18244
components:
- rot: 3.141592653589793 rad
pos: 54.5,46.5
@@ -118631,7 +118588,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18247
+ - uid: 18245
components:
- rot: 3.141592653589793 rad
pos: 54.5,47.5
@@ -118639,7 +118596,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18248
+ - uid: 18246
components:
- rot: 3.141592653589793 rad
pos: 54.5,48.5
@@ -118647,7 +118604,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18249
+ - uid: 18247
components:
- rot: 3.141592653589793 rad
pos: 54.5,49.5
@@ -118655,7 +118612,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18250
+ - uid: 18248
components:
- rot: 3.141592653589793 rad
pos: 54.5,51.5
@@ -118663,7 +118620,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18251
+ - uid: 18249
components:
- rot: 3.141592653589793 rad
pos: 54.5,52.5
@@ -118671,7 +118628,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18252
+ - uid: 18250
components:
- rot: 3.141592653589793 rad
pos: 54.5,53.5
@@ -118679,7 +118636,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18253
+ - uid: 18251
components:
- rot: 3.141592653589793 rad
pos: 54.5,54.5
@@ -118687,7 +118644,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18254
+ - uid: 18252
components:
- rot: 3.141592653589793 rad
pos: 54.5,55.5
@@ -118695,7 +118652,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18255
+ - uid: 18253
components:
- rot: 3.141592653589793 rad
pos: 52.5,44.5
@@ -118703,7 +118660,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18256
+ - uid: 18254
components:
- rot: 3.141592653589793 rad
pos: 52.5,45.5
@@ -118711,7 +118668,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18257
+ - uid: 18255
components:
- rot: 3.141592653589793 rad
pos: 52.5,46.5
@@ -118719,7 +118676,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18258
+ - uid: 18256
components:
- rot: 3.141592653589793 rad
pos: 52.5,47.5
@@ -118727,7 +118684,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18259
+ - uid: 18257
components:
- rot: 3.141592653589793 rad
pos: 52.5,48.5
@@ -118735,7 +118692,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18260
+ - uid: 18258
components:
- rot: 3.141592653589793 rad
pos: 52.5,50.5
@@ -118743,7 +118700,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18261
+ - uid: 18259
components:
- rot: 3.141592653589793 rad
pos: 52.5,51.5
@@ -118751,7 +118708,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18262
+ - uid: 18260
components:
- rot: 3.141592653589793 rad
pos: 52.5,52.5
@@ -118759,7 +118716,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18263
+ - uid: 18261
components:
- rot: 3.141592653589793 rad
pos: 52.5,53.5
@@ -118767,7 +118724,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18264
+ - uid: 18262
components:
- rot: 3.141592653589793 rad
pos: 52.5,54.5
@@ -118775,7 +118732,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18265
+ - uid: 18263
components:
- rot: 3.141592653589793 rad
pos: 52.5,55.5
@@ -118783,49 +118740,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18266
+ - uid: 18264
components:
- pos: -16.5,31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18267
+ - uid: 18265
components:
- pos: -15.5,30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18268
+ - uid: 18266
components:
- pos: -15.5,31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18269
+ - uid: 18267
components:
- pos: -15.5,32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18270
+ - uid: 18268
components:
- pos: -16.5,32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18271
+ - uid: 18269
components:
- pos: -16.5,33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18272
+ - uid: 18270
components:
- rot: 1.5707963267948966 rad
pos: -15.5,34.5
@@ -118833,7 +118790,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18273
+ - uid: 18271
components:
- rot: 1.5707963267948966 rad
pos: -14.5,34.5
@@ -118841,7 +118798,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18274
+ - uid: 18272
components:
- rot: 1.5707963267948966 rad
pos: -13.5,34.5
@@ -118849,7 +118806,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18275
+ - uid: 18273
components:
- rot: 1.5707963267948966 rad
pos: -14.5,33.5
@@ -118857,7 +118814,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18276
+ - uid: 18274
components:
- rot: 1.5707963267948966 rad
pos: -13.5,33.5
@@ -118865,133 +118822,133 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18277
+ - uid: 18275
components:
- pos: -16.5,35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18278
+ - uid: 18276
components:
- pos: -16.5,36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18279
+ - uid: 18277
components:
- pos: -16.5,37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18280
+ - uid: 18278
components:
- pos: -16.5,38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18281
+ - uid: 18279
components:
- pos: -16.5,40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18282
+ - uid: 18280
components:
- pos: -16.5,41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18283
+ - uid: 18281
components:
- pos: -16.5,42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18284
+ - uid: 18282
components:
- pos: -15.5,34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18285
+ - uid: 18283
components:
- pos: -15.5,35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18286
+ - uid: 18284
components:
- pos: -15.5,36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18287
+ - uid: 18285
components:
- pos: -15.5,37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18288
+ - uid: 18286
components:
- pos: -15.5,39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18289
+ - uid: 18287
components:
- pos: -15.5,40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18290
+ - uid: 18288
components:
- pos: -15.5,41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18291
+ - uid: 18289
components:
- pos: -15.5,42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18292
+ - uid: 18290
components:
- pos: -15.5,43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18293
+ - uid: 18291
components:
- pos: -16.5,44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18294
+ - uid: 18292
components:
- pos: -16.5,45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18295
+ - uid: 18293
components:
- rot: 1.5707963267948966 rad
pos: -17.5,43.5
@@ -118999,7 +118956,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18296
+ - uid: 18294
components:
- rot: 1.5707963267948966 rad
pos: -18.5,43.5
@@ -119007,7 +118964,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18297
+ - uid: 18295
components:
- rot: 1.5707963267948966 rad
pos: -19.5,43.5
@@ -119015,7 +118972,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18298
+ - uid: 18296
components:
- rot: 1.5707963267948966 rad
pos: -16.5,44.5
@@ -119023,7 +118980,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18299
+ - uid: 18297
components:
- rot: 1.5707963267948966 rad
pos: -17.5,44.5
@@ -119031,7 +118988,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18300
+ - uid: 18298
components:
- rot: 1.5707963267948966 rad
pos: -18.5,44.5
@@ -119039,7 +118996,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18301
+ - uid: 18299
components:
- rot: 1.5707963267948966 rad
pos: -19.5,44.5
@@ -119047,7 +119004,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18302
+ - uid: 18300
components:
- rot: -1.5707963267948966 rad
pos: -16.5,45.5
@@ -119055,7 +119012,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18303
+ - uid: 18301
components:
- rot: 3.141592653589793 rad
pos: -17.5,46.5
@@ -119063,7 +119020,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18304
+ - uid: 18302
components:
- rot: 3.141592653589793 rad
pos: -17.5,47.5
@@ -119071,7 +119028,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18305
+ - uid: 18303
components:
- rot: 3.141592653589793 rad
pos: -17.5,48.5
@@ -119079,7 +119036,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18306
+ - uid: 18304
components:
- rot: 3.141592653589793 rad
pos: -17.5,49.5
@@ -119087,7 +119044,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18307
+ - uid: 18305
components:
- rot: 3.141592653589793 rad
pos: -16.5,47.5
@@ -119095,7 +119052,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18308
+ - uid: 18306
components:
- rot: 3.141592653589793 rad
pos: -16.5,48.5
@@ -119103,7 +119060,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18309
+ - uid: 18307
components:
- rot: 3.141592653589793 rad
pos: -16.5,49.5
@@ -119111,7 +119068,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18310
+ - uid: 18308
components:
- rot: 1.5707963267948966 rad
pos: -15.5,43.5
@@ -119119,7 +119076,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18311
+ - uid: 18309
components:
- rot: -1.5707963267948966 rad
pos: -15.5,46.5
@@ -119127,7 +119084,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18312
+ - uid: 18310
components:
- rot: -1.5707963267948966 rad
pos: -14.5,46.5
@@ -119135,7 +119092,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18313
+ - uid: 18311
components:
- rot: -1.5707963267948966 rad
pos: -13.5,46.5
@@ -119143,7 +119100,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18314
+ - uid: 18312
components:
- rot: -1.5707963267948966 rad
pos: -12.5,46.5
@@ -119151,7 +119108,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18315
+ - uid: 18313
components:
- rot: -1.5707963267948966 rad
pos: -13.5,44.5
@@ -119159,7 +119116,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18316
+ - uid: 18314
components:
- rot: -1.5707963267948966 rad
pos: -12.5,44.5
@@ -119167,32 +119124,32 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18317
+ - uid: 18315
components:
- pos: 1.5,47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18318
+ - uid: 18316
components:
- rot: 3.141592653589793 rad
pos: 70.5,35.5
parent: 2
type: Transform
- - uid: 18319
+ - uid: 18317
components:
- rot: 3.141592653589793 rad
pos: 70.5,34.5
parent: 2
type: Transform
- - uid: 18320
+ - uid: 18318
components:
- rot: 3.141592653589793 rad
pos: 70.5,33.5
parent: 2
type: Transform
- - uid: 18321
+ - uid: 18319
components:
- rot: -1.5707963267948966 rad
pos: -14.5,38.5
@@ -119200,7 +119157,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18322
+ - uid: 18320
components:
- rot: -1.5707963267948966 rad
pos: -13.5,38.5
@@ -119208,7 +119165,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18323
+ - uid: 18321
components:
- rot: -1.5707963267948966 rad
pos: -12.5,38.5
@@ -119216,7 +119173,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18324
+ - uid: 18322
components:
- rot: -1.5707963267948966 rad
pos: 53.5,50.5
@@ -119224,7 +119181,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18325
+ - uid: 18323
components:
- rot: -1.5707963267948966 rad
pos: 52.5,50.5
@@ -119232,7 +119189,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18326
+ - uid: 18324
components:
- rot: -1.5707963267948966 rad
pos: 51.5,50.5
@@ -119240,7 +119197,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18327
+ - uid: 18325
components:
- rot: -1.5707963267948966 rad
pos: 50.5,50.5
@@ -119248,7 +119205,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18328
+ - uid: 18326
components:
- rot: -1.5707963267948966 rad
pos: 49.5,50.5
@@ -119256,7 +119213,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18329
+ - uid: 18327
components:
- rot: -1.5707963267948966 rad
pos: 48.5,50.5
@@ -119264,7 +119221,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18330
+ - uid: 18328
components:
- rot: -1.5707963267948966 rad
pos: 51.5,49.5
@@ -119272,7 +119229,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18331
+ - uid: 18329
components:
- rot: -1.5707963267948966 rad
pos: 50.5,49.5
@@ -119280,7 +119237,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18332
+ - uid: 18330
components:
- rot: -1.5707963267948966 rad
pos: 49.5,49.5
@@ -119288,7 +119245,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18333
+ - uid: 18331
components:
- rot: -1.5707963267948966 rad
pos: 48.5,49.5
@@ -119296,7 +119253,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18334
+ - uid: 18332
components:
- rot: -1.5707963267948966 rad
pos: 47.5,49.5
@@ -119304,7 +119261,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18335
+ - uid: 18333
components:
- rot: -1.5707963267948966 rad
pos: 46.5,49.5
@@ -119312,49 +119269,49 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18336
+ - uid: 18334
components:
- pos: 47.5,49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18337
+ - uid: 18335
components:
- pos: 47.5,48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18338
+ - uid: 18336
components:
- pos: 47.5,47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18339
+ - uid: 18337
components:
- pos: 45.5,48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18340
+ - uid: 18338
components:
- pos: 45.5,47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18341
+ - uid: 18339
components:
- pos: 45.5,46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18342
+ - uid: 18340
components:
- rot: -1.5707963267948966 rad
pos: 46.5,46.5
@@ -119362,7 +119319,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18343
+ - uid: 18341
components:
- rot: -1.5707963267948966 rad
pos: 45.5,46.5
@@ -119370,7 +119327,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18344
+ - uid: 18342
components:
- rot: -1.5707963267948966 rad
pos: 43.5,46.5
@@ -119378,7 +119335,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18345
+ - uid: 18343
components:
- rot: -1.5707963267948966 rad
pos: 44.5,46.5
@@ -119386,7 +119343,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18346
+ - uid: 18344
components:
- rot: -1.5707963267948966 rad
pos: 42.5,46.5
@@ -119394,7 +119351,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18347
+ - uid: 18345
components:
- rot: -1.5707963267948966 rad
pos: 41.5,46.5
@@ -119402,7 +119359,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18348
+ - uid: 18346
components:
- rot: -1.5707963267948966 rad
pos: 44.5,45.5
@@ -119410,7 +119367,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18349
+ - uid: 18347
components:
- rot: -1.5707963267948966 rad
pos: 43.5,45.5
@@ -119418,7 +119375,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18350
+ - uid: 18348
components:
- rot: -1.5707963267948966 rad
pos: 42.5,45.5
@@ -119426,7 +119383,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18351
+ - uid: 18349
components:
- rot: -1.5707963267948966 rad
pos: 41.5,45.5
@@ -119434,7 +119391,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18352
+ - uid: 18350
components:
- rot: 3.141592653589793 rad
pos: 2.5,67.5
@@ -119442,7 +119399,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18353
+ - uid: 18351
components:
- rot: 3.141592653589793 rad
pos: 2.5,66.5
@@ -119450,7 +119407,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18354
+ - uid: 18352
components:
- rot: 3.141592653589793 rad
pos: 2.5,65.5
@@ -119458,7 +119415,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18355
+ - uid: 18353
components:
- rot: 3.141592653589793 rad
pos: 2.5,64.5
@@ -119466,7 +119423,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18356
+ - uid: 18354
components:
- rot: 3.141592653589793 rad
pos: -5.5,67.5
@@ -119474,7 +119431,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18357
+ - uid: 18355
components:
- rot: 3.141592653589793 rad
pos: -5.5,66.5
@@ -119482,7 +119439,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18358
+ - uid: 18356
components:
- rot: 3.141592653589793 rad
pos: -5.5,65.5
@@ -119490,7 +119447,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18359
+ - uid: 18357
components:
- rot: 3.141592653589793 rad
pos: -5.5,64.5
@@ -119498,7 +119455,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18360
+ - uid: 18358
components:
- rot: 3.141592653589793 rad
pos: -6.5,68.5
@@ -119506,7 +119463,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18361
+ - uid: 18359
components:
- rot: 3.141592653589793 rad
pos: -6.5,67.5
@@ -119514,7 +119471,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18362
+ - uid: 18360
components:
- rot: 3.141592653589793 rad
pos: -6.5,66.5
@@ -119522,7 +119479,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18363
+ - uid: 18361
components:
- rot: 3.141592653589793 rad
pos: -6.5,65.5
@@ -119530,7 +119487,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18364
+ - uid: 18362
components:
- rot: 3.141592653589793 rad
pos: 3.5,68.5
@@ -119538,7 +119495,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18365
+ - uid: 18363
components:
- rot: 3.141592653589793 rad
pos: 3.5,67.5
@@ -119546,7 +119503,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18366
+ - uid: 18364
components:
- rot: 3.141592653589793 rad
pos: 3.5,66.5
@@ -119554,7 +119511,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18367
+ - uid: 18365
components:
- rot: 3.141592653589793 rad
pos: 3.5,65.5
@@ -119562,7 +119519,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18368
+ - uid: 18366
components:
- rot: 1.5707963267948966 rad
pos: 0.5,69.5
@@ -119570,7 +119527,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18369
+ - uid: 18367
components:
- rot: 1.5707963267948966 rad
pos: -3.5,69.5
@@ -119578,91 +119535,91 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18370
+ - uid: 18368
components:
- pos: -2.5,66.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18371
+ - uid: 18369
components:
- pos: -2.5,65.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18372
+ - uid: 18370
components:
- pos: -2.5,64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18373
+ - uid: 18371
components:
- pos: -2.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18374
+ - uid: 18372
components:
- pos: -2.5,61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18375
+ - uid: 18373
components:
- pos: -2.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18376
+ - uid: 18374
components:
- pos: -2.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18377
+ - uid: 18375
components:
- pos: -1.5,65.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18378
+ - uid: 18376
components:
- pos: -1.5,64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18379
+ - uid: 18377
components:
- pos: -1.5,63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18380
+ - uid: 18378
components:
- pos: -1.5,62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18381
+ - uid: 18379
components:
- pos: -1.5,60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18382
+ - uid: 18380
components:
- rot: -1.5707963267948966 rad
pos: -11.5,46.5
@@ -119670,7 +119627,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18383
+ - uid: 18381
components:
- rot: -1.5707963267948966 rad
pos: -10.5,46.5
@@ -119678,7 +119635,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18384
+ - uid: 18382
components:
- rot: -1.5707963267948966 rad
pos: -9.5,46.5
@@ -119686,7 +119643,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18385
+ - uid: 18383
components:
- rot: -1.5707963267948966 rad
pos: -8.5,46.5
@@ -119694,7 +119651,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18386
+ - uid: 18384
components:
- rot: -1.5707963267948966 rad
pos: -7.5,46.5
@@ -119702,7 +119659,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18387
+ - uid: 18385
components:
- rot: -1.5707963267948966 rad
pos: -6.5,46.5
@@ -119710,7 +119667,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18388
+ - uid: 18386
components:
- rot: -1.5707963267948966 rad
pos: -5.5,46.5
@@ -119718,7 +119675,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18389
+ - uid: 18387
components:
- rot: -1.5707963267948966 rad
pos: -4.5,46.5
@@ -119726,7 +119683,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18390
+ - uid: 18388
components:
- rot: -1.5707963267948966 rad
pos: -3.5,46.5
@@ -119734,7 +119691,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18391
+ - uid: 18389
components:
- rot: -1.5707963267948966 rad
pos: -2.5,46.5
@@ -119742,7 +119699,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18392
+ - uid: 18390
components:
- rot: -1.5707963267948966 rad
pos: -1.5,46.5
@@ -119750,7 +119707,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18393
+ - uid: 18391
components:
- rot: -1.5707963267948966 rad
pos: -11.5,44.5
@@ -119758,7 +119715,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18394
+ - uid: 18392
components:
- rot: -1.5707963267948966 rad
pos: -10.5,44.5
@@ -119766,7 +119723,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18395
+ - uid: 18393
components:
- rot: -1.5707963267948966 rad
pos: -9.5,44.5
@@ -119774,7 +119731,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18396
+ - uid: 18394
components:
- rot: -1.5707963267948966 rad
pos: -8.5,44.5
@@ -119782,7 +119739,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18397
+ - uid: 18395
components:
- rot: -1.5707963267948966 rad
pos: -7.5,44.5
@@ -119790,7 +119747,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18398
+ - uid: 18396
components:
- rot: -1.5707963267948966 rad
pos: -6.5,44.5
@@ -119798,7 +119755,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18399
+ - uid: 18397
components:
- rot: -1.5707963267948966 rad
pos: -5.5,44.5
@@ -119806,7 +119763,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18400
+ - uid: 18398
components:
- rot: -1.5707963267948966 rad
pos: -4.5,44.5
@@ -119814,7 +119771,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18401
+ - uid: 18399
components:
- rot: -1.5707963267948966 rad
pos: -3.5,44.5
@@ -119822,7 +119779,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18402
+ - uid: 18400
components:
- rot: -1.5707963267948966 rad
pos: -2.5,44.5
@@ -119830,7 +119787,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18403
+ - uid: 18401
components:
- rot: -1.5707963267948966 rad
pos: -1.5,44.5
@@ -119838,7 +119795,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18404
+ - uid: 18402
components:
- rot: -1.5707963267948966 rad
pos: -0.5,44.5
@@ -119846,7 +119803,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18405
+ - uid: 18403
components:
- rot: -1.5707963267948966 rad
pos: 0.5,44.5
@@ -119854,7 +119811,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18406
+ - uid: 18404
components:
- rot: 3.141592653589793 rad
pos: 1.5,45.5
@@ -119862,7 +119819,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18407
+ - uid: 18405
components:
- rot: 3.141592653589793 rad
pos: -0.5,47.5
@@ -119870,98 +119827,98 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18408
+ - uid: 18406
components:
- pos: 1.5,48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18409
+ - uid: 18407
components:
- pos: 1.5,49.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18410
+ - uid: 18408
components:
- pos: 1.5,50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18411
+ - uid: 18409
components:
- pos: 1.5,51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18412
+ - uid: 18410
components:
- pos: 1.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18413
+ - uid: 18411
components:
- pos: 1.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18414
+ - uid: 18412
components:
- pos: 1.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18415
+ - uid: 18413
components:
- pos: -0.5,49.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18416
+ - uid: 18414
components:
- pos: -0.5,50.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18417
+ - uid: 18415
components:
- pos: -0.5,51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18418
+ - uid: 18416
components:
- pos: -0.5,52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18419
+ - uid: 18417
components:
- pos: -0.5,53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18420
+ - uid: 18418
components:
- pos: -0.5,54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18421
+ - uid: 18419
components:
- rot: -1.5707963267948966 rad
pos: -17.5,51.5
@@ -119969,7 +119926,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18422
+ - uid: 18420
components:
- rot: -1.5707963267948966 rad
pos: -18.5,51.5
@@ -119977,7 +119934,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18423
+ - uid: 18421
components:
- rot: -1.5707963267948966 rad
pos: -19.5,51.5
@@ -119985,7 +119942,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18424
+ - uid: 18422
components:
- rot: -1.5707963267948966 rad
pos: -18.5,50.5
@@ -119993,7 +119950,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18425
+ - uid: 18423
components:
- rot: -1.5707963267948966 rad
pos: -19.5,50.5
@@ -120001,7 +119958,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18426
+ - uid: 18424
components:
- rot: -1.5707963267948966 rad
pos: -20.5,50.5
@@ -120009,7 +119966,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18427
+ - uid: 18425
components:
- rot: 3.141592653589793 rad
pos: -20.5,50.5
@@ -120017,7 +119974,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18428
+ - uid: 18426
components:
- rot: 3.141592653589793 rad
pos: -20.5,49.5
@@ -120025,7 +119982,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18429
+ - uid: 18427
components:
- rot: 3.141592653589793 rad
pos: -21.5,49.5
@@ -120033,7 +119990,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18430
+ - uid: 18428
components:
- rot: 3.141592653589793 rad
pos: -16.5,50.5
@@ -120041,7 +119998,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18431
+ - uid: 18429
components:
- rot: 1.5707963267948966 rad
pos: -16.5,50.5
@@ -120049,7 +120006,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18432
+ - uid: 18430
components:
- rot: 1.5707963267948966 rad
pos: -15.5,50.5
@@ -120057,7 +120014,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18433
+ - uid: 18431
components:
- rot: 1.5707963267948966 rad
pos: -14.5,50.5
@@ -120065,7 +120022,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18434
+ - uid: 18432
components:
- rot: 1.5707963267948966 rad
pos: -13.5,50.5
@@ -120073,7 +120030,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18435
+ - uid: 18433
components:
- rot: 1.5707963267948966 rad
pos: -15.5,51.5
@@ -120081,7 +120038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18436
+ - uid: 18434
components:
- rot: 1.5707963267948966 rad
pos: -14.5,51.5
@@ -120089,140 +120046,140 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18437
+ - uid: 18435
components:
- pos: -21.5,52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18438
+ - uid: 18436
components:
- pos: -21.5,53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18439
+ - uid: 18437
components:
- pos: -21.5,54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18440
+ - uid: 18438
components:
- pos: -21.5,55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18441
+ - uid: 18439
components:
- pos: -21.5,56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18442
+ - uid: 18440
components:
- pos: -21.5,57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18443
+ - uid: 18441
components:
- pos: -22.5,51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18444
+ - uid: 18442
components:
- pos: -22.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18445
+ - uid: 18443
components:
- pos: -22.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18446
+ - uid: 18444
components:
- pos: -22.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18447
+ - uid: 18445
components:
- pos: -22.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18448
+ - uid: 18446
components:
- pos: -22.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18449
+ - uid: 18447
components:
- pos: -22.5,57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18450
+ - uid: 18448
components:
- pos: -22.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18451
+ - uid: 18449
components:
- pos: -22.5,59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18452
+ - uid: 18450
components:
- pos: -21.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18453
+ - uid: 18451
components:
- pos: -21.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18454
+ - uid: 18452
components:
- pos: -21.5,61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18455
+ - uid: 18453
components:
- pos: -22.5,62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18456
+ - uid: 18454
components:
- rot: -1.5707963267948966 rad
pos: -20.5,62.5
@@ -120230,7 +120187,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18457
+ - uid: 18455
components:
- rot: -1.5707963267948966 rad
pos: -19.5,62.5
@@ -120238,7 +120195,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18458
+ - uid: 18456
components:
- rot: -1.5707963267948966 rad
pos: -18.5,62.5
@@ -120246,7 +120203,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18459
+ - uid: 18457
components:
- rot: -1.5707963267948966 rad
pos: -21.5,61.5
@@ -120254,7 +120211,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18460
+ - uid: 18458
components:
- rot: -1.5707963267948966 rad
pos: -20.5,61.5
@@ -120262,7 +120219,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18461
+ - uid: 18459
components:
- rot: -1.5707963267948966 rad
pos: -19.5,61.5
@@ -120270,7 +120227,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18462
+ - uid: 18460
components:
- rot: -1.5707963267948966 rad
pos: -18.5,61.5
@@ -120278,140 +120235,140 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18463
+ - uid: 18461
components:
- pos: -22.5,63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18464
+ - uid: 18462
components:
- pos: -22.5,64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18465
+ - uid: 18463
components:
- pos: -22.5,65.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18466
+ - uid: 18464
components:
- pos: -22.5,67.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18467
+ - uid: 18465
components:
- pos: -22.5,68.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18468
+ - uid: 18466
components:
- pos: -22.5,69.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18469
+ - uid: 18467
components:
- pos: -22.5,70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18470
+ - uid: 18468
components:
- pos: -22.5,71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18471
+ - uid: 18469
components:
- pos: -22.5,72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18472
+ - uid: 18470
components:
- pos: -21.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18473
+ - uid: 18471
components:
- pos: -21.5,64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18474
+ - uid: 18472
components:
- pos: -21.5,65.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18475
+ - uid: 18473
components:
- pos: -21.5,66.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18476
+ - uid: 18474
components:
- pos: -21.5,67.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18477
+ - uid: 18475
components:
- pos: -21.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18478
+ - uid: 18476
components:
- pos: -21.5,69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18479
+ - uid: 18477
components:
- pos: -21.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18480
+ - uid: 18478
components:
- pos: -21.5,71.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18481
+ - uid: 18479
components:
- pos: -21.5,72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18482
+ - uid: 18480
components:
- rot: -1.5707963267948966 rad
pos: -16.5,62.5
@@ -120419,7 +120376,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18483
+ - uid: 18481
components:
- rot: -1.5707963267948966 rad
pos: -15.5,62.5
@@ -120427,7 +120384,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18484
+ - uid: 18482
components:
- rot: -1.5707963267948966 rad
pos: -14.5,62.5
@@ -120435,7 +120392,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18485
+ - uid: 18483
components:
- rot: -1.5707963267948966 rad
pos: -16.5,61.5
@@ -120443,7 +120400,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18486
+ - uid: 18484
components:
- rot: -1.5707963267948966 rad
pos: -15.5,61.5
@@ -120451,7 +120408,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18487
+ - uid: 18485
components:
- rot: -1.5707963267948966 rad
pos: -14.5,61.5
@@ -120459,7 +120416,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18488
+ - uid: 18486
components:
- rot: -1.5707963267948966 rad
pos: -13.5,61.5
@@ -120467,168 +120424,168 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18489
+ - uid: 18487
components:
- pos: -13.5,61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18490
+ - uid: 18488
components:
- pos: -13.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18491
+ - uid: 18489
components:
- pos: -13.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18492
+ - uid: 18490
components:
- pos: -12.5,62.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18493
+ - uid: 18491
components:
- pos: -12.5,63.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18494
+ - uid: 18492
components:
- pos: -12.5,64.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18495
+ - uid: 18493
components:
- pos: -12.5,65.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18496
+ - uid: 18494
components:
- pos: -12.5,66.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18497
+ - uid: 18495
components:
- pos: -12.5,67.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18498
+ - uid: 18496
components:
- pos: -12.5,68.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18499
+ - uid: 18497
components:
- pos: -12.5,69.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18500
+ - uid: 18498
components:
- pos: -12.5,70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18501
+ - uid: 18499
components:
- pos: -12.5,71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18502
+ - uid: 18500
components:
- pos: -12.5,72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18503
+ - uid: 18501
components:
- pos: -13.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18504
+ - uid: 18502
components:
- pos: -13.5,64.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18505
+ - uid: 18503
components:
- pos: -13.5,65.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18506
+ - uid: 18504
components:
- pos: -13.5,67.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18507
+ - uid: 18505
components:
- pos: -13.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18508
+ - uid: 18506
components:
- pos: -13.5,69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18509
+ - uid: 18507
components:
- pos: -13.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18510
+ - uid: 18508
components:
- pos: -13.5,71.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18511
+ - uid: 18509
components:
- pos: -13.5,72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18512
+ - uid: 18510
components:
- rot: 1.5707963267948966 rad
pos: -11.5,59.5
@@ -120636,7 +120593,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18513
+ - uid: 18511
components:
- rot: 1.5707963267948966 rad
pos: -10.5,59.5
@@ -120644,7 +120601,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18514
+ - uid: 18512
components:
- rot: 1.5707963267948966 rad
pos: -9.5,59.5
@@ -120652,7 +120609,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18515
+ - uid: 18513
components:
- rot: 1.5707963267948966 rad
pos: -8.5,59.5
@@ -120660,7 +120617,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18516
+ - uid: 18514
components:
- rot: 1.5707963267948966 rad
pos: -7.5,59.5
@@ -120668,7 +120625,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18517
+ - uid: 18515
components:
- rot: 1.5707963267948966 rad
pos: -6.5,59.5
@@ -120676,7 +120633,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18518
+ - uid: 18516
components:
- rot: 1.5707963267948966 rad
pos: -5.5,59.5
@@ -120684,7 +120641,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18519
+ - uid: 18517
components:
- rot: 1.5707963267948966 rad
pos: -4.5,59.5
@@ -120692,7 +120649,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18520
+ - uid: 18518
components:
- rot: 1.5707963267948966 rad
pos: -12.5,58.5
@@ -120700,7 +120657,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18521
+ - uid: 18519
components:
- rot: 1.5707963267948966 rad
pos: -11.5,58.5
@@ -120708,7 +120665,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18522
+ - uid: 18520
components:
- rot: 1.5707963267948966 rad
pos: -10.5,58.5
@@ -120716,7 +120673,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18523
+ - uid: 18521
components:
- rot: 1.5707963267948966 rad
pos: -9.5,58.5
@@ -120724,7 +120681,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18524
+ - uid: 18522
components:
- rot: 1.5707963267948966 rad
pos: -8.5,58.5
@@ -120732,7 +120689,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18525
+ - uid: 18523
components:
- rot: 1.5707963267948966 rad
pos: -7.5,58.5
@@ -120740,7 +120697,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18526
+ - uid: 18524
components:
- rot: 1.5707963267948966 rad
pos: -6.5,58.5
@@ -120748,7 +120705,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18527
+ - uid: 18525
components:
- rot: 1.5707963267948966 rad
pos: -5.5,58.5
@@ -120756,98 +120713,98 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18528
+ - uid: 18526
components:
- pos: -12.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18529
+ - uid: 18527
components:
- pos: -12.5,57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18530
+ - uid: 18528
components:
- pos: -12.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18531
+ - uid: 18529
components:
- pos: -12.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18532
+ - uid: 18530
components:
- pos: -12.5,54.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18533
+ - uid: 18531
components:
- pos: -12.5,53.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18534
+ - uid: 18532
components:
- pos: -12.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18535
+ - uid: 18533
components:
- pos: -12.5,51.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18536
+ - uid: 18534
components:
- pos: -13.5,56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18537
+ - uid: 18535
components:
- pos: -13.5,55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18538
+ - uid: 18536
components:
- pos: -13.5,54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18539
+ - uid: 18537
components:
- pos: -13.5,53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18540
+ - uid: 18538
components:
- pos: -13.5,52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18541
+ - uid: 18539
components:
- rot: 1.5707963267948966 rad
pos: -3.5,59.5
@@ -120855,7 +120812,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18542
+ - uid: 18540
components:
- rot: 1.5707963267948966 rad
pos: -2.5,59.5
@@ -120863,7 +120820,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18543
+ - uid: 18541
components:
- rot: 1.5707963267948966 rad
pos: -4.5,58.5
@@ -120871,7 +120828,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18544
+ - uid: 18542
components:
- rot: 1.5707963267948966 rad
pos: -3.5,58.5
@@ -120879,7 +120836,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18545
+ - uid: 18543
components:
- rot: -1.5707963267948966 rad
pos: 0.5,59.5
@@ -120887,7 +120844,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18546
+ - uid: 18544
components:
- rot: 1.5707963267948966 rad
pos: -1.5,58.5
@@ -120895,14 +120852,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18547
+ - uid: 18545
components:
- pos: -0.5,57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18548
+ - uid: 18546
components:
- rot: 1.5707963267948966 rad
pos: -0.5,59.5
@@ -120910,35 +120867,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18549
+ - uid: 18547
components:
- pos: -0.5,55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18550
+ - uid: 18548
components:
- pos: 1.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18551
+ - uid: 18549
components:
- pos: 1.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18552
+ - uid: 18550
components:
- pos: 1.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18553
+ - uid: 18551
components:
- rot: -1.5707963267948966 rad
pos: 38.5,47.5
@@ -120946,7 +120903,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18554
+ - uid: 18552
components:
- rot: -1.5707963267948966 rad
pos: 37.5,47.5
@@ -120954,7 +120911,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18555
+ - uid: 18553
components:
- rot: -1.5707963267948966 rad
pos: 36.5,47.5
@@ -120962,7 +120919,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18556
+ - uid: 18554
components:
- rot: -1.5707963267948966 rad
pos: 35.5,47.5
@@ -120970,7 +120927,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18557
+ - uid: 18555
components:
- rot: -1.5707963267948966 rad
pos: 34.5,47.5
@@ -120978,7 +120935,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18558
+ - uid: 18556
components:
- rot: -1.5707963267948966 rad
pos: 33.5,47.5
@@ -120986,7 +120943,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18559
+ - uid: 18557
components:
- rot: -1.5707963267948966 rad
pos: 32.5,47.5
@@ -120994,7 +120951,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18560
+ - uid: 18558
components:
- rot: -1.5707963267948966 rad
pos: 31.5,47.5
@@ -121002,7 +120959,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18561
+ - uid: 18559
components:
- rot: -1.5707963267948966 rad
pos: 30.5,47.5
@@ -121010,7 +120967,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18562
+ - uid: 18560
components:
- rot: -1.5707963267948966 rad
pos: 28.5,45.5
@@ -121018,7 +120975,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18563
+ - uid: 18561
components:
- rot: -1.5707963267948966 rad
pos: 27.5,45.5
@@ -121026,7 +120983,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18564
+ - uid: 18562
components:
- rot: -1.5707963267948966 rad
pos: 26.5,45.5
@@ -121034,7 +120991,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18565
+ - uid: 18563
components:
- rot: -1.5707963267948966 rad
pos: 25.5,45.5
@@ -121042,7 +120999,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18566
+ - uid: 18564
components:
- rot: -1.5707963267948966 rad
pos: 28.5,46.5
@@ -121050,7 +121007,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18567
+ - uid: 18565
components:
- rot: -1.5707963267948966 rad
pos: 27.5,46.5
@@ -121058,7 +121015,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18568
+ - uid: 18566
components:
- rot: -1.5707963267948966 rad
pos: 26.5,46.5
@@ -121066,7 +121023,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18569
+ - uid: 18567
components:
- rot: -1.5707963267948966 rad
pos: 25.5,46.5
@@ -121074,7 +121031,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18570
+ - uid: 18568
components:
- rot: -1.5707963267948966 rad
pos: 24.5,46.5
@@ -121082,7 +121039,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18571
+ - uid: 18569
components:
- rot: 1.5707963267948966 rad
pos: 30.5,44.5
@@ -121090,7 +121047,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18572
+ - uid: 18570
components:
- rot: 1.5707963267948966 rad
pos: 31.5,44.5
@@ -121098,7 +121055,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18573
+ - uid: 18571
components:
- rot: 1.5707963267948966 rad
pos: 32.5,44.5
@@ -121106,7 +121063,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18574
+ - uid: 18572
components:
- rot: 1.5707963267948966 rad
pos: 33.5,44.5
@@ -121114,7 +121071,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18575
+ - uid: 18573
components:
- rot: 1.5707963267948966 rad
pos: 34.5,44.5
@@ -121122,7 +121079,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18576
+ - uid: 18574
components:
- rot: 1.5707963267948966 rad
pos: 35.5,44.5
@@ -121130,7 +121087,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18577
+ - uid: 18575
components:
- rot: 1.5707963267948966 rad
pos: 36.5,44.5
@@ -121138,7 +121095,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18578
+ - uid: 18576
components:
- rot: 1.5707963267948966 rad
pos: 37.5,44.5
@@ -121146,7 +121103,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18579
+ - uid: 18577
components:
- rot: 1.5707963267948966 rad
pos: 38.5,44.5
@@ -121154,7 +121111,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18580
+ - uid: 18578
components:
- rot: 1.5707963267948966 rad
pos: 39.5,44.5
@@ -121162,7 +121119,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18581
+ - uid: 18579
components:
- rot: 3.141592653589793 rad
pos: -6.5,-91.5
@@ -121170,98 +121127,98 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18582
+ - uid: 18580
components:
- pos: -22.5,-90.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18583
+ - uid: 18581
components:
- pos: -22.5,-91.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18584
+ - uid: 18582
components:
- pos: -22.5,-92.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18585
+ - uid: 18583
components:
- pos: -22.5,-93.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18586
+ - uid: 18584
components:
- pos: -22.5,-94.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18587
+ - uid: 18585
components:
- pos: -22.5,-95.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18588
+ - uid: 18586
components:
- pos: -20.5,-89.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18589
+ - uid: 18587
components:
- pos: -20.5,-90.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18590
+ - uid: 18588
components:
- pos: -20.5,-91.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18591
+ - uid: 18589
components:
- pos: -20.5,-92.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18592
+ - uid: 18590
components:
- pos: -20.5,-93.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18593
+ - uid: 18591
components:
- pos: -20.5,-94.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18594
+ - uid: 18592
components:
- pos: -20.5,-95.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18595
+ - uid: 18593
components:
- rot: 3.141592653589793 rad
pos: -22.5,-97.5
@@ -121269,7 +121226,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18596
+ - uid: 18594
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-97.5
@@ -121277,7 +121234,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18597
+ - uid: 18595
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-97.5
@@ -121285,7 +121242,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18598
+ - uid: 18596
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-97.5
@@ -121293,7 +121250,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18599
+ - uid: 18597
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-97.5
@@ -121301,7 +121258,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18600
+ - uid: 18598
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-97.5
@@ -121309,7 +121266,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18601
+ - uid: 18599
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-97.5
@@ -121317,7 +121274,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18602
+ - uid: 18600
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-97.5
@@ -121325,7 +121282,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18603
+ - uid: 18601
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-97.5
@@ -121333,7 +121290,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18604
+ - uid: 18602
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-97.5
@@ -121341,7 +121298,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18605
+ - uid: 18603
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-97.5
@@ -121349,7 +121306,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18606
+ - uid: 18604
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-96.5
@@ -121357,7 +121314,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18607
+ - uid: 18605
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-96.5
@@ -121365,7 +121322,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18608
+ - uid: 18606
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-96.5
@@ -121373,7 +121330,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18609
+ - uid: 18607
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-96.5
@@ -121381,7 +121338,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18610
+ - uid: 18608
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-96.5
@@ -121389,7 +121346,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18611
+ - uid: 18609
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-96.5
@@ -121397,7 +121354,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18612
+ - uid: 18610
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-96.5
@@ -121405,7 +121362,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18613
+ - uid: 18611
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-96.5
@@ -121413,7 +121370,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18614
+ - uid: 18612
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-98.5
@@ -121421,7 +121378,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18615
+ - uid: 18613
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-98.5
@@ -121429,7 +121386,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18616
+ - uid: 18614
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-98.5
@@ -121437,7 +121394,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18617
+ - uid: 18615
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-98.5
@@ -121445,7 +121402,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18618
+ - uid: 18616
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-98.5
@@ -121453,7 +121410,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18619
+ - uid: 18617
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-97.5
@@ -121461,7 +121418,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18620
+ - uid: 18618
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-97.5
@@ -121469,7 +121426,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18621
+ - uid: 18619
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-97.5
@@ -121477,7 +121434,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18622
+ - uid: 18620
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-97.5
@@ -121485,7 +121442,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18623
+ - uid: 18621
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-97.5
@@ -121493,7 +121450,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18624
+ - uid: 18622
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-97.5
@@ -121501,7 +121458,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18625
+ - uid: 18623
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-97.5
@@ -121509,7 +121466,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18626
+ - uid: 18624
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-97.5
@@ -121517,7 +121474,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18627
+ - uid: 18625
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-97.5
@@ -121525,7 +121482,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18628
+ - uid: 18626
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-97.5
@@ -121533,7 +121490,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18629
+ - uid: 18627
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-98.5
@@ -121541,7 +121498,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18630
+ - uid: 18628
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-98.5
@@ -121549,7 +121506,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18631
+ - uid: 18629
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-98.5
@@ -121557,7 +121514,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18632
+ - uid: 18630
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-98.5
@@ -121565,7 +121522,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18633
+ - uid: 18631
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-98.5
@@ -121573,7 +121530,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18634
+ - uid: 18632
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-98.5
@@ -121581,7 +121538,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18635
+ - uid: 18633
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-98.5
@@ -121589,7 +121546,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18636
+ - uid: 18634
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-98.5
@@ -121597,7 +121554,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18637
+ - uid: 18635
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-97.5
@@ -121605,112 +121562,112 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18638
+ - uid: 18636
components:
- pos: -8.5,-96.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18639
+ - uid: 18637
components:
- pos: -8.5,-95.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18640
+ - uid: 18638
components:
- pos: -8.5,-94.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18641
+ - uid: 18639
components:
- pos: -8.5,-93.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18642
+ - uid: 18640
components:
- pos: -8.5,-92.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18643
+ - uid: 18641
components:
- pos: -7.5,-97.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18644
+ - uid: 18642
components:
- pos: -7.5,-96.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18645
+ - uid: 18643
components:
- pos: -7.5,-95.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18646
+ - uid: 18644
components:
- pos: -7.5,-94.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18647
+ - uid: 18645
components:
- pos: -8.5,-90.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18648
+ - uid: 18646
components:
- pos: -8.5,-89.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18649
+ - uid: 18647
components:
- pos: -8.5,-88.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18650
+ - uid: 18648
components:
- pos: -8.5,-87.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18651
+ - uid: 18649
components:
- pos: -8.5,-86.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18652
+ - uid: 18650
components:
- pos: -8.5,-85.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18653
+ - uid: 18651
components:
- rot: 3.141592653589793 rad
pos: -6.5,-89.5
@@ -121718,7 +121675,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18654
+ - uid: 18652
components:
- rot: 3.141592653589793 rad
pos: -6.5,-90.5
@@ -121726,7 +121683,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18655
+ - uid: 18653
components:
- rot: 3.141592653589793 rad
pos: -6.5,-92.5
@@ -121734,7 +121691,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18656
+ - uid: 18654
components:
- rot: 3.141592653589793 rad
pos: -6.5,-88.5
@@ -121742,7 +121699,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18657
+ - uid: 18655
components:
- rot: 3.141592653589793 rad
pos: -6.5,-87.5
@@ -121750,7 +121707,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18658
+ - uid: 18656
components:
- rot: 3.141592653589793 rad
pos: -6.5,-86.5
@@ -121758,7 +121715,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18659
+ - uid: 18657
components:
- rot: 3.141592653589793 rad
pos: -6.5,-85.5
@@ -121766,7 +121723,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18660
+ - uid: 18658
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-96.5
@@ -121774,7 +121731,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18661
+ - uid: 18659
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-97.5
@@ -121782,7 +121739,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18662
+ - uid: 18660
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-96.5
@@ -121790,7 +121747,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18663
+ - uid: 18661
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-97.5
@@ -121798,7 +121755,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18664
+ - uid: 18662
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-96.5
@@ -121806,7 +121763,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18665
+ - uid: 18663
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-97.5
@@ -121814,7 +121771,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18666
+ - uid: 18664
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-72.5
@@ -121822,7 +121779,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18667
+ - uid: 18665
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-34.5
@@ -121830,14 +121787,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18668
+ - uid: 18666
components:
- pos: 70.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18669
+ - uid: 18667
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-33.5
@@ -121845,7 +121802,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18670
+ - uid: 18668
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-33.5
@@ -121853,7 +121810,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18671
+ - uid: 18669
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-33.5
@@ -121861,7 +121818,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18672
+ - uid: 18670
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-33.5
@@ -121869,7 +121826,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18673
+ - uid: 18671
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-33.5
@@ -121877,7 +121834,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18674
+ - uid: 18672
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-33.5
@@ -121885,7 +121842,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18675
+ - uid: 18673
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-34.5
@@ -121893,7 +121850,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18676
+ - uid: 18674
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-34.5
@@ -121901,7 +121858,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18677
+ - uid: 18675
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-34.5
@@ -121909,7 +121866,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18678
+ - uid: 18676
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-33.5
@@ -121917,7 +121874,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18679
+ - uid: 18677
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-33.5
@@ -121925,7 +121882,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18680
+ - uid: 18678
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-34.5
@@ -121933,14 +121890,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18681
+ - uid: 18679
components:
- pos: 72.5,-32.5
parent: 2
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18682
+ - uid: 18680
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-34.5
@@ -121948,7 +121905,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18683
+ - uid: 18681
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-34.5
@@ -121956,70 +121913,70 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18684
+ - uid: 18682
components:
- pos: 74.5,-35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18685
+ - uid: 18683
components:
- pos: 74.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18686
+ - uid: 18684
components:
- pos: 74.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18687
+ - uid: 18685
components:
- pos: 74.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18688
+ - uid: 18686
components:
- pos: 74.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18689
+ - uid: 18687
components:
- pos: 74.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18690
+ - uid: 18688
components:
- pos: 75.5,-34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18691
+ - uid: 18689
components:
- pos: 75.5,-35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18692
+ - uid: 18690
components:
- pos: 75.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18693
+ - uid: 18691
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-37.5
@@ -122027,21 +121984,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18694
+ - uid: 18692
components:
- pos: 75.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18695
+ - uid: 18693
components:
- pos: 75.5,-39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18696
+ - uid: 18694
components:
- rot: 3.141592653589793 rad
pos: 72.5,-30.5
@@ -122049,7 +122006,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18697
+ - uid: 18695
components:
- rot: 3.141592653589793 rad
pos: 75.5,-41.5
@@ -122057,7 +122014,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18698
+ - uid: 18696
components:
- rot: 3.141592653589793 rad
pos: 75.5,-42.5
@@ -122065,7 +122022,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18699
+ - uid: 18697
components:
- rot: 3.141592653589793 rad
pos: 74.5,-42.5
@@ -122073,7 +122030,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18700
+ - uid: 18698
components:
- rot: 3.141592653589793 rad
pos: 74.5,-43.5
@@ -122081,7 +122038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18701
+ - uid: 18699
components:
- rot: 3.141592653589793 rad
pos: 74.5,-44.5
@@ -122089,7 +122046,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18702
+ - uid: 18700
components:
- rot: 3.141592653589793 rad
pos: 75.5,-43.5
@@ -122097,7 +122054,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18703
+ - uid: 18701
components:
- rot: 3.141592653589793 rad
pos: 75.5,-44.5
@@ -122105,7 +122062,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18704
+ - uid: 18702
components:
- rot: 3.141592653589793 rad
pos: 75.5,-45.5
@@ -122113,7 +122070,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18705
+ - uid: 18703
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-48.5
@@ -122121,7 +122078,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18706
+ - uid: 18704
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-46.5
@@ -122129,7 +122086,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18707
+ - uid: 18705
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-47.5
@@ -122137,7 +122094,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18708
+ - uid: 18706
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-45.5
@@ -122145,7 +122102,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18709
+ - uid: 18707
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-45.5
@@ -122153,21 +122110,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18710
+ - uid: 18708
components:
- pos: 5.5,-26.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18711
+ - uid: 18709
components:
- pos: 5.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18712
+ - uid: 18710
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-25.5
@@ -122175,7 +122132,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18713
+ - uid: 18711
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-11.5
@@ -122183,14 +122140,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18714
+ - uid: 18712
components:
- pos: 66.5,-39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18715
+ - uid: 18713
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-37.5
@@ -122198,7 +122155,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18716
+ - uid: 18714
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-36.5
@@ -122206,7 +122163,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18717
+ - uid: 18715
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-36.5
@@ -122214,7 +122171,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18718
+ - uid: 18716
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-37.5
@@ -122222,7 +122179,7 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 18719
+ - uid: 18717
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-36.5
@@ -122230,14 +122187,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18720
+ - uid: 18718
components:
- pos: 71.5,-32.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 18721
+ - uid: 18719
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-33.5
@@ -122245,7 +122202,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18722
+ - uid: 18720
components:
- rot: 1.5707963267948966 rad
pos: 72.5,-33.5
@@ -122253,12 +122210,12 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18723
+ - uid: 18721
components:
- pos: -55.5,-62.5
parent: 2
type: Transform
- - uid: 18724
+ - uid: 18722
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-38.5
@@ -122266,7 +122223,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18725
+ - uid: 18723
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-38.5
@@ -122274,7 +122231,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 18726
+ - uid: 18724
components:
- rot: 3.141592653589793 rad
pos: 73.5,-31.5
@@ -122282,7 +122239,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18727
+ - uid: 18725
components:
- rot: 3.141592653589793 rad
pos: 73.5,-30.5
@@ -122290,21 +122247,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18728
+ - uid: 18726
components:
- pos: 5.5,-28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18729
+ - uid: 18727
components:
- pos: 5.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18730
+ - uid: 18728
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-34.5
@@ -122312,35 +122269,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18731
+ - uid: 18729
components:
- rot: 3.141592653589793 rad
pos: 55.5,-50.5
parent: 2
type: Transform
- - uid: 18732
+ - uid: 18730
components:
- rot: 3.141592653589793 rad
pos: 55.5,-49.5
parent: 2
type: Transform
- - uid: 18733
+ - uid: 18731
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-48.5
parent: 2
type: Transform
- - uid: 18734
+ - uid: 18732
components:
- pos: -54.5,-62.5
parent: 2
type: Transform
- - uid: 18735
+ - uid: 18733
components:
- pos: -54.5,-61.5
parent: 2
type: Transform
- - uid: 18736
+ - uid: 18734
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-11.5
@@ -122348,7 +122305,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18737
+ - uid: 18735
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-11.5
@@ -122356,7 +122313,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18738
+ - uid: 18736
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-11.5
@@ -122364,7 +122321,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18739
+ - uid: 18737
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-11.5
@@ -122372,7 +122329,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18740
+ - uid: 18738
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-11.5
@@ -122380,7 +122337,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18741
+ - uid: 18739
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-11.5
@@ -122388,7 +122345,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18742
+ - uid: 18740
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-6.5
@@ -122396,7 +122353,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18743
+ - uid: 18741
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-6.5
@@ -122404,7 +122361,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18744
+ - uid: 18742
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-6.5
@@ -122412,7 +122369,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18745
+ - uid: 18743
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-6.5
@@ -122420,7 +122377,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18746
+ - uid: 18744
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-6.5
@@ -122428,7 +122385,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18747
+ - uid: 18745
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-6.5
@@ -122436,7 +122393,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18748
+ - uid: 18746
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-6.5
@@ -122444,7 +122401,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18749
+ - uid: 18747
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-72.5
@@ -122452,7 +122409,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18750
+ - uid: 18748
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-72.5
@@ -122460,7 +122417,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18751
+ - uid: 18749
components:
- rot: 1.5707963267948966 rad
pos: -19.5,25.5
@@ -122468,7 +122425,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18752
+ - uid: 18750
components:
- rot: 1.5707963267948966 rad
pos: -18.5,25.5
@@ -122476,7 +122433,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18753
+ - uid: 18751
components:
- rot: 1.5707963267948966 rad
pos: -17.5,25.5
@@ -122484,7 +122441,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18754
+ - uid: 18752
components:
- rot: 1.5707963267948966 rad
pos: -16.5,25.5
@@ -122492,7 +122449,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18755
+ - uid: 18753
components:
- rot: 1.5707963267948966 rad
pos: -17.5,24.5
@@ -122500,7 +122457,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18756
+ - uid: 18754
components:
- rot: 1.5707963267948966 rad
pos: -16.5,24.5
@@ -122508,7 +122465,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18757
+ - uid: 18755
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-36.5
@@ -122516,7 +122473,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18758
+ - uid: 18756
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-37.5
@@ -122524,14 +122481,14 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 18759
+ - uid: 18757
components:
- pos: -5.5,-9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18760
+ - uid: 18758
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-12.5
@@ -122539,7 +122496,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18761
+ - uid: 18759
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-12.5
@@ -122547,7 +122504,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18762
+ - uid: 18760
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-12.5
@@ -122555,7 +122512,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18763
+ - uid: 18761
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-12.5
@@ -122563,7 +122520,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18764
+ - uid: 18762
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-14.5
@@ -122571,7 +122528,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18765
+ - uid: 18763
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-14.5
@@ -122579,7 +122536,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18766
+ - uid: 18764
components:
- rot: 3.141592653589793 rad
pos: -11.5,-23.5
@@ -122587,7 +122544,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18767
+ - uid: 18765
components:
- rot: 3.141592653589793 rad
pos: -11.5,-21.5
@@ -122595,7 +122552,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18768
+ - uid: 18766
components:
- rot: 3.141592653589793 rad
pos: -11.5,-20.5
@@ -122603,7 +122560,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18769
+ - uid: 18767
components:
- rot: 3.141592653589793 rad
pos: -11.5,-19.5
@@ -122611,7 +122568,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18770
+ - uid: 18768
components:
- rot: 3.141592653589793 rad
pos: -10.5,-19.5
@@ -122619,7 +122576,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18771
+ - uid: 18769
components:
- rot: 3.141592653589793 rad
pos: -10.5,-20.5
@@ -122627,7 +122584,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18772
+ - uid: 18770
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-21.5
@@ -122635,14 +122592,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18773
+ - uid: 18771
components:
- pos: -25.5,-58.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18774
+ - uid: 18772
components:
- rot: 3.141592653589793 rad
pos: -28.5,-72.5
@@ -122650,7 +122607,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18775
+ - uid: 18773
components:
- rot: 3.141592653589793 rad
pos: -28.5,-73.5
@@ -122658,7 +122615,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18776
+ - uid: 18774
components:
- rot: 3.141592653589793 rad
pos: -30.5,-72.5
@@ -122666,7 +122623,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18777
+ - uid: 18775
components:
- rot: 3.141592653589793 rad
pos: -30.5,-73.5
@@ -122674,7 +122631,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18778
+ - uid: 18776
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-72.5
@@ -122682,7 +122639,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18779
+ - uid: 18777
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-72.5
@@ -122690,25 +122647,25 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18780
+ - uid: 18778
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-35.5
parent: 2
type: Transform
- - uid: 18781
+ - uid: 18779
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-35.5
parent: 2
type: Transform
- - uid: 18782
+ - uid: 18780
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-35.5
parent: 2
type: Transform
- - uid: 18783
+ - uid: 18781
components:
- rot: 3.141592653589793 rad
pos: 30.5,-80.5
@@ -122716,7 +122673,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18784
+ - uid: 18782
components:
- rot: 3.141592653589793 rad
pos: 47.5,-76.5
@@ -122724,7 +122681,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18785
+ - uid: 18783
components:
- rot: 3.141592653589793 rad
pos: 47.5,-77.5
@@ -122732,7 +122689,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18786
+ - uid: 18784
components:
- rot: 3.141592653589793 rad
pos: 47.5,-78.5
@@ -122740,7 +122697,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18787
+ - uid: 18785
components:
- rot: 3.141592653589793 rad
pos: 29.5,-82.5
@@ -122748,7 +122705,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18788
+ - uid: 18786
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-73.5
@@ -122756,7 +122713,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18789
+ - uid: 18787
components:
- rot: 3.141592653589793 rad
pos: 48.5,-80.5
@@ -122764,7 +122721,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18790
+ - uid: 18788
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-72.5
@@ -122772,7 +122729,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18791
+ - uid: 18789
components:
- rot: 3.141592653589793 rad
pos: 29.5,-75.5
@@ -122780,7 +122737,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18792
+ - uid: 18790
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-72.5
@@ -122788,7 +122745,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18793
+ - uid: 18791
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-72.5
@@ -122796,7 +122753,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18794
+ - uid: 18792
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-72.5
@@ -122804,7 +122761,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18795
+ - uid: 18793
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-72.5
@@ -122812,7 +122769,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18796
+ - uid: 18794
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-73.5
@@ -122820,7 +122777,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18797
+ - uid: 18795
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-73.5
@@ -122828,7 +122785,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18798
+ - uid: 18796
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-73.5
@@ -122836,7 +122793,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18799
+ - uid: 18797
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-73.5
@@ -122844,7 +122801,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18800
+ - uid: 18798
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-73.5
@@ -122852,7 +122809,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18801
+ - uid: 18799
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-73.5
@@ -122860,7 +122817,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18802
+ - uid: 18800
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-73.5
@@ -122868,7 +122825,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18803
+ - uid: 18801
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-73.5
@@ -122876,7 +122833,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18804
+ - uid: 18802
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-73.5
@@ -122884,7 +122841,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18805
+ - uid: 18803
components:
- rot: 3.141592653589793 rad
pos: 29.5,-74.5
@@ -122892,7 +122849,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18806
+ - uid: 18804
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-73.5
@@ -122900,7 +122857,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18807
+ - uid: 18805
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-73.5
@@ -122908,7 +122865,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18808
+ - uid: 18806
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-73.5
@@ -122916,7 +122873,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18809
+ - uid: 18807
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-73.5
@@ -122924,7 +122881,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18810
+ - uid: 18808
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-82.5
@@ -122932,7 +122889,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18811
+ - uid: 18809
components:
- rot: 3.141592653589793 rad
pos: 29.5,-76.5
@@ -122940,7 +122897,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18812
+ - uid: 18810
components:
- rot: 3.141592653589793 rad
pos: 29.5,-77.5
@@ -122948,7 +122905,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18813
+ - uid: 18811
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-82.5
@@ -122956,7 +122913,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18814
+ - uid: 18812
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-82.5
@@ -122964,7 +122921,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18815
+ - uid: 18813
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-83.5
@@ -122972,7 +122929,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18816
+ - uid: 18814
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-83.5
@@ -122980,7 +122937,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18817
+ - uid: 18815
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-83.5
@@ -122988,7 +122945,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18818
+ - uid: 18816
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-83.5
@@ -122996,7 +122953,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18819
+ - uid: 18817
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-83.5
@@ -123004,7 +122961,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18820
+ - uid: 18818
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-82.5
@@ -123012,7 +122969,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18821
+ - uid: 18819
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-82.5
@@ -123020,7 +122977,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18822
+ - uid: 18820
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-82.5
@@ -123028,7 +122985,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18823
+ - uid: 18821
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-82.5
@@ -123036,7 +122993,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18824
+ - uid: 18822
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-82.5
@@ -123044,7 +123001,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18825
+ - uid: 18823
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-83.5
@@ -123052,7 +123009,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18826
+ - uid: 18824
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-83.5
@@ -123060,7 +123017,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18827
+ - uid: 18825
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-83.5
@@ -123068,7 +123025,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18828
+ - uid: 18826
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-83.5
@@ -123076,7 +123033,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18829
+ - uid: 18827
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-82.5
@@ -123084,7 +123041,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18830
+ - uid: 18828
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-82.5
@@ -123092,7 +123049,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18831
+ - uid: 18829
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-82.5
@@ -123100,7 +123057,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18832
+ - uid: 18830
components:
- rot: 3.141592653589793 rad
pos: 30.5,-74.5
@@ -123108,7 +123065,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18833
+ - uid: 18831
components:
- rot: 3.141592653589793 rad
pos: 30.5,-78.5
@@ -123116,7 +123073,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18834
+ - uid: 18832
components:
- rot: 3.141592653589793 rad
pos: 30.5,-77.5
@@ -123124,7 +123081,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18835
+ - uid: 18833
components:
- rot: 3.141592653589793 rad
pos: 30.5,-75.5
@@ -123132,7 +123089,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18836
+ - uid: 18834
components:
- rot: 3.141592653589793 rad
pos: 30.5,-76.5
@@ -123140,7 +123097,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18837
+ - uid: 18835
components:
- rot: 3.141592653589793 rad
pos: 30.5,-79.5
@@ -123148,7 +123105,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18838
+ - uid: 18836
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-73.5
@@ -123156,7 +123113,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18839
+ - uid: 18837
components:
- rot: 3.141592653589793 rad
pos: 48.5,-74.5
@@ -123164,7 +123121,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18840
+ - uid: 18838
components:
- rot: 3.141592653589793 rad
pos: 48.5,-76.5
@@ -123172,7 +123129,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18841
+ - uid: 18839
components:
- rot: 3.141592653589793 rad
pos: 48.5,-83.5
@@ -123180,7 +123137,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18842
+ - uid: 18840
components:
- rot: 3.141592653589793 rad
pos: 48.5,-84.5
@@ -123188,7 +123145,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18843
+ - uid: 18841
components:
- rot: 3.141592653589793 rad
pos: 48.5,-77.5
@@ -123196,7 +123153,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18844
+ - uid: 18842
components:
- rot: 3.141592653589793 rad
pos: 48.5,-78.5
@@ -123204,7 +123161,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18845
+ - uid: 18843
components:
- rot: 3.141592653589793 rad
pos: 48.5,-81.5
@@ -123212,7 +123169,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18846
+ - uid: 18844
components:
- rot: 3.141592653589793 rad
pos: 48.5,-82.5
@@ -123220,7 +123177,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18847
+ - uid: 18845
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-72.5
@@ -123228,7 +123185,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18848
+ - uid: 18846
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-72.5
@@ -123236,7 +123193,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18849
+ - uid: 18847
components:
- rot: 3.141592653589793 rad
pos: 47.5,-84.5
@@ -123244,7 +123201,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18850
+ - uid: 18848
components:
- rot: 3.141592653589793 rad
pos: 47.5,-74.5
@@ -123252,7 +123209,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18851
+ - uid: 18849
components:
- rot: 3.141592653589793 rad
pos: 47.5,-75.5
@@ -123260,7 +123217,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18852
+ - uid: 18850
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-73.5
@@ -123268,7 +123225,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18853
+ - uid: 18851
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-73.5
@@ -123276,7 +123233,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18854
+ - uid: 18852
components:
- rot: 3.141592653589793 rad
pos: 47.5,-85.5
@@ -123284,7 +123241,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18855
+ - uid: 18853
components:
- rot: 3.141592653589793 rad
pos: 47.5,-81.5
@@ -123292,7 +123249,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18856
+ - uid: 18854
components:
- rot: 3.141592653589793 rad
pos: 47.5,-82.5
@@ -123300,7 +123257,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18857
+ - uid: 18855
components:
- rot: 3.141592653589793 rad
pos: 47.5,-83.5
@@ -123308,7 +123265,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18858
+ - uid: 18856
components:
- rot: 1.5707963267948966 rad
pos: -21.5,66.5
@@ -123316,7 +123273,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18859
+ - uid: 18857
components:
- rot: 1.5707963267948966 rad
pos: -20.5,66.5
@@ -123324,7 +123281,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18860
+ - uid: 18858
components:
- rot: 1.5707963267948966 rad
pos: -19.5,66.5
@@ -123332,7 +123289,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18861
+ - uid: 18859
components:
- rot: 1.5707963267948966 rad
pos: -15.5,66.5
@@ -123340,7 +123297,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18862
+ - uid: 18860
components:
- rot: 1.5707963267948966 rad
pos: -14.5,66.5
@@ -123348,7 +123305,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18863
+ - uid: 18861
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-72.5
@@ -123356,7 +123313,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18864
+ - uid: 18862
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-73.5
@@ -123364,7 +123321,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18865
+ - uid: 18863
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-22.5
@@ -123372,7 +123329,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18866
+ - uid: 18864
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-22.5
@@ -123380,7 +123337,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18867
+ - uid: 18865
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-22.5
@@ -123388,7 +123345,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18868
+ - uid: 18866
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-22.5
@@ -123396,7 +123353,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18869
+ - uid: 18867
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-22.5
@@ -123404,7 +123361,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18870
+ - uid: 18868
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-22.5
@@ -123412,7 +123369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18871
+ - uid: 18869
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-22.5
@@ -123420,35 +123377,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18872
+ - uid: 18870
components:
- pos: 12.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18873
+ - uid: 18871
components:
- pos: 12.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18874
+ - uid: 18872
components:
- pos: 12.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18875
+ - uid: 18873
components:
- pos: 12.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18876
+ - uid: 18874
components:
- rot: 3.141592653589793 rad
pos: 40.5,9.5
@@ -123456,7 +123413,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18877
+ - uid: 18875
components:
- rot: 3.141592653589793 rad
pos: 40.5,8.5
@@ -123464,7 +123421,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18878
+ - uid: 18876
components:
- rot: 1.5707963267948966 rad
pos: 43.5,6.5
@@ -123472,7 +123429,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18879
+ - uid: 18877
components:
- rot: 1.5707963267948966 rad
pos: 44.5,6.5
@@ -123480,7 +123437,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18880
+ - uid: 18878
components:
- rot: 1.5707963267948966 rad
pos: 41.5,5.5
@@ -123488,7 +123445,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18881
+ - uid: 18879
components:
- rot: 1.5707963267948966 rad
pos: 42.5,5.5
@@ -123496,7 +123453,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18882
+ - uid: 18880
components:
- rot: 1.5707963267948966 rad
pos: 43.5,5.5
@@ -123504,7 +123461,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18883
+ - uid: 18881
components:
- rot: 1.5707963267948966 rad
pos: 44.5,5.5
@@ -123512,7 +123469,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18884
+ - uid: 18882
components:
- rot: 1.5707963267948966 rad
pos: -46.5,31.5
@@ -123520,147 +123477,147 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18885
+ - uid: 18883
components:
- pos: -47.5,33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18886
+ - uid: 18884
components:
- pos: -47.5,32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18887
+ - uid: 18885
components:
- pos: -45.5,34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18888
+ - uid: 18886
components:
- pos: -45.5,35.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18889
+ - uid: 18887
components:
- pos: -45.5,36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18890
+ - uid: 18888
components:
- pos: -45.5,37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18891
+ - uid: 18889
components:
- pos: -45.5,38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18892
+ - uid: 18890
components:
- pos: -45.5,39.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18893
+ - uid: 18891
components:
- pos: -45.5,40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18894
+ - uid: 18892
components:
- pos: -45.5,41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18895
+ - uid: 18893
components:
- pos: -45.5,42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18896
+ - uid: 18894
components:
- pos: -46.5,35.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18897
+ - uid: 18895
components:
- pos: -46.5,36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18898
+ - uid: 18896
components:
- pos: -46.5,37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18899
+ - uid: 18897
components:
- pos: -46.5,38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18900
+ - uid: 18898
components:
- pos: -46.5,39.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18901
+ - uid: 18899
components:
- pos: -46.5,40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18902
+ - uid: 18900
components:
- pos: -46.5,41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18903
+ - uid: 18901
components:
- pos: -46.5,42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18904
+ - uid: 18902
components:
- pos: 68.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18905
+ - uid: 18903
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-31.5
@@ -123668,7 +123625,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18906
+ - uid: 18904
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-31.5
@@ -123676,7 +123633,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18907
+ - uid: 18905
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-31.5
@@ -123684,7 +123641,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18908
+ - uid: 18906
components:
- rot: 3.141592653589793 rad
pos: -3.5,10.5
@@ -123692,14 +123649,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18909
+ - uid: 18907
components:
- pos: -3.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18910
+ - uid: 18908
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-40.5
@@ -123707,26 +123664,26 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18911
+ - uid: 18909
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-43.5
parent: 2
type: Transform
- - uid: 18912
+ - uid: 18910
components:
- pos: -70.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18913
+ - uid: 18911
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-41.5
parent: 2
type: Transform
- - uid: 18914
+ - uid: 18912
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-42.5
@@ -123734,7 +123691,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18915
+ - uid: 18913
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-42.5
@@ -123742,7 +123699,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18916
+ - uid: 18914
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-40.5
@@ -123750,7 +123707,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18917
+ - uid: 18915
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-40.5
@@ -123758,7 +123715,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18918
+ - uid: 18916
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-40.5
@@ -123766,7 +123723,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18919
+ - uid: 18917
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-41.5
@@ -123774,7 +123731,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18920
+ - uid: 18918
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-41.5
@@ -123782,22 +123739,22 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18921
+ - uid: 18919
components:
- pos: -44.5,-37.5
parent: 2
type: Transform
- - uid: 18922
+ - uid: 18920
components:
- pos: -44.5,-39.5
parent: 2
type: Transform
- - uid: 18923
+ - uid: 18921
components:
- pos: -44.5,-38.5
parent: 2
type: Transform
- - uid: 18924
+ - uid: 18922
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-23.5
@@ -123805,7 +123762,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18925
+ - uid: 18923
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-23.5
@@ -123813,7 +123770,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18926
+ - uid: 18924
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-23.5
@@ -123821,7 +123778,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18927
+ - uid: 18925
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-23.5
@@ -123829,56 +123786,56 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18928
+ - uid: 18926
components:
- pos: 2.5,-3.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18929
+ - uid: 18927
components:
- pos: -0.5,-3.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18930
+ - uid: 18928
components:
- pos: -1.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18931
+ - uid: 18929
components:
- pos: -0.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18932
+ - uid: 18930
components:
- pos: -0.5,-1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18933
+ - uid: 18931
components:
- pos: -0.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18934
+ - uid: 18932
components:
- pos: -0.5,-0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18935
+ - uid: 18933
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-21.5
@@ -123886,7 +123843,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18936
+ - uid: 18934
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-21.5
@@ -123894,7 +123851,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18937
+ - uid: 18935
components:
- rot: 3.141592653589793 rad
pos: -1.5,-23.5
@@ -123902,7 +123859,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18938
+ - uid: 18936
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-21.5
@@ -123910,7 +123867,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18939
+ - uid: 18937
components:
- rot: 3.141592653589793 rad
pos: -1.5,-24.5
@@ -123918,28 +123875,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18940
+ - uid: 18938
components:
- pos: 28.5,-36.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18941
+ - uid: 18939
components:
- pos: 28.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18942
+ - uid: 18940
components:
- pos: 22.5,-36.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18943
+ - uid: 18941
components:
- rot: -1.5707963267948966 rad
pos: 15.5,17.5
@@ -123947,157 +123904,227 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18944
+ - uid: 18942
components:
- pos: 17.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18945
+ - uid: 18943
components:
- pos: 39.5,59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18946
+ - uid: 18944
components:
- pos: 40.5,60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18947
+ - uid: 18945
components:
- pos: 40.5,59.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18948
+ - uid: 18946
components:
- pos: 39.5,55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18949
+ - uid: 18947
components:
- pos: 39.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18950
+ - uid: 18948
components:
- pos: 39.5,57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18951
+ - uid: 18949
components:
- pos: 39.5,58.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18952
+ - uid: 18950
components:
- pos: 39.5,60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18953
+ - uid: 18951
components:
- pos: 39.5,52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18954
+ - uid: 18952
+ components:
+ - pos: 39.5,51.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18953
+ components:
+ - pos: 39.5,50.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18954
+ components:
+ - pos: 39.5,49.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18955
+ components:
+ - pos: 39.5,48.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18956
+ components:
+ - pos: 3.5,-45.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 18957
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-42.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 18958
+ components:
+ - pos: 5.5,-45.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18959
+ components:
+ - pos: 5.5,-46.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18960
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,14.5
+ parent: 2
+ type: Transform
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18961
components:
- - pos: 39.5,51.5
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,11.5
parent: 2
type: Transform
- - color: '#0055CCFF'
+ - color: '#990000FF'
type: AtmosPipeColor
- - uid: 18955
+ - uid: 18962
components:
- - pos: 39.5,50.5
+ - rot: 3.141592653589793 rad
+ pos: 0.5,13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18956
+ - uid: 18963
components:
- - pos: 39.5,49.5
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18957
+ - uid: 18964
components:
- - pos: 39.5,48.5
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18958
+ - uid: 18965
components:
- - pos: 3.5,-45.5
+ - pos: -3.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18959
+- proto: GasPipeTJunction
+ entities:
+ - uid: 18966
components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,-42.5
+ - pos: -4.5,14.5
parent: 2
type: Transform
- - color: '#990000FF'
+ - color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18960
+ - uid: 18967
components:
- - pos: 5.5,-45.5
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,13.5
parent: 2
type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 18961
+ - uid: 18968
components:
- - pos: 5.5,-46.5
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
-- proto: GasPipeTJunction
- entities:
- - uid: 18962
+ - uid: 18969
components:
- rot: 3.141592653589793 rad
- pos: 39.5,47.5
+ pos: -0.5,11.5
parent: 2
type: Transform
- - color: '#0055CCFF'
+ - color: '#990000FF'
type: AtmosPipeColor
- - uid: 18963
+ - uid: 18970
components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,13.5
+ - rot: 3.141592653589793 rad
+ pos: 39.5,47.5
parent: 2
type: Transform
- - uid: 18964
+ - color: '#0055CCFF'
+ type: AtmosPipeColor
+ - uid: 18971
components:
- pos: 18.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18965
+ - uid: 18972
components:
- rot: 3.141592653589793 rad
pos: 26.5,-30.5
@@ -124105,7 +124132,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18966
+ - uid: 18973
components:
- rot: 3.141592653589793 rad
pos: 24.5,-29.5
@@ -124113,7 +124140,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18967
+ - uid: 18974
components:
- rot: 3.141592653589793 rad
pos: -1.5,-25.5
@@ -124121,7 +124148,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18968
+ - uid: 18975
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-21.5
@@ -124129,21 +124156,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18969
+ - uid: 18976
components:
- pos: -0.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18970
+ - uid: 18977
components:
- pos: -1.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18971
+ - uid: 18978
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-19.5
@@ -124151,7 +124178,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18972
+ - uid: 18979
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-23.5
@@ -124159,14 +124186,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18973
+ - uid: 18980
components:
- pos: -71.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18974
+ - uid: 18981
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-39.5
@@ -124174,7 +124201,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18975
+ - uid: 18982
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-37.5
@@ -124182,7 +124209,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18976
+ - uid: 18983
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-31.5
@@ -124190,7 +124217,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18977
+ - uid: 18984
components:
- rot: 3.141592653589793 rad
pos: -69.5,-39.5
@@ -124198,7 +124225,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18978
+ - uid: 18985
components:
- rot: 3.141592653589793 rad
pos: -66.5,-39.5
@@ -124206,7 +124233,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18979
+ - uid: 18986
components:
- rot: 3.141592653589793 rad
pos: -68.5,-39.5
@@ -124214,7 +124241,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18980
+ - uid: 18987
components:
- rot: 3.141592653589793 rad
pos: -67.5,-39.5
@@ -124222,7 +124249,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18981
+ - uid: 18988
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-31.5
@@ -124230,7 +124257,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18982
+ - uid: 18989
components:
- rot: 3.141592653589793 rad
pos: -71.5,-46.5
@@ -124238,7 +124265,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18983
+ - uid: 18990
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-43.5
@@ -124246,7 +124273,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18984
+ - uid: 18991
components:
- rot: 3.141592653589793 rad
pos: -67.5,-46.5
@@ -124254,7 +124281,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18985
+ - uid: 18992
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-44.5
@@ -124262,15 +124289,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18986
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,11.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 18987
+ - uid: 18993
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-31.5
@@ -124278,7 +124297,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18988
+ - uid: 18994
components:
- rot: 1.5707963267948966 rad
pos: 40.5,5.5
@@ -124286,28 +124305,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18989
+ - uid: 18995
components:
- pos: 28.5,-29.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18990
+ - uid: 18996
components:
- pos: -8.5,-53.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18991
+ - uid: 18997
components:
- pos: -12.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18992
+ - uid: 18998
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-7.5
@@ -124315,7 +124334,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18993
+ - uid: 18999
components:
- rot: 1.5707963267948966 rad
pos: 8.5,10.5
@@ -124323,7 +124342,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18994
+ - uid: 19000
components:
- rot: 1.5707963267948966 rad
pos: 8.5,0.5
@@ -124331,7 +124350,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18995
+ - uid: 19001
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-38.5
@@ -124339,7 +124358,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18996
+ - uid: 19002
components:
- rot: -1.5707963267948966 rad
pos: 7.5,14.5
@@ -124347,7 +124366,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 18997
+ - uid: 19003
components:
- rot: 3.141592653589793 rad
pos: 22.5,21.5
@@ -124355,7 +124374,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18998
+ - uid: 19004
components:
- rot: 3.141592653589793 rad
pos: 2.5,-60.5
@@ -124363,21 +124382,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 18999
+ - uid: 19005
components:
- pos: -5.5,-60.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19000
+ - uid: 19006
components:
- pos: -8.5,-61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19001
+ - uid: 19007
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-64.5
@@ -124385,7 +124404,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19002
+ - uid: 19008
components:
- rot: 3.141592653589793 rad
pos: -24.5,-80.5
@@ -124393,7 +124412,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19003
+ - uid: 19009
components:
- rot: -1.5707963267948966 rad
pos: 20.5,13.5
@@ -124401,7 +124420,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19004
+ - uid: 19010
components:
- rot: 3.141592653589793 rad
pos: 31.5,-43.5
@@ -124409,7 +124428,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19005
+ - uid: 19011
components:
- rot: 3.141592653589793 rad
pos: 17.5,-43.5
@@ -124417,7 +124436,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19006
+ - uid: 19012
components:
- rot: 1.5707963267948966 rad
pos: 35.5,8.5
@@ -124425,7 +124444,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19007
+ - uid: 19013
components:
- rot: -1.5707963267948966 rad
pos: 26.5,10.5
@@ -124433,29 +124452,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19008
+ - uid: 19014
components:
- pos: 7.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19009
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,13.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 19010
+ - uid: 19015
components:
- pos: -24.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19011
+ - uid: 19016
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-1.5
@@ -124463,7 +124474,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19012
+ - uid: 19017
components:
- rot: 1.5707963267948966 rad
pos: 2.5,0.5
@@ -124471,7 +124482,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19013
+ - uid: 19018
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-33.5
@@ -124479,7 +124490,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19014
+ - uid: 19019
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-29.5
@@ -124487,7 +124498,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19015
+ - uid: 19020
components:
- rot: 3.141592653589793 rad
pos: -11.5,-41.5
@@ -124495,7 +124506,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19016
+ - uid: 19021
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-43.5
@@ -124503,7 +124514,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19017
+ - uid: 19022
components:
- rot: 3.141592653589793 rad
pos: -17.5,-60.5
@@ -124511,7 +124522,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19018
+ - uid: 19023
components:
- rot: 3.141592653589793 rad
pos: -9.5,-42.5
@@ -124519,21 +124530,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19019
+ - uid: 19024
components:
- pos: -0.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19020
+ - uid: 19025
components:
- pos: -8.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19021
+ - uid: 19026
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-60.5
@@ -124541,7 +124552,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19022
+ - uid: 19027
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-59.5
@@ -124549,7 +124560,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19023
+ - uid: 19028
components:
- rot: 1.5707963267948966 rad
pos: 35.5,5.5
@@ -124557,7 +124568,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19024
+ - uid: 19029
components:
- rot: 3.141592653589793 rad
pos: 28.5,9.5
@@ -124565,7 +124576,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19025
+ - uid: 19030
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-0.5
@@ -124573,14 +124584,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19026
+ - uid: 19031
components:
- pos: 41.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19027
+ - uid: 19032
components:
- rot: 3.141592653589793 rad
pos: 33.5,1.5
@@ -124588,7 +124599,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19028
+ - uid: 19033
components:
- rot: 1.5707963267948966 rad
pos: 23.5,17.5
@@ -124596,7 +124607,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19029
+ - uid: 19034
components:
- rot: 1.5707963267948966 rad
pos: 7.5,16.5
@@ -124604,14 +124615,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19030
+ - uid: 19035
components:
- pos: 44.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19031
+ - uid: 19036
components:
- rot: 3.141592653589793 rad
pos: -3.5,-42.5
@@ -124619,7 +124630,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19032
+ - uid: 19037
components:
- rot: 3.141592653589793 rad
pos: 12.5,-27.5
@@ -124627,14 +124638,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19033
+ - uid: 19038
components:
- pos: -7.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19034
+ - uid: 19039
components:
- rot: 3.141592653589793 rad
pos: 33.5,-16.5
@@ -124642,7 +124653,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19035
+ - uid: 19040
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-25.5
@@ -124650,7 +124661,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19036
+ - uid: 19041
components:
- rot: 3.141592653589793 rad
pos: -8.5,1.5
@@ -124658,7 +124669,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19037
+ - uid: 19042
components:
- rot: 3.141592653589793 rad
pos: 17.5,13.5
@@ -124666,14 +124677,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19038
+ - uid: 19043
components:
- pos: 28.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19039
+ - uid: 19044
components:
- rot: -1.5707963267948966 rad
pos: 38.5,8.5
@@ -124681,7 +124692,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19040
+ - uid: 19045
components:
- rot: -1.5707963267948966 rad
pos: 38.5,5.5
@@ -124689,7 +124700,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19041
+ - uid: 19046
components:
- rot: -1.5707963267948966 rad
pos: 38.5,11.5
@@ -124697,14 +124708,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19042
+ - uid: 19047
components:
- pos: 34.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19043
+ - uid: 19048
components:
- rot: 3.141592653589793 rad
pos: -8.5,-27.5
@@ -124712,7 +124723,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19044
+ - uid: 19049
components:
- rot: -1.5707963267948966 rad
pos: -8.5,2.5
@@ -124720,7 +124731,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19045
+ - uid: 19050
components:
- rot: 3.141592653589793 rad
pos: 2.5,-27.5
@@ -124728,7 +124739,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19046
+ - uid: 19051
components:
- rot: 3.141592653589793 rad
pos: 12.5,16.5
@@ -124736,7 +124747,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19047
+ - uid: 19052
components:
- rot: 3.141592653589793 rad
pos: -5.5,-41.5
@@ -124744,14 +124755,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19048
+ - uid: 19053
components:
- pos: 3.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19049
+ - uid: 19054
components:
- rot: 3.141592653589793 rad
pos: 8.5,-0.5
@@ -124759,7 +124770,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19050
+ - uid: 19055
components:
- rot: 3.141592653589793 rad
pos: 16.5,16.5
@@ -124767,7 +124778,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19051
+ - uid: 19056
components:
- rot: 3.141592653589793 rad
pos: 25.5,7.5
@@ -124775,7 +124786,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19052
+ - uid: 19057
components:
- rot: 3.141592653589793 rad
pos: 28.5,17.5
@@ -124783,7 +124794,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19053
+ - uid: 19058
components:
- rot: 1.5707963267948966 rad
pos: 20.5,10.5
@@ -124791,14 +124802,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19054
+ - uid: 19059
components:
- pos: 4.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19055
+ - uid: 19060
components:
- rot: -1.5707963267948966 rad
pos: 9.5,1.5
@@ -124806,7 +124817,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19056
+ - uid: 19061
components:
- rot: 1.5707963267948966 rad
pos: 19.5,18.5
@@ -124814,7 +124825,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19057
+ - uid: 19062
components:
- rot: -1.5707963267948966 rad
pos: 30.5,18.5
@@ -124822,14 +124833,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19058
+ - uid: 19063
components:
- pos: 21.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19059
+ - uid: 19064
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-12.5
@@ -124837,7 +124848,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19060
+ - uid: 19065
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-24.5
@@ -124845,7 +124856,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19061
+ - uid: 19066
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-17.5
@@ -124853,14 +124864,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19062
+ - uid: 19067
components:
- pos: 20.5,-17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19063
+ - uid: 19068
components:
- rot: 3.141592653589793 rad
pos: 23.5,-29.5
@@ -124868,7 +124879,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19064
+ - uid: 19069
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-22.5
@@ -124876,21 +124887,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19065
+ - uid: 19070
components:
- pos: -10.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19066
+ - uid: 19071
components:
- pos: -2.5,-61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19067
+ - uid: 19072
components:
- rot: 3.141592653589793 rad
pos: -9.5,-61.5
@@ -124898,21 +124909,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19068
+ - uid: 19073
components:
- pos: -15.5,-61.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19069
+ - uid: 19074
components:
- pos: -0.5,-60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19070
+ - uid: 19075
components:
- rot: 3.141592653589793 rad
pos: -1.5,-60.5
@@ -124920,14 +124931,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19071
+ - uid: 19076
components:
- pos: -12.5,-60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19072
+ - uid: 19077
components:
- rot: 3.141592653589793 rad
pos: 3.5,-61.5
@@ -124935,14 +124946,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19073
+ - uid: 19078
components:
- pos: 5.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19074
+ - uid: 19079
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-46.5
@@ -124950,14 +124961,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19075
+ - uid: 19080
components:
- pos: 5.5,-25.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19076
+ - uid: 19081
components:
- rot: 3.141592653589793 rad
pos: -11.5,-27.5
@@ -124965,21 +124976,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19077
+ - uid: 19082
components:
- pos: 24.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19078
+ - uid: 19083
components:
- pos: 20.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19079
+ - uid: 19084
components:
- rot: 3.141592653589793 rad
pos: 31.5,9.5
@@ -124987,7 +124998,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19080
+ - uid: 19085
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-78.5
@@ -124995,7 +125006,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19081
+ - uid: 19086
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-80.5
@@ -125003,7 +125014,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19082
+ - uid: 19087
components:
- rot: 3.141592653589793 rad
pos: 34.5,9.5
@@ -125011,7 +125022,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19083
+ - uid: 19088
components:
- rot: -1.5707963267948966 rad
pos: 1.5,6.5
@@ -125019,7 +125030,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19084
+ - uid: 19089
components:
- rot: 1.5707963267948966 rad
pos: 2.5,1.5
@@ -125027,14 +125038,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19085
+ - uid: 19090
components:
- pos: 10.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19086
+ - uid: 19091
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-39.5
@@ -125042,14 +125053,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19087
+ - uid: 19092
components:
- pos: 0.5,17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19088
+ - uid: 19093
components:
- rot: 3.141592653589793 rad
pos: -7.5,8.5
@@ -125057,7 +125068,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19089
+ - uid: 19094
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-84.5
@@ -125065,7 +125076,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19090
+ - uid: 19095
components:
- rot: 3.141592653589793 rad
pos: 15.5,-43.5
@@ -125073,7 +125084,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19091
+ - uid: 19096
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-32.5
@@ -125081,7 +125092,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19092
+ - uid: 19097
components:
- rot: 3.141592653589793 rad
pos: 21.5,-30.5
@@ -125089,7 +125100,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19093
+ - uid: 19098
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-23.5
@@ -125097,7 +125108,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19094
+ - uid: 19099
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-30.5
@@ -125105,14 +125116,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19095
+ - uid: 19100
components:
- pos: 22.5,-30.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19096
+ - uid: 19101
components:
- rot: 3.141592653589793 rad
pos: -8.5,-25.5
@@ -125120,7 +125131,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19097
+ - uid: 19102
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-25.5
@@ -125128,7 +125139,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19098
+ - uid: 19103
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-22.5
@@ -125136,7 +125147,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19099
+ - uid: 19104
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-46.5
@@ -125144,14 +125155,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19100
- components:
- - pos: 0.5,11.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 19101
+ - uid: 19105
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-11.5
@@ -125159,7 +125163,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19102
+ - uid: 19106
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-10.5
@@ -125167,7 +125171,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19103
+ - uid: 19107
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-31.5
@@ -125175,22 +125179,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19104
+ - uid: 19108
components:
- pos: -5.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19105
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,13.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 19106
+ - uid: 19109
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-12.5
@@ -125198,14 +125194,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19107
+ - uid: 19110
components:
- pos: -20.5,-88.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19108
+ - uid: 19111
components:
- rot: -1.5707963267948966 rad
pos: 10.5,3.5
@@ -125213,7 +125209,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19109
+ - uid: 19112
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-22.5
@@ -125221,7 +125217,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19110
+ - uid: 19113
components:
- rot: 3.141592653589793 rad
pos: 44.5,-24.5
@@ -125229,7 +125225,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19111
+ - uid: 19114
components:
- rot: 1.5707963267948966 rad
pos: 34.5,3.5
@@ -125237,7 +125233,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19112
+ - uid: 19115
components:
- rot: 3.141592653589793 rad
pos: -19.5,-61.5
@@ -125245,14 +125241,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19113
+ - uid: 19116
components:
- pos: -5.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19114
+ - uid: 19117
components:
- rot: 3.141592653589793 rad
pos: -8.5,-1.5
@@ -125260,7 +125256,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19115
+ - uid: 19118
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-39.5
@@ -125268,7 +125264,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19116
+ - uid: 19119
components:
- rot: 3.141592653589793 rad
pos: 5.5,17.5
@@ -125276,7 +125272,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19117
+ - uid: 19120
components:
- rot: 3.141592653589793 rad
pos: -2.5,-53.5
@@ -125284,7 +125280,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19118
+ - uid: 19121
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-14.5
@@ -125292,7 +125288,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19119
+ - uid: 19122
components:
- rot: 3.141592653589793 rad
pos: 31.5,-18.5
@@ -125300,7 +125296,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19120
+ - uid: 19123
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-64.5
@@ -125308,7 +125304,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19121
+ - uid: 19124
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-16.5
@@ -125316,7 +125312,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19122
+ - uid: 19125
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-41.5
@@ -125324,7 +125320,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19123
+ - uid: 19126
components:
- rot: -1.5707963267948966 rad
pos: 10.5,8.5
@@ -125332,7 +125328,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19124
+ - uid: 19127
components:
- rot: -1.5707963267948966 rad
pos: 11.5,11.5
@@ -125340,35 +125336,35 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19125
+ - uid: 19128
components:
- pos: -22.5,-89.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19126
+ - uid: 19129
components:
- pos: 26.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19127
+ - uid: 19130
components:
- pos: 6.5,-46.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19128
+ - uid: 19131
components:
- pos: 6.5,-47.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19129
+ - uid: 19132
components:
- rot: 3.141592653589793 rad
pos: 14.5,-41.5
@@ -125376,14 +125372,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19130
+ - uid: 19133
components:
- pos: 5.5,16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19131
+ - uid: 19134
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-88.5
@@ -125391,7 +125387,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19132
+ - uid: 19135
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-24.5
@@ -125399,35 +125395,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19133
+ - uid: 19136
components:
- pos: 7.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19134
+ - uid: 19137
components:
- pos: -3.5,-1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19135
+ - uid: 19138
components:
- pos: -19.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19136
+ - uid: 19139
components:
- pos: 41.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19137
+ - uid: 19140
components:
- rot: 3.141592653589793 rad
pos: 41.5,-25.5
@@ -125435,7 +125431,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19138
+ - uid: 19141
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-25.5
@@ -125443,7 +125439,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19139
+ - uid: 19142
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-26.5
@@ -125451,14 +125447,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19140
+ - uid: 19143
components:
- pos: -27.5,-77.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19141
+ - uid: 19144
components:
- rot: 3.141592653589793 rad
pos: -25.5,-77.5
@@ -125466,7 +125462,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19142
+ - uid: 19145
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-85.5
@@ -125474,7 +125470,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19143
+ - uid: 19146
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-72.5
@@ -125482,7 +125478,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19144
+ - uid: 19147
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-73.5
@@ -125490,7 +125486,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19145
+ - uid: 19148
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-72.5
@@ -125498,7 +125494,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19146
+ - uid: 19149
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-69.5
@@ -125506,7 +125502,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19147
+ - uid: 19150
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-75.5
@@ -125514,7 +125510,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19148
+ - uid: 19151
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-70.5
@@ -125522,7 +125518,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19149
+ - uid: 19152
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-71.5
@@ -125530,7 +125526,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19150
+ - uid: 19153
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-89.5
@@ -125538,7 +125534,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19151
+ - uid: 19154
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-67.5
@@ -125546,7 +125542,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19152
+ - uid: 19155
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-66.5
@@ -125554,7 +125550,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19153
+ - uid: 19156
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-63.5
@@ -125562,14 +125558,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19154
+ - uid: 19157
components:
- pos: -18.5,-60.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19155
+ - uid: 19158
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-23.5
@@ -125577,7 +125573,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19156
+ - uid: 19159
components:
- rot: 3.141592653589793 rad
pos: 36.5,-43.5
@@ -125585,7 +125581,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19157
+ - uid: 19160
components:
- rot: 3.141592653589793 rad
pos: 34.5,-41.5
@@ -125593,14 +125589,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19158
+ - uid: 19161
components:
- pos: 33.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19159
+ - uid: 19162
components:
- rot: 3.141592653589793 rad
pos: 10.5,17.5
@@ -125608,7 +125604,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19160
+ - uid: 19163
components:
- rot: 3.141592653589793 rad
pos: 11.5,16.5
@@ -125616,7 +125612,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19161
+ - uid: 19164
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-37.5
@@ -125624,22 +125620,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19162
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-14.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 19163
+ - uid: 19165
components:
- pos: 21.5,-42.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19164
+ - uid: 19166
components:
- rot: 3.141592653589793 rad
pos: 56.5,21.5
@@ -125647,14 +125635,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19165
+ - uid: 19167
components:
- pos: 40.5,10.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19166
+ - uid: 19168
components:
- rot: 1.5707963267948966 rad
pos: 28.5,22.5
@@ -125662,7 +125650,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19167
+ - uid: 19169
components:
- rot: -1.5707963267948966 rad
pos: 30.5,19.5
@@ -125670,21 +125658,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19168
+ - uid: 19170
components:
- pos: 42.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19169
+ - uid: 19171
components:
- pos: 44.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19170
+ - uid: 19172
components:
- rot: 3.141592653589793 rad
pos: 45.5,14.5
@@ -125692,14 +125680,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19171
+ - uid: 19173
components:
- pos: 47.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19172
+ - uid: 19174
components:
- rot: 3.141592653589793 rad
pos: 47.5,15.5
@@ -125707,7 +125695,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19173
+ - uid: 19175
components:
- rot: -1.5707963267948966 rad
pos: 49.5,15.5
@@ -125715,7 +125703,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19174
+ - uid: 19176
components:
- rot: -1.5707963267948966 rad
pos: 50.5,14.5
@@ -125723,7 +125711,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19175
+ - uid: 19177
components:
- rot: -1.5707963267948966 rad
pos: 50.5,19.5
@@ -125731,7 +125719,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19176
+ - uid: 19178
components:
- rot: 3.141592653589793 rad
pos: 46.5,20.5
@@ -125739,7 +125727,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19177
+ - uid: 19179
components:
- rot: 3.141592653589793 rad
pos: 53.5,21.5
@@ -125747,7 +125735,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19178
+ - uid: 19180
components:
- rot: -1.5707963267948966 rad
pos: 58.5,20.5
@@ -125755,7 +125743,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19179
+ - uid: 19181
components:
- rot: 3.141592653589793 rad
pos: 55.5,20.5
@@ -125763,7 +125751,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19180
+ - uid: 19182
components:
- rot: 3.141592653589793 rad
pos: 52.5,20.5
@@ -125771,7 +125759,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19181
+ - uid: 19183
components:
- rot: -1.5707963267948966 rad
pos: 59.5,21.5
@@ -125779,7 +125767,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19182
+ - uid: 19184
components:
- rot: 1.5707963267948966 rad
pos: 59.5,18.5
@@ -125787,7 +125775,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19183
+ - uid: 19185
components:
- rot: 1.5707963267948966 rad
pos: 59.5,15.5
@@ -125795,7 +125783,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19184
+ - uid: 19186
components:
- rot: 1.5707963267948966 rad
pos: 58.5,16.5
@@ -125803,7 +125791,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19185
+ - uid: 19187
components:
- rot: 1.5707963267948966 rad
pos: 58.5,19.5
@@ -125811,14 +125799,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19186
+ - uid: 19188
components:
- pos: 40.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19187
+ - uid: 19189
components:
- rot: 3.141592653589793 rad
pos: 45.5,20.5
@@ -125826,7 +125814,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19188
+ - uid: 19190
components:
- rot: 3.141592653589793 rad
pos: 39.5,19.5
@@ -125834,7 +125822,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19189
+ - uid: 19191
components:
- rot: 3.141592653589793 rad
pos: 40.5,0.5
@@ -125842,14 +125830,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19190
+ - uid: 19192
components:
- pos: 44.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19191
+ - uid: 19193
components:
- rot: 3.141592653589793 rad
pos: 45.5,0.5
@@ -125857,21 +125845,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19192
+ - uid: 19194
components:
- pos: 53.5,0.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19193
+ - uid: 19195
components:
- pos: 52.5,1.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19194
+ - uid: 19196
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-5.5
@@ -125879,7 +125867,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19195
+ - uid: 19197
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-1.5
@@ -125887,7 +125875,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19196
+ - uid: 19198
components:
- rot: 3.141592653589793 rad
pos: 42.5,-2.5
@@ -125895,7 +125883,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19197
+ - uid: 19199
components:
- rot: -1.5707963267948966 rad
pos: 41.5,10.5
@@ -125903,7 +125891,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19198
+ - uid: 19200
components:
- rot: -1.5707963267948966 rad
pos: 42.5,9.5
@@ -125911,7 +125899,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19199
+ - uid: 19201
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-53.5
@@ -125919,7 +125907,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19200
+ - uid: 19202
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-56.5
@@ -125927,7 +125915,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19201
+ - uid: 19203
components:
- rot: 3.141592653589793 rad
pos: 61.5,-6.5
@@ -125935,7 +125923,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19202
+ - uid: 19204
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-11.5
@@ -125943,7 +125931,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19203
+ - uid: 19205
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-39.5
@@ -125951,7 +125939,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19204
+ - uid: 19206
components:
- rot: 3.141592653589793 rad
pos: 42.5,-41.5
@@ -125959,7 +125947,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19205
+ - uid: 19207
components:
- rot: 3.141592653589793 rad
pos: 43.5,-43.5
@@ -125967,7 +125955,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19206
+ - uid: 19208
components:
- rot: 3.141592653589793 rad
pos: 45.5,-43.5
@@ -125975,28 +125963,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19207
+ - uid: 19209
components:
- pos: 44.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19208
+ - uid: 19210
components:
- pos: 49.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19209
+ - uid: 19211
components:
- pos: 49.5,-43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19210
+ - uid: 19212
components:
- rot: 3.141592653589793 rad
pos: 49.5,-45.5
@@ -126004,21 +125992,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19211
+ - uid: 19213
components:
- pos: 50.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19212
+ - uid: 19214
components:
- pos: 56.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19213
+ - uid: 19215
components:
- rot: 3.141592653589793 rad
pos: 56.5,-45.5
@@ -126026,7 +126014,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19214
+ - uid: 19216
components:
- rot: 3.141592653589793 rad
pos: 55.5,-45.5
@@ -126034,7 +126022,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19215
+ - uid: 19217
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-46.5
@@ -126042,7 +126030,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19216
+ - uid: 19218
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-54.5
@@ -126050,7 +126038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19217
+ - uid: 19219
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-44.5
@@ -126058,7 +126046,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19218
+ - uid: 19220
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-45.5
@@ -126066,7 +126054,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19219
+ - uid: 19221
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-44.5
@@ -126074,7 +126062,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19220
+ - uid: 19222
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-46.5
@@ -126082,7 +126070,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19221
+ - uid: 19223
components:
- rot: -1.5707963267948966 rad
pos: 61.5,-46.5
@@ -126090,7 +126078,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19222
+ - uid: 19224
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-33.5
@@ -126098,14 +126086,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19223
+ - uid: 19225
components:
- pos: 60.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19224
+ - uid: 19226
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-26.5
@@ -126113,7 +126101,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19225
+ - uid: 19227
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-24.5
@@ -126121,14 +126109,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19226
+ - uid: 19228
components:
- pos: 55.5,-11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19227
+ - uid: 19229
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-48.5
@@ -126136,7 +126124,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19228
+ - uid: 19230
components:
- rot: 1.5707963267948966 rad
pos: 64.5,-47.5
@@ -126144,7 +126132,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19229
+ - uid: 19231
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-52.5
@@ -126152,7 +126140,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19230
+ - uid: 19232
components:
- rot: 3.141592653589793 rad
pos: 29.5,-58.5
@@ -126160,7 +126148,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19231
+ - uid: 19233
components:
- rot: 3.141592653589793 rad
pos: 32.5,-60.5
@@ -126168,7 +126156,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19232
+ - uid: 19234
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-56.5
@@ -126176,7 +126164,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19233
+ - uid: 19235
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-52.5
@@ -126184,7 +126172,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19234
+ - uid: 19236
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-56.5
@@ -126192,7 +126180,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19235
+ - uid: 19237
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-48.5
@@ -126200,14 +126188,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19236
+ - uid: 19238
components:
- pos: 32.5,-52.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19237
+ - uid: 19239
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-49.5
@@ -126215,19 +126203,19 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19238
+ - uid: 19240
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-58.5
parent: 2
type: Transform
- - uid: 19239
+ - uid: 19241
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-58.5
parent: 2
type: Transform
- - uid: 19240
+ - uid: 19242
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-61.5
@@ -126235,14 +126223,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19241
+ - uid: 19243
components:
- pos: -19.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19242
+ - uid: 19244
components:
- rot: 3.141592653589793 rad
pos: -13.5,1.5
@@ -126250,7 +126238,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19243
+ - uid: 19245
components:
- rot: 3.141592653589793 rad
pos: -14.5,1.5
@@ -126258,14 +126246,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19244
+ - uid: 19246
components:
- pos: -13.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19245
+ - uid: 19247
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-27.5
@@ -126273,7 +126261,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19246
+ - uid: 19248
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-19.5
@@ -126281,7 +126269,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19247
+ - uid: 19249
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-22.5
@@ -126289,7 +126277,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19248
+ - uid: 19250
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-21.5
@@ -126297,7 +126285,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19249
+ - uid: 19251
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-14.5
@@ -126305,7 +126293,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19250
+ - uid: 19252
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-13.5
@@ -126313,7 +126301,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19251
+ - uid: 19253
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-10.5
@@ -126321,14 +126309,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19252
+ - uid: 19254
components:
- pos: -23.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19253
+ - uid: 19255
components:
- rot: 3.141592653589793 rad
pos: -24.5,-10.5
@@ -126336,21 +126324,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19254
+ - uid: 19256
components:
- pos: -24.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19255
+ - uid: 19257
components:
- pos: -28.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19256
+ - uid: 19258
components:
- rot: 3.141592653589793 rad
pos: -28.5,-13.5
@@ -126358,14 +126346,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19257
+ - uid: 19259
components:
- pos: -25.5,-13.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19258
+ - uid: 19260
components:
- rot: 3.141592653589793 rad
pos: -28.5,-17.5
@@ -126373,7 +126361,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19259
+ - uid: 19261
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-42.5
@@ -126381,7 +126369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19260
+ - uid: 19262
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-58.5
@@ -126389,7 +126377,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19261
+ - uid: 19263
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-60.5
@@ -126397,7 +126385,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19262
+ - uid: 19264
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-63.5
@@ -126405,7 +126393,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19263
+ - uid: 19265
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-65.5
@@ -126413,7 +126401,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19264
+ - uid: 19266
components:
- rot: 3.141592653589793 rad
pos: -18.5,6.5
@@ -126421,7 +126409,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19265
+ - uid: 19267
components:
- rot: 3.141592653589793 rad
pos: -20.5,7.5
@@ -126429,7 +126417,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19266
+ - uid: 19268
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-13.5
@@ -126437,7 +126425,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19267
+ - uid: 19269
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-31.5
@@ -126445,7 +126433,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19268
+ - uid: 19270
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-41.5
@@ -126453,7 +126441,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19269
+ - uid: 19271
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-43.5
@@ -126461,7 +126449,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19270
+ - uid: 19272
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-43.5
@@ -126469,14 +126457,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19271
+ - uid: 19273
components:
- pos: 48.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19272
+ - uid: 19274
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-71.5
@@ -126484,7 +126472,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19273
+ - uid: 19275
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-71.5
@@ -126492,7 +126480,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19274
+ - uid: 19276
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-83.5
@@ -126500,21 +126488,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19275
+ - uid: 19277
components:
- pos: 47.5,-72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19276
+ - uid: 19278
components:
- pos: -29.5,-16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19277
+ - uid: 19279
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-16.5
@@ -126522,7 +126510,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19278
+ - uid: 19280
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-17.5
@@ -126530,7 +126518,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19279
+ - uid: 19281
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-17.5
@@ -126538,7 +126526,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19280
+ - uid: 19282
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-15.5
@@ -126546,7 +126534,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19281
+ - uid: 19283
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-25.5
@@ -126554,7 +126542,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19282
+ - uid: 19284
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-27.5
@@ -126562,7 +126550,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19283
+ - uid: 19285
components:
- rot: 3.141592653589793 rad
pos: -35.5,-10.5
@@ -126570,14 +126558,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19284
+ - uid: 19286
components:
- pos: -36.5,-11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19285
+ - uid: 19287
components:
- rot: 1.5707963267948966 rad
pos: 42.5,6.5
@@ -126585,7 +126573,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19286
+ - uid: 19288
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-2.5
@@ -126593,7 +126581,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19287
+ - uid: 19289
components:
- rot: -1.5707963267948966 rad
pos: -24.5,0.5
@@ -126601,7 +126589,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19288
+ - uid: 19290
components:
- rot: -1.5707963267948966 rad
pos: -26.5,1.5
@@ -126609,7 +126597,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19289
+ - uid: 19291
components:
- rot: -1.5707963267948966 rad
pos: -18.5,12.5
@@ -126617,7 +126605,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19290
+ - uid: 19292
components:
- rot: 3.141592653589793 rad
pos: -52.5,-17.5
@@ -126625,21 +126613,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19291
+ - uid: 19293
components:
- pos: -32.5,-10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19292
+ - uid: 19294
components:
- pos: -46.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19293
+ - uid: 19295
components:
- rot: 3.141592653589793 rad
pos: -47.5,-6.5
@@ -126647,7 +126635,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19294
+ - uid: 19296
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-13.5
@@ -126655,7 +126643,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19295
+ - uid: 19297
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-16.5
@@ -126663,7 +126651,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19296
+ - uid: 19298
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-19.5
@@ -126671,7 +126659,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19297
+ - uid: 19299
components:
- rot: 3.141592653589793 rad
pos: -59.5,-25.5
@@ -126679,21 +126667,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19298
+ - uid: 19300
components:
- pos: -56.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19299
+ - uid: 19301
components:
- pos: -68.5,-23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19300
+ - uid: 19302
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-27.5
@@ -126701,14 +126689,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19301
+ - uid: 19303
components:
- pos: -64.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19302
+ - uid: 19304
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-27.5
@@ -126716,19 +126704,19 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19303
+ - uid: 19305
components:
- rot: 3.141592653589793 rad
pos: -43.5,-55.5
parent: 2
type: Transform
- - uid: 19304
+ - uid: 19306
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-53.5
parent: 2
type: Transform
- - uid: 19305
+ - uid: 19307
components:
- rot: 3.141592653589793 rad
pos: -40.5,-55.5
@@ -126736,7 +126724,7 @@ entities:
type: Transform
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 19306
+ - uid: 19308
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-41.5
@@ -126744,13 +126732,13 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19307
+ - uid: 19309
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-41.5
parent: 2
type: Transform
- - uid: 19308
+ - uid: 19310
components:
- rot: 3.141592653589793 rad
pos: -37.5,-57.5
@@ -126758,7 +126746,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19309
+ - uid: 19311
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-51.5
@@ -126766,7 +126754,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19310
+ - uid: 19312
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-51.5
@@ -126774,7 +126762,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19311
+ - uid: 19313
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-50.5
@@ -126782,7 +126770,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19312
+ - uid: 19314
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-49.5
@@ -126790,7 +126778,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19313
+ - uid: 19315
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-49.5
@@ -126798,7 +126786,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19314
+ - uid: 19316
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-50.5
@@ -126806,14 +126794,14 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19315
+ - uid: 19317
components:
- pos: -38.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19316
+ - uid: 19318
components:
- rot: 3.141592653589793 rad
pos: -38.5,-48.5
@@ -126821,14 +126809,14 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19317
+ - uid: 19319
components:
- pos: -33.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19318
+ - uid: 19320
components:
- rot: 3.141592653589793 rad
pos: -30.5,-34.5
@@ -126836,7 +126824,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19319
+ - uid: 19321
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-37.5
@@ -126844,7 +126832,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19320
+ - uid: 19322
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-39.5
@@ -126852,7 +126840,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19321
+ - uid: 19323
components:
- rot: 3.141592653589793 rad
pos: -35.5,-55.5
@@ -126860,7 +126848,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19322
+ - uid: 19324
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-53.5
@@ -126868,7 +126856,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19323
+ - uid: 19325
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-44.5
@@ -126876,7 +126864,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19324
+ - uid: 19326
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-43.5
@@ -126884,7 +126872,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19325
+ - uid: 19327
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-45.5
@@ -126892,7 +126880,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19326
+ - uid: 19328
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-44.5
@@ -126900,7 +126888,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19327
+ - uid: 19329
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-42.5
@@ -126908,7 +126896,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19328
+ - uid: 19330
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-60.5
@@ -126916,21 +126904,21 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 19329
+ - uid: 19331
components:
- pos: -27.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19330
+ - uid: 19332
components:
- pos: -40.5,-71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19331
+ - uid: 19333
components:
- rot: 3.141592653589793 rad
pos: -29.5,-71.5
@@ -126938,14 +126926,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19332
+ - uid: 19334
components:
- pos: -30.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19333
+ - uid: 19335
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-71.5
@@ -126953,7 +126941,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19334
+ - uid: 19336
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-58.5
@@ -126961,7 +126949,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19335
+ - uid: 19337
components:
- rot: -1.5707963267948966 rad
pos: -20.5,13.5
@@ -126969,7 +126957,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19336
+ - uid: 19338
components:
- rot: 1.5707963267948966 rad
pos: -20.5,16.5
@@ -126977,7 +126965,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19337
+ - uid: 19339
components:
- rot: -1.5707963267948966 rad
pos: -18.5,19.5
@@ -126985,7 +126973,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19338
+ - uid: 19340
components:
- rot: -1.5707963267948966 rad
pos: -20.5,20.5
@@ -126993,7 +126981,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19339
+ - uid: 19341
components:
- rot: -1.5707963267948966 rad
pos: -18.5,23.5
@@ -127001,28 +126989,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19340
+ - uid: 19342
components:
- pos: -24.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19341
+ - uid: 19343
components:
- pos: -23.5,20.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19342
+ - uid: 19344
components:
- pos: -28.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19343
+ - uid: 19345
components:
- rot: 3.141592653589793 rad
pos: -28.5,20.5
@@ -127030,7 +127018,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19344
+ - uid: 19346
components:
- rot: 3.141592653589793 rad
pos: -40.5,23.5
@@ -127038,7 +127026,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19345
+ - uid: 19347
components:
- rot: 3.141592653589793 rad
pos: -41.5,20.5
@@ -127046,7 +127034,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19346
+ - uid: 19348
components:
- rot: 1.5707963267948966 rad
pos: -40.5,30.5
@@ -127054,7 +127042,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19347
+ - uid: 19349
components:
- rot: 1.5707963267948966 rad
pos: -41.5,29.5
@@ -127062,7 +127050,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19348
+ - uid: 19350
components:
- rot: 3.141592653589793 rad
pos: -44.5,33.5
@@ -127070,28 +127058,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19349
+ - uid: 19351
components:
- pos: -49.5,33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19350
+ - uid: 19352
components:
- pos: -28.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19351
+ - uid: 19353
components:
- pos: -29.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19352
+ - uid: 19354
components:
- rot: 3.141592653589793 rad
pos: -37.5,1.5
@@ -127099,7 +127087,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19353
+ - uid: 19355
components:
- rot: 3.141592653589793 rad
pos: -38.5,0.5
@@ -127107,7 +127095,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19354
+ - uid: 19356
components:
- rot: 1.5707963267948966 rad
pos: -38.5,3.5
@@ -127115,7 +127103,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19355
+ - uid: 19357
components:
- rot: -1.5707963267948966 rad
pos: -37.5,5.5
@@ -127123,7 +127111,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19356
+ - uid: 19358
components:
- rot: 1.5707963267948966 rad
pos: -37.5,8.5
@@ -127131,7 +127119,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19357
+ - uid: 19359
components:
- rot: -1.5707963267948966 rad
pos: -38.5,8.5
@@ -127139,21 +127127,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19358
+ - uid: 19360
components:
- pos: -39.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19359
+ - uid: 19361
components:
- pos: -41.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19360
+ - uid: 19362
components:
- rot: -1.5707963267948966 rad
pos: -30.5,14.5
@@ -127161,7 +127149,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19361
+ - uid: 19363
components:
- rot: -1.5707963267948966 rad
pos: -29.5,13.5
@@ -127169,7 +127157,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19362
+ - uid: 19364
components:
- rot: 1.5707963267948966 rad
pos: -47.5,0.5
@@ -127177,7 +127165,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19363
+ - uid: 19365
components:
- rot: 1.5707963267948966 rad
pos: -45.5,1.5
@@ -127185,7 +127173,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19364
+ - uid: 19366
components:
- rot: -1.5707963267948966 rad
pos: -47.5,3.5
@@ -127193,14 +127181,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19365
+ - uid: 19367
components:
- pos: -47.5,10.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19366
+ - uid: 19368
components:
- rot: 3.141592653589793 rad
pos: -46.5,10.5
@@ -127208,7 +127196,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19367
+ - uid: 19369
components:
- rot: 3.141592653589793 rad
pos: -51.5,10.5
@@ -127216,7 +127204,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19368
+ - uid: 19370
components:
- rot: 1.5707963267948966 rad
pos: -52.5,10.5
@@ -127224,7 +127212,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19369
+ - uid: 19371
components:
- rot: 1.5707963267948966 rad
pos: -45.5,6.5
@@ -127232,7 +127220,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19370
+ - uid: 19372
components:
- rot: -1.5707963267948966 rad
pos: -45.5,7.5
@@ -127240,7 +127228,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19371
+ - uid: 19373
components:
- rot: 3.141592653589793 rad
pos: -51.5,11.5
@@ -127248,7 +127236,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19372
+ - uid: 19374
components:
- rot: 1.5707963267948966 rad
pos: -20.5,25.5
@@ -127256,7 +127244,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19373
+ - uid: 19375
components:
- rot: 1.5707963267948966 rad
pos: -18.5,24.5
@@ -127264,7 +127252,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19374
+ - uid: 19376
components:
- rot: 3.141592653589793 rad
pos: -4.5,-41.5
@@ -127272,14 +127260,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19375
+ - uid: 19377
components:
- pos: -4.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19376
+ - uid: 19378
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-4.5
@@ -127287,7 +127275,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19377
+ - uid: 19379
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-52.5
@@ -127295,7 +127283,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19378
+ - uid: 19380
components:
- rot: 3.141592653589793 rad
pos: 44.5,19.5
@@ -127303,7 +127291,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19379
+ - uid: 19381
components:
- rot: 1.5707963267948966 rad
pos: 54.5,43.5
@@ -127311,7 +127299,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19380
+ - uid: 19382
components:
- rot: -1.5707963267948966 rad
pos: 52.5,43.5
@@ -127319,7 +127307,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19381
+ - uid: 19383
components:
- rot: -1.5707963267948966 rad
pos: 54.5,50.5
@@ -127327,7 +127315,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19382
+ - uid: 19384
components:
- rot: -1.5707963267948966 rad
pos: 52.5,49.5
@@ -127335,7 +127323,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19383
+ - uid: 19385
components:
- rot: 1.5707963267948966 rad
pos: -16.5,34.5
@@ -127343,7 +127331,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19384
+ - uid: 19386
components:
- rot: 1.5707963267948966 rad
pos: -15.5,33.5
@@ -127351,7 +127339,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19385
+ - uid: 19387
components:
- rot: 1.5707963267948966 rad
pos: -16.5,39.5
@@ -127359,7 +127347,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19386
+ - uid: 19388
components:
- rot: 1.5707963267948966 rad
pos: -15.5,38.5
@@ -127367,7 +127355,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19387
+ - uid: 19389
components:
- rot: 1.5707963267948966 rad
pos: -16.5,46.5
@@ -127375,7 +127363,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19388
+ - uid: 19390
components:
- rot: 3.141592653589793 rad
pos: -14.5,44.5
@@ -127383,7 +127371,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19389
+ - uid: 19391
components:
- rot: 3.141592653589793 rad
pos: 40.5,46.5
@@ -127391,14 +127379,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19390
+ - uid: 19392
components:
- pos: 40.5,45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19391
+ - uid: 19393
components:
- rot: 1.5707963267948966 rad
pos: -1.5,61.5
@@ -127406,7 +127394,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19392
+ - uid: 19394
components:
- rot: 1.5707963267948966 rad
pos: -2.5,62.5
@@ -127414,7 +127402,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19393
+ - uid: 19395
components:
- rot: 3.141592653589793 rad
pos: -1.5,59.5
@@ -127422,7 +127410,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19394
+ - uid: 19396
components:
- rot: -1.5707963267948966 rad
pos: 1.5,46.5
@@ -127430,7 +127418,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19395
+ - uid: 19397
components:
- rot: 1.5707963267948966 rad
pos: -0.5,48.5
@@ -127438,35 +127426,35 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19396
+ - uid: 19398
components:
- pos: -17.5,50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19397
+ - uid: 19399
components:
- pos: -16.5,51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19398
+ - uid: 19400
components:
- pos: -21.5,50.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19399
+ - uid: 19401
components:
- pos: -20.5,51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19400
+ - uid: 19402
components:
- rot: -1.5707963267948966 rad
pos: -21.5,58.5
@@ -127474,7 +127462,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19401
+ - uid: 19403
components:
- rot: 1.5707963267948966 rad
pos: -22.5,60.5
@@ -127482,7 +127470,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19402
+ - uid: 19404
components:
- rot: 1.5707963267948966 rad
pos: -22.5,61.5
@@ -127490,7 +127478,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19403
+ - uid: 19405
components:
- rot: 1.5707963267948966 rad
pos: -21.5,62.5
@@ -127498,7 +127486,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19404
+ - uid: 19406
components:
- rot: 3.141592653589793 rad
pos: -17.5,62.5
@@ -127506,14 +127494,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19405
+ - uid: 19407
components:
- pos: -17.5,61.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19406
+ - uid: 19408
components:
- rot: 1.5707963267948966 rad
pos: -22.5,66.5
@@ -127521,7 +127509,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19407
+ - uid: 19409
components:
- rot: -1.5707963267948966 rad
pos: -13.5,62.5
@@ -127529,7 +127517,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19408
+ - uid: 19410
components:
- rot: -1.5707963267948966 rad
pos: -12.5,61.5
@@ -127537,7 +127525,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19409
+ - uid: 19411
components:
- rot: -1.5707963267948966 rad
pos: -12.5,60.5
@@ -127545,7 +127533,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19410
+ - uid: 19412
components:
- rot: 1.5707963267948966 rad
pos: -13.5,58.5
@@ -127553,7 +127541,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19411
+ - uid: 19413
components:
- rot: -1.5707963267948966 rad
pos: -13.5,66.5
@@ -127561,7 +127549,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19412
+ - uid: 19414
components:
- rot: 1.5707963267948966 rad
pos: -12.5,59.5
@@ -127569,7 +127557,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19413
+ - uid: 19415
components:
- rot: 1.5707963267948966 rad
pos: -13.5,57.5
@@ -127577,7 +127565,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19414
+ - uid: 19416
components:
- rot: 3.141592653589793 rad
pos: -2.5,58.5
@@ -127585,7 +127573,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19415
+ - uid: 19417
components:
- rot: 1.5707963267948966 rad
pos: -0.5,56.5
@@ -127593,7 +127581,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19416
+ - uid: 19418
components:
- rot: -1.5707963267948966 rad
pos: 1.5,57.5
@@ -127601,7 +127589,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19417
+ - uid: 19419
components:
- rot: 3.141592653589793 rad
pos: 29.5,46.5
@@ -127609,14 +127597,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19418
+ - uid: 19420
components:
- pos: 29.5,45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19419
+ - uid: 19421
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-96.5
@@ -127624,7 +127612,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19420
+ - uid: 19422
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-96.5
@@ -127632,7 +127620,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19421
+ - uid: 19423
components:
- rot: 3.141592653589793 rad
pos: -20.5,-97.5
@@ -127640,7 +127628,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19422
+ - uid: 19424
components:
- rot: 3.141592653589793 rad
pos: -21.5,-98.5
@@ -127648,7 +127636,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19423
+ - uid: 19425
components:
- rot: 3.141592653589793 rad
pos: -8.5,-97.5
@@ -127656,7 +127644,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19424
+ - uid: 19426
components:
- rot: 3.141592653589793 rad
pos: -7.5,-98.5
@@ -127664,7 +127652,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19425
+ - uid: 19427
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-91.5
@@ -127672,7 +127660,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19426
+ - uid: 19428
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-93.5
@@ -127680,7 +127668,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19427
+ - uid: 19429
components:
- rot: 3.141592653589793 rad
pos: 65.5,-33.5
@@ -127688,14 +127676,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19428
+ - uid: 19430
components:
- pos: 65.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19429
+ - uid: 19431
components:
- rot: 3.141592653589793 rad
pos: 67.5,-34.5
@@ -127703,14 +127691,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19430
+ - uid: 19432
components:
- pos: 73.5,-34.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19431
+ - uid: 19433
components:
- rot: 3.141592653589793 rad
pos: 73.5,-33.5
@@ -127718,7 +127706,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19432
+ - uid: 19434
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-40.5
@@ -127726,7 +127714,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19433
+ - uid: 19435
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-41.5
@@ -127734,14 +127722,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19434
+ - uid: 19436
components:
- pos: 72.5,-48.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19435
+ - uid: 19437
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-47.5
@@ -127749,14 +127737,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19436
+ - uid: 19438
components:
- pos: 70.5,-47.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19437
+ - uid: 19439
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-46.5
@@ -127764,7 +127752,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19438
+ - uid: 19440
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-37.5
@@ -127772,7 +127760,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19439
+ - uid: 19441
components:
- rot: 3.141592653589793 rad
pos: 74.5,-33.5
@@ -127780,13 +127768,13 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19440
+ - uid: 19442
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-60.5
parent: 2
type: Transform
- - uid: 19441
+ - uid: 19443
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-38.5
@@ -127794,14 +127782,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19442
+ - uid: 19444
components:
- pos: 3.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19443
+ - uid: 19445
components:
- rot: 3.141592653589793 rad
pos: 38.5,-72.5
@@ -127809,7 +127797,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19444
+ - uid: 19446
components:
- rot: 3.141592653589793 rad
pos: 40.5,-73.5
@@ -127817,21 +127805,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19445
+ - uid: 19447
components:
- pos: -30.5,-71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19446
+ - uid: 19448
components:
- pos: -28.5,-69.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19447
+ - uid: 19449
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-82.5
@@ -127839,28 +127827,28 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19448
+ - uid: 19450
components:
- pos: 30.5,-72.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19449
+ - uid: 19451
components:
- pos: 29.5,-73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19450
+ - uid: 19452
components:
- pos: -44.5,31.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19451
+ - uid: 19453
components:
- rot: 1.5707963267948966 rad
pos: -6.5,14.5
@@ -127868,14 +127856,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19452
+ - uid: 19454
components:
- pos: -71.5,-25.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19453
+ - uid: 19455
components:
- rot: -1.5707963267948966 rad
pos: -73.5,-24.5
@@ -127883,21 +127871,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19454
+ - uid: 19456
components:
- pos: -68.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19455
+ - uid: 19457
components:
- pos: -71.5,-40.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19456
+ - uid: 19458
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-41.5
@@ -127907,13 +127895,19 @@ entities:
type: AtmosPipeColor
- proto: GasPort
entities:
- - uid: 19457
+ - uid: 19459
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 19460
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-41.5
parent: 2
type: Transform
- - uid: 19458
+ - uid: 19461
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-46.5
@@ -127921,52 +127915,52 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19459
+ - uid: 19462
components:
- pos: 45.5,-58.5
parent: 2
type: Transform
- - uid: 19460
+ - uid: 19463
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-59.5
parent: 2
type: Transform
- - uid: 19461
+ - uid: 19464
components:
- rot: 3.141592653589793 rad
pos: 45.5,-60.5
parent: 2
type: Transform
- - uid: 19462
+ - uid: 19465
components:
- pos: 47.5,-56.5
parent: 2
type: Transform
- - uid: 19463
+ - uid: 19466
components:
- pos: 50.5,-56.5
parent: 2
type: Transform
- - uid: 19464
+ - uid: 19467
components:
- rot: 3.141592653589793 rad
pos: 55.5,-61.5
parent: 2
type: Transform
- - uid: 19465
+ - uid: 19468
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-59.5
parent: 2
type: Transform
- - uid: 19466
+ - uid: 19469
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-59.5
parent: 2
type: Transform
- - uid: 19467
+ - uid: 19470
components:
- name: scrubber to connector port
type: MetaData
@@ -127974,7 +127968,7 @@ entities:
pos: 54.5,-60.5
parent: 2
type: Transform
- - uid: 19468
+ - uid: 19471
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-49.5
@@ -127982,7 +127976,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19469
+ - uid: 19472
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-50.5
@@ -127990,7 +127984,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19470
+ - uid: 19473
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-51.5
@@ -127998,7 +127992,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19471
+ - uid: 19474
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-49.5
@@ -128006,7 +128000,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19472
+ - uid: 19475
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-50.5
@@ -128014,7 +128008,7 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19473
+ - uid: 19476
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-51.5
@@ -128022,13 +128016,13 @@ entities:
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19474
+ - uid: 19477
components:
- rot: 3.141592653589793 rad
pos: -24.5,-62.5
parent: 2
type: Transform
- - uid: 19475
+ - uid: 19478
components:
- rot: 3.141592653589793 rad
pos: -5.5,-65.5
@@ -128036,7 +128030,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19476
+ - uid: 19479
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-43.5
@@ -128044,7 +128038,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19477
+ - uid: 19480
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-44.5
@@ -128052,7 +128046,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19478
+ - uid: 19481
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-45.5
@@ -128060,12 +128054,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19479
+ - uid: 19482
components:
- pos: 70.5,38.5
parent: 2
type: Transform
- - uid: 19480
+ - uid: 19483
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-37.5
@@ -128073,7 +128067,7 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19481
+ - uid: 19484
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-38.5
@@ -128081,7 +128075,7 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19482
+ - uid: 19485
components:
- rot: 3.141592653589793 rad
pos: 71.5,-33.5
@@ -128089,7 +128083,7 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19483
+ - uid: 19486
components:
- rot: 3.141592653589793 rad
pos: 72.5,-33.5
@@ -128097,30 +128091,30 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19484
+ - uid: 19487
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-58.5
parent: 2
type: Transform
- - uid: 19485
+ - uid: 19488
components:
- pos: -54.5,-59.5
parent: 2
type: Transform
- - uid: 19486
+ - uid: 19489
components:
- rot: 3.141592653589793 rad
pos: -48.5,-38.5
parent: 2
type: Transform
- - uid: 19487
+ - uid: 19490
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-40.5
parent: 2
type: Transform
- - uid: 19488
+ - uid: 19491
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-46.5
@@ -128128,7 +128122,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19489
+ - uid: 19492
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-47.5
@@ -128136,7 +128130,7 @@ entities:
type: Transform
- proto: GasPressurePump
entities:
- - uid: 19490
+ - uid: 19493
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-41.5
@@ -128144,92 +128138,92 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19491
+ - uid: 19494
components:
- rot: 1.5707963267948966 rad
pos: -73.5,-41.5
parent: 2
type: Transform
- - uid: 19492
+ - uid: 19495
components:
- pos: -70.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19493
+ - uid: 19496
components:
- pos: -68.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19494
+ - uid: 19497
components:
- rot: 3.141592653589793 rad
pos: 50.5,-57.5
parent: 2
type: Transform
- - uid: 19495
+ - uid: 19498
components:
- pos: 47.5,-57.5
parent: 2
type: Transform
- - uid: 19496
+ - uid: 19499
components:
- rot: 3.141592653589793 rad
pos: 55.5,-60.5
parent: 2
type: Transform
- - uid: 19497
+ - uid: 19500
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-59.5
parent: 2
type: Transform
- - uid: 19498
+ - uid: 19501
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-53.5
parent: 2
type: Transform
- - uid: 19499
+ - uid: 19502
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-55.5
parent: 2
type: Transform
- - uid: 19500
+ - uid: 19503
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-51.5
parent: 2
type: Transform
- - uid: 19501
+ - uid: 19504
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-49.5
parent: 2
type: Transform
- - uid: 19502
+ - uid: 19505
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-47.5
parent: 2
type: Transform
- - uid: 19503
+ - uid: 19506
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-45.5
parent: 2
type: Transform
- - uid: 19504
+ - uid: 19507
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-43.5
parent: 2
type: Transform
- - uid: 19505
+ - uid: 19508
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-55.5
@@ -128237,34 +128231,34 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19506
+ - uid: 19509
components:
- pos: -40.5,-54.5
parent: 2
type: Transform
- color: '#03FCD3FF'
type: AtmosPipeColor
- - uid: 19507
+ - uid: 19510
components:
- rot: 3.141592653589793 rad
pos: -42.5,-40.5
parent: 2
type: Transform
- - uid: 19508
+ - uid: 19511
components:
- pos: -37.5,-54.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19509
+ - uid: 19512
components:
- pos: -38.5,-45.5
parent: 2
type: Transform
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19510
+ - uid: 19513
components:
- rot: 3.141592653589793 rad
pos: -24.5,-61.5
@@ -128272,7 +128266,7 @@ entities:
type: Transform
- color: '#97C3FCCC'
type: AtmosPipeColor
- - uid: 19511
+ - uid: 19514
components:
- rot: 3.141592653589793 rad
pos: -25.5,-59.5
@@ -128280,14 +128274,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19512
+ - uid: 19515
components:
- pos: -23.5,-59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19513
+ - uid: 19516
components:
- rot: 3.141592653589793 rad
pos: 72.5,-31.5
@@ -128295,19 +128289,19 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19514
+ - uid: 19517
components:
- pos: 71.5,-31.5
parent: 2
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19515
+ - uid: 19518
components:
- pos: -56.5,-59.5
parent: 2
type: Transform
- - uid: 19516
+ - uid: 19519
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-38.5
@@ -128315,13 +128309,13 @@ entities:
type: Transform
- color: '#999000FF'
type: AtmosPipeColor
- - uid: 19517
+ - uid: 19520
components:
- rot: 3.141592653589793 rad
pos: -54.5,-60.5
parent: 2
type: Transform
- - uid: 19518
+ - uid: 19521
components:
- rot: 1.5707963267948966 rad
pos: 70.5,-37.5
@@ -128329,12 +128323,12 @@ entities:
type: Transform
- color: '#9755CCFF'
type: AtmosPipeColor
- - uid: 19519
+ - uid: 19522
components:
- pos: -48.5,-37.5
parent: 2
type: Transform
- - uid: 19520
+ - uid: 19523
components:
- rot: 3.141592653589793 rad
pos: -70.5,-43.5
@@ -128342,7 +128336,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19521
+ - uid: 19524
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-40.5
@@ -128352,62 +128346,62 @@ entities:
type: AtmosPipeColor
- proto: GasRecyclerMachineCircuitboard
entities:
- - uid: 19522
+ - uid: 19525
components:
- pos: 53.993114,35.55658
parent: 2
type: Transform
- proto: GasThermoMachineFreezer
entities:
- - uid: 19523
+ - uid: 19526
components:
- pos: 51.5,-57.5
parent: 2
type: Transform
- - uid: 19524
+ - uid: 19527
components:
- pos: 2.5,14.5
parent: 2
type: Transform
- - uid: 19525
+ - uid: 19528
components:
- pos: -33.5,-52.5
parent: 2
type: Transform
- - uid: 19526
+ - uid: 19529
components:
- pos: 2.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19527
+ - uid: 19530
components:
- pos: 2.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19528
+ - uid: 19531
components:
- pos: -5.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19529
+ - uid: 19532
components:
- pos: -5.5,70.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19530
+ - uid: 19533
components:
- pos: 53.5,-47.5
parent: 2
type: Transform
- - uid: 19531
+ - uid: 19534
components:
- pos: -22.5,-61.5
parent: 2
@@ -128416,28 +128410,28 @@ entities:
type: AtmosPipeColor
- proto: GasThermoMachineFreezerEnabled
entities:
- - uid: 19532
+ - uid: 19535
components:
- pos: -66.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19533
+ - uid: 19536
components:
- pos: -69.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19534
+ - uid: 19537
components:
- pos: -67.5,-38.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19535
+ - uid: 19538
components:
- pos: -68.5,-38.5
parent: 2
@@ -128446,31 +128440,31 @@ entities:
type: AtmosPipeColor
- proto: GasThermoMachineHeater
entities:
- - uid: 19536
+ - uid: 19539
components:
- pos: 48.5,-57.5
parent: 2
type: Transform
- - uid: 19537
+ - uid: 19540
components:
- pos: -33.5,-54.5
parent: 2
type: Transform
- - uid: 19538
+ - uid: 19541
components:
- pos: -57.5,-59.5
parent: 2
type: Transform
- proto: GasValve
entities:
- - uid: 19539
+ - uid: 19542
components:
- pos: -44.5,-40.5
parent: 2
type: Transform
- open: False
type: GasValve
- - uid: 19540
+ - uid: 19543
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-41.5
@@ -128480,7 +128474,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19541
+ - uid: 19544
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-40.5
@@ -128490,7 +128484,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19542
+ - uid: 19545
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-42.5
@@ -128500,7 +128494,7 @@ entities:
type: GasValve
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19543
+ - uid: 19546
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-59.5
@@ -128508,7 +128502,7 @@ entities:
type: Transform
- open: False
type: GasValve
- - uid: 19544
+ - uid: 19547
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-60.5
@@ -128516,7 +128510,7 @@ entities:
type: Transform
- open: False
type: GasValve
- - uid: 19545
+ - uid: 19548
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-41.5
@@ -128524,7 +128518,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19546
+ - uid: 19549
components:
- pos: -40.5,-53.5
parent: 2
@@ -128533,7 +128527,7 @@ entities:
type: GasValve
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19547
+ - uid: 19550
components:
- rot: 3.141592653589793 rad
pos: -38.5,-58.5
@@ -128543,7 +128537,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19548
+ - uid: 19551
components:
- pos: -37.5,-53.5
parent: 2
@@ -128552,7 +128546,7 @@ entities:
type: GasValve
- color: '#947507FF'
type: AtmosPipeColor
- - uid: 19549
+ - uid: 19552
components:
- pos: -38.5,-42.5
parent: 2
@@ -128561,7 +128555,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19550
+ - uid: 19553
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-53.5
@@ -128571,7 +128565,7 @@ entities:
type: GasValve
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19551
+ - uid: 19554
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-55.5
@@ -128581,14 +128575,14 @@ entities:
type: GasValve
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19552
+ - uid: 19555
components:
- pos: -48.5,-36.5
parent: 2
type: Transform
- open: False
type: GasValve
- - uid: 19553
+ - uid: 19556
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-44.5
@@ -128598,7 +128592,7 @@ entities:
type: GasValve
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19554
+ - uid: 19557
components:
- rot: 1.5707963267948966 rad
pos: -71.5,-37.5
@@ -128610,7 +128604,7 @@ entities:
type: AtmosPipeColor
- proto: GasVentPump
entities:
- - uid: 19555
+ - uid: 19558
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-47.5
@@ -128618,7 +128612,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19556
+ - uid: 19559
components:
- rot: 3.141592653589793 rad
pos: 18.5,16.5
@@ -128626,7 +128620,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19557
+ - uid: 19560
components:
- rot: 3.141592653589793 rad
pos: -0.5,-4.5
@@ -128637,7 +128631,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19558
+ - uid: 19561
components:
- rot: 3.141592653589793 rad
pos: 1.5,-5.5
@@ -128648,7 +128642,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19559
+ - uid: 19562
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-31.5
@@ -128656,7 +128650,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19560
+ - uid: 19563
components:
- rot: 3.141592653589793 rad
pos: -72.5,-38.5
@@ -128664,7 +128658,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19561
+ - uid: 19564
components:
- rot: 1.5707963267948966 rad
pos: -72.5,-25.5
@@ -128672,7 +128666,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19562
+ - uid: 19565
components:
- rot: 1.5707963267948966 rad
pos: -9.5,2.5
@@ -128680,14 +128674,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19563
+ - uid: 19566
components:
- pos: -1.5,-59.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19564
+ - uid: 19567
components:
- rot: 3.141592653589793 rad
pos: -14.5,-46.5
@@ -128695,14 +128689,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19565
+ - uid: 19568
components:
- pos: 25.5,-5.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19566
+ - uid: 19569
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-39.5
@@ -128710,7 +128704,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19567
+ - uid: 19570
components:
- rot: 3.141592653589793 rad
pos: -0.5,-65.5
@@ -128718,7 +128712,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19568
+ - uid: 19571
components:
- rot: 3.141592653589793 rad
pos: -23.5,-86.5
@@ -128726,21 +128720,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19569
+ - uid: 19572
components:
- pos: 2.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19570
+ - uid: 19573
components:
- pos: 20.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19571
+ - uid: 19574
components:
- rot: -1.5707963267948966 rad
pos: 6.5,16.5
@@ -128748,14 +128742,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19572
+ - uid: 19575
components:
- pos: 26.5,11.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19573
+ - uid: 19576
components:
- rot: 1.5707963267948966 rad
pos: 5.5,8.5
@@ -128763,7 +128757,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19574
+ - uid: 19577
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-14.5
@@ -128771,14 +128765,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19575
+ - uid: 19578
components:
- pos: -17.5,-57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19576
+ - uid: 19579
components:
- rot: -1.5707963267948966 rad
pos: 32.5,10.5
@@ -128786,7 +128780,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19577
+ - uid: 19580
components:
- rot: 1.5707963267948966 rad
pos: 16.5,13.5
@@ -128794,7 +128788,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19578
+ - uid: 19581
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-27.5
@@ -128802,14 +128796,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19579
+ - uid: 19582
components:
- pos: 10.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19580
+ - uid: 19583
components:
- rot: -1.5707963267948966 rad
pos: 29.5,10.5
@@ -128817,7 +128811,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19581
+ - uid: 19584
components:
- rot: 3.141592653589793 rad
pos: 18.5,3.5
@@ -128825,7 +128819,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19582
+ - uid: 19585
components:
- rot: 1.5707963267948966 rad
pos: 8.5,1.5
@@ -128833,7 +128827,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19583
+ - uid: 19586
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-9.5
@@ -128841,14 +128835,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19584
+ - uid: 19587
components:
- pos: 22.5,22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19585
+ - uid: 19588
components:
- rot: 1.5707963267948966 rad
pos: -0.5,17.5
@@ -128856,7 +128850,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19586
+ - uid: 19589
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-22.5
@@ -128864,7 +128858,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19587
+ - uid: 19590
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-6.5
@@ -128872,7 +128866,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19588
+ - uid: 19591
components:
- rot: 3.141592653589793 rad
pos: -6.5,-65.5
@@ -128880,7 +128874,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19589
+ - uid: 19592
components:
- rot: 3.141592653589793 rad
pos: -12.5,-65.5
@@ -128888,14 +128882,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19590
+ - uid: 19593
components:
- pos: -2.5,-52.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19591
+ - uid: 19594
components:
- rot: 3.141592653589793 rad
pos: -0.5,-47.5
@@ -128903,7 +128897,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19592
+ - uid: 19595
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-60.5
@@ -128911,7 +128905,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19593
+ - uid: 19596
components:
- rot: -1.5707963267948966 rad
pos: 35.5,10.5
@@ -128919,7 +128913,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19594
+ - uid: 19597
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-80.5
@@ -128927,7 +128921,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19595
+ - uid: 19598
components:
- rot: 3.141592653589793 rad
pos: 36.5,7.5
@@ -128935,7 +128929,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19596
+ - uid: 19599
components:
- rot: 3.141592653589793 rad
pos: 11.5,9.5
@@ -128943,7 +128937,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19597
+ - uid: 19600
components:
- rot: 1.5707963267948966 rad
pos: 9.5,3.5
@@ -128951,21 +128945,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19598
+ - uid: 19601
components:
- pos: 20.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19599
+ - uid: 19602
components:
- pos: 5.5,19.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19600
+ - uid: 19603
components:
- rot: 3.141592653589793 rad
pos: 0.5,12.5
@@ -128973,14 +128967,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19601
+ - uid: 19604
components:
- pos: -24.5,-79.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19602
+ - uid: 19605
components:
- rot: 3.141592653589793 rad
pos: -18.5,-78.5
@@ -128988,7 +128982,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19603
+ - uid: 19606
components:
- rot: -1.5707963267948966 rad
pos: 20.5,18.5
@@ -128996,14 +128990,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19604
+ - uid: 19607
components:
- pos: 17.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19605
+ - uid: 19608
components:
- rot: 1.5707963267948966 rad
pos: 33.5,5.5
@@ -129011,14 +129005,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19606
+ - uid: 19609
components:
- pos: -4.5,-40.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19607
+ - uid: 19610
components:
- rot: 3.141592653589793 rad
pos: -4.5,12.5
@@ -129026,14 +129020,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19608
+ - uid: 19611
components:
- pos: -29.5,-70.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19609
+ - uid: 19612
components:
- rot: 1.5707963267948966 rad
pos: -23.5,29.5
@@ -129041,14 +129035,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19610
+ - uid: 19613
components:
- pos: 47.5,-23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19611
+ - uid: 19614
components:
- rot: 1.5707963267948966 rad
pos: 27.5,0.5
@@ -129056,14 +129050,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19612
+ - uid: 19615
components:
- pos: -7.5,9.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19613
+ - uid: 19616
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-32.5
@@ -129071,7 +129065,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19614
+ - uid: 19617
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-12.5
@@ -129079,21 +129073,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19615
+ - uid: 19618
components:
- pos: 30.5,-17.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19616
+ - uid: 19619
components:
- pos: -18.5,33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19617
+ - uid: 19620
components:
- rot: 3.141592653589793 rad
pos: 36.5,4.5
@@ -129101,7 +129095,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19618
+ - uid: 19621
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-24.5
@@ -129109,7 +129103,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19619
+ - uid: 19622
components:
- rot: 3.141592653589793 rad
pos: -24.5,-89.5
@@ -129117,7 +129111,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19620
+ - uid: 19623
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-64.5
@@ -129125,14 +129119,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19621
+ - uid: 19624
components:
- pos: 31.5,-14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19622
+ - uid: 19625
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-26.5
@@ -129140,7 +129134,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19623
+ - uid: 19626
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-72.5
@@ -129148,7 +129142,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19624
+ - uid: 19627
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-67.5
@@ -129156,7 +129150,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19625
+ - uid: 19628
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-88.5
@@ -129164,7 +129158,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19626
+ - uid: 19629
components:
- rot: -1.5707963267948966 rad
pos: 35.5,-23.5
@@ -129172,21 +129166,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19627
+ - uid: 19630
components:
- pos: -16.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19628
+ - uid: 19631
components:
- pos: -11.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19629
+ - uid: 19632
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-10.5
@@ -129194,7 +129188,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19630
+ - uid: 19633
components:
- rot: 3.141592653589793 rad
pos: 21.5,-46.5
@@ -129202,21 +129196,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19631
+ - uid: 19634
components:
- pos: 30.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19632
+ - uid: 19635
components:
- pos: 45.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19633
+ - uid: 19636
components:
- rot: -1.5707963267948966 rad
pos: 61.5,15.5
@@ -129224,7 +129218,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19634
+ - uid: 19637
components:
- rot: -1.5707963267948966 rad
pos: 52.5,13.5
@@ -129232,7 +129226,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19635
+ - uid: 19638
components:
- rot: -1.5707963267948966 rad
pos: 61.5,18.5
@@ -129240,42 +129234,42 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19636
+ - uid: 19639
components:
- pos: 59.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19637
+ - uid: 19640
components:
- pos: 56.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19638
+ - uid: 19641
components:
- pos: 53.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19639
+ - uid: 19642
components:
- pos: 50.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19640
+ - uid: 19643
components:
- pos: 47.5,23.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19641
+ - uid: 19644
components:
- rot: 3.141592653589793 rad
pos: 47.5,13.5
@@ -129283,7 +129277,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19642
+ - uid: 19645
components:
- rot: -1.5707963267948966 rad
pos: 60.5,11.5
@@ -129291,14 +129285,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19643
+ - uid: 19646
components:
- pos: 39.5,20.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19644
+ - uid: 19647
components:
- rot: 1.5707963267948966 rad
pos: 34.5,19.5
@@ -129306,14 +129300,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19645
+ - uid: 19648
components:
- pos: 45.5,1.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19646
+ - uid: 19649
components:
- rot: -1.5707963267948966 rad
pos: 57.5,0.5
@@ -129321,7 +129315,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19647
+ - uid: 19650
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-1.5
@@ -129329,7 +129323,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19648
+ - uid: 19651
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-3.5
@@ -129337,7 +129331,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19649
+ - uid: 19652
components:
- rot: 3.141592653589793 rad
pos: 41.5,8.5
@@ -129345,7 +129339,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19650
+ - uid: 19653
components:
- rot: 1.5707963267948966 rad
pos: 29.5,19.5
@@ -129353,7 +129347,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19651
+ - uid: 19654
components:
- rot: 1.5707963267948966 rad
pos: 38.5,10.5
@@ -129361,7 +129355,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19652
+ - uid: 19655
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-1.5
@@ -129369,7 +129363,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19653
+ - uid: 19656
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-5.5
@@ -129377,7 +129371,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19654
+ - uid: 19657
components:
- rot: 3.141592653589793 rad
pos: 49.5,-42.5
@@ -129385,7 +129379,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19655
+ - uid: 19658
components:
- rot: 3.141592653589793 rad
pos: 56.5,-42.5
@@ -129393,7 +129387,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19656
+ - uid: 19659
components:
- rot: 3.141592653589793 rad
pos: 44.5,-42.5
@@ -129401,7 +129395,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19657
+ - uid: 19660
components:
- rot: 3.141592653589793 rad
pos: 57.5,-45.5
@@ -129409,7 +129403,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19658
+ - uid: 19661
components:
- rot: 3.141592653589793 rad
pos: 61.5,-47.5
@@ -129417,7 +129411,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19659
+ - uid: 19662
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-32.5
@@ -129425,7 +129419,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19660
+ - uid: 19663
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-24.5
@@ -129433,14 +129427,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19661
+ - uid: 19664
components:
- pos: 61.5,-2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19662
+ - uid: 19665
components:
- rot: 3.141592653589793 rad
pos: 60.5,-52.5
@@ -129448,7 +129442,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19663
+ - uid: 19666
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-46.5
@@ -129456,7 +129450,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19664
+ - uid: 19667
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-52.5
@@ -129464,7 +129458,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19665
+ - uid: 19668
components:
- rot: 1.5707963267948966 rad
pos: 25.5,-56.5
@@ -129472,7 +129466,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19666
+ - uid: 19669
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-56.5
@@ -129480,7 +129474,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19667
+ - uid: 19670
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-52.5
@@ -129488,7 +129482,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19668
+ - uid: 19671
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-47.5
@@ -129496,7 +129490,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19669
+ - uid: 19672
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-47.5
@@ -129504,14 +129498,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19670
+ - uid: 19673
components:
- pos: 29.5,-45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19671
+ - uid: 19674
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-57.5
@@ -129519,14 +129513,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19672
+ - uid: 19675
components:
- pos: -13.5,2.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19673
+ - uid: 19676
components:
- rot: 1.5707963267948966 rad
pos: -17.5,1.5
@@ -129534,7 +129528,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19674
+ - uid: 19677
components:
- rot: 3.141592653589793 rad
pos: -24.5,-14.5
@@ -129542,14 +129536,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19675
+ - uid: 19678
components:
- pos: -28.5,-12.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19676
+ - uid: 19679
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-14.5
@@ -129557,7 +129551,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19677
+ - uid: 19680
components:
- rot: 3.141592653589793 rad
pos: -24.5,-23.5
@@ -129565,14 +129559,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19678
+ - uid: 19681
components:
- pos: 38.5,-55.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19679
+ - uid: 19682
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-63.5
@@ -129580,7 +129574,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19680
+ - uid: 19683
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-41.5
@@ -129588,7 +129582,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19681
+ - uid: 19684
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-47.5
@@ -129596,7 +129590,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19682
+ - uid: 19685
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-33.5
@@ -129604,7 +129598,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19683
+ - uid: 19686
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-71.5
@@ -129612,7 +129606,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19684
+ - uid: 19687
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-56.5
@@ -129620,14 +129614,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19685
+ - uid: 19688
components:
- pos: -28.5,-16.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19686
+ - uid: 19689
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-27.5
@@ -129635,7 +129629,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19687
+ - uid: 19690
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-15.5
@@ -129643,7 +129637,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19688
+ - uid: 19691
components:
- rot: 3.141592653589793 rad
pos: -36.5,-12.5
@@ -129651,7 +129645,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19689
+ - uid: 19692
components:
- rot: 3.141592653589793 rad
pos: -41.5,-16.5
@@ -129659,7 +129653,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19690
+ - uid: 19693
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-4.5
@@ -129667,7 +129661,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19691
+ - uid: 19694
components:
- rot: 3.141592653589793 rad
pos: -44.5,-12.5
@@ -129675,7 +129669,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19692
+ - uid: 19695
components:
- rot: 3.141592653589793 rad
pos: -46.5,-6.5
@@ -129683,7 +129677,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19693
+ - uid: 19696
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-13.5
@@ -129691,7 +129685,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19694
+ - uid: 19697
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-24.5
@@ -129699,21 +129693,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19695
+ - uid: 19698
components:
- pos: -45.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19696
+ - uid: 19699
components:
- pos: -59.5,-24.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19697
+ - uid: 19700
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-27.5
@@ -129721,7 +129715,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19698
+ - uid: 19701
components:
- rot: 3.141592653589793 rad
pos: -64.5,-31.5
@@ -129729,7 +129723,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19699
+ - uid: 19702
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-39.5
@@ -129737,14 +129731,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19700
+ - uid: 19703
components:
- pos: -30.5,-33.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19701
+ - uid: 19704
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-34.5
@@ -129752,7 +129746,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19702
+ - uid: 19705
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-34.5
@@ -129760,14 +129754,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19703
+ - uid: 19706
components:
- pos: -23.5,-57.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19704
+ - uid: 19707
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-71.5
@@ -129775,14 +129769,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19705
+ - uid: 19708
components:
- pos: 21.5,-27.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19706
+ - uid: 19709
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-30.5
@@ -129790,7 +129784,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19707
+ - uid: 19710
components:
- rot: 1.5707963267948966 rad
pos: -19.5,19.5
@@ -129798,7 +129792,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19708
+ - uid: 19711
components:
- rot: 3.141592653589793 rad
pos: -28.5,22.5
@@ -129806,7 +129800,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19709
+ - uid: 19712
components:
- rot: 3.141592653589793 rad
pos: -32.5,22.5
@@ -129814,14 +129808,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19710
+ - uid: 19713
components:
- pos: -32.5,28.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19711
+ - uid: 19714
components:
- rot: 1.5707963267948966 rad
pos: -41.5,23.5
@@ -129829,7 +129823,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19712
+ - uid: 19715
components:
- rot: 3.141592653589793 rad
pos: -24.5,22.5
@@ -129837,7 +129831,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19713
+ - uid: 19716
components:
- rot: 1.5707963267948966 rad
pos: -50.5,33.5
@@ -129845,7 +129839,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19714
+ - uid: 19717
components:
- rot: 1.5707963267948966 rad
pos: -50.5,31.5
@@ -129853,14 +129847,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19715
+ - uid: 19718
components:
- pos: -44.5,34.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19716
+ - uid: 19719
components:
- rot: -1.5707963267948966 rad
pos: -37.5,30.5
@@ -129868,7 +129862,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19717
+ - uid: 19720
components:
- rot: 1.5707963267948966 rad
pos: -26.5,12.5
@@ -129876,7 +129870,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19718
+ - uid: 19721
components:
- rot: 3.141592653589793 rad
pos: -28.5,-3.5
@@ -129884,7 +129878,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19719
+ - uid: 19722
components:
- rot: 3.141592653589793 rad
pos: -29.5,9.5
@@ -129892,14 +129886,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19720
+ - uid: 19723
components:
- pos: -29.5,15.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19721
+ - uid: 19724
components:
- rot: -1.5707963267948966 rad
pos: -36.5,8.5
@@ -129907,7 +129901,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19722
+ - uid: 19725
components:
- rot: 1.5707963267948966 rad
pos: -38.5,5.5
@@ -129915,7 +129909,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19723
+ - uid: 19726
components:
- rot: 3.141592653589793 rad
pos: -41.5,0.5
@@ -129923,7 +129917,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19724
+ - uid: 19727
components:
- rot: 3.141592653589793 rad
pos: -45.5,0.5
@@ -129931,7 +129925,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19725
+ - uid: 19728
components:
- rot: -1.5707963267948966 rad
pos: -44.5,6.5
@@ -129939,7 +129933,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19726
+ - uid: 19729
components:
- rot: 1.5707963267948966 rad
pos: -51.5,7.5
@@ -129947,7 +129941,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19727
+ - uid: 19730
components:
- rot: -1.5707963267948966 rad
pos: -43.5,11.5
@@ -129955,21 +129949,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19728
+ - uid: 19731
components:
- pos: -45.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19729
+ - uid: 19732
components:
- pos: -51.5,14.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19730
+ - uid: 19733
components:
- rot: 1.5707963267948966 rad
pos: -52.5,11.5
@@ -129977,7 +129971,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19731
+ - uid: 19734
components:
- rot: 3.141592653589793 rad
pos: 19.5,-54.5
@@ -129985,7 +129979,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19732
+ - uid: 19735
components:
- rot: 3.141592653589793 rad
pos: 19.5,-54.5
@@ -129993,21 +129987,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19733
+ - uid: 19736
components:
- pos: -54.5,-74.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19734
+ - uid: 19737
components:
- pos: -8.5,-26.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19735
+ - uid: 19738
components:
- rot: 3.141592653589793 rad
pos: 33.5,-42.5
@@ -130015,7 +130009,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19736
+ - uid: 19739
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-44.5
@@ -130023,7 +130017,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19737
+ - uid: 19740
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-78.5
@@ -130031,7 +130025,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19738
+ - uid: 19741
components:
- rot: 1.5707963267948966 rad
pos: 39.5,46.5
@@ -130039,14 +130033,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19739
+ - uid: 19742
components:
- pos: 54.5,56.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19740
+ - uid: 19743
components:
- rot: -1.5707963267948966 rad
pos: 55.5,43.5
@@ -130054,7 +130048,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19741
+ - uid: 19744
components:
- rot: -1.5707963267948966 rad
pos: -12.5,33.5
@@ -130062,7 +130056,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19742
+ - uid: 19745
components:
- rot: 1.5707963267948966 rad
pos: -20.5,44.5
@@ -130070,20 +130064,20 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19743
+ - uid: 19746
components:
- pos: -14.5,45.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19744
+ - uid: 19747
components:
- rot: 3.141592653589793 rad
pos: 70.5,37.5
parent: 2
type: Transform
- - uid: 19745
+ - uid: 19748
components:
- rot: -1.5707963267948966 rad
pos: -11.5,38.5
@@ -130091,14 +130085,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19746
+ - uid: 19749
components:
- pos: -1.5,66.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19747
+ - uid: 19750
components:
- rot: -1.5707963267948966 rad
pos: -0.5,61.5
@@ -130106,7 +130100,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19748
+ - uid: 19751
components:
- rot: 1.5707963267948966 rad
pos: 0.5,46.5
@@ -130114,7 +130108,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19749
+ - uid: 19752
components:
- rot: 1.5707963267948966 rad
pos: -13.5,60.5
@@ -130125,7 +130119,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19750
+ - uid: 19753
components:
- rot: 3.141592653589793 rad
pos: -17.5,60.5
@@ -130133,21 +130127,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19751
+ - uid: 19754
components:
- pos: -12.5,73.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19752
+ - uid: 19755
components:
- pos: -22.5,73.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19753
+ - uid: 19756
components:
- rot: -1.5707963267948966 rad
pos: -21.5,60.5
@@ -130155,7 +130149,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19754
+ - uid: 19757
components:
- rot: 1.5707963267948966 rad
pos: 0.5,57.5
@@ -130163,7 +130157,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19755
+ - uid: 19758
components:
- rot: -1.5707963267948966 rad
pos: 30.5,46.5
@@ -130171,7 +130165,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19756
+ - uid: 19759
components:
- rot: 3.141592653589793 rad
pos: 23.5,45.5
@@ -130179,7 +130173,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19757
+ - uid: 19760
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-91.5
@@ -130187,7 +130181,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19758
+ - uid: 19761
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-96.5
@@ -130195,7 +130189,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19759
+ - uid: 19762
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-97.5
@@ -130203,14 +130197,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19760
+ - uid: 19763
components:
- pos: -8.5,-84.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19761
+ - uid: 19764
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-97.5
@@ -130218,14 +130212,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19762
+ - uid: 19765
components:
- pos: 65.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19763
+ - uid: 19766
components:
- rot: 3.141592653589793 rad
pos: 68.5,-34.5
@@ -130233,7 +130227,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19764
+ - uid: 19767
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-40.5
@@ -130241,7 +130235,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19765
+ - uid: 19768
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-47.5
@@ -130249,7 +130243,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19766
+ - uid: 19769
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-37.5
@@ -130257,21 +130251,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19767
+ - uid: 19770
components:
- pos: 74.5,-32.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19768
+ - uid: 19771
components:
- pos: 73.5,-29.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19769
+ - uid: 19772
components:
- rot: 3.141592653589793 rad
pos: 3.5,-30.5
@@ -130279,7 +130273,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19770
+ - uid: 19773
components:
- rot: -1.5707963267948966 rad
pos: -18.5,66.5
@@ -130287,7 +130281,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19771
+ - uid: 19774
components:
- rot: 3.141592653589793 rad
pos: 72.5,-49.5
@@ -130295,7 +130289,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19772
+ - uid: 19775
components:
- rot: -1.5707963267948966 rad
pos: -15.5,24.5
@@ -130303,7 +130297,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19773
+ - uid: 19776
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-14.5
@@ -130311,14 +130305,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19774
+ - uid: 19777
components:
- pos: -11.5,-18.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19775
+ - uid: 19778
components:
- rot: 3.141592653589793 rad
pos: -30.5,-74.5
@@ -130326,7 +130320,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19776
+ - uid: 19779
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-38.5
@@ -130334,7 +130328,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19777
+ - uid: 19780
components:
- rot: 3.141592653589793 rad
pos: 30.5,-84.5
@@ -130342,7 +130336,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19778
+ - uid: 19781
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-72.5
@@ -130350,14 +130344,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19779
+ - uid: 19782
components:
- pos: 25.5,-71.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19780
+ - uid: 19783
components:
- rot: 3.141592653589793 rad
pos: 18.5,-83.5
@@ -130365,7 +130359,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19781
+ - uid: 19784
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-86.5
@@ -130373,14 +130367,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19782
+ - uid: 19785
components:
- pos: 12.5,-22.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19783
+ - uid: 19786
components:
- rot: -1.5707963267948966 rad
pos: 45.5,5.5
@@ -130388,21 +130382,21 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19784
+ - uid: 19787
components:
- pos: -45.5,43.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19785
+ - uid: 19788
components:
- pos: 68.5,-31.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19786
+ - uid: 19789
components:
- rot: -1.5707963267948966 rad
pos: -5.5,16.5
@@ -130413,7 +130407,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19787
+ - uid: 19790
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-21.5
@@ -130424,7 +130418,7 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19788
+ - uid: 19791
components:
- rot: 3.141592653589793 rad
pos: 22.5,-37.5
@@ -130435,14 +130429,14 @@ entities:
type: DeviceNetwork
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19789
+ - uid: 19792
components:
- pos: 42.5,-37.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19790
+ - uid: 19793
components:
- rot: 1.5707963267948966 rad
pos: 38.5,61.5
@@ -130450,7 +130444,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 19791
+ - uid: 19794
components:
- rot: 3.141592653589793 rad
pos: 6.5,-48.5
@@ -130460,7 +130454,14 @@ entities:
type: AtmosPipeColor
- proto: GasVentScrubber
entities:
- - uid: 19792
+ - uid: 19795
+ components:
+ - pos: -0.5,12.5
+ parent: 2
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 19796
components:
- rot: 3.141592653589793 rad
pos: 6.5,-47.5
@@ -130468,7 +130469,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19793
+ - uid: 19797
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-46.5
@@ -130476,7 +130477,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19794
+ - uid: 19798
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-6.5
@@ -130487,7 +130488,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19795
+ - uid: 19799
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-24.5
@@ -130495,7 +130496,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19796
+ - uid: 19800
components:
- rot: 3.141592653589793 rad
pos: -73.5,-38.5
@@ -130503,36 +130504,36 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19797
+ - uid: 19801
components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,11.5
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19798
+ - uid: 19802
components:
- pos: 25.5,-51.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19799
+ - uid: 19803
components:
- pos: 22.5,-4.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19800
+ - uid: 19804
components:
- pos: 11.5,19.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19801
+ - uid: 19805
components:
- rot: 1.5707963267948966 rad
pos: 27.5,1.5
@@ -130540,7 +130541,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19802
+ - uid: 19806
components:
- rot: 3.141592653589793 rad
pos: 7.5,-26.5
@@ -130548,28 +130549,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19803
+ - uid: 19807
components:
- pos: -8.5,-0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19804
+ - uid: 19808
components:
- pos: 31.5,-41.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19805
+ - uid: 19809
components:
- pos: 31.5,16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19806
+ - uid: 19810
components:
- rot: 3.141592653589793 rad
pos: -5.5,6.5
@@ -130577,7 +130578,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19807
+ - uid: 19811
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-39.5
@@ -130585,7 +130586,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19808
+ - uid: 19812
components:
- rot: 3.141592653589793 rad
pos: 31.5,11.5
@@ -130593,7 +130594,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19809
+ - uid: 19813
components:
- rot: 1.5707963267948966 rad
pos: 37.5,8.5
@@ -130601,7 +130602,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19810
+ - uid: 19814
components:
- rot: 1.5707963267948966 rad
pos: 37.5,5.5
@@ -130609,7 +130610,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19811
+ - uid: 19815
components:
- rot: 3.141592653589793 rad
pos: 28.5,11.5
@@ -130617,14 +130618,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19812
+ - uid: 19816
components:
- pos: 38.5,12.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19813
+ - uid: 19817
components:
- rot: 3.141592653589793 rad
pos: -4.5,-43.5
@@ -130632,7 +130633,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19814
+ - uid: 19818
components:
- rot: 1.5707963267948966 rad
pos: 16.5,12.5
@@ -130640,7 +130641,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19815
+ - uid: 19819
components:
- rot: 3.141592653589793 rad
pos: 34.5,11.5
@@ -130648,7 +130649,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19816
+ - uid: 19820
components:
- rot: -1.5707963267948966 rad
pos: 26.5,7.5
@@ -130656,7 +130657,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19817
+ - uid: 19821
components:
- rot: -1.5707963267948966 rad
pos: 8.5,19.5
@@ -130664,7 +130665,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19818
+ - uid: 19822
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-18.5
@@ -130672,7 +130673,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19819
+ - uid: 19823
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-29.5
@@ -130680,14 +130681,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19820
+ - uid: 19824
components:
- pos: 23.5,-27.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19821
+ - uid: 19825
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-5.5
@@ -130695,7 +130696,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19822
+ - uid: 19826
components:
- rot: 3.141592653589793 rad
pos: -2.5,-65.5
@@ -130703,7 +130704,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19823
+ - uid: 19827
components:
- rot: 3.141592653589793 rad
pos: -8.5,-65.5
@@ -130711,7 +130712,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19824
+ - uid: 19828
components:
- rot: 3.141592653589793 rad
pos: -15.5,-65.5
@@ -130719,7 +130720,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19825
+ - uid: 19829
components:
- rot: 3.141592653589793 rad
pos: -5.5,-61.5
@@ -130727,7 +130728,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19826
+ - uid: 19830
components:
- rot: 3.141592653589793 rad
pos: -8.5,-54.5
@@ -130735,7 +130736,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19827
+ - uid: 19831
components:
- rot: 3.141592653589793 rad
pos: -8.5,-47.5
@@ -130743,7 +130744,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19828
+ - uid: 19832
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-61.5
@@ -130751,7 +130752,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19829
+ - uid: 19833
components:
- rot: 3.141592653589793 rad
pos: -12.5,-47.5
@@ -130759,7 +130760,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19830
+ - uid: 19834
components:
- rot: 3.141592653589793 rad
pos: -20.5,-85.5
@@ -130767,7 +130768,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19831
+ - uid: 19835
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-77.5
@@ -130775,7 +130776,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19832
+ - uid: 19836
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-77.5
@@ -130783,29 +130784,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19833
+ - uid: 19837
components:
- pos: 17.5,0.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19834
+ - uid: 19838
components:
- pos: 33.5,2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19835
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,11.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 19836
+ - uid: 19839
components:
- rot: -1.5707963267948966 rad
pos: 9.5,0.5
@@ -130813,7 +130806,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19837
+ - uid: 19840
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-89.5
@@ -130821,7 +130814,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19838
+ - uid: 19841
components:
- rot: 3.141592653589793 rad
pos: -21.5,-90.5
@@ -130829,14 +130822,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19839
+ - uid: 19842
components:
- pos: 33.5,-14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19840
+ - uid: 19843
components:
- rot: 3.141592653589793 rad
pos: 10.5,-4.5
@@ -130844,21 +130837,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19841
+ - uid: 19844
components:
- pos: 25.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19842
+ - uid: 19845
components:
- pos: 16.5,22.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19843
+ - uid: 19846
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-23.5
@@ -130866,7 +130859,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19844
+ - uid: 19847
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-11.5
@@ -130874,7 +130867,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19845
+ - uid: 19848
components:
- rot: -1.5707963267948966 rad
pos: 22.5,12.5
@@ -130882,7 +130875,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19846
+ - uid: 19849
components:
- rot: 3.141592653589793 rad
pos: 46.5,-30.5
@@ -130890,7 +130883,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19847
+ - uid: 19850
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-24.5
@@ -130898,14 +130891,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19848
+ - uid: 19851
components:
- pos: -20.5,33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19849
+ - uid: 19852
components:
- rot: -1.5707963267948966 rad
pos: 3.5,1.5
@@ -130913,14 +130906,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19850
+ - uid: 19853
components:
- pos: 21.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19851
+ - uid: 19854
components:
- rot: 1.5707963267948966 rad
pos: 0.5,6.5
@@ -130928,7 +130921,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19852
+ - uid: 19855
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-79.5
@@ -130936,7 +130929,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19853
+ - uid: 19856
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-14.5
@@ -130944,14 +130937,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19854
+ - uid: 19857
components:
- pos: 12.5,17.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19855
+ - uid: 19858
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-24.5
@@ -130959,7 +130952,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19856
+ - uid: 19859
components:
- rot: 1.5707963267948966 rad
pos: 6.5,14.5
@@ -130967,7 +130960,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19857
+ - uid: 19860
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-25.5
@@ -130975,7 +130968,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19858
+ - uid: 19861
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-75.5
@@ -130983,7 +130976,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19859
+ - uid: 19862
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-70.5
@@ -130991,7 +130984,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19860
+ - uid: 19863
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-66.5
@@ -130999,7 +130992,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19861
+ - uid: 19864
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-63.5
@@ -131007,7 +131000,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19862
+ - uid: 19865
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-31.5
@@ -131015,7 +131008,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19863
+ - uid: 19866
components:
- rot: -1.5707963267948966 rad
pos: 9.5,10.5
@@ -131023,7 +131016,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19864
+ - uid: 19867
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-37.5
@@ -131031,14 +131024,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19865
+ - uid: 19868
components:
- pos: -9.5,-32.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19866
+ - uid: 19869
components:
- rot: 1.5707963267948966 rad
pos: 0.5,19.5
@@ -131046,14 +131039,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19867
- components:
- - pos: -0.5,-13.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 19868
+ - uid: 19870
components:
- rot: 3.141592653589793 rad
pos: 20.5,-47.5
@@ -131061,14 +131047,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19869
+ - uid: 19871
components:
- pos: 28.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19870
+ - uid: 19872
components:
- rot: 3.141592653589793 rad
pos: 44.5,14.5
@@ -131076,14 +131062,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19871
+ - uid: 19873
components:
- pos: 47.5,16.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19872
+ - uid: 19874
components:
- rot: -1.5707963267948966 rad
pos: 52.5,12.5
@@ -131091,42 +131077,42 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19873
+ - uid: 19875
components:
- pos: 46.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19874
+ - uid: 19876
components:
- pos: 49.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19875
+ - uid: 19877
components:
- pos: 52.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19876
+ - uid: 19878
components:
- pos: 55.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19877
+ - uid: 19879
components:
- pos: 58.5,23.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19878
+ - uid: 19880
components:
- rot: -1.5707963267948966 rad
pos: 61.5,19.5
@@ -131134,7 +131120,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19879
+ - uid: 19881
components:
- rot: -1.5707963267948966 rad
pos: 61.5,16.5
@@ -131142,7 +131128,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19880
+ - uid: 19882
components:
- rot: 1.5707963267948966 rad
pos: 57.5,12.5
@@ -131150,7 +131136,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19881
+ - uid: 19883
components:
- rot: 3.141592653589793 rad
pos: 40.5,19.5
@@ -131158,7 +131144,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19882
+ - uid: 19884
components:
- rot: 1.5707963267948966 rad
pos: 34.5,20.5
@@ -131166,7 +131152,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19883
+ - uid: 19885
components:
- rot: -1.5707963267948966 rad
pos: 56.5,1.5
@@ -131174,7 +131160,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19884
+ - uid: 19886
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-1.5
@@ -131182,7 +131168,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19885
+ - uid: 19887
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-2.5
@@ -131190,7 +131176,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19886
+ - uid: 19888
components:
- rot: -1.5707963267948966 rad
pos: 29.5,22.5
@@ -131198,7 +131184,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19887
+ - uid: 19889
components:
- rot: 3.141592653589793 rad
pos: 38.5,0.5
@@ -131206,7 +131192,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19888
+ - uid: 19890
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-2.5
@@ -131214,7 +131200,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19889
+ - uid: 19891
components:
- rot: 1.5707963267948966 rad
pos: 41.5,9.5
@@ -131222,7 +131208,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19890
+ - uid: 19892
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-12.5
@@ -131230,7 +131216,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19891
+ - uid: 19893
components:
- rot: 3.141592653589793 rad
pos: 73.5,-28.5
@@ -131238,14 +131224,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19892
+ - uid: 19894
components:
- pos: 43.5,-37.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19893
+ - uid: 19895
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-43.5
@@ -131253,28 +131239,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19894
+ - uid: 19896
components:
- pos: 55.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19895
+ - uid: 19897
components:
- pos: 45.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19896
+ - uid: 19898
components:
- pos: 56.5,-44.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19897
+ - uid: 19899
components:
- rot: 3.141592653589793 rad
pos: 63.5,-47.5
@@ -131282,7 +131268,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19898
+ - uid: 19900
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-26.5
@@ -131290,14 +131276,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19899
+ - uid: 19901
components:
- pos: 63.5,-2.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19900
+ - uid: 19902
components:
- rot: 3.141592653589793 rad
pos: 64.5,-52.5
@@ -131305,7 +131291,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19901
+ - uid: 19903
components:
- rot: 3.141592653589793 rad
pos: 42.5,-46.5
@@ -131313,7 +131299,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19902
+ - uid: 19904
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-54.5
@@ -131321,7 +131307,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19903
+ - uid: 19905
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-52.5
@@ -131329,7 +131315,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19904
+ - uid: 19906
components:
- rot: 3.141592653589793 rad
pos: 70.5,-49.5
@@ -131337,7 +131323,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19905
+ - uid: 19907
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-52.5
@@ -131345,7 +131331,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19906
+ - uid: 19908
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-56.5
@@ -131353,7 +131339,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19907
+ - uid: 19909
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-48.5
@@ -131361,21 +131347,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19908
+ - uid: 19910
components:
- pos: 34.5,-45.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19909
+ - uid: 19911
components:
- pos: 28.5,-48.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19910
+ - uid: 19912
components:
- rot: 3.141592653589793 rad
pos: -13.5,6.5
@@ -131383,7 +131369,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19911
+ - uid: 19913
components:
- rot: 3.141592653589793 rad
pos: -19.5,4.5
@@ -131391,14 +131377,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19912
+ - uid: 19914
components:
- pos: -24.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19913
+ - uid: 19915
components:
- rot: 3.141592653589793 rad
pos: -28.5,-11.5
@@ -131406,7 +131392,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19914
+ - uid: 19916
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-19.5
@@ -131414,7 +131400,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19915
+ - uid: 19917
components:
- rot: 3.141592653589793 rad
pos: -23.5,-22.5
@@ -131422,7 +131408,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19916
+ - uid: 19918
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-61.5
@@ -131430,20 +131416,20 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19917
+ - uid: 19919
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-60.5
parent: 2
type: Transform
- - uid: 19918
+ - uid: 19920
components:
- pos: 40.5,-55.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19919
+ - uid: 19921
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-65.5
@@ -131451,7 +131437,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19920
+ - uid: 19922
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-43.5
@@ -131459,7 +131445,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19921
+ - uid: 19923
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-31.5
@@ -131467,7 +131453,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19922
+ - uid: 19924
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-46.5
@@ -131475,7 +131461,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19923
+ - uid: 19925
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-85.5
@@ -131483,7 +131469,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19924
+ - uid: 19926
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-73.5
@@ -131491,7 +131477,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19925
+ - uid: 19927
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-71.5
@@ -131499,14 +131485,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19926
+ - uid: 19928
components:
- pos: 3.5,-57.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19927
+ - uid: 19929
components:
- rot: 3.141592653589793 rad
pos: -29.5,-17.5
@@ -131514,7 +131500,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19928
+ - uid: 19930
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-25.5
@@ -131522,7 +131508,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19929
+ - uid: 19931
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-17.5
@@ -131530,14 +131516,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19930
+ - uid: 19932
components:
- pos: -35.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19931
+ - uid: 19933
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-15.5
@@ -131545,14 +131531,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19932
+ - uid: 19934
components:
- pos: -44.5,-9.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19933
+ - uid: 19935
components:
- rot: 3.141592653589793 rad
pos: -47.5,-22.5
@@ -131560,7 +131546,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19934
+ - uid: 19936
components:
- rot: 3.141592653589793 rad
pos: -50.5,-22.5
@@ -131568,7 +131554,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19935
+ - uid: 19937
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-16.5
@@ -131576,14 +131562,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19936
+ - uid: 19938
components:
- pos: -47.5,-5.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19937
+ - uid: 19939
components:
- rot: 3.141592653589793 rad
pos: -56.5,-24.5
@@ -131591,7 +131577,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19938
+ - uid: 19940
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-27.5
@@ -131599,7 +131585,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19939
+ - uid: 19941
components:
- rot: 3.141592653589793 rad
pos: -68.5,-31.5
@@ -131607,7 +131593,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19940
+ - uid: 19942
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-37.5
@@ -131615,7 +131601,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19941
+ - uid: 19943
components:
- rot: 3.141592653589793 rad
pos: -33.5,-34.5
@@ -131623,7 +131609,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19942
+ - uid: 19944
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-33.5
@@ -131631,7 +131617,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19943
+ - uid: 19945
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-33.5
@@ -131639,7 +131625,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19944
+ - uid: 19946
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-34.5
@@ -131650,7 +131636,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19945
+ - uid: 19947
components:
- rot: 3.141592653589793 rad
pos: -24.5,-58.5
@@ -131658,7 +131644,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19946
+ - uid: 19948
components:
- rot: 3.141592653589793 rad
pos: -27.5,-70.5
@@ -131666,7 +131652,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19947
+ - uid: 19949
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-57.5
@@ -131674,7 +131660,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19948
+ - uid: 19950
components:
- rot: 3.141592653589793 rad
pos: -42.5,-72.5
@@ -131682,7 +131668,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19949
+ - uid: 19951
components:
- rot: -1.5707963267948966 rad
pos: -19.5,16.5
@@ -131690,7 +131676,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19950
+ - uid: 19952
components:
- rot: 3.141592653589793 rad
pos: -23.5,19.5
@@ -131698,14 +131684,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19951
+ - uid: 19953
components:
- pos: -28.5,21.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19952
+ - uid: 19954
components:
- rot: 3.141592653589793 rad
pos: -33.5,19.5
@@ -131713,7 +131699,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19953
+ - uid: 19955
components:
- rot: 1.5707963267948966 rad
pos: -42.5,20.5
@@ -131721,14 +131707,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19954
+ - uid: 19956
components:
- pos: -33.5,28.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19955
+ - uid: 19957
components:
- rot: -1.5707963267948966 rad
pos: -37.5,29.5
@@ -131736,7 +131722,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19956
+ - uid: 19958
components:
- rot: 1.5707963267948966 rad
pos: -25.5,13.5
@@ -131744,7 +131730,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19957
+ - uid: 19959
components:
- rot: 3.141592653589793 rad
pos: -29.5,-3.5
@@ -131752,7 +131738,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19958
+ - uid: 19960
components:
- rot: 3.141592653589793 rad
pos: -39.5,-0.5
@@ -131760,7 +131746,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19959
+ - uid: 19961
components:
- rot: -1.5707963267948966 rad
pos: -37.5,3.5
@@ -131768,7 +131754,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19960
+ - uid: 19962
components:
- rot: 1.5707963267948966 rad
pos: -39.5,8.5
@@ -131776,14 +131762,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19961
+ - uid: 19963
components:
- pos: -30.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19962
+ - uid: 19964
components:
- rot: 3.141592653589793 rad
pos: -30.5,9.5
@@ -131791,7 +131777,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19963
+ - uid: 19965
components:
- rot: 3.141592653589793 rad
pos: -52.5,7.5
@@ -131799,21 +131785,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19964
+ - uid: 19966
components:
- pos: -51.5,11.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19965
+ - uid: 19967
components:
- pos: -52.5,14.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19966
+ - uid: 19968
components:
- rot: -1.5707963267948966 rad
pos: -42.5,10.5
@@ -131821,7 +131807,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19967
+ - uid: 19969
components:
- rot: 1.5707963267948966 rad
pos: -48.5,3.5
@@ -131829,7 +131815,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19968
+ - uid: 19970
components:
- rot: 3.141592653589793 rad
pos: -47.5,-0.5
@@ -131837,14 +131823,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19969
+ - uid: 19971
components:
- pos: -46.5,15.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19970
+ - uid: 19972
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-54.5
@@ -131852,7 +131838,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19971
+ - uid: 19973
components:
- rot: 3.141592653589793 rad
pos: -54.5,-77.5
@@ -131860,7 +131846,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19972
+ - uid: 19974
components:
- rot: 3.141592653589793 rad
pos: -7.5,-26.5
@@ -131868,14 +131854,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19973
+ - uid: 19975
components:
- pos: 17.5,-42.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19974
+ - uid: 19976
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-2.5
@@ -131883,7 +131869,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19975
+ - uid: 19977
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-42.5
@@ -131891,7 +131877,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19976
+ - uid: 19978
components:
- rot: 1.5707963267948966 rad
pos: 39.5,45.5
@@ -131899,7 +131885,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19977
+ - uid: 19979
components:
- rot: 1.5707963267948966 rad
pos: 51.5,43.5
@@ -131907,14 +131893,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19978
+ - uid: 19980
components:
- pos: 52.5,56.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19979
+ - uid: 19981
components:
- rot: -1.5707963267948966 rad
pos: -12.5,34.5
@@ -131922,7 +131908,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19980
+ - uid: 19982
components:
- rot: 1.5707963267948966 rad
pos: -24.5,30.5
@@ -131930,7 +131916,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19981
+ - uid: 19983
components:
- rot: -1.5707963267948966 rad
pos: -14.5,43.5
@@ -131938,7 +131924,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19982
+ - uid: 19984
components:
- rot: 1.5707963267948966 rad
pos: -20.5,43.5
@@ -131946,12 +131932,12 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19983
+ - uid: 19985
components:
- pos: 70.5,36.5
parent: 2
type: Transform
- - uid: 19984
+ - uid: 19986
components:
- rot: -1.5707963267948966 rad
pos: -11.5,39.5
@@ -131959,7 +131945,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19985
+ - uid: 19987
components:
- rot: -1.5707963267948966 rad
pos: 1.5,69.5
@@ -131967,7 +131953,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19986
+ - uid: 19988
components:
- rot: 1.5707963267948966 rad
pos: -4.5,69.5
@@ -131975,7 +131961,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19987
+ - uid: 19989
components:
- rot: -1.5707963267948966 rad
pos: -1.5,62.5
@@ -131983,14 +131969,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19988
+ - uid: 19990
components:
- pos: -1.5,68.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19989
+ - uid: 19991
components:
- rot: -1.5707963267948966 rad
pos: 0.5,48.5
@@ -131998,7 +131984,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19990
+ - uid: 19992
components:
- rot: 1.5707963267948966 rad
pos: -22.5,58.5
@@ -132006,28 +131992,28 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19991
+ - uid: 19993
components:
- pos: -17.5,63.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19992
+ - uid: 19994
components:
- pos: -21.5,73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19993
+ - uid: 19995
components:
- pos: -13.5,73.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19994
+ - uid: 19996
components:
- rot: -1.5707963267948966 rad
pos: -12.5,57.5
@@ -132038,7 +132024,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19995
+ - uid: 19997
components:
- rot: -1.5707963267948966 rad
pos: 0.5,56.5
@@ -132046,7 +132032,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19996
+ - uid: 19998
components:
- rot: -1.5707963267948966 rad
pos: 30.5,45.5
@@ -132054,7 +132040,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19997
+ - uid: 19999
components:
- rot: 1.5707963267948966 rad
pos: 24.5,45.5
@@ -132062,21 +132048,21 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19998
+ - uid: 20000
components:
- pos: -7.5,-92.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 19999
+ - uid: 20001
components:
- pos: -21.5,-97.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20000
+ - uid: 20002
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-98.5
@@ -132084,14 +132070,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20001
+ - uid: 20003
components:
- pos: -6.5,-84.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20002
+ - uid: 20004
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-96.5
@@ -132099,7 +132085,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20003
+ - uid: 20005
components:
- rot: 3.141592653589793 rad
pos: 65.5,-35.5
@@ -132107,14 +132093,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20004
+ - uid: 20006
components:
- pos: 67.5,-33.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20005
+ - uid: 20007
components:
- rot: 3.141592653589793 rad
pos: 73.5,-35.5
@@ -132122,7 +132108,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20006
+ - uid: 20008
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-41.5
@@ -132130,7 +132116,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20007
+ - uid: 20009
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-46.5
@@ -132138,14 +132124,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20008
+ - uid: 20010
components:
- pos: 66.5,-38.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20009
+ - uid: 20011
components:
- rot: 3.141592653589793 rad
pos: 5.5,-30.5
@@ -132153,7 +132139,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20010
+ - uid: 20012
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-34.5
@@ -132161,13 +132147,13 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20011
+ - uid: 20013
components:
- rot: 3.141592653589793 rad
pos: -54.5,-63.5
parent: 2
type: Transform
- - uid: 20012
+ - uid: 20014
components:
- rot: -1.5707963267948966 rad
pos: -15.5,25.5
@@ -132175,7 +132161,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20013
+ - uid: 20015
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-12.5
@@ -132183,7 +132169,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20014
+ - uid: 20016
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-22.5
@@ -132191,14 +132177,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20015
+ - uid: 20017
components:
- pos: -10.5,-18.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20016
+ - uid: 20018
components:
- rot: 3.141592653589793 rad
pos: -30.5,-70.5
@@ -132206,7 +132192,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20017
+ - uid: 20019
components:
- rot: 3.141592653589793 rad
pos: -28.5,-74.5
@@ -132214,7 +132200,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20018
+ - uid: 20020
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-39.5
@@ -132222,7 +132208,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20019
+ - uid: 20021
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-83.5
@@ -132230,14 +132216,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20020
+ - uid: 20022
components:
- pos: 24.5,-72.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20021
+ - uid: 20023
components:
- rot: 3.141592653589793 rad
pos: 48.5,-85.5
@@ -132245,7 +132231,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20022
+ - uid: 20024
components:
- rot: 1.5707963267948966 rad
pos: -16.5,66.5
@@ -132253,7 +132239,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20023
+ - uid: 20025
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-22.5
@@ -132261,14 +132247,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20024
+ - uid: 20026
components:
- pos: 45.5,7.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20025
+ - uid: 20027
components:
- rot: 3.141592653589793 rad
pos: -44.5,30.5
@@ -132276,14 +132262,14 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20026
+ - uid: 20028
components:
- pos: -46.5,43.5
parent: 2
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20027
+ - uid: 20029
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-31.5
@@ -132291,7 +132277,7 @@ entities:
type: Transform
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20028
+ - uid: 20030
components:
- rot: 1.5707963267948966 rad
pos: -4.5,16.5
@@ -132302,7 +132288,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20029
+ - uid: 20031
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-41.5
@@ -132311,7 +132297,7 @@ entities:
- ShutdownSubscribers:
- 97
type: DeviceNetwork
- - uid: 20030
+ - uid: 20032
components:
- rot: 3.141592653589793 rad
pos: -1.5,-3.5
@@ -132322,7 +132308,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20031
+ - uid: 20033
components:
- pos: -1.5,-22.5
parent: 2
@@ -132332,7 +132318,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20032
+ - uid: 20034
components:
- rot: 3.141592653589793 rad
pos: 28.5,-38.5
@@ -132343,7 +132329,7 @@ entities:
type: DeviceNetwork
- color: '#990000FF'
type: AtmosPipeColor
- - uid: 20033
+ - uid: 20035
components:
- pos: 40.5,61.5
parent: 2
@@ -132352,13 +132338,19 @@ entities:
type: AtmosPipeColor
- proto: GasVolumePump
entities:
- - uid: 20034
+ - uid: 20036
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 20037
components:
- rot: 3.141592653589793 rad
pos: 10.5,-46.5
parent: 2
type: Transform
- - uid: 20035
+ - uid: 20038
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-57.5
@@ -132368,5674 +132360,5703 @@ entities:
type: AtmosPipeColor
- proto: Gauze1
entities:
- - uid: 20036
+ - uid: 20039
components:
- pos: -6.3074856,-49.39305
parent: 2
type: Transform
- proto: GeneratorBasic15kW
entities:
- - uid: 20037
+ - uid: 20040
components:
- pos: -58.5,-87.5
parent: 2
type: Transform
- proto: Girder
entities:
- - uid: 20038
+ - uid: 20041
components:
- pos: -36.5,-68.5
parent: 2
type: Transform
- - uid: 20039
+ - uid: 20042
components:
- pos: 20.5,-54.5
parent: 2
type: Transform
- - uid: 20040
+ - uid: 20043
components:
- pos: -22.5,-64.5
parent: 2
type: Transform
- - uid: 20041
+ - uid: 20044
components:
- pos: -23.5,-42.5
parent: 2
type: Transform
- - uid: 20042
+ - uid: 20045
components:
- pos: -28.5,-39.5
parent: 2
type: Transform
- - uid: 20043
+ - uid: 20046
components:
- pos: -16.5,13.5
parent: 2
type: Transform
- proto: GoldOre1
entities:
- - uid: 20044
+ - uid: 20047
components:
- rot: 3.141592653589793 rad
pos: 19.789879,45.273663
parent: 2
type: Transform
- - uid: 20045
+ - uid: 20048
components:
- pos: 79.30878,-64.25522
parent: 2
type: Transform
- proto: GrassBattlemap
entities:
- - uid: 20046
+ - uid: 20049
components:
- pos: 10.688803,-6.590752
parent: 2
type: Transform
- proto: GravityGenerator
entities:
- - uid: 20047
+ - uid: 20050
components:
- pos: -19.5,2.5
parent: 2
type: Transform
- proto: GrenadeFlashBang
entities:
- - uid: 20048
+ - uid: 20051
components:
- pos: 52.279568,11.553763
parent: 2
type: Transform
- proto: Grille
entities:
- - uid: 20049
+ - uid: 20052
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-46.5
parent: 2
type: Transform
- - uid: 20050
+ - uid: 20053
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-45.5
parent: 2
type: Transform
- - uid: 20051
+ - uid: 20054
components:
- rot: 3.141592653589793 rad
pos: -26.5,-91.5
parent: 2
type: Transform
- - uid: 20052
+ - uid: 20055
components:
- rot: 3.141592653589793 rad
pos: -18.5,-90.5
parent: 2
type: Transform
- - uid: 20053
+ - uid: 20056
components:
- rot: 3.141592653589793 rad
pos: -24.5,-91.5
parent: 2
type: Transform
- - uid: 20054
+ - uid: 20057
components:
- rot: 3.141592653589793 rad
pos: -19.5,-91.5
parent: 2
type: Transform
- - uid: 20055
+ - uid: 20058
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-12.5
parent: 2
type: Transform
- - uid: 20056
+ - uid: 20059
components:
- pos: -51.5,-21.5
parent: 2
type: Transform
- - uid: 20057
+ - uid: 20060
components:
- pos: 9.5,29.5
parent: 2
type: Transform
- - uid: 20058
+ - uid: 20061
components:
- pos: -62.5,-35.5
parent: 2
type: Transform
- - uid: 20059
+ - uid: 20062
components:
- pos: -44.5,-37.5
parent: 2
type: Transform
- - uid: 20060
+ - uid: 20063
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-43.5
parent: 2
type: Transform
- - uid: 20061
+ - uid: 20064
components:
- rot: 3.141592653589793 rad
pos: -71.5,-27.5
parent: 2
type: Transform
- - uid: 20062
+ - uid: 20065
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-42.5
parent: 2
type: Transform
- - uid: 20063
+ - uid: 20066
components:
- pos: -76.5,-32.5
parent: 2
type: Transform
- - uid: 20064
+ - uid: 20067
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-42.5
parent: 2
type: Transform
- - uid: 20065
+ - uid: 20068
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-41.5
parent: 2
type: Transform
- - uid: 20066
+ - uid: 20069
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-40.5
parent: 2
type: Transform
- - uid: 20067
+ - uid: 20070
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-39.5
parent: 2
type: Transform
- - uid: 20068
+ - uid: 20071
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-35.5
parent: 2
type: Transform
- - uid: 20069
+ - uid: 20072
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-34.5
parent: 2
type: Transform
- - uid: 20070
+ - uid: 20073
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-43.5
parent: 2
type: Transform
- - uid: 20071
+ - uid: 20074
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-39.5
parent: 2
type: Transform
- - uid: 20072
+ - uid: 20075
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-39.5
parent: 2
type: Transform
- - uid: 20073
+ - uid: 20076
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-43.5
parent: 2
type: Transform
- - uid: 20074
+ - uid: 20077
components:
- pos: -5.5,20.5
parent: 2
type: Transform
- - uid: 20075
+ - uid: 20078
components:
- rot: 1.5707963267948966 rad
pos: -7.5,13.5
parent: 2
type: Transform
- - uid: 20076
+ - uid: 20079
components:
- pos: -4.5,20.5
parent: 2
type: Transform
- - uid: 20077
+ - uid: 20080
components:
- rot: 3.141592653589793 rad
pos: 5.5,18.5
parent: 2
type: Transform
- - uid: 20078
+ - uid: 20081
components:
- rot: -1.5707963267948966 rad
pos: -46.5,45.5
parent: 2
type: Transform
- - uid: 20079
+ - uid: 20082
components:
- rot: -1.5707963267948966 rad
pos: -45.5,45.5
parent: 2
type: Transform
- - uid: 20080
+ - uid: 20083
components:
- rot: -1.5707963267948966 rad
pos: -47.5,45.5
parent: 2
type: Transform
- - uid: 20081
+ - uid: 20084
components:
- pos: 32.5,-9.5
parent: 2
type: Transform
- - uid: 20082
+ - uid: 20085
components:
- rot: 3.141592653589793 rad
pos: 28.5,-63.5
parent: 2
type: Transform
- - uid: 20083
+ - uid: 20086
components:
- pos: 19.5,-0.5
parent: 2
type: Transform
- - uid: 20084
+ - uid: 20087
components:
- pos: -18.5,-88.5
parent: 2
type: Transform
- - uid: 20085
+ - uid: 20088
components:
- pos: -18.5,-58.5
parent: 2
type: Transform
- - uid: 20086
+ - uid: 20089
components:
- pos: 31.5,-15.5
parent: 2
type: Transform
- - uid: 20087
+ - uid: 20090
components:
- pos: -9.5,-55.5
parent: 2
type: Transform
- - uid: 20088
+ - uid: 20091
components:
- pos: -12.5,-55.5
parent: 2
type: Transform
- - uid: 20089
+ - uid: 20092
components:
- pos: -4.5,-56.5
parent: 2
type: Transform
- - uid: 20090
+ - uid: 20093
components:
- pos: 22.5,-20.5
parent: 2
type: Transform
- - uid: 20091
+ - uid: 20094
components:
- pos: 21.5,5.5
parent: 2
type: Transform
- - uid: 20092
+ - uid: 20095
components:
- pos: 23.5,5.5
parent: 2
type: Transform
- - uid: 20093
+ - uid: 20096
components:
- pos: 25.5,5.5
parent: 2
type: Transform
- - uid: 20094
+ - uid: 20097
components:
- pos: 3.5,-39.5
parent: 2
type: Transform
- - uid: 20095
+ - uid: 20098
components:
- pos: -7.5,-56.5
parent: 2
type: Transform
- - uid: 20096
+ - uid: 20099
components:
- pos: 1.5,-47.5
parent: 2
type: Transform
- - uid: 20097
+ - uid: 20100
components:
- pos: 29.5,26.5
parent: 2
type: Transform
- - uid: 20098
+ - uid: 20101
components:
- pos: -13.5,-56.5
parent: 2
type: Transform
- - uid: 20099
+ - uid: 20102
components:
- pos: -7.5,-57.5
parent: 2
type: Transform
- - uid: 20100
+ - uid: 20103
components:
- pos: 7.5,-59.5
parent: 2
type: Transform
- - uid: 20101
+ - uid: 20104
components:
- pos: -18.5,-68.5
parent: 2
type: Transform
- - uid: 20102
+ - uid: 20105
components:
- pos: -20.5,-68.5
parent: 2
type: Transform
- - uid: 20103
+ - uid: 20106
components:
- pos: -3.5,-44.5
parent: 2
type: Transform
- - uid: 20104
+ - uid: 20107
components:
- pos: 12.5,-34.5
parent: 2
type: Transform
- - uid: 20105
+ - uid: 20108
components:
- pos: -1.5,49.5
parent: 2
type: Transform
- - uid: 20106
+ - uid: 20109
components:
- rot: 3.141592653589793 rad
pos: 3.5,-44.5
parent: 2
type: Transform
- - uid: 20107
+ - uid: 20110
components:
- pos: 7.5,18.5
parent: 2
type: Transform
- - uid: 20108
+ - uid: 20111
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-46.5
parent: 2
type: Transform
- - uid: 20109
+ - uid: 20112
components:
- pos: 2.5,-62.5
parent: 2
type: Transform
- - uid: 20110
+ - uid: 20113
components:
- pos: 3.5,-78.5
parent: 2
type: Transform
- - uid: 20111
+ - uid: 20114
components:
- pos: -6.5,-55.5
parent: 2
type: Transform
- - uid: 20112
+ - uid: 20115
components:
- pos: -12.5,-58.5
parent: 2
type: Transform
- - uid: 20113
+ - uid: 20116
components:
- rot: 1.5707963267948966 rad
pos: -17.5,26.5
parent: 2
type: Transform
- - uid: 20114
+ - uid: 20117
components:
- pos: -1.5,-35.5
parent: 2
type: Transform
- - uid: 20115
+ - uid: 20118
components:
- pos: -28.5,-47.5
parent: 2
type: Transform
- - uid: 20116
+ - uid: 20119
components:
- pos: 24.5,-60.5
parent: 2
type: Transform
- - uid: 20117
+ - uid: 20120
components:
- rot: 3.141592653589793 rad
pos: 22.5,30.5
parent: 2
type: Transform
- - uid: 20118
+ - uid: 20121
components:
- pos: 21.5,-3.5
parent: 2
type: Transform
- - uid: 20119
+ - uid: 20122
components:
- pos: 23.5,-3.5
parent: 2
type: Transform
- - uid: 20120
+ - uid: 20123
components:
- pos: -6.5,-58.5
parent: 2
type: Transform
- - uid: 20121
+ - uid: 20124
components:
- pos: 25.5,24.5
parent: 2
type: Transform
- - uid: 20122
+ - uid: 20125
components:
- pos: -10.5,-57.5
parent: 2
type: Transform
- - uid: 20123
+ - uid: 20126
components:
- pos: 29.5,9.5
parent: 2
type: Transform
- - uid: 20124
+ - uid: 20127
components:
- rot: 3.141592653589793 rad
pos: 22.5,32.5
parent: 2
type: Transform
- - uid: 20125
+ - uid: 20128
components:
- pos: 15.5,18.5
parent: 2
type: Transform
- - uid: 20126
+ - uid: 20129
components:
- pos: -13.5,-11.5
parent: 2
type: Transform
- - uid: 20127
+ - uid: 20130
components:
- rot: 3.141592653589793 rad
pos: 33.5,-63.5
parent: 2
type: Transform
- - uid: 20128
+ - uid: 20131
components:
- rot: 3.141592653589793 rad
pos: 22.5,-55.5
parent: 2
type: Transform
- - uid: 20129
+ - uid: 20132
components:
- pos: -9.5,-62.5
parent: 2
type: Transform
- - uid: 20130
+ - uid: 20133
components:
- pos: 4.5,-85.5
parent: 2
type: Transform
- - uid: 20131
+ - uid: 20134
components:
- pos: 18.5,-38.5
parent: 2
type: Transform
- - uid: 20132
+ - uid: 20135
components:
- pos: 17.5,-36.5
parent: 2
type: Transform
- - uid: 20133
+ - uid: 20136
components:
- pos: 17.5,-34.5
parent: 2
type: Transform
- - uid: 20134
+ - uid: 20137
components:
- pos: -27.5,-89.5
parent: 2
type: Transform
- - uid: 20135
+ - uid: 20138
components:
- pos: -1.5,-33.5
parent: 2
type: Transform
- - uid: 20136
+ - uid: 20139
components:
- pos: 4.5,-84.5
parent: 2
type: Transform
- - uid: 20137
+ - uid: 20140
components:
- pos: -14.5,-77.5
parent: 2
type: Transform
- - uid: 20138
+ - uid: 20141
components:
- pos: 4.5,-88.5
parent: 2
type: Transform
- - uid: 20139
+ - uid: 20142
components:
- pos: 4.5,-81.5
parent: 2
type: Transform
- - uid: 20140
+ - uid: 20143
components:
- pos: -18.5,-89.5
parent: 2
type: Transform
- - uid: 20141
+ - uid: 20144
components:
- pos: 4.5,-87.5
parent: 2
type: Transform
- - uid: 20142
+ - uid: 20145
components:
- pos: 19.5,0.5
parent: 2
type: Transform
- - uid: 20143
+ - uid: 20146
components:
- pos: 19.5,-38.5
parent: 2
type: Transform
- - uid: 20144
+ - uid: 20147
components:
- pos: 23.5,-12.5
parent: 2
type: Transform
- - uid: 20145
+ - uid: 20148
components:
- pos: 21.5,-15.5
parent: 2
type: Transform
- - uid: 20146
+ - uid: 20149
components:
- pos: 19.5,1.5
parent: 2
type: Transform
- - uid: 20147
+ - uid: 20150
components:
- pos: 28.5,-20.5
parent: 2
type: Transform
- - uid: 20148
+ - uid: 20151
components:
- rot: 3.141592653589793 rad
pos: 20.5,-55.5
parent: 2
type: Transform
- - uid: 20149
+ - uid: 20152
components:
- rot: 3.141592653589793 rad
pos: 21.5,-55.5
parent: 2
type: Transform
- - uid: 20150
+ - uid: 20153
components:
- pos: 18.5,-66.5
parent: 2
type: Transform
- - uid: 20151
+ - uid: 20154
components:
- pos: 18.5,-65.5
parent: 2
type: Transform
- - uid: 20152
+ - uid: 20155
components:
- rot: 3.141592653589793 rad
pos: 28.5,-62.5
parent: 2
type: Transform
- - uid: 20153
+ - uid: 20156
components:
- pos: 42.5,-23.5
parent: 2
type: Transform
- - uid: 20154
+ - uid: 20157
components:
- pos: 41.5,-23.5
parent: 2
type: Transform
- - uid: 20155
+ - uid: 20158
components:
- rot: 3.141592653589793 rad
pos: 31.5,-64.5
parent: 2
type: Transform
- - uid: 20156
+ - uid: 20159
components:
- pos: -21.5,11.5
parent: 2
type: Transform
- - uid: 20157
+ - uid: 20160
components:
- pos: -10.5,-11.5
parent: 2
type: Transform
- - uid: 20158
+ - uid: 20161
components:
- pos: -12.5,-16.5
parent: 2
type: Transform
- - uid: 20159
+ - uid: 20162
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-9.5
parent: 2
type: Transform
- - uid: 20160
+ - uid: 20163
components:
- pos: 12.5,-33.5
parent: 2
type: Transform
- - uid: 20161
+ - uid: 20164
components:
- pos: 12.5,-32.5
parent: 2
type: Transform
- - uid: 20162
+ - uid: 20165
components:
- rot: 3.141592653589793 rad
pos: 26.5,-20.5
parent: 2
type: Transform
- - uid: 20163
+ - uid: 20166
components:
- pos: 3.5,-36.5
parent: 2
type: Transform
- - uid: 20164
+ - uid: 20167
components:
- pos: 2.5,-39.5
parent: 2
type: Transform
- - uid: 20165
+ - uid: 20168
components:
- rot: 3.141592653589793 rad
pos: 22.5,29.5
parent: 2
type: Transform
- - uid: 20166
+ - uid: 20169
components:
- rot: 3.141592653589793 rad
pos: 22.5,31.5
parent: 2
type: Transform
- - uid: 20167
+ - uid: 20170
components:
- rot: 3.141592653589793 rad
pos: 22.5,33.5
parent: 2
type: Transform
- - uid: 20168
+ - uid: 20171
components:
- rot: 3.141592653589793 rad
pos: 22.5,37.5
parent: 2
type: Transform
- - uid: 20169
+ - uid: 20172
components:
- pos: 5.5,-58.5
parent: 2
type: Transform
- - uid: 20170
+ - uid: 20173
components:
- rot: -1.5707963267948966 rad
pos: 43.5,5.5
parent: 2
type: Transform
- - uid: 20171
+ - uid: 20174
components:
- pos: 4.5,-86.5
parent: 2
type: Transform
- - uid: 20172
+ - uid: 20175
components:
- pos: 4.5,-83.5
parent: 2
type: Transform
- - uid: 20173
+ - uid: 20176
components:
- pos: 18.5,33.5
parent: 2
type: Transform
- - uid: 20174
+ - uid: 20177
components:
- pos: -1.5,-31.5
parent: 2
type: Transform
- - uid: 20175
+ - uid: 20178
components:
- pos: 15.5,-68.5
parent: 2
type: Transform
- - uid: 20176
+ - uid: 20179
components:
- pos: 42.5,-28.5
parent: 2
type: Transform
- - uid: 20177
+ - uid: 20180
components:
- pos: 41.5,-28.5
parent: 2
type: Transform
- - uid: 20178
+ - uid: 20181
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-77.5
parent: 2
type: Transform
- - uid: 20179
+ - uid: 20182
components:
- pos: -1.5,-32.5
parent: 2
type: Transform
- - uid: 20180
+ - uid: 20183
components:
- rot: 3.141592653589793 rad
pos: 6.5,-20.5
parent: 2
type: Transform
- - uid: 20181
+ - uid: 20184
components:
- pos: 0.5,-62.5
parent: 2
type: Transform
- - uid: 20182
+ - uid: 20185
components:
- pos: 7.5,-61.5
parent: 2
type: Transform
- - uid: 20183
+ - uid: 20186
components:
- pos: 26.5,-3.5
parent: 2
type: Transform
- - uid: 20184
+ - uid: 20187
components:
- pos: -13.5,37.5
parent: 2
type: Transform
- - uid: 20185
+ - uid: 20188
components:
- pos: -15.5,-77.5
parent: 2
type: Transform
- - uid: 20186
+ - uid: 20189
components:
- pos: 3.5,-79.5
parent: 2
type: Transform
- - uid: 20187
+ - uid: 20190
components:
- pos: 19.5,2.5
parent: 2
type: Transform
- - uid: 20188
+ - uid: 20191
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-20.5
parent: 2
type: Transform
- - uid: 20189
+ - uid: 20192
components:
- pos: 34.5,9.5
parent: 2
type: Transform
- - uid: 20190
+ - uid: 20193
components:
- pos: 35.5,4.5
parent: 2
type: Transform
- - uid: 20191
+ - uid: 20194
components:
- pos: 1.5,-56.5
parent: 2
type: Transform
- - uid: 20192
+ - uid: 20195
components:
- pos: 1.5,-57.5
parent: 2
type: Transform
- - uid: 20193
+ - uid: 20196
components:
- pos: -10.5,-56.5
parent: 2
type: Transform
- - uid: 20194
+ - uid: 20197
components:
- pos: -13.5,-57.5
parent: 2
type: Transform
- - uid: 20195
+ - uid: 20198
components:
- pos: -4.5,-44.5
parent: 2
type: Transform
- - uid: 20196
+ - uid: 20199
components:
- pos: -5.5,-44.5
parent: 2
type: Transform
- - uid: 20197
+ - uid: 20200
components:
- pos: 5.5,-44.5
parent: 2
type: Transform
- - uid: 20198
+ - uid: 20201
components:
- pos: 4.5,-44.5
parent: 2
type: Transform
- - uid: 20199
+ - uid: 20202
components:
- pos: 18.5,32.5
parent: 2
type: Transform
- - uid: 20200
+ - uid: 20203
components:
- pos: -0.5,-62.5
parent: 2
type: Transform
- - uid: 20201
+ - uid: 20204
components:
- pos: -8.5,-62.5
parent: 2
type: Transform
- - uid: 20202
+ - uid: 20205
components:
- pos: 3.5,-77.5
parent: 2
type: Transform
- - uid: 20203
+ - uid: 20206
components:
- rot: 3.141592653589793 rad
pos: 33.5,-62.5
parent: 2
type: Transform
- - uid: 20204
+ - uid: 20207
components:
- rot: 3.141592653589793 rad
pos: 30.5,-64.5
parent: 2
type: Transform
- - uid: 20205
+ - uid: 20208
components:
- pos: 9.5,14.5
parent: 2
type: Transform
- - uid: 20206
+ - uid: 20209
components:
- rot: 3.141592653589793 rad
pos: 22.5,28.5
parent: 2
type: Transform
- - uid: 20207
+ - uid: 20210
components:
- pos: 68.5,-56.5
parent: 2
type: Transform
- - uid: 20208
+ - uid: 20211
components:
- pos: -1.5,-57.5
parent: 2
type: Transform
- - uid: 20209
+ - uid: 20212
components:
- pos: -1.5,-56.5
parent: 2
type: Transform
- - uid: 20210
+ - uid: 20213
components:
- pos: 2.5,-58.5
parent: 2
type: Transform
- - uid: 20211
+ - uid: 20214
components:
- pos: -3.5,-58.5
parent: 2
type: Transform
- - uid: 20212
+ - uid: 20215
components:
- pos: 4.5,-62.5
parent: 2
type: Transform
- - uid: 20213
+ - uid: 20216
components:
- pos: -0.5,-58.5
parent: 2
type: Transform
- - uid: 20214
+ - uid: 20217
components:
- pos: 31.5,-38.5
parent: 2
type: Transform
- - uid: 20215
+ - uid: 20218
components:
- pos: 33.5,-36.5
parent: 2
type: Transform
- - uid: 20216
+ - uid: 20219
components:
- pos: 33.5,-34.5
parent: 2
type: Transform
- - uid: 20217
+ - uid: 20220
components:
- pos: 26.5,5.5
parent: 2
type: Transform
- - uid: 20218
+ - uid: 20221
components:
- pos: 9.5,13.5
parent: 2
type: Transform
- - uid: 20219
+ - uid: 20222
components:
- pos: 17.5,18.5
parent: 2
type: Transform
- - uid: 20220
+ - uid: 20223
components:
- rot: 3.141592653589793 rad
pos: -7.5,-76.5
parent: 2
type: Transform
- - uid: 20221
+ - uid: 20224
components:
- pos: 24.5,-59.5
parent: 2
type: Transform
- - uid: 20222
+ - uid: 20225
components:
- pos: -29.5,45.5
parent: 2
type: Transform
- - uid: 20223
+ - uid: 20226
components:
- pos: 24.5,-58.5
parent: 2
type: Transform
- - uid: 20224
+ - uid: 20227
components:
- pos: -6.5,-36.5
parent: 2
type: Transform
- - uid: 20225
+ - uid: 20228
components:
- pos: 19.5,-1.5
parent: 2
type: Transform
- - uid: 20226
+ - uid: 20229
components:
- pos: -1.5,-34.5
parent: 2
type: Transform
- - uid: 20227
+ - uid: 20230
components:
- pos: -27.5,-88.5
parent: 2
type: Transform
- - uid: 20228
+ - uid: 20231
components:
- pos: 17.5,-35.5
parent: 2
type: Transform
- - uid: 20229
+ - uid: 20232
components:
- pos: 33.5,-35.5
parent: 2
type: Transform
- - uid: 20230
+ - uid: 20233
components:
- pos: 22.5,5.5
parent: 2
type: Transform
- - uid: 20231
+ - uid: 20234
components:
- pos: 27.5,5.5
parent: 2
type: Transform
- - uid: 20232
+ - uid: 20235
components:
- pos: 35.5,7.5
parent: 2
type: Transform
- - uid: 20233
+ - uid: 20236
components:
- pos: 32.5,9.5
parent: 2
type: Transform
- - uid: 20234
+ - uid: 20237
components:
- rot: 3.141592653589793 rad
pos: 22.5,34.5
parent: 2
type: Transform
- - uid: 20235
+ - uid: 20238
components:
- pos: -3.5,-55.5
parent: 2
type: Transform
- - uid: 20236
+ - uid: 20239
components:
- pos: -0.5,-55.5
parent: 2
type: Transform
- - uid: 20237
+ - uid: 20240
components:
- pos: 2.5,-55.5
parent: 2
type: Transform
- - uid: 20238
+ - uid: 20241
components:
- pos: -20.5,-58.5
parent: 2
type: Transform
- - uid: 20239
+ - uid: 20242
components:
- pos: -9.5,-58.5
parent: 2
type: Transform
- - uid: 20240
+ - uid: 20243
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-79.5
parent: 2
type: Transform
- - uid: 20241
+ - uid: 20244
components:
- rot: 3.141592653589793 rad
pos: 37.5,-35.5
parent: 2
type: Transform
- - uid: 20242
+ - uid: 20245
components:
- pos: 33.5,-15.5
parent: 2
type: Transform
- - uid: 20243
+ - uid: 20246
components:
- pos: -13.5,39.5
parent: 2
type: Transform
- - uid: 20244
+ - uid: 20247
components:
- pos: -4.5,-57.5
parent: 2
type: Transform
- - uid: 20245
+ - uid: 20248
components:
- pos: 19.5,3.5
parent: 2
type: Transform
- - uid: 20246
+ - uid: 20249
components:
- pos: 4.5,-82.5
parent: 2
type: Transform
- - uid: 20247
+ - uid: 20250
components:
- pos: 32.5,-38.5
parent: 2
type: Transform
- - uid: 20248
+ - uid: 20251
components:
- rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 2
type: Transform
- - uid: 20249
+ - uid: 20252
components:
- pos: 23.5,-20.5
parent: 2
type: Transform
- - uid: 20250
+ - uid: 20253
components:
- pos: 25.5,-20.5
parent: 2
type: Transform
- - uid: 20251
+ - uid: 20254
components:
- pos: 27.5,-20.5
parent: 2
type: Transform
- - uid: 20252
+ - uid: 20255
components:
- pos: 19.5,-15.5
parent: 2
type: Transform
- - uid: 20253
+ - uid: 20256
components:
- pos: 23.5,-11.5
parent: 2
type: Transform
- - uid: 20254
+ - uid: 20257
components:
- pos: 25.5,-3.5
parent: 2
type: Transform
- - uid: 20255
+ - uid: 20258
components:
- pos: 27.5,-3.5
parent: 2
type: Transform
- - uid: 20256
+ - uid: 20259
components:
- pos: 22.5,-3.5
parent: 2
type: Transform
- - uid: 20257
+ - uid: 20260
components:
- rot: 3.141592653589793 rad
pos: -9.5,-76.5
parent: 2
type: Transform
- - uid: 20258
+ - uid: 20261
components:
- rot: 3.141592653589793 rad
pos: 24.5,-20.5
parent: 2
type: Transform
- - uid: 20259
+ - uid: 20262
components:
- pos: 16.5,-68.5
parent: 2
type: Transform
- - uid: 20260
+ - uid: 20263
components:
- rot: 3.141592653589793 rad
pos: 31.5,13.5
parent: 2
type: Transform
- - uid: 20261
+ - uid: 20264
components:
- rot: 3.141592653589793 rad
pos: 34.5,13.5
parent: 2
type: Transform
- - uid: 20262
+ - uid: 20265
components:
- pos: -6.5,-37.5
parent: 2
type: Transform
- - uid: 20263
+ - uid: 20266
components:
- pos: -6.5,-38.5
parent: 2
type: Transform
- - uid: 20264
+ - uid: 20267
components:
- pos: -9.5,-40.5
parent: 2
type: Transform
- - uid: 20265
+ - uid: 20268
components:
- pos: -10.5,-40.5
parent: 2
type: Transform
- - uid: 20266
+ - uid: 20269
components:
- pos: -11.5,-40.5
parent: 2
type: Transform
- - uid: 20267
+ - uid: 20270
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-4.5
parent: 2
type: Transform
- - uid: 20268
+ - uid: 20271
components:
- pos: -12.5,-11.5
parent: 2
type: Transform
- - uid: 20269
+ - uid: 20272
components:
- pos: -9.5,-11.5
parent: 2
type: Transform
- - uid: 20270
+ - uid: 20273
components:
- pos: -8.5,-11.5
parent: 2
type: Transform
- - uid: 20271
+ - uid: 20274
components:
- pos: -10.5,-16.5
parent: 2
type: Transform
- - uid: 20272
+ - uid: 20275
components:
- rot: 3.141592653589793 rad
pos: 28.5,13.5
parent: 2
type: Transform
- - uid: 20273
+ - uid: 20276
components:
- rot: 3.141592653589793 rad
pos: 39.5,8.5
parent: 2
type: Transform
- - uid: 20274
+ - uid: 20277
components:
- rot: 3.141592653589793 rad
pos: 39.5,5.5
parent: 2
type: Transform
- - uid: 20275
+ - uid: 20278
components:
- pos: -12.5,14.5
parent: 2
type: Transform
- - uid: 20276
+ - uid: 20279
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-44.5
parent: 2
type: Transform
- - uid: 20277
+ - uid: 20280
components:
- pos: 37.5,-36.5
parent: 2
type: Transform
- - uid: 20278
+ - uid: 20281
components:
- pos: 33.5,37.5
parent: 2
type: Transform
- - uid: 20279
+ - uid: 20282
components:
- pos: 32.5,37.5
parent: 2
type: Transform
- - uid: 20280
+ - uid: 20283
components:
- pos: 31.5,37.5
parent: 2
type: Transform
- - uid: 20281
+ - uid: 20284
components:
- pos: 30.5,37.5
parent: 2
type: Transform
- - uid: 20282
+ - uid: 20285
components:
- pos: 29.5,37.5
parent: 2
type: Transform
- - uid: 20283
+ - uid: 20286
components:
- pos: 28.5,37.5
parent: 2
type: Transform
- - uid: 20284
+ - uid: 20287
components:
- pos: 27.5,37.5
parent: 2
type: Transform
- - uid: 20285
+ - uid: 20288
components:
- pos: 26.5,37.5
parent: 2
type: Transform
- - uid: 20286
+ - uid: 20289
components:
- pos: 25.5,37.5
parent: 2
type: Transform
- - uid: 20287
+ - uid: 20290
components:
- rot: 3.141592653589793 rad
pos: 23.5,37.5
parent: 2
type: Transform
- - uid: 20288
+ - uid: 20291
components:
- pos: 43.5,11.5
parent: 2
type: Transform
- - uid: 20289
+ - uid: 20292
components:
- pos: 43.5,10.5
parent: 2
type: Transform
- - uid: 20290
+ - uid: 20293
components:
- pos: 53.5,14.5
parent: 2
type: Transform
- - uid: 20291
+ - uid: 20294
components:
- pos: 52.5,14.5
parent: 2
type: Transform
- - uid: 20292
+ - uid: 20295
components:
- pos: 54.5,14.5
parent: 2
type: Transform
- - uid: 20293
+ - uid: 20296
components:
- pos: 51.5,13.5
parent: 2
type: Transform
- - uid: 20294
+ - uid: 20297
components:
- pos: 51.5,11.5
parent: 2
type: Transform
- - uid: 20295
+ - uid: 20298
components:
- pos: 55.5,13.5
parent: 2
type: Transform
- - uid: 20296
+ - uid: 20299
components:
- pos: 55.5,12.5
parent: 2
type: Transform
- - uid: 20297
+ - uid: 20300
components:
- pos: 55.5,11.5
parent: 2
type: Transform
- - uid: 20298
+ - uid: 20301
components:
- pos: 52.5,10.5
parent: 2
type: Transform
- - uid: 20299
+ - uid: 20302
components:
- pos: 54.5,10.5
parent: 2
type: Transform
- - uid: 20300
+ - uid: 20303
components:
- pos: 27.5,22.5
parent: 2
type: Transform
- - uid: 20301
+ - uid: 20304
components:
- pos: -15.5,2.5
parent: 2
type: Transform
- - uid: 20302
+ - uid: 20305
components:
- pos: 48.5,-0.5
parent: 2
type: Transform
- - uid: 20303
+ - uid: 20306
components:
- pos: 43.5,-0.5
parent: 2
type: Transform
- - uid: 20304
+ - uid: 20307
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- - uid: 20305
+ - uid: 20308
components:
- pos: 41.5,-0.5
parent: 2
type: Transform
- - uid: 20306
+ - uid: 20309
components:
- pos: 39.5,-0.5
parent: 2
type: Transform
- - uid: 20307
+ - uid: 20310
components:
- pos: 37.5,-0.5
parent: 2
type: Transform
- - uid: 20308
+ - uid: 20311
components:
- pos: 35.5,-1.5
parent: 2
type: Transform
- - uid: 20309
+ - uid: 20312
components:
- pos: 35.5,-2.5
parent: 2
type: Transform
- - uid: 20310
+ - uid: 20313
components:
- pos: 35.5,-4.5
parent: 2
type: Transform
- - uid: 20311
+ - uid: 20314
components:
- pos: 35.5,-5.5
parent: 2
type: Transform
- - uid: 20312
+ - uid: 20315
components:
- rot: -1.5707963267948966 rad
pos: 36.5,24.5
parent: 2
type: Transform
- - uid: 20313
+ - uid: 20316
components:
- rot: -1.5707963267948966 rad
pos: 38.5,24.5
parent: 2
type: Transform
- - uid: 20314
+ - uid: 20317
components:
- rot: -1.5707963267948966 rad
pos: 40.5,24.5
parent: 2
type: Transform
- - uid: 20315
+ - uid: 20318
components:
- rot: -1.5707963267948966 rad
pos: 42.5,24.5
parent: 2
type: Transform
- - uid: 20316
+ - uid: 20319
components:
- rot: 3.141592653589793 rad
pos: 22.5,27.5
parent: 2
type: Transform
- - uid: 20317
+ - uid: 20320
components:
- pos: 43.5,7.5
parent: 2
type: Transform
- - uid: 20318
+ - uid: 20321
components:
- pos: 66.5,25.5
parent: 2
type: Transform
- - uid: 20319
+ - uid: 20322
components:
- pos: 66.5,23.5
parent: 2
type: Transform
- - uid: 20320
+ - uid: 20323
components:
- pos: 64.5,27.5
parent: 2
type: Transform
- - uid: 20321
+ - uid: 20324
components:
- pos: 62.5,27.5
parent: 2
type: Transform
- - uid: 20322
+ - uid: 20325
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-44.5
parent: 2
type: Transform
- - uid: 20323
+ - uid: 20326
components:
- pos: 46.5,9.5
parent: 2
type: Transform
- - uid: 20324
+ - uid: 20327
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-7.5
parent: 2
type: Transform
- - uid: 20325
+ - uid: 20328
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-0.5
parent: 2
type: Transform
- - uid: 20326
+ - uid: 20329
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-1.5
parent: 2
type: Transform
- - uid: 20327
+ - uid: 20330
components:
- pos: 60.5,-4.5
parent: 2
type: Transform
- - uid: 20328
+ - uid: 20331
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-8.5
parent: 2
type: Transform
- - uid: 20329
+ - uid: 20332
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-9.5
parent: 2
type: Transform
- - uid: 20330
+ - uid: 20333
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-2.5
parent: 2
type: Transform
- - uid: 20331
+ - uid: 20334
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-10.5
parent: 2
type: Transform
- - uid: 20332
+ - uid: 20335
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-12.5
parent: 2
type: Transform
- - uid: 20333
+ - uid: 20336
components:
- rot: -1.5707963267948966 rad
pos: 68.5,-6.5
parent: 2
type: Transform
- - uid: 20334
+ - uid: 20337
components:
- pos: 61.5,-18.5
parent: 2
type: Transform
- - uid: 20335
+ - uid: 20338
components:
- pos: 63.5,-18.5
parent: 2
type: Transform
- - uid: 20336
+ - uid: 20339
components:
- pos: 61.5,-20.5
parent: 2
type: Transform
- - uid: 20337
+ - uid: 20340
components:
- pos: 63.5,-20.5
parent: 2
type: Transform
- - uid: 20338
+ - uid: 20341
components:
- pos: 61.5,-22.5
parent: 2
type: Transform
- - uid: 20339
+ - uid: 20342
components:
- pos: 63.5,-22.5
parent: 2
type: Transform
- - uid: 20340
+ - uid: 20343
components:
- pos: 61.5,-24.5
parent: 2
type: Transform
- - uid: 20341
+ - uid: 20344
components:
- pos: 63.5,-24.5
parent: 2
type: Transform
- - uid: 20342
+ - uid: 20345
components:
- pos: 63.5,-26.5
parent: 2
type: Transform
- - uid: 20343
+ - uid: 20346
components:
- pos: 49.5,-62.5
parent: 2
type: Transform
- - uid: 20344
+ - uid: 20347
components:
- pos: 56.5,-46.5
parent: 2
type: Transform
- - uid: 20345
+ - uid: 20348
components:
- pos: 63.5,-50.5
parent: 2
type: Transform
- - uid: 20346
+ - uid: 20349
components:
- pos: 61.5,-50.5
parent: 2
type: Transform
- - uid: 20347
+ - uid: 20350
components:
- pos: 58.5,-51.5
parent: 2
type: Transform
- - uid: 20348
+ - uid: 20351
components:
- pos: 58.5,-52.5
parent: 2
type: Transform
- - uid: 20349
+ - uid: 20352
components:
- pos: 54.5,-51.5
parent: 2
type: Transform
- - uid: 20350
+ - uid: 20353
components:
- pos: 54.5,-52.5
parent: 2
type: Transform
- - uid: 20351
+ - uid: 20354
components:
- pos: 54.5,-53.5
parent: 2
type: Transform
- - uid: 20352
+ - uid: 20355
components:
- pos: 61.5,-56.5
parent: 2
type: Transform
- - uid: 20353
+ - uid: 20356
components:
- pos: 62.5,-56.5
parent: 2
type: Transform
- - uid: 20354
+ - uid: 20357
components:
- pos: 63.5,-56.5
parent: 2
type: Transform
- - uid: 20355
+ - uid: 20358
components:
- pos: 66.5,-51.5
parent: 2
type: Transform
- - uid: 20356
+ - uid: 20359
components:
- pos: 66.5,-52.5
parent: 2
type: Transform
- - uid: 20357
+ - uid: 20360
components:
- pos: 36.5,33.5
parent: 2
type: Transform
- - uid: 20358
+ - uid: 20361
components:
- pos: 36.5,32.5
parent: 2
type: Transform
- - uid: 20359
+ - uid: 20362
components:
- pos: 36.5,31.5
parent: 2
type: Transform
- - uid: 20360
+ - uid: 20363
components:
- pos: 36.5,30.5
parent: 2
type: Transform
- - uid: 20361
+ - uid: 20364
components:
- pos: 36.5,29.5
parent: 2
type: Transform
- - uid: 20362
+ - uid: 20365
components:
- pos: 36.5,28.5
parent: 2
type: Transform
- - uid: 20363
+ - uid: 20366
components:
- pos: 36.5,27.5
parent: 2
type: Transform
- - uid: 20364
+ - uid: 20367
components:
- pos: 51.5,-62.5
parent: 2
type: Transform
- - uid: 20365
+ - uid: 20368
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-50.5
parent: 2
type: Transform
- - uid: 20366
+ - uid: 20369
components:
- pos: 68.5,-42.5
parent: 2
type: Transform
- - uid: 20367
+ - uid: 20370
components:
- pos: 77.5,-38.5
parent: 2
type: Transform
- - uid: 20368
+ - uid: 20371
components:
- pos: 78.5,-46.5
parent: 2
type: Transform
- - uid: 20369
+ - uid: 20372
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-57.5
parent: 2
type: Transform
- - uid: 20370
+ - uid: 20373
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-57.5
parent: 2
type: Transform
- - uid: 20371
+ - uid: 20374
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-57.5
parent: 2
type: Transform
- - uid: 20372
+ - uid: 20375
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-57.5
parent: 2
type: Transform
- - uid: 20373
+ - uid: 20376
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-54.5
parent: 2
type: Transform
- - uid: 20374
+ - uid: 20377
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-55.5
parent: 2
type: Transform
- - uid: 20375
+ - uid: 20378
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-51.5
parent: 2
type: Transform
- - uid: 20376
+ - uid: 20379
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-47.5
parent: 2
type: Transform
- - uid: 20377
+ - uid: 20380
components:
- rot: 3.141592653589793 rad
pos: 64.5,-37.5
parent: 2
type: Transform
- - uid: 20378
+ - uid: 20381
components:
- pos: -12.5,-44.5
parent: 2
type: Transform
- - uid: 20379
+ - uid: 20382
components:
- pos: -13.5,-44.5
parent: 2
type: Transform
- - uid: 20380
+ - uid: 20383
components:
- pos: -14.5,-44.5
parent: 2
type: Transform
- - uid: 20381
+ - uid: 20384
components:
- rot: 3.141592653589793 rad
pos: 49.5,-59.5
parent: 2
type: Transform
- - uid: 20382
+ - uid: 20385
components:
- rot: 3.141592653589793 rad
pos: 50.5,-59.5
parent: 2
type: Transform
- - uid: 20383
+ - uid: 20386
components:
- pos: -19.5,5.5
parent: 2
type: Transform
- - uid: 20384
+ - uid: 20387
components:
- pos: -23.5,2.5
parent: 2
type: Transform
- - uid: 20385
+ - uid: 20388
components:
- pos: -2.5,42.5
parent: 2
type: Transform
- - uid: 20386
+ - uid: 20389
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-22.5
parent: 2
type: Transform
- - uid: 20387
+ - uid: 20390
components:
- pos: -21.5,-13.5
parent: 2
type: Transform
- - uid: 20388
+ - uid: 20391
components:
- pos: -21.5,-14.5
parent: 2
type: Transform
- - uid: 20389
+ - uid: 20392
components:
- pos: -21.5,-9.5
parent: 2
type: Transform
- - uid: 20390
+ - uid: 20393
components:
- pos: -21.5,-10.5
parent: 2
type: Transform
- - uid: 20391
+ - uid: 20394
components:
- pos: -26.5,-10.5
parent: 2
type: Transform
- - uid: 20392
+ - uid: 20395
components:
- pos: -26.5,-11.5
parent: 2
type: Transform
- - uid: 20393
+ - uid: 20396
components:
- pos: -30.5,-12.5
parent: 2
type: Transform
- - uid: 20394
+ - uid: 20397
components:
- pos: -30.5,-13.5
parent: 2
type: Transform
- - uid: 20395
+ - uid: 20398
components:
- pos: -22.5,-3.5
parent: 2
type: Transform
- - uid: 20396
+ - uid: 20399
components:
- pos: -21.5,-3.5
parent: 2
type: Transform
- - uid: 20397
+ - uid: 20400
components:
- pos: -22.5,-1.5
parent: 2
type: Transform
- - uid: 20398
+ - uid: 20401
components:
- pos: -21.5,-1.5
parent: 2
type: Transform
- - uid: 20399
+ - uid: 20402
components:
- pos: -17.5,-1.5
parent: 2
type: Transform
- - uid: 20400
+ - uid: 20403
components:
- pos: -16.5,-1.5
parent: 2
type: Transform
- - uid: 20401
+ - uid: 20404
components:
- pos: -19.5,0.5
parent: 2
type: Transform
- - uid: 20402
+ - uid: 20405
components:
- pos: -17.5,0.5
parent: 2
type: Transform
- - uid: 20403
+ - uid: 20406
components:
- pos: -16.5,0.5
parent: 2
type: Transform
- - uid: 20404
+ - uid: 20407
components:
- pos: -17.5,-3.5
parent: 2
type: Transform
- - uid: 20405
+ - uid: 20408
components:
- pos: -16.5,-3.5
parent: 2
type: Transform
- - uid: 20406
+ - uid: 20409
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-13.5
parent: 2
type: Transform
- - uid: 20407
+ - uid: 20410
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-18.5
parent: 2
type: Transform
- - uid: 20408
+ - uid: 20411
components:
- pos: 52.5,-57.5
parent: 2
type: Transform
- - uid: 20409
+ - uid: 20412
components:
- rot: 3.141592653589793 rad
pos: 56.5,-55.5
parent: 2
type: Transform
- - uid: 20410
+ - uid: 20413
components:
- rot: 3.141592653589793 rad
pos: 59.5,-54.5
parent: 2
type: Transform
- - uid: 20411
+ - uid: 20414
components:
- rot: 3.141592653589793 rad
pos: 65.5,-54.5
parent: 2
type: Transform
- - uid: 20412
+ - uid: 20415
components:
- pos: 41.5,-74.5
parent: 2
type: Transform
- - uid: 20413
+ - uid: 20416
components:
- pos: 32.5,-77.5
parent: 2
type: Transform
- - uid: 20414
+ - uid: 20417
components:
- pos: 32.5,-78.5
parent: 2
type: Transform
- - uid: 20415
+ - uid: 20418
components:
- pos: 32.5,-79.5
parent: 2
type: Transform
- - uid: 20416
+ - uid: 20419
components:
- rot: 3.141592653589793 rad
pos: 25.5,-80.5
parent: 2
type: Transform
- - uid: 20417
+ - uid: 20420
components:
- rot: 3.141592653589793 rad
pos: 51.5,-73.5
parent: 2
type: Transform
- - uid: 20418
+ - uid: 20421
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-84.5
parent: 2
type: Transform
- - uid: 20419
+ - uid: 20422
components:
- pos: 17.5,-71.5
parent: 2
type: Transform
- - uid: 20420
+ - uid: 20423
components:
- pos: 18.5,-71.5
parent: 2
type: Transform
- - uid: 20421
+ - uid: 20424
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-85.5
parent: 2
type: Transform
- - uid: 20422
+ - uid: 20425
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-86.5
parent: 2
type: Transform
- - uid: 20423
+ - uid: 20426
components:
- pos: 15.5,-71.5
parent: 2
type: Transform
- - uid: 20424
+ - uid: 20427
components:
- pos: 18.5,-74.5
parent: 2
type: Transform
- - uid: 20425
+ - uid: 20428
components:
- pos: 17.5,-74.5
parent: 2
type: Transform
- - uid: 20426
+ - uid: 20429
components:
- pos: 14.5,-71.5
parent: 2
type: Transform
- - uid: 20427
+ - uid: 20430
components:
- pos: 14.5,-74.5
parent: 2
type: Transform
- - uid: 20428
+ - uid: 20431
components:
- pos: 15.5,-74.5
parent: 2
type: Transform
- - uid: 20429
+ - uid: 20432
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-86.5
parent: 2
type: Transform
- - uid: 20430
+ - uid: 20433
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-87.5
parent: 2
type: Transform
- - uid: 20431
+ - uid: 20434
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-87.5
parent: 2
type: Transform
- - uid: 20432
+ - uid: 20435
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-84.5
parent: 2
type: Transform
- - uid: 20433
+ - uid: 20436
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-85.5
parent: 2
type: Transform
- - uid: 20434
+ - uid: 20437
components:
- rot: 1.5707963267948966 rad
pos: 42.5,-69.5
parent: 2
type: Transform
- - uid: 20435
+ - uid: 20438
components:
- rot: 1.5707963267948966 rad
pos: 43.5,-69.5
parent: 2
type: Transform
- - uid: 20436
+ - uid: 20439
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-69.5
parent: 2
type: Transform
- - uid: 20437
+ - uid: 20440
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-69.5
parent: 2
type: Transform
- - uid: 20438
+ - uid: 20441
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-69.5
parent: 2
type: Transform
- - uid: 20439
+ - uid: 20442
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-69.5
parent: 2
type: Transform
- - uid: 20440
+ - uid: 20443
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-66.5
parent: 2
type: Transform
- - uid: 20441
+ - uid: 20444
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-14.5
parent: 2
type: Transform
- - uid: 20442
+ - uid: 20445
components:
- pos: -33.5,-17.5
parent: 2
type: Transform
- - uid: 20443
+ - uid: 20446
components:
- pos: -33.5,-15.5
parent: 2
type: Transform
- - uid: 20444
+ - uid: 20447
components:
- rot: 3.141592653589793 rad
pos: -33.5,-12.5
parent: 2
type: Transform
- - uid: 20445
+ - uid: 20448
components:
- rot: 3.141592653589793 rad
pos: -33.5,-9.5
parent: 2
type: Transform
- - uid: 20446
+ - uid: 20449
components:
- rot: 3.141592653589793 rad
pos: -40.5,-9.5
parent: 2
type: Transform
- - uid: 20447
+ - uid: 20450
components:
- rot: 3.141592653589793 rad
pos: -40.5,-12.5
parent: 2
type: Transform
- - uid: 20448
+ - uid: 20451
components:
- pos: 50.5,-31.5
parent: 2
type: Transform
- - uid: 20449
+ - uid: 20452
components:
- pos: 51.5,-31.5
parent: 2
type: Transform
- - uid: 20450
+ - uid: 20453
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-35.5
parent: 2
type: Transform
- - uid: 20451
+ - uid: 20454
components:
- pos: -38.5,-37.5
parent: 2
type: Transform
- - uid: 20452
+ - uid: 20455
components:
- pos: -37.5,-37.5
parent: 2
type: Transform
- - uid: 20453
+ - uid: 20456
components:
- pos: -45.5,-18.5
parent: 2
type: Transform
- - uid: 20454
+ - uid: 20457
components:
- rot: 3.141592653589793 rad
pos: -43.5,-13.5
parent: 2
type: Transform
- - uid: 20455
+ - uid: 20458
components:
- rot: 3.141592653589793 rad
pos: -46.5,-7.5
parent: 2
type: Transform
- - uid: 20456
+ - uid: 20459
components:
- rot: 3.141592653589793 rad
pos: -49.5,-19.5
parent: 2
type: Transform
- - uid: 20457
+ - uid: 20460
components:
- pos: -68.5,-22.5
parent: 2
type: Transform
- - uid: 20458
+ - uid: 20461
components:
- pos: -67.5,-22.5
parent: 2
type: Transform
- - uid: 20459
+ - uid: 20462
components:
- pos: -66.5,-22.5
parent: 2
type: Transform
- - uid: 20460
+ - uid: 20463
components:
- pos: -65.5,-22.5
parent: 2
type: Transform
- - uid: 20461
+ - uid: 20464
components:
- pos: -64.5,-22.5
parent: 2
type: Transform
- - uid: 20462
+ - uid: 20465
components:
- pos: -66.5,-29.5
parent: 2
type: Transform
- - uid: 20463
+ - uid: 20466
components:
- pos: -56.5,-11.5
parent: 2
type: Transform
- - uid: 20464
+ - uid: 20467
components:
- pos: -56.5,-12.5
parent: 2
type: Transform
- - uid: 20465
+ - uid: 20468
components:
- pos: -56.5,-13.5
parent: 2
type: Transform
- - uid: 20466
+ - uid: 20469
components:
- pos: -56.5,-14.5
parent: 2
type: Transform
- - uid: 20467
+ - uid: 20470
components:
- pos: -56.5,-15.5
parent: 2
type: Transform
- - uid: 20468
+ - uid: 20471
components:
- pos: -61.5,-35.5
parent: 2
type: Transform
- - uid: 20469
+ - uid: 20472
components:
- pos: -60.5,-35.5
parent: 2
type: Transform
- - uid: 20470
+ - uid: 20473
components:
- pos: -62.5,-38.5
parent: 2
type: Transform
- - uid: 20471
+ - uid: 20474
components:
- pos: -61.5,-31.5
parent: 2
type: Transform
- - uid: 20472
+ - uid: 20475
components:
- pos: -47.5,-54.5
parent: 2
type: Transform
- - uid: 20473
+ - uid: 20476
components:
- pos: -47.5,-52.5
parent: 2
type: Transform
- - uid: 20474
+ - uid: 20477
components:
- pos: -47.5,-50.5
parent: 2
type: Transform
- - uid: 20475
+ - uid: 20478
components:
- pos: -47.5,-48.5
parent: 2
type: Transform
- - uid: 20476
+ - uid: 20479
components:
- pos: -47.5,-46.5
parent: 2
type: Transform
- - uid: 20477
+ - uid: 20480
components:
- pos: -47.5,-44.5
parent: 2
type: Transform
- - uid: 20478
+ - uid: 20481
components:
- pos: -47.5,-42.5
parent: 2
type: Transform
- - uid: 20479
+ - uid: 20482
components:
- pos: -41.5,-34.5
parent: 2
type: Transform
- - uid: 20480
+ - uid: 20483
components:
- pos: -41.5,-35.5
parent: 2
type: Transform
- - uid: 20481
+ - uid: 20484
components:
- pos: -59.5,-3.5
parent: 2
type: Transform
- - uid: 20482
+ - uid: 20485
components:
- pos: -60.5,-3.5
parent: 2
type: Transform
- - uid: 20483
+ - uid: 20486
components:
- pos: -61.5,-3.5
parent: 2
type: Transform
- - uid: 20484
+ - uid: 20487
components:
- pos: -62.5,-3.5
parent: 2
type: Transform
- - uid: 20485
+ - uid: 20488
components:
- pos: -66.5,-3.5
parent: 2
type: Transform
- - uid: 20486
+ - uid: 20489
components:
- pos: -67.5,-3.5
parent: 2
type: Transform
- - uid: 20487
+ - uid: 20490
components:
- pos: -68.5,-3.5
parent: 2
type: Transform
- - uid: 20488
+ - uid: 20491
components:
- pos: -69.5,-3.5
parent: 2
type: Transform
- - uid: 20489
+ - uid: 20492
components:
- pos: -76.5,-3.5
parent: 2
type: Transform
- - uid: 20490
+ - uid: 20493
components:
- pos: -73.5,-3.5
parent: 2
type: Transform
- - uid: 20491
+ - uid: 20494
components:
- pos: -74.5,-3.5
parent: 2
type: Transform
- - uid: 20492
+ - uid: 20495
components:
- pos: -75.5,-3.5
parent: 2
type: Transform
- - uid: 20493
+ - uid: 20496
components:
- pos: -76.5,-7.5
parent: 2
type: Transform
- - uid: 20494
+ - uid: 20497
components:
- pos: -76.5,-8.5
parent: 2
type: Transform
- - uid: 20495
+ - uid: 20498
components:
- pos: -76.5,-9.5
parent: 2
type: Transform
- - uid: 20496
+ - uid: 20499
components:
- pos: -76.5,-10.5
parent: 2
type: Transform
- - uid: 20497
+ - uid: 20500
components:
- pos: -76.5,-14.5
parent: 2
type: Transform
- - uid: 20498
+ - uid: 20501
components:
- pos: -76.5,-15.5
parent: 2
type: Transform
- - uid: 20499
+ - uid: 20502
components:
- pos: -76.5,-16.5
parent: 2
type: Transform
- - uid: 20500
+ - uid: 20503
components:
- pos: -76.5,-17.5
parent: 2
type: Transform
- - uid: 20501
+ - uid: 20504
components:
- pos: -76.5,-21.5
parent: 2
type: Transform
- - uid: 20502
+ - uid: 20505
components:
- pos: -76.5,-22.5
parent: 2
type: Transform
- - uid: 20503
+ - uid: 20506
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-24.5
parent: 2
type: Transform
- - uid: 20504
+ - uid: 20507
components:
- pos: -76.5,-23.5
parent: 2
type: Transform
- - uid: 20505
+ - uid: 20508
components:
- pos: -35.5,-58.5
parent: 2
type: Transform
- - uid: 20506
+ - uid: 20509
components:
- rot: 3.141592653589793 rad
pos: -38.5,-59.5
parent: 2
type: Transform
- - uid: 20507
+ - uid: 20510
components:
- pos: -41.5,-58.5
parent: 2
type: Transform
- - uid: 20508
+ - uid: 20511
components:
- pos: -42.5,-58.5
parent: 2
type: Transform
- - uid: 20509
+ - uid: 20512
components:
- pos: -44.5,-58.5
parent: 2
type: Transform
- - uid: 20510
+ - uid: 20513
components:
- pos: -21.5,-61.5
parent: 2
type: Transform
- - uid: 20511
+ - uid: 20514
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-83.5
parent: 2
type: Transform
- - uid: 20512
+ - uid: 20515
components:
- pos: -28.5,-72.5
parent: 2
type: Transform
- - uid: 20513
+ - uid: 20516
components:
- pos: -35.5,-76.5
parent: 2
type: Transform
- - uid: 20514
+ - uid: 20517
components:
- pos: -35.5,-77.5
parent: 2
type: Transform
- - uid: 20515
+ - uid: 20518
components:
- pos: -35.5,-78.5
parent: 2
type: Transform
- - uid: 20516
+ - uid: 20519
components:
- pos: -35.5,-81.5
parent: 2
type: Transform
- - uid: 20517
+ - uid: 20520
components:
- pos: -35.5,-82.5
parent: 2
type: Transform
- - uid: 20518
+ - uid: 20521
components:
- pos: -35.5,-83.5
parent: 2
type: Transform
- - uid: 20519
+ - uid: 20522
components:
- pos: -40.5,-86.5
parent: 2
type: Transform
- - uid: 20520
+ - uid: 20523
components:
- pos: -43.5,-86.5
parent: 2
type: Transform
- - uid: 20521
+ - uid: 20524
components:
- pos: -21.5,-59.5
parent: 2
type: Transform
- - uid: 20522
+ - uid: 20525
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-83.5
parent: 2
type: Transform
- - uid: 20523
+ - uid: 20526
components:
- pos: -57.5,-75.5
parent: 2
type: Transform
- - uid: 20524
+ - uid: 20527
components:
- pos: -57.5,-76.5
parent: 2
type: Transform
- - uid: 20525
+ - uid: 20528
components:
- pos: -57.5,-77.5
parent: 2
type: Transform
- - uid: 20526
+ - uid: 20529
components:
- pos: -58.5,-52.5
parent: 2
type: Transform
- - uid: 20527
+ - uid: 20530
components:
- pos: -58.5,-51.5
parent: 2
type: Transform
- - uid: 20528
+ - uid: 20531
components:
- pos: -58.5,-48.5
parent: 2
type: Transform
- - uid: 20529
+ - uid: 20532
components:
- pos: -58.5,-47.5
parent: 2
type: Transform
- - uid: 20530
+ - uid: 20533
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-59.5
parent: 2
type: Transform
- - uid: 20531
+ - uid: 20534
components:
- pos: -48.5,-81.5
parent: 2
type: Transform
- - uid: 20532
+ - uid: 20535
components:
- rot: -1.5707963267948966 rad
pos: -3.5,27.5
parent: 2
type: Transform
- - uid: 20533
+ - uid: 20536
components:
- pos: -2.5,35.5
parent: 2
type: Transform
- - uid: 20534
+ - uid: 20537
components:
- pos: -1.5,35.5
parent: 2
type: Transform
- - uid: 20535
+ - uid: 20538
components:
- pos: -0.5,35.5
parent: 2
type: Transform
- - uid: 20536
+ - uid: 20539
components:
- pos: 6.5,25.5
parent: 2
type: Transform
- - uid: 20537
+ - uid: 20540
components:
- pos: 4.5,25.5
parent: 2
type: Transform
- - uid: 20538
+ - uid: 20541
components:
- pos: 2.5,25.5
parent: 2
type: Transform
- - uid: 20539
+ - uid: 20542
components:
- rot: -1.5707963267948966 rad
pos: -1.5,27.5
parent: 2
type: Transform
- - uid: 20540
+ - uid: 20543
components:
- pos: -21.5,24.5
parent: 2
type: Transform
- - uid: 20541
+ - uid: 20544
components:
- pos: -21.5,23.5
parent: 2
type: Transform
- - uid: 20542
+ - uid: 20545
components:
- pos: -26.5,21.5
parent: 2
type: Transform
- - uid: 20543
+ - uid: 20546
components:
- rot: -1.5707963267948966 rad
pos: -26.5,23.5
parent: 2
type: Transform
- - uid: 20544
+ - uid: 20547
components:
- pos: -1.5,42.5
parent: 2
type: Transform
- - uid: 20545
+ - uid: 20548
components:
- pos: -29.5,23.5
parent: 2
type: Transform
- - uid: 20546
+ - uid: 20549
components:
- pos: -29.5,21.5
parent: 2
type: Transform
- - uid: 20547
+ - uid: 20550
components:
- rot: 1.5707963267948966 rad
pos: -50.5,21.5
parent: 2
type: Transform
- - uid: 20548
+ - uid: 20551
components:
- rot: 1.5707963267948966 rad
pos: -49.5,21.5
parent: 2
type: Transform
- - uid: 20549
+ - uid: 20552
components:
- rot: -1.5707963267948966 rad
pos: -50.5,18.5
parent: 2
type: Transform
- - uid: 20550
+ - uid: 20553
components:
- rot: -1.5707963267948966 rad
pos: -50.5,24.5
parent: 2
type: Transform
- - uid: 20551
+ - uid: 20554
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- - uid: 20552
+ - uid: 20555
components:
- pos: -33.5,32.5
parent: 2
type: Transform
- - uid: 20553
+ - uid: 20556
components:
- pos: -32.5,32.5
parent: 2
type: Transform
- - uid: 20554
+ - uid: 20557
components:
- pos: -31.5,32.5
parent: 2
type: Transform
- - uid: 20555
+ - uid: 20558
components:
- pos: -31.5,27.5
parent: 2
type: Transform
- - uid: 20556
+ - uid: 20559
components:
- pos: -30.5,27.5
parent: 2
type: Transform
- - uid: 20557
+ - uid: 20560
components:
- rot: -1.5707963267948966 rad
pos: -52.5,21.5
parent: 2
type: Transform
- - uid: 20558
+ - uid: 20561
components:
- rot: -1.5707963267948966 rad
pos: -53.5,21.5
parent: 2
type: Transform
- - uid: 20559
+ - uid: 20562
components:
- rot: -1.5707963267948966 rad
pos: -49.5,29.5
parent: 2
type: Transform
- - uid: 20560
+ - uid: 20563
components:
- rot: -1.5707963267948966 rad
pos: -52.5,29.5
parent: 2
type: Transform
- - uid: 20561
+ - uid: 20564
components:
- rot: -1.5707963267948966 rad
pos: -52.5,35.5
parent: 2
type: Transform
- - uid: 20562
+ - uid: 20565
components:
- rot: -1.5707963267948966 rad
pos: -49.5,35.5
parent: 2
type: Transform
- - uid: 20563
+ - uid: 20566
components:
- pos: -52.5,24.5
parent: 2
type: Transform
- - uid: 20564
+ - uid: 20567
components:
- pos: -52.5,18.5
parent: 2
type: Transform
- - uid: 20565
+ - uid: 20568
components:
- pos: -39.5,31.5
parent: 2
type: Transform
- - uid: 20566
+ - uid: 20569
components:
- rot: 1.5707963267948966 rad
pos: -17.5,24.5
parent: 2
type: Transform
- - uid: 20567
+ - uid: 20570
components:
- rot: 1.5707963267948966 rad
pos: -21.5,12.5
parent: 2
type: Transform
- - uid: 20568
+ - uid: 20571
components:
- rot: 1.5707963267948966 rad
pos: -22.5,9.5
parent: 2
type: Transform
- - uid: 20569
+ - uid: 20572
components:
- rot: 1.5707963267948966 rad
pos: -23.5,9.5
parent: 2
type: Transform
- - uid: 20570
+ - uid: 20573
components:
- rot: 1.5707963267948966 rad
pos: -25.5,9.5
parent: 2
type: Transform
- - uid: 20571
+ - uid: 20574
components:
- rot: 1.5707963267948966 rad
pos: -26.5,9.5
parent: 2
type: Transform
- - uid: 20572
+ - uid: 20575
components:
- pos: -36.5,7.5
parent: 2
type: Transform
- - uid: 20573
+ - uid: 20576
components:
- pos: -41.5,2.5
parent: 2
type: Transform
- - uid: 20574
+ - uid: 20577
components:
- pos: -35.5,2.5
parent: 2
type: Transform
- - uid: 20575
+ - uid: 20578
components:
- pos: -34.5,2.5
parent: 2
type: Transform
- - uid: 20576
+ - uid: 20579
components:
- pos: -40.5,2.5
parent: 2
type: Transform
- - uid: 20577
+ - uid: 20580
components:
- pos: -39.5,2.5
parent: 2
type: Transform
- - uid: 20578
+ - uid: 20581
components:
- pos: -36.5,2.5
parent: 2
type: Transform
- - uid: 20579
+ - uid: 20582
components:
- pos: -39.5,7.5
parent: 2
type: Transform
- - uid: 20580
+ - uid: 20583
components:
- pos: -1.5,50.5
parent: 2
type: Transform
- - uid: 20581
+ - uid: 20584
components:
- pos: 29.5,24.5
parent: 2
type: Transform
- - uid: 20582
+ - uid: 20585
components:
- rot: -1.5707963267948966 rad
pos: -49.5,13.5
parent: 2
type: Transform
- - uid: 20583
+ - uid: 20586
components:
- pos: -46.5,13.5
parent: 2
type: Transform
- - uid: 20584
+ - uid: 20587
components:
- pos: -53.5,11.5
parent: 2
type: Transform
- - uid: 20585
+ - uid: 20588
components:
- pos: -53.5,10.5
parent: 2
type: Transform
- - uid: 20586
+ - uid: 20589
components:
- rot: -1.5707963267948966 rad
pos: -48.5,13.5
parent: 2
type: Transform
- - uid: 20587
+ - uid: 20590
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-0.5
parent: 2
type: Transform
- - uid: 20588
+ - uid: 20591
components:
- pos: 2.5,-94.5
parent: 2
type: Transform
- - uid: 20589
+ - uid: 20592
components:
- pos: 2.5,-95.5
parent: 2
type: Transform
- - uid: 20590
+ - uid: 20593
components:
- pos: 2.5,-96.5
parent: 2
type: Transform
- - uid: 20591
+ - uid: 20594
components:
- pos: 2.5,-97.5
parent: 2
type: Transform
- - uid: 20592
+ - uid: 20595
components:
- pos: 2.5,-98.5
parent: 2
type: Transform
- - uid: 20593
+ - uid: 20596
components:
- pos: 2.5,-99.5
parent: 2
type: Transform
- - uid: 20594
+ - uid: 20597
components:
- pos: 2.5,-100.5
parent: 2
type: Transform
- - uid: 20595
+ - uid: 20598
components:
- pos: 2.5,-101.5
parent: 2
type: Transform
- - uid: 20596
+ - uid: 20599
components:
- pos: 2.5,-102.5
parent: 2
type: Transform
- - uid: 20597
+ - uid: 20600
components:
- pos: 2.5,-103.5
parent: 2
type: Transform
- - uid: 20598
+ - uid: 20601
components:
- pos: 2.5,-104.5
parent: 2
type: Transform
- - uid: 20599
+ - uid: 20602
components:
- pos: 4.5,-107.5
parent: 2
type: Transform
- - uid: 20600
+ - uid: 20603
components:
- pos: 5.5,-107.5
parent: 2
type: Transform
- - uid: 20601
+ - uid: 20604
components:
- pos: 6.5,-107.5
parent: 2
type: Transform
- - uid: 20602
+ - uid: 20605
components:
- pos: 7.5,-107.5
parent: 2
type: Transform
- - uid: 20603
+ - uid: 20606
components:
- pos: 8.5,-107.5
parent: 2
type: Transform
- - uid: 20604
+ - uid: 20607
components:
- pos: 9.5,-107.5
parent: 2
type: Transform
- - uid: 20605
+ - uid: 20608
components:
- pos: 10.5,-107.5
parent: 2
type: Transform
- - uid: 20606
+ - uid: 20609
components:
- pos: 11.5,-107.5
parent: 2
type: Transform
- - uid: 20607
+ - uid: 20610
components:
- pos: 12.5,-107.5
parent: 2
type: Transform
- - uid: 20608
+ - uid: 20611
components:
- pos: 13.5,-107.5
parent: 2
type: Transform
- - uid: 20609
+ - uid: 20612
components:
- pos: 14.5,-107.5
parent: 2
type: Transform
- - uid: 20610
+ - uid: 20613
components:
- pos: 15.5,-107.5
parent: 2
type: Transform
- - uid: 20611
+ - uid: 20614
components:
- pos: 16.5,-107.5
parent: 2
type: Transform
- - uid: 20612
+ - uid: 20615
components:
- pos: 17.5,-107.5
parent: 2
type: Transform
- - uid: 20613
+ - uid: 20616
components:
- pos: 20.5,-105.5
parent: 2
type: Transform
- - uid: 20614
+ - uid: 20617
components:
- pos: 20.5,-104.5
parent: 2
type: Transform
- - uid: 20615
+ - uid: 20618
components:
- pos: 20.5,-103.5
parent: 2
type: Transform
- - uid: 20616
+ - uid: 20619
components:
- pos: 20.5,-102.5
parent: 2
type: Transform
- - uid: 20617
+ - uid: 20620
components:
- pos: 20.5,-101.5
parent: 2
type: Transform
- - uid: 20618
+ - uid: 20621
components:
- pos: 20.5,-100.5
parent: 2
type: Transform
- - uid: 20619
+ - uid: 20622
components:
- pos: 20.5,-99.5
parent: 2
type: Transform
- - uid: 20620
+ - uid: 20623
components:
- pos: 20.5,-98.5
parent: 2
type: Transform
- - uid: 20621
+ - uid: 20624
components:
- pos: 20.5,-97.5
parent: 2
type: Transform
- - uid: 20622
+ - uid: 20625
components:
- pos: 20.5,-96.5
parent: 2
type: Transform
- - uid: 20623
+ - uid: 20626
components:
- pos: 20.5,-95.5
parent: 2
type: Transform
- - uid: 20624
+ - uid: 20627
components:
- pos: 20.5,-94.5
parent: 2
type: Transform
- - uid: 20625
+ - uid: 20628
components:
- pos: 13.5,-92.5
parent: 2
type: Transform
- - uid: 20626
+ - uid: 20629
components:
- pos: 14.5,-92.5
parent: 2
type: Transform
- - uid: 20627
+ - uid: 20630
components:
- pos: 15.5,-92.5
parent: 2
type: Transform
- - uid: 20628
+ - uid: 20631
components:
- pos: 16.5,-92.5
parent: 2
type: Transform
- - uid: 20629
+ - uid: 20632
components:
- pos: 17.5,-92.5
parent: 2
type: Transform
- - uid: 20630
+ - uid: 20633
components:
- pos: 18.5,-92.5
parent: 2
type: Transform
- - uid: 20631
+ - uid: 20634
components:
- pos: 38.5,-57.5
parent: 2
type: Transform
- - uid: 20632
+ - uid: 20635
components:
- pos: 40.5,-57.5
parent: 2
type: Transform
- - uid: 20633
+ - uid: 20636
components:
- pos: 37.5,-21.5
parent: 2
type: Transform
- - uid: 20634
+ - uid: 20637
components:
- pos: 37.5,-22.5
parent: 2
type: Transform
- - uid: 20635
+ - uid: 20638
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-11.5
parent: 2
type: Transform
- - uid: 20636
+ - uid: 20639
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-13.5
parent: 2
type: Transform
- - uid: 20637
+ - uid: 20640
components:
- pos: 55.5,-15.5
parent: 2
type: Transform
- - uid: 20638
+ - uid: 20641
components:
- pos: 56.5,-15.5
parent: 2
type: Transform
- - uid: 20639
+ - uid: 20642
components:
- pos: 58.5,-15.5
parent: 2
type: Transform
- - uid: 20640
+ - uid: 20643
components:
- pos: 59.5,-15.5
parent: 2
type: Transform
- - uid: 20641
+ - uid: 20644
components:
- pos: 58.5,-59.5
parent: 2
type: Transform
- - uid: 20642
+ - uid: 20645
components:
- pos: 58.5,-60.5
parent: 2
type: Transform
- - uid: 20643
+ - uid: 20646
components:
- pos: 42.5,-31.5
parent: 2
type: Transform
- - uid: 20644
+ - uid: 20647
components:
- pos: 37.5,-64.5
parent: 2
type: Transform
- - uid: 20645
+ - uid: 20648
components:
- rot: 3.141592653589793 rad
pos: 24.5,37.5
parent: 2
type: Transform
- - uid: 20646
+ - uid: 20649
components:
- rot: 3.141592653589793 rad
pos: 21.5,37.5
parent: 2
type: Transform
- - uid: 20647
+ - uid: 20650
components:
- pos: 32.5,35.5
parent: 2
type: Transform
- - uid: 20648
+ - uid: 20651
components:
- pos: 26.5,35.5
parent: 2
type: Transform
- - uid: 20649
+ - uid: 20652
components:
- pos: 34.5,37.5
parent: 2
type: Transform
- - uid: 20650
+ - uid: 20653
components:
- pos: 35.5,37.5
parent: 2
type: Transform
- - uid: 20651
+ - uid: 20654
components:
- pos: 36.5,37.5
parent: 2
type: Transform
- - uid: 20652
+ - uid: 20655
components:
- pos: 36.5,36.5
parent: 2
type: Transform
- - uid: 20653
+ - uid: 20656
components:
- pos: 36.5,35.5
parent: 2
type: Transform
- - uid: 20654
+ - uid: 20657
components:
- pos: 36.5,34.5
parent: 2
type: Transform
- - uid: 20655
+ - uid: 20658
components:
- pos: -45.5,-42.5
parent: 2
type: Transform
- - uid: 20656
+ - uid: 20659
components:
- pos: -45.5,-43.5
parent: 2
type: Transform
- - uid: 20657
+ - uid: 20660
components:
- pos: -45.5,-44.5
parent: 2
type: Transform
- - uid: 20658
+ - uid: 20661
components:
- pos: -45.5,-45.5
parent: 2
type: Transform
- - uid: 20659
+ - uid: 20662
components:
- pos: -45.5,-46.5
parent: 2
type: Transform
- - uid: 20660
+ - uid: 20663
components:
- pos: -45.5,-47.5
parent: 2
type: Transform
- - uid: 20661
+ - uid: 20664
components:
- pos: -45.5,-48.5
parent: 2
type: Transform
- - uid: 20662
+ - uid: 20665
components:
- pos: -45.5,-49.5
parent: 2
type: Transform
- - uid: 20663
+ - uid: 20666
components:
- pos: -45.5,-50.5
parent: 2
type: Transform
- - uid: 20664
+ - uid: 20667
components:
- pos: -45.5,-51.5
parent: 2
type: Transform
- - uid: 20665
+ - uid: 20668
components:
- pos: -45.5,-52.5
parent: 2
type: Transform
- - uid: 20666
+ - uid: 20669
components:
- pos: -45.5,-53.5
parent: 2
type: Transform
- - uid: 20667
+ - uid: 20670
components:
- pos: -45.5,-54.5
parent: 2
type: Transform
- - uid: 20668
+ - uid: 20671
components:
- pos: -45.5,-55.5
parent: 2
type: Transform
- - uid: 20669
+ - uid: 20672
components:
- rot: 3.141592653589793 rad
pos: 46.5,3.5
parent: 2
type: Transform
- - uid: 20670
+ - uid: 20673
components:
- rot: -1.5707963267948966 rad
pos: 27.5,20.5
parent: 2
type: Transform
- - uid: 20671
+ - uid: 20674
components:
- pos: 41.5,-31.5
parent: 2
type: Transform
- - uid: 20672
+ - uid: 20675
components:
- pos: -48.5,-82.5
parent: 2
type: Transform
- - uid: 20673
+ - uid: 20676
components:
- pos: -48.5,-83.5
parent: 2
type: Transform
- - uid: 20674
+ - uid: 20677
components:
- pos: 20.5,-35.5
parent: 2
type: Transform
- - uid: 20675
+ - uid: 20678
components:
- pos: 20.5,-36.5
parent: 2
type: Transform
- - uid: 20676
+ - uid: 20679
components:
- pos: -30.5,-72.5
parent: 2
type: Transform
- - uid: 20677
+ - uid: 20680
components:
- pos: 10.5,18.5
parent: 2
type: Transform
- - uid: 20678
+ - uid: 20681
components:
- pos: 12.5,18.5
parent: 2
type: Transform
- - uid: 20679
+ - uid: 20682
components:
- rot: -1.5707963267948966 rad
pos: 59.5,33.5
parent: 2
type: Transform
- - uid: 20680
+ - uid: 20683
components:
- rot: -1.5707963267948966 rad
pos: 59.5,32.5
parent: 2
type: Transform
- - uid: 20681
+ - uid: 20684
components:
- rot: 3.141592653589793 rad
pos: 59.5,43.5
parent: 2
type: Transform
- - uid: 20682
+ - uid: 20685
components:
- pos: 2.5,51.5
parent: 2
type: Transform
- - uid: 20683
+ - uid: 20686
components:
- pos: -14.5,65.5
parent: 2
type: Transform
- - uid: 20684
+ - uid: 20687
components:
- rot: 3.141592653589793 rad
pos: -14.5,67.5
parent: 2
type: Transform
- - uid: 20685
+ - uid: 20688
components:
- rot: -1.5707963267948966 rad
pos: 7.5,35.5
parent: 2
type: Transform
- - uid: 20686
+ - uid: 20689
components:
- rot: -1.5707963267948966 rad
pos: 8.5,35.5
parent: 2
type: Transform
- - uid: 20687
+ - uid: 20690
components:
- rot: -1.5707963267948966 rad
pos: 7.5,29.5
parent: 2
type: Transform
- - uid: 20688
+ - uid: 20691
components:
- rot: -1.5707963267948966 rad
pos: 8.5,29.5
parent: 2
type: Transform
- - uid: 20689
+ - uid: 20692
components:
- rot: -1.5707963267948966 rad
pos: 68.5,11.5
parent: 2
type: Transform
- - uid: 20690
+ - uid: 20693
components:
- rot: -1.5707963267948966 rad
pos: 68.5,10.5
parent: 2
type: Transform
- - uid: 20691
+ - uid: 20694
components:
- rot: -1.5707963267948966 rad
pos: 68.5,8.5
parent: 2
type: Transform
- - uid: 20692
+ - uid: 20695
components:
- rot: -1.5707963267948966 rad
pos: 68.5,7.5
parent: 2
type: Transform
- - uid: 20693
+ - uid: 20696
components:
- rot: -1.5707963267948966 rad
pos: -7.5,28.5
parent: 2
type: Transform
- - uid: 20694
+ - uid: 20697
components:
- rot: -1.5707963267948966 rad
pos: -7.5,27.5
parent: 2
type: Transform
- - uid: 20695
+ - uid: 20698
components:
- rot: -1.5707963267948966 rad
pos: -33.5,35.5
parent: 2
type: Transform
- - uid: 20696
+ - uid: 20699
components:
- rot: -1.5707963267948966 rad
pos: -32.5,35.5
parent: 2
type: Transform
- - uid: 20697
+ - uid: 20700
components:
- rot: -1.5707963267948966 rad
pos: -31.5,35.5
parent: 2
type: Transform
- - uid: 20698
+ - uid: 20701
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-17.5
parent: 2
type: Transform
- - uid: 20699
+ - uid: 20702
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-17.5
parent: 2
type: Transform
- - uid: 20700
+ - uid: 20703
components:
- rot: 3.141592653589793 rad
pos: -19.5,44.5
parent: 2
type: Transform
- - uid: 20701
+ - uid: 20704
components:
- pos: 2.5,50.5
parent: 2
type: Transform
- - uid: 20702
+ - uid: 20705
components:
- pos: 2.5,47.5
parent: 2
type: Transform
- - uid: 20703
+ - uid: 20706
components:
- rot: 3.141592653589793 rad
pos: 41.5,32.5
parent: 2
type: Transform
- - uid: 20704
+ - uid: 20707
components:
- rot: 3.141592653589793 rad
pos: 41.5,31.5
parent: 2
type: Transform
- - uid: 20705
+ - uid: 20708
components:
- rot: 3.141592653589793 rad
pos: 41.5,30.5
parent: 2
type: Transform
- - uid: 20706
+ - uid: 20709
components:
- rot: 1.5707963267948966 rad
pos: 45.5,40.5
parent: 2
type: Transform
- - uid: 20707
+ - uid: 20710
components:
- rot: 1.5707963267948966 rad
pos: 47.5,40.5
parent: 2
type: Transform
- - uid: 20708
+ - uid: 20711
components:
- rot: -1.5707963267948966 rad
pos: 41.5,42.5
parent: 2
type: Transform
- - uid: 20709
+ - uid: 20712
components:
- rot: -1.5707963267948966 rad
pos: 40.5,42.5
parent: 2
type: Transform
- - uid: 20710
+ - uid: 20713
components:
- rot: -1.5707963267948966 rad
pos: 39.5,42.5
parent: 2
type: Transform
- - uid: 20711
+ - uid: 20714
components:
- rot: 3.141592653589793 rad
pos: -20.5,65.5
parent: 2
type: Transform
- - uid: 20712
+ - uid: 20715
components:
- pos: -2.5,60.5
parent: 2
type: Transform
- - uid: 20713
+ - uid: 20716
components:
- pos: -0.5,60.5
parent: 2
type: Transform
- - uid: 20714
+ - uid: 20717
components:
- pos: 71.5,39.5
parent: 2
type: Transform
- - uid: 20715
+ - uid: 20718
components:
- pos: 73.5,39.5
parent: 2
type: Transform
- - uid: 20716
+ - uid: 20719
components:
- pos: 73.5,33.5
parent: 2
type: Transform
- - uid: 20717
+ - uid: 20720
components:
- pos: 71.5,33.5
parent: 2
type: Transform
- - uid: 20718
+ - uid: 20721
components:
- pos: 5.5,69.5
parent: 2
type: Transform
- - uid: 20719
+ - uid: 20722
components:
- pos: -8.5,69.5
parent: 2
type: Transform
- - uid: 20720
+ - uid: 20723
components:
- pos: -3.5,42.5
parent: 2
type: Transform
- - uid: 20721
+ - uid: 20724
components:
- pos: 78.5,46.5
parent: 2
type: Transform
- - uid: 20722
+ - uid: 20725
components:
- pos: 79.5,46.5
parent: 2
type: Transform
- - uid: 20723
+ - uid: 20726
components:
- pos: 80.5,46.5
parent: 2
type: Transform
- - uid: 20724
+ - uid: 20727
components:
- pos: 81.5,46.5
parent: 2
type: Transform
- - uid: 20725
+ - uid: 20728
components:
- pos: 82.5,46.5
parent: 2
type: Transform
- - uid: 20726
+ - uid: 20729
components:
- pos: 86.5,46.5
parent: 2
type: Transform
- - uid: 20727
+ - uid: 20730
components:
- pos: 87.5,46.5
parent: 2
type: Transform
- - uid: 20728
+ - uid: 20731
components:
- pos: 88.5,46.5
parent: 2
type: Transform
- - uid: 20729
+ - uid: 20732
components:
- pos: 89.5,46.5
parent: 2
type: Transform
- - uid: 20730
+ - uid: 20733
components:
- pos: 90.5,46.5
parent: 2
type: Transform
- - uid: 20731
+ - uid: 20734
components:
- pos: 93.5,41.5
parent: 2
type: Transform
- - uid: 20732
+ - uid: 20735
components:
- pos: 93.5,40.5
parent: 2
type: Transform
- - uid: 20733
+ - uid: 20736
components:
- pos: 93.5,39.5
parent: 2
type: Transform
- - uid: 20734
+ - uid: 20737
components:
- pos: 93.5,38.5
parent: 2
type: Transform
- - uid: 20735
+ - uid: 20738
components:
- pos: 93.5,37.5
parent: 2
type: Transform
- - uid: 20736
+ - uid: 20739
components:
- pos: 93.5,36.5
parent: 2
type: Transform
- - uid: 20737
+ - uid: 20740
components:
- pos: 93.5,35.5
parent: 2
type: Transform
- - uid: 20738
+ - uid: 20741
components:
- pos: 93.5,34.5
parent: 2
type: Transform
- - uid: 20739
+ - uid: 20742
components:
- pos: 93.5,33.5
parent: 2
type: Transform
- - uid: 20740
+ - uid: 20743
components:
- pos: 93.5,32.5
parent: 2
type: Transform
- - uid: 20741
+ - uid: 20744
components:
- pos: 93.5,31.5
parent: 2
type: Transform
- - uid: 20742
+ - uid: 20745
components:
- pos: 93.5,30.5
parent: 2
type: Transform
- - uid: 20743
+ - uid: 20746
components:
- pos: 90.5,26.5
parent: 2
type: Transform
- - uid: 20744
+ - uid: 20747
components:
- pos: 89.5,26.5
parent: 2
type: Transform
- - uid: 20745
+ - uid: 20748
components:
- pos: 88.5,26.5
parent: 2
type: Transform
- - uid: 20746
+ - uid: 20749
components:
- pos: 87.5,26.5
parent: 2
type: Transform
- - uid: 20747
+ - uid: 20750
components:
- pos: 86.5,26.5
parent: 2
type: Transform
- - uid: 20748
+ - uid: 20751
components:
- pos: 85.5,26.5
parent: 2
type: Transform
- - uid: 20749
+ - uid: 20752
components:
- pos: 81.5,26.5
parent: 2
type: Transform
- - uid: 20750
+ - uid: 20753
components:
- pos: 80.5,26.5
parent: 2
type: Transform
- - uid: 20751
+ - uid: 20754
components:
- pos: 79.5,26.5
parent: 2
type: Transform
- - uid: 20752
+ - uid: 20755
components:
- pos: 78.5,26.5
parent: 2
type: Transform
- - uid: 20753
+ - uid: 20756
components:
- pos: 77.5,26.5
parent: 2
type: Transform
- - uid: 20754
+ - uid: 20757
components:
- pos: 70.5,29.5
parent: 2
type: Transform
- - uid: 20755
+ - uid: 20758
components:
- pos: 71.5,29.5
parent: 2
type: Transform
- - uid: 20756
+ - uid: 20759
components:
- pos: 72.5,29.5
parent: 2
type: Transform
- - uid: 20757
+ - uid: 20760
components:
- pos: 73.5,29.5
parent: 2
type: Transform
- - uid: 20758
+ - uid: 20761
components:
- pos: 74.5,29.5
parent: 2
type: Transform
- - uid: 20759
+ - uid: 20762
components:
- pos: -33.5,40.5
parent: 2
type: Transform
- - uid: 20760
+ - uid: 20763
components:
- pos: -32.5,40.5
parent: 2
type: Transform
- - uid: 20761
+ - uid: 20764
components:
- pos: -32.5,37.5
parent: 2
type: Transform
- - uid: 20762
+ - uid: 20765
components:
- pos: -16.5,55.5
parent: 2
type: Transform
- - uid: 20763
+ - uid: 20766
components:
- pos: -16.5,56.5
parent: 2
type: Transform
- - uid: 20764
+ - uid: 20767
components:
- pos: -14.5,56.5
parent: 2
type: Transform
- - uid: 20765
+ - uid: 20768
components:
- pos: -14.5,55.5
parent: 2
type: Transform
- - uid: 20766
+ - uid: 20769
components:
- pos: -20.5,62.5
parent: 2
type: Transform
- - uid: 20767
+ - uid: 20770
components:
- pos: -14.5,62.5
parent: 2
type: Transform
- - uid: 20768
+ - uid: 20771
components:
- pos: -11.5,69.5
parent: 2
type: Transform
- - uid: 20769
+ - uid: 20772
components:
- pos: -11.5,68.5
parent: 2
type: Transform
- - uid: 20770
+ - uid: 20773
components:
- pos: -11.5,67.5
parent: 2
type: Transform
- - uid: 20771
+ - uid: 20774
components:
- pos: -11.5,73.5
parent: 2
type: Transform
- - uid: 20772
+ - uid: 20775
components:
- pos: -14.5,73.5
parent: 2
type: Transform
- - uid: 20773
+ - uid: 20776
components:
- pos: -20.5,73.5
parent: 2
type: Transform
- - uid: 20774
+ - uid: 20777
components:
- pos: -23.5,73.5
parent: 2
type: Transform
- - uid: 20775
+ - uid: 20778
components:
- pos: -23.5,63.5
parent: 2
type: Transform
- - uid: 20776
+ - uid: 20779
components:
- pos: -23.5,62.5
parent: 2
type: Transform
- - uid: 20777
+ - uid: 20780
components:
- pos: -23.5,61.5
parent: 2
type: Transform
- - uid: 20778
+ - uid: 20781
components:
- rot: 1.5707963267948966 rad
pos: 39.5,52.5
parent: 2
type: Transform
- - uid: 20779
+ - uid: 20782
components:
- rot: 3.141592653589793 rad
pos: -11.5,51.5
parent: 2
type: Transform
- - uid: 20780
+ - uid: 20783
components:
- rot: 3.141592653589793 rad
pos: -11.5,53.5
parent: 2
type: Transform
- - uid: 20781
+ - uid: 20784
components:
- rot: 3.141592653589793 rad
pos: -5.5,47.5
parent: 2
type: Transform
- - uid: 20782
+ - uid: 20785
components:
- rot: 3.141592653589793 rad
pos: -3.5,47.5
parent: 2
type: Transform
- - uid: 20783
+ - uid: 20786
components:
- rot: 3.141592653589793 rad
pos: -5.5,57.5
parent: 2
type: Transform
- - uid: 20784
+ - uid: 20787
components:
- rot: 3.141592653589793 rad
pos: -7.5,57.5
parent: 2
type: Transform
- - uid: 20785
+ - uid: 20788
components:
- rot: 3.141592653589793 rad
pos: -20.5,67.5
parent: 2
type: Transform
- - uid: 20786
+ - uid: 20789
components:
- rot: -1.5707963267948966 rad
pos: -26.5,54.5
parent: 2
type: Transform
- - uid: 20787
+ - uid: 20790
components:
- rot: -1.5707963267948966 rad
pos: -26.5,53.5
parent: 2
type: Transform
- - uid: 20788
+ - uid: 20791
components:
- pos: 46.5,43.5
parent: 2
type: Transform
- - uid: 20789
+ - uid: 20792
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-88.5
parent: 2
type: Transform
- - uid: 20790
+ - uid: 20793
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-82.5
parent: 2
type: Transform
- - uid: 20791
+ - uid: 20794
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-82.5
parent: 2
type: Transform
- - uid: 20792
+ - uid: 20795
components:
- pos: -26.5,-97.5
parent: 2
type: Transform
- - uid: 20793
+ - uid: 20796
components:
- pos: -18.5,-97.5
parent: 2
type: Transform
- - uid: 20794
+ - uid: 20797
components:
- pos: -21.5,-94.5
parent: 2
type: Transform
- - uid: 20795
+ - uid: 20798
components:
- pos: -22.5,-94.5
parent: 2
type: Transform
- - uid: 20796
+ - uid: 20799
components:
- pos: -23.5,-94.5
parent: 2
type: Transform
- - uid: 20797
+ - uid: 20800
components:
- pos: -3.5,-97.5
parent: 2
type: Transform
- - uid: 20798
+ - uid: 20801
components:
- pos: -3.5,-98.5
parent: 2
type: Transform
- - uid: 20799
+ - uid: 20802
components:
- pos: -5.5,-101.5
parent: 2
type: Transform
- - uid: 20800
+ - uid: 20803
components:
- pos: -6.5,-101.5
parent: 2
type: Transform
- - uid: 20801
+ - uid: 20804
components:
- pos: -8.5,-101.5
parent: 2
type: Transform
- - uid: 20802
+ - uid: 20805
components:
- pos: -9.5,-101.5
parent: 2
type: Transform
- - uid: 20803
+ - uid: 20806
components:
- rot: 3.141592653589793 rad
pos: -44.5,-89.5
parent: 2
type: Transform
- - uid: 20804
+ - uid: 20807
components:
- rot: 3.141592653589793 rad
pos: -44.5,-90.5
parent: 2
type: Transform
- - uid: 20805
+ - uid: 20808
components:
- pos: -36.5,-100.5
parent: 2
type: Transform
- - uid: 20806
+ - uid: 20809
components:
- pos: -21.5,-101.5
parent: 2
type: Transform
- - uid: 20807
+ - uid: 20810
components:
- pos: -34.5,-100.5
parent: 2
type: Transform
- - uid: 20808
+ - uid: 20811
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-89.5
parent: 2
type: Transform
- - uid: 20809
+ - uid: 20812
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-90.5
parent: 2
type: Transform
- - uid: 20810
+ - uid: 20813
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-95.5
parent: 2
type: Transform
- - uid: 20811
+ - uid: 20814
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-96.5
parent: 2
type: Transform
- - uid: 20812
+ - uid: 20815
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-98.5
parent: 2
type: Transform
- - uid: 20813
+ - uid: 20816
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-98.5
parent: 2
type: Transform
- - uid: 20814
+ - uid: 20817
components:
- pos: -23.5,-101.5
parent: 2
type: Transform
- - uid: 20815
+ - uid: 20818
components:
- pos: -22.5,-101.5
parent: 2
type: Transform
- - uid: 20816
+ - uid: 20819
components:
- rot: 3.141592653589793 rad
pos: -73.5,-27.5
parent: 2
type: Transform
- - uid: 20817
+ - uid: 20820
components:
- pos: 78.5,-38.5
parent: 2
type: Transform
- - uid: 20818
+ - uid: 20821
components:
- pos: 76.5,-35.5
parent: 2
type: Transform
- - uid: 20819
+ - uid: 20822
components:
- pos: 77.5,-35.5
parent: 2
type: Transform
- - uid: 20820
+ - uid: 20823
components:
- pos: 78.5,-35.5
parent: 2
type: Transform
- - uid: 20821
+ - uid: 20824
components:
- pos: 79.5,-35.5
parent: 2
type: Transform
- - uid: 20822
+ - uid: 20825
components:
- pos: 77.5,-32.5
parent: 2
type: Transform
- - uid: 20823
+ - uid: 20826
components:
- pos: 78.5,-32.5
parent: 2
type: Transform
- - uid: 20824
+ - uid: 20827
components:
- pos: 78.5,-44.5
parent: 2
type: Transform
- - uid: 20825
+ - uid: 20828
components:
- pos: 78.5,-45.5
parent: 2
type: Transform
- - uid: 20826
+ - uid: 20829
components:
- pos: 69.5,-42.5
parent: 2
type: Transform
- - uid: 20827
+ - uid: 20830
components:
- pos: 70.5,-42.5
parent: 2
type: Transform
- - uid: 20828
+ - uid: 20831
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-50.5
parent: 2
type: Transform
- - uid: 20829
+ - uid: 20832
components:
- pos: 63.5,-61.5
parent: 2
type: Transform
- - uid: 20830
+ - uid: 20833
components:
- pos: 62.5,-61.5
parent: 2
type: Transform
- - uid: 20831
+ - uid: 20834
components:
- pos: 61.5,-61.5
parent: 2
type: Transform
- - uid: 20832
+ - uid: 20835
components:
- pos: 52.5,-61.5
parent: 2
type: Transform
- - uid: 20833
+ - uid: 20836
components:
- pos: 50.5,-64.5
parent: 2
type: Transform
- - uid: 20834
+ - uid: 20837
components:
- pos: 3.5,-28.5
parent: 2
type: Transform
- - uid: 20835
+ - uid: 20838
components:
- pos: 1.5,-30.5
parent: 2
type: Transform
- - uid: 20836
+ - uid: 20839
components:
- pos: 61.5,-70.5
parent: 2
type: Transform
- - uid: 20837
+ - uid: 20840
components:
- pos: 5.5,-28.5
parent: 2
type: Transform
- - uid: 20838
+ - uid: 20841
components:
- pos: 1.5,-31.5
parent: 2
type: Transform
- - uid: 20839
+ - uid: 20842
components:
- pos: 9.5,-31.5
parent: 2
type: Transform
- - uid: 20840
+ - uid: 20843
components:
- pos: 9.5,-34.5
parent: 2
type: Transform
- - uid: 20841
+ - uid: 20844
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-36.5
parent: 2
type: Transform
- - uid: 20842
+ - uid: 20845
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-38.5
parent: 2
type: Transform
- - uid: 20843
+ - uid: 20846
components:
- rot: 3.141592653589793 rad
pos: 68.5,-39.5
parent: 2
type: Transform
- - uid: 20844
+ - uid: 20847
components:
- rot: 3.141592653589793 rad
pos: 66.5,-39.5
parent: 2
type: Transform
- - uid: 20845
+ - uid: 20848
components:
- rot: 3.141592653589793 rad
pos: 73.5,-30.5
parent: 2
type: Transform
- - uid: 20846
+ - uid: 20849
components:
- rot: 3.141592653589793 rad
pos: 71.5,-27.5
parent: 2
type: Transform
- - uid: 20847
+ - uid: 20850
components:
- rot: 3.141592653589793 rad
pos: 73.5,-27.5
parent: 2
type: Transform
- - uid: 20848
+ - uid: 20851
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-60.5
parent: 2
type: Transform
- - uid: 20849
+ - uid: 20852
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-57.5
parent: 2
type: Transform
- - uid: 20850
+ - uid: 20853
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-60.5
parent: 2
type: Transform
- - uid: 20851
+ - uid: 20854
components:
- rot: 3.141592653589793 rad
pos: 31.5,-33.5
parent: 2
type: Transform
- - uid: 20852
+ - uid: 20855
components:
- rot: 3.141592653589793 rad
pos: 19.5,-33.5
parent: 2
type: Transform
- - uid: 20853
+ - uid: 20856
components:
- pos: 60.5,-70.5
parent: 2
type: Transform
- - uid: 20854
+ - uid: 20857
components:
- pos: 2.5,-36.5
parent: 2
type: Transform
- - uid: 20855
+ - uid: 20858
components:
- pos: 51.5,-68.5
parent: 2
type: Transform
- - uid: 20856
+ - uid: 20859
components:
- pos: 50.5,-68.5
parent: 2
type: Transform
- - uid: 20857
+ - uid: 20860
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-44.5
parent: 2
type: Transform
- - uid: 20858
+ - uid: 20861
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-44.5
parent: 2
type: Transform
- - uid: 20859
+ - uid: 20862
components:
- rot: -1.5707963267948966 rad
pos: 16.5,38.5
parent: 2
type: Transform
- - uid: 20860
+ - uid: 20863
components:
- rot: -1.5707963267948966 rad
pos: 18.5,37.5
parent: 2
type: Transform
- - uid: 20861
+ - uid: 20864
components:
- rot: -1.5707963267948966 rad
pos: 14.5,37.5
parent: 2
type: Transform
- - uid: 20862
+ - uid: 20865
components:
- pos: 62.5,-70.5
parent: 2
type: Transform
- - uid: 20863
+ - uid: 20866
components:
- pos: 71.5,-64.5
parent: 2
type: Transform
- - uid: 20864
+ - uid: 20867
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-68.5
parent: 2
type: Transform
- - uid: 20865
+ - uid: 20868
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-68.5
parent: 2
type: Transform
- - uid: 20866
+ - uid: 20869
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-68.5
parent: 2
type: Transform
- - uid: 20867
+ - uid: 20870
components:
- pos: 54.5,-25.5
parent: 2
type: Transform
- - uid: 20868
+ - uid: 20871
components:
- pos: 56.5,-25.5
parent: 2
type: Transform
- - uid: 20869
+ - uid: 20872
components:
- pos: 58.5,-25.5
parent: 2
type: Transform
- - uid: 20870
+ - uid: 20873
components:
- pos: 68.5,-57.5
parent: 2
type: Transform
- - uid: 20871
+ - uid: 20874
components:
- pos: 71.5,-54.5
parent: 2
type: Transform
- - uid: 20872
+ - uid: 20875
components:
- pos: 70.5,-54.5
parent: 2
type: Transform
- - uid: 20873
+ - uid: 20876
components:
- pos: -12.5,43.5
parent: 2
type: Transform
- - uid: 20874
+ - uid: 20877
components:
- pos: -8.5,43.5
parent: 2
type: Transform
- - uid: 20875
+ - uid: 20878
components:
- pos: 73.5,46.5
parent: 2
type: Transform
- - uid: 20876
+ - uid: 20879
components:
- pos: 72.5,46.5
parent: 2
type: Transform
- - uid: 20877
+ - uid: 20880
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-50.5
parent: 2
type: Transform
- - uid: 20878
+ - uid: 20881
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-18.5
parent: 2
type: Transform
- - uid: 20879
+ - uid: 20882
components:
- pos: 36.5,18.5
parent: 2
type: Transform
- - uid: 20880
+ - uid: 20883
components:
- pos: 35.5,18.5
parent: 2
type: Transform
- - uid: 20881
+ - uid: 20884
components:
- pos: 34.5,18.5
parent: 2
type: Transform
- - uid: 20882
+ - uid: 20885
components:
- rot: 3.141592653589793 rad
pos: 71.5,-30.5
parent: 2
type: Transform
- - uid: 20883
+ - uid: 20886
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-87.5
parent: 2
type: Transform
- - uid: 20884
+ - uid: 20887
components:
- pos: -31.5,72.5
parent: 2
type: Transform
- - uid: 20885
+ - uid: 20888
components:
- pos: -30.5,72.5
parent: 2
type: Transform
- - uid: 20886
+ - uid: 20889
components:
- pos: -29.5,72.5
parent: 2
type: Transform
- - uid: 20887
+ - uid: 20890
components:
- pos: -28.5,72.5
parent: 2
type: Transform
- - uid: 20888
+ - uid: 20891
components:
- pos: -27.5,72.5
parent: 2
type: Transform
- - uid: 20889
+ - uid: 20892
components:
- pos: -26.5,72.5
parent: 2
type: Transform
- - uid: 20890
+ - uid: 20893
components:
- pos: -40.5,-62.5
parent: 2
type: Transform
- - uid: 20891
+ - uid: 20894
components:
- pos: -41.5,-62.5
parent: 2
type: Transform
- - uid: 20892
+ - uid: 20895
components:
- pos: -47.5,-34.5
parent: 2
type: Transform
- - uid: 20893
+ - uid: 20896
components:
- pos: -47.5,-35.5
parent: 2
type: Transform
- - uid: 20894
+ - uid: 20897
components:
- pos: 46.5,-78.5
parent: 2
type: Transform
- - uid: 20895
+ - uid: 20898
components:
- pos: 46.5,-77.5
parent: 2
type: Transform
- - uid: 20896
+ - uid: 20899
components:
- pos: 46.5,-79.5
parent: 2
type: Transform
- - uid: 20897
+ - uid: 20900
components:
- rot: 3.141592653589793 rad
pos: 24.5,-80.5
parent: 2
type: Transform
- - uid: 20898
+ - uid: 20901
components:
- rot: 3.141592653589793 rad
pos: 28.5,-89.5
parent: 2
type: Transform
- - uid: 20899
+ - uid: 20902
components:
- rot: 3.141592653589793 rad
pos: 25.5,-75.5
parent: 2
type: Transform
- - uid: 20900
+ - uid: 20903
components:
- rot: 3.141592653589793 rad
pos: 26.5,-75.5
parent: 2
type: Transform
- - uid: 20901
+ - uid: 20904
components:
- rot: 3.141592653589793 rad
pos: 28.5,-90.5
parent: 2
type: Transform
- - uid: 20902
+ - uid: 20905
components:
- rot: 3.141592653589793 rad
pos: 14.5,-78.5
parent: 2
type: Transform
- - uid: 20903
+ - uid: 20906
components:
- rot: 3.141592653589793 rad
pos: 13.5,-78.5
parent: 2
type: Transform
- - uid: 20904
+ - uid: 20907
components:
- rot: 3.141592653589793 rad
pos: 25.5,-86.5
parent: 2
type: Transform
- - uid: 20905
+ - uid: 20908
components:
- rot: 3.141592653589793 rad
pos: 25.5,-67.5
parent: 2
type: Transform
- - uid: 20906
+ - uid: 20909
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-74.5
parent: 2
type: Transform
- - uid: 20907
+ - uid: 20910
components:
- rot: 3.141592653589793 rad
pos: 26.5,-67.5
parent: 2
type: Transform
- - uid: 20908
+ - uid: 20911
components:
- rot: 3.141592653589793 rad
pos: 17.5,-78.5
parent: 2
type: Transform
- - uid: 20909
+ - uid: 20912
components:
- rot: 3.141592653589793 rad
pos: 16.5,-78.5
parent: 2
type: Transform
- - uid: 20910
+ - uid: 20913
components:
- rot: 3.141592653589793 rad
pos: 14.5,-88.5
parent: 2
type: Transform
- - uid: 20911
+ - uid: 20914
components:
- rot: 3.141592653589793 rad
pos: 13.5,-88.5
parent: 2
type: Transform
- - uid: 20912
+ - uid: 20915
components:
- rot: 3.141592653589793 rad
pos: 17.5,-88.5
parent: 2
type: Transform
- - uid: 20913
+ - uid: 20916
components:
- rot: 3.141592653589793 rad
pos: 16.5,-88.5
parent: 2
type: Transform
- - uid: 20914
+ - uid: 20917
components:
- rot: 3.141592653589793 rad
pos: 24.5,-86.5
parent: 2
type: Transform
- - uid: 20915
+ - uid: 20918
components:
- rot: 3.141592653589793 rad
pos: 51.5,-72.5
parent: 2
type: Transform
- - uid: 20916
+ - uid: 20919
components:
- rot: 3.141592653589793 rad
pos: 51.5,-71.5
parent: 2
type: Transform
- - uid: 20917
+ - uid: 20920
components:
- pos: 9.5,-18.5
parent: 2
type: Transform
- - uid: 20918
+ - uid: 20921
components:
- rot: 3.141592653589793 rad
pos: 6.5,-22.5
parent: 2
type: Transform
- - uid: 20919
+ - uid: 20922
components:
- rot: 3.141592653589793 rad
pos: 6.5,-23.5
parent: 2
type: Transform
- - uid: 20920
+ - uid: 20923
components:
- pos: 45.5,9.5
parent: 2
type: Transform
- - uid: 20921
+ - uid: 20924
components:
- pos: 48.5,7.5
parent: 2
type: Transform
- - uid: 20922
+ - uid: 20925
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-74.5
parent: 2
type: Transform
- - uid: 20923
+ - uid: 20926
components:
- pos: -76.5,-25.5
parent: 2
type: Transform
- - uid: 20924
+ - uid: 20927
components:
- pos: -76.5,-12.5
parent: 2
type: Transform
- - uid: 20925
+ - uid: 20928
components:
- rot: -1.5707963267948966 rad
pos: 31.5,35.5
parent: 2
type: Transform
- - uid: 20926
+ - uid: 20929
components:
- rot: -1.5707963267948966 rad
pos: 30.5,35.5
parent: 2
type: Transform
- - uid: 20927
+ - uid: 20930
components:
- rot: -1.5707963267948966 rad
pos: 29.5,35.5
parent: 2
type: Transform
- - uid: 20928
+ - uid: 20931
components:
- rot: -1.5707963267948966 rad
pos: 28.5,35.5
parent: 2
type: Transform
- - uid: 20929
+ - uid: 20932
components:
- rot: -1.5707963267948966 rad
pos: 27.5,35.5
parent: 2
type: Transform
- - uid: 20930
+ - uid: 20933
components:
- pos: 67.5,-32.5
parent: 2
type: Transform
- - uid: 20931
+ - uid: 20934
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-51.5
parent: 2
type: Transform
- - uid: 20932
+ - uid: 20935
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-74.5
parent: 2
type: Transform
- - uid: 20933
+ - uid: 20936
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-74.5
parent: 2
type: Transform
- - uid: 20934
+ - uid: 20937
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-74.5
parent: 2
type: Transform
- - uid: 20935
+ - uid: 20938
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-54.5
parent: 2
type: Transform
- - uid: 20936
+ - uid: 20939
components:
- rot: 1.5707963267948966 rad
pos: -8.5,13.5
parent: 2
type: Transform
- - uid: 20937
+ - uid: 20940
components:
- rot: 1.5707963267948966 rad
pos: -78.5,-56.5
parent: 2
type: Transform
- - uid: 20938
+ - uid: 20941
components:
- pos: -72.5,-50.5
parent: 2
type: Transform
- - uid: 20939
+ - uid: 20942
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-56.5
parent: 2
type: Transform
- - uid: 20940
+ - uid: 20943
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-53.5
parent: 2
type: Transform
- - uid: 20941
+ - uid: 20944
components:
- rot: 1.5707963267948966 rad
pos: -78.5,-51.5
parent: 2
type: Transform
- - uid: 20942
+ - uid: 20945
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-57.5
parent: 2
type: Transform
- - uid: 20943
+ - uid: 20946
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-40.5
parent: 2
type: Transform
- - uid: 20944
+ - uid: 20947
components:
- pos: -70.5,-47.5
parent: 2
type: Transform
- - uid: 20945
+ - uid: 20948
components:
- pos: -69.5,-47.5
parent: 2
type: Transform
- - uid: 20946
+ - uid: 20949
components:
- pos: -68.5,-47.5
parent: 2
type: Transform
- - uid: 20947
+ - uid: 20950
components:
- pos: -64.5,-43.5
parent: 2
type: Transform
- - uid: 20948
+ - uid: 20951
components:
- pos: -82.5,-28.5
parent: 2
type: Transform
- - uid: 20949
+ - uid: 20952
components:
- pos: -82.5,-29.5
parent: 2
type: Transform
- - uid: 20950
+ - uid: 20953
components:
- pos: -82.5,-30.5
parent: 2
type: Transform
- - uid: 20951
+ - uid: 20954
components:
- pos: -82.5,-31.5
parent: 2
type: Transform
- - uid: 20952
+ - uid: 20955
components:
- pos: -82.5,-32.5
parent: 2
type: Transform
- - uid: 20953
+ - uid: 20956
components:
- pos: -82.5,-33.5
parent: 2
type: Transform
- - uid: 20954
+ - uid: 20957
components:
- pos: -82.5,-34.5
parent: 2
type: Transform
- - uid: 20955
+ - uid: 20958
components:
- pos: -82.5,-35.5
parent: 2
type: Transform
- - uid: 20956
+ - uid: 20959
components:
- pos: -82.5,-36.5
parent: 2
type: Transform
- - uid: 20957
+ - uid: 20960
components:
- pos: -82.5,-37.5
parent: 2
type: Transform
- - uid: 20958
+ - uid: 20961
components:
- pos: -82.5,-38.5
parent: 2
type: Transform
- - uid: 20959
+ - uid: 20962
components:
- pos: -82.5,-39.5
parent: 2
type: Transform
- - uid: 20960
+ - uid: 20963
components:
- pos: -82.5,-40.5
parent: 2
type: Transform
- - uid: 20961
+ - uid: 20964
components:
- pos: -82.5,-41.5
parent: 2
type: Transform
- - uid: 20962
+ - uid: 20965
components:
- pos: -82.5,-42.5
parent: 2
type: Transform
- - uid: 20963
+ - uid: 20966
components:
- pos: -82.5,-43.5
parent: 2
type: Transform
- - uid: 20964
+ - uid: 20967
components:
- pos: -82.5,-44.5
parent: 2
type: Transform
- - uid: 20965
+ - uid: 20968
components:
- pos: -82.5,-45.5
parent: 2
type: Transform
- - uid: 20966
+ - uid: 20969
components:
- pos: -82.5,-46.5
parent: 2
type: Transform
- - uid: 20967
+ - uid: 20970
components:
- pos: -82.5,-47.5
parent: 2
type: Transform
- - uid: 20968
+ - uid: 20971
components:
- pos: -82.5,-48.5
parent: 2
type: Transform
- - uid: 20969
+ - uid: 20972
components:
- pos: -82.5,-27.5
parent: 2
type: Transform
- - uid: 20970
+ - uid: 20973
components:
- pos: -82.5,-26.5
parent: 2
type: Transform
- - uid: 20971
+ - uid: 20974
components:
- pos: -81.5,-26.5
parent: 2
type: Transform
- - uid: 20972
+ - uid: 20975
components:
- rot: 1.5707963267948966 rad
pos: -15.5,9.5
parent: 2
type: Transform
- - uid: 20973
+ - uid: 20976
components:
- pos: -51.5,-13.5
parent: 2
type: Transform
- - uid: 20974
+ - uid: 20977
components:
- rot: 1.5707963267948966 rad
pos: -14.5,9.5
parent: 2
type: Transform
- - uid: 20975
+ - uid: 20978
components:
- rot: 3.141592653589793 rad
pos: -61.5,-44.5
parent: 2
type: Transform
- - uid: 20976
+ - uid: 20979
components:
- rot: 1.5707963267948966 rad
pos: -13.5,9.5
parent: 2
type: Transform
- - uid: 20977
+ - uid: 20980
components:
- pos: -60.5,-38.5
parent: 2
type: Transform
- - uid: 20978
+ - uid: 20981
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-38.5
parent: 2
type: Transform
- - uid: 20979
+ - uid: 20982
components:
- pos: -52.5,-38.5
parent: 2
type: Transform
- - uid: 20980
+ - uid: 20983
components:
- rot: 3.141592653589793 rad
pos: -78.5,-45.5
parent: 2
type: Transform
- - uid: 20981
+ - uid: 20984
components:
- pos: -42.5,-37.5
parent: 2
type: Transform
- - uid: 20982
+ - uid: 20985
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-31.5
parent: 2
type: Transform
- - uid: 20983
+ - uid: 20986
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-32.5
parent: 2
type: Transform
- - uid: 20984
+ - uid: 20987
components:
- rot: 3.141592653589793 rad
pos: 20.5,-34.5
parent: 2
type: Transform
- - uid: 20985
+ - uid: 20988
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-3.5
parent: 2
type: Transform
- - uid: 20986
+ - uid: 20989
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-3.5
parent: 2
type: Transform
- - uid: 20987
+ - uid: 20990
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 20988
+ - uid: 20991
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-40.5
parent: 2
type: Transform
- - uid: 20989
+ - uid: 20992
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-40.5
parent: 2
type: Transform
- - uid: 20990
+ - uid: 20993
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-40.5
parent: 2
type: Transform
- - uid: 20991
+ - uid: 20994
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-40.5
parent: 2
type: Transform
- - uid: 20992
+ - uid: 20995
components:
- pos: 8.5,27.5
parent: 2
type: Transform
- - uid: 20993
+ - uid: 20996
components:
- pos: 10.5,29.5
parent: 2
type: Transform
- - uid: 20994
+ - uid: 20997
components:
- pos: 10.5,27.5
parent: 2
type: Transform
- - uid: 20995
+ - uid: 20998
components:
- pos: 9.5,27.5
parent: 2
type: Transform
- - uid: 20996
+ - uid: 20999
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-40.5
parent: 2
type: Transform
- - uid: 20997
+ - uid: 21000
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-42.5
parent: 2
type: Transform
- - uid: 20998
+ - uid: 21001
components:
- pos: -29.5,-63.5
parent: 2
type: Transform
- - uid: 20999
+ - uid: 21002
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-13.5
parent: 2
type: Transform
- - uid: 21000
+ - uid: 21003
components:
- rot: 3.141592653589793 rad
pos: -21.5,-91.5
parent: 2
type: Transform
- - uid: 21001
+ - uid: 21004
components:
- rot: 3.141592653589793 rad
pos: -23.5,-91.5
parent: 2
type: Transform
- - uid: 21002
+ - uid: 21005
components:
- rot: 1.5707963267948966 rad
pos: -38.5,17.5
parent: 2
type: Transform
- - uid: 21003
+ - uid: 21006
components:
- rot: 3.141592653589793 rad
pos: -27.5,-90.5
parent: 2
type: Transform
- - uid: 21004
+ - uid: 21007
components:
- rot: -1.5707963267948966 rad
pos: 55.5,62.5
parent: 2
type: Transform
- - uid: 21005
+ - uid: 21008
components:
- rot: -1.5707963267948966 rad
pos: 54.5,62.5
parent: 2
type: Transform
- - uid: 21006
+ - uid: 21009
components:
- rot: -1.5707963267948966 rad
pos: 53.5,62.5
parent: 2
type: Transform
- - uid: 21007
+ - uid: 21010
components:
- rot: -1.5707963267948966 rad
pos: 49.5,58.5
parent: 2
type: Transform
- - uid: 21008
+ - uid: 21011
components:
- rot: -1.5707963267948966 rad
pos: 49.5,57.5
parent: 2
type: Transform
- - uid: 21009
+ - uid: 21012
components:
- rot: -1.5707963267948966 rad
pos: 49.5,56.5
parent: 2
type: Transform
- - uid: 21010
+ - uid: 21013
components:
- rot: -1.5707963267948966 rad
pos: 59.5,58.5
parent: 2
type: Transform
- - uid: 21011
+ - uid: 21014
components:
- rot: -1.5707963267948966 rad
pos: 59.5,57.5
parent: 2
type: Transform
- - uid: 21012
+ - uid: 21015
components:
- rot: -1.5707963267948966 rad
pos: 59.5,56.5
parent: 2
type: Transform
- - uid: 21013
+ - uid: 21016
components:
- rot: 3.141592653589793 rad
pos: -22.5,-91.5
parent: 2
type: Transform
- - uid: 21014
+ - uid: 21017
components:
- rot: 3.141592653589793 rad
pos: 39.5,67.5
parent: 2
type: Transform
- - uid: 21015
+ - uid: 21018
components:
- rot: 3.141592653589793 rad
pos: 35.5,63.5
parent: 2
type: Transform
- - uid: 21016
+ - uid: 21019
components:
- rot: 3.141592653589793 rad
pos: 43.5,63.5
parent: 2
type: Transform
- - uid: 21017
+ - uid: 21020
components:
- rot: 3.141592653589793 rad
pos: 78.5,-43.5
parent: 2
type: Transform
- - uid: 21018
+ - uid: 21021
components:
- rot: 3.141592653589793 rad
pos: 78.5,-47.5
parent: 2
type: Transform
- - uid: 21019
+ - uid: 21022
components:
- rot: 1.5707963267948966 rad
pos: -37.5,17.5
parent: 2
type: Transform
- - uid: 21020
+ - uid: 21023
components:
- rot: 3.141592653589793 rad
pos: -57.5,-87.5
parent: 2
type: Transform
- - uid: 21021
+ - uid: 21024
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-53.5
parent: 2
type: Transform
- - uid: 21022
+ - uid: 21025
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-54.5
parent: 2
type: Transform
- - uid: 21023
+ - uid: 21026
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-52.5
parent: 2
type: Transform
- - uid: 21024
+ - uid: 21027
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-55.5
parent: 2
type: Transform
- - uid: 21025
+ - uid: 21028
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-85.5
parent: 2
type: Transform
- - uid: 21026
+ - uid: 21029
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-89.5
parent: 2
type: Transform
+ - uid: 21030
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 21031
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 21032
+ components:
+ - pos: -27.5,-20.5
+ parent: 2
+ type: Transform
+ - uid: 21033
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -21.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 21034
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -21.5,18.5
+ parent: 2
+ type: Transform
- proto: GrilleBroken
entities:
- - uid: 21027
+ - uid: 21035
components:
- rot: 3.141592653589793 rad
pos: -2.5,-71.5
parent: 2
type: Transform
- - uid: 21028
+ - uid: 21036
components:
- pos: -2.5,-71.5
parent: 2
type: Transform
- - uid: 21029
+ - uid: 21037
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-83.5
parent: 2
type: Transform
- - uid: 21030
+ - uid: 21038
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-83.5
parent: 2
type: Transform
- - uid: 21031
+ - uid: 21039
components:
- rot: -1.5707963267948966 rad
pos: 2.5,49.5
parent: 2
type: Transform
- - uid: 21032
+ - uid: 21040
components:
- rot: 1.5707963267948966 rad
pos: 2.5,49.5
parent: 2
type: Transform
- - uid: 21033
+ - uid: 21041
components:
- rot: 3.141592653589793 rad
pos: 2.5,48.5
parent: 2
type: Transform
- - uid: 21034
+ - uid: 21042
components:
- pos: 2.5,48.5
parent: 2
type: Transform
- proto: GrilleDiagonal
entities:
- - uid: 21035
+ - uid: 21043
components:
- rot: 3.141592653589793 rad
pos: -1.5,-36.5
parent: 2
type: Transform
- - uid: 21036
+ - uid: 21044
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-30.5
parent: 2
type: Transform
- - uid: 21037
+ - uid: 21045
components:
- pos: -50.5,-88.5
parent: 2
type: Transform
- - uid: 21038
+ - uid: 21046
components:
- rot: -1.5707963267948966 rad
pos: 59.5,59.5
parent: 2
type: Transform
- - uid: 21039
+ - uid: 21047
components:
- rot: 3.141592653589793 rad
pos: 59.5,55.5
parent: 2
type: Transform
- - uid: 21040
+ - uid: 21048
components:
- pos: 49.5,59.5
parent: 2
type: Transform
- - uid: 21041
+ - uid: 21049
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-30.5
parent: 2
type: Transform
- - uid: 21042
+ - uid: 21050
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-91.5
parent: 2
type: Transform
- - uid: 21043
+ - uid: 21051
components:
- rot: 3.141592653589793 rad
pos: -18.5,-91.5
parent: 2
type: Transform
- - uid: 21044
+ - uid: 21052
components:
- rot: 3.141592653589793 rad
pos: 18.5,-88.5
parent: 2
type: Transform
- - uid: 21045
+ - uid: 21053
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-78.5
parent: 2
type: Transform
- - uid: 21046
+ - uid: 21054
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-88.5
parent: 2
type: Transform
- - uid: 21047
+ - uid: 21055
components:
- pos: 12.5,-78.5
parent: 2
type: Transform
- - uid: 21048
+ - uid: 21056
components:
- rot: -1.5707963267948966 rad
pos: 78.5,-42.5
parent: 2
type: Transform
- - uid: 21049
+ - uid: 21057
components:
- rot: 3.141592653589793 rad
pos: -1.5,-36.5
parent: 2
type: Transform
- - uid: 21050
+ - uid: 21058
components:
- rot: 3.141592653589793 rad
pos: -50.5,-89.5
parent: 2
type: Transform
- - uid: 21051
+ - uid: 21059
components:
- rot: 3.141592653589793 rad
pos: -49.5,-88.5
parent: 2
type: Transform
- - uid: 21052
+ - uid: 21060
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-86.5
parent: 2
type: Transform
- - uid: 21053
+ - uid: 21061
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-86.5
parent: 2
type: Transform
- - uid: 21054
+ - uid: 21062
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-85.5
parent: 2
type: Transform
- - uid: 21055
+ - uid: 21063
components:
- rot: 1.5707963267948966 rad
pos: 49.5,55.5
parent: 2
type: Transform
- - uid: 21056
+ - uid: 21064
components:
- pos: 52.5,62.5
parent: 2
type: Transform
- - uid: 21057
+ - uid: 21065
components:
- rot: -1.5707963267948966 rad
pos: 56.5,62.5
parent: 2
type: Transform
- - uid: 21058
+ - uid: 21066
components:
- rot: 1.5707963267948966 rad
pos: 38.5,59.5
parent: 2
type: Transform
- - uid: 21059
+ - uid: 21067
components:
- rot: -1.5707963267948966 rad
pos: 38.5,60.5
parent: 2
type: Transform
- - uid: 21060
+ - uid: 21068
components:
- rot: 1.5707963267948966 rad
pos: 37.5,60.5
parent: 2
type: Transform
- - uid: 21061
+ - uid: 21069
components:
- rot: -1.5707963267948966 rad
pos: 37.5,61.5
parent: 2
type: Transform
- - uid: 21062
+ - uid: 21070
components:
- rot: 1.5707963267948966 rad
pos: 36.5,61.5
parent: 2
type: Transform
- - uid: 21063
+ - uid: 21071
components:
- rot: -1.5707963267948966 rad
pos: 36.5,62.5
parent: 2
type: Transform
- - uid: 21064
+ - uid: 21072
components:
- rot: 1.5707963267948966 rad
pos: 35.5,62.5
parent: 2
type: Transform
- - uid: 21065
+ - uid: 21073
components:
- pos: 35.5,64.5
parent: 2
type: Transform
- - uid: 21066
+ - uid: 21074
components:
- rot: 3.141592653589793 rad
pos: 36.5,64.5
parent: 2
type: Transform
- - uid: 21067
+ - uid: 21075
components:
- pos: 36.5,65.5
parent: 2
type: Transform
- - uid: 21068
+ - uid: 21076
components:
- rot: 3.141592653589793 rad
pos: 37.5,65.5
parent: 2
type: Transform
- - uid: 21069
+ - uid: 21077
components:
- pos: 37.5,66.5
parent: 2
type: Transform
- - uid: 21070
+ - uid: 21078
components:
- rot: 3.141592653589793 rad
pos: 38.5,66.5
parent: 2
type: Transform
- - uid: 21071
+ - uid: 21079
components:
- pos: 38.5,67.5
parent: 2
type: Transform
- - uid: 21072
+ - uid: 21080
components:
- rot: -1.5707963267948966 rad
pos: 40.5,67.5
parent: 2
type: Transform
- - uid: 21073
+ - uid: 21081
components:
- rot: 1.5707963267948966 rad
pos: 40.5,66.5
parent: 2
type: Transform
- - uid: 21074
+ - uid: 21082
components:
- rot: -1.5707963267948966 rad
pos: 41.5,66.5
parent: 2
type: Transform
- - uid: 21075
+ - uid: 21083
components:
- rot: 1.5707963267948966 rad
pos: 41.5,65.5
parent: 2
type: Transform
- - uid: 21076
+ - uid: 21084
components:
- rot: -1.5707963267948966 rad
pos: 42.5,65.5
parent: 2
type: Transform
- - uid: 21077
+ - uid: 21085
components:
- rot: 1.5707963267948966 rad
pos: 42.5,64.5
parent: 2
type: Transform
- - uid: 21078
+ - uid: 21086
components:
- rot: -1.5707963267948966 rad
pos: 43.5,64.5
parent: 2
type: Transform
- - uid: 21079
+ - uid: 21087
components:
- rot: 3.141592653589793 rad
pos: 43.5,62.5
parent: 2
type: Transform
- - uid: 21080
+ - uid: 21088
components:
- pos: 42.5,62.5
parent: 2
type: Transform
- - uid: 21081
+ - uid: 21089
components:
- rot: 3.141592653589793 rad
pos: 42.5,61.5
parent: 2
type: Transform
- - uid: 21082
+ - uid: 21090
components:
- pos: 41.5,61.5
parent: 2
type: Transform
- - uid: 21083
+ - uid: 21091
components:
- rot: 3.141592653589793 rad
pos: 41.5,60.5
parent: 2
type: Transform
- - uid: 21084
+ - uid: 21092
components:
- pos: 40.5,60.5
parent: 2
type: Transform
- - uid: 21085
+ - uid: 21093
components:
- rot: 3.141592653589793 rad
pos: 40.5,59.5
parent: 2
type: Transform
- - uid: 21086
+ - uid: 21094
components:
- rot: 3.141592653589793 rad
pos: 78.5,-48.5
parent: 2
type: Transform
- - uid: 21087
+ - uid: 21095
components:
- pos: -79.5,-51.5
parent: 2
type: Transform
- - uid: 21088
+ - uid: 21096
components:
- rot: 3.141592653589793 rad
pos: -79.5,-52.5
parent: 2
type: Transform
- - uid: 21089
+ - uid: 21097
components:
- pos: -80.5,-52.5
parent: 2
type: Transform
- - uid: 21090
+ - uid: 21098
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-55.5
parent: 2
type: Transform
- - uid: 21091
+ - uid: 21099
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-55.5
parent: 2
type: Transform
- - uid: 21092
+ - uid: 21100
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-56.5
@@ -138043,7 +138064,7 @@ entities:
type: Transform
- proto: GrilleSpawner
entities:
- - uid: 21093
+ - uid: 21101
components:
- rot: 3.141592653589793 rad
pos: -47.5,-30.5
@@ -138051,87 +138072,94 @@ entities:
type: Transform
- proto: GunpetInstrument
entities:
- - uid: 21094
+ - uid: 21102
components:
- pos: 18.804333,-20.357145
parent: 2
type: Transform
- proto: GunSafeDisabler
entities:
- - uid: 21095
+ - uid: 21103
components:
- pos: 23.5,20.5
parent: 2
type: Transform
- proto: Handcuffs
entities:
- - uid: 21096
+ - uid: 21104
components:
- pos: -1.4479281,19.547018
parent: 2
type: Transform
- - uid: 21097
+ - uid: 21105
components:
- pos: -15.367192,-23.36869
parent: 2
type: Transform
- proto: HandheldHealthAnalyzer
entities:
- - uid: 21098
+ - uid: 21106
components:
- pos: 10.274347,-58.341446
parent: 2
type: Transform
- - uid: 21099
+ - uid: 21107
components:
- pos: 10.539972,-58.60707
parent: 2
type: Transform
- - uid: 21100
+ - uid: 21108
components:
- pos: 45.505707,8.483616
parent: 2
type: Transform
- proto: HandLabeler
entities:
- - uid: 21101
+ - uid: 21109
components:
- pos: 39.184,-39.455414
parent: 2
type: Transform
- - uid: 21102
+ - uid: 21110
components:
- pos: -33.328754,17.574179
parent: 2
type: Transform
- - uid: 21103
+ - uid: 21111
components:
- pos: -28.559744,21.679361
parent: 2
type: Transform
- - uid: 21104
+ - uid: 21112
components:
- rot: 3.141592653589793 rad
pos: -32.198154,29.656374
parent: 2
type: Transform
+- proto: HappyHonkCluwne
+ entities:
+ - uid: 21113
+ components:
+ - pos: -54.32355,-63.58878
+ parent: 2
+ type: Transform
- proto: HappyHonkNukie
entities:
- - uid: 21106
+ - uid: 21114
components:
- pos: 22.60001,-29.307062
parent: 2
type: Transform
- proto: HarmonicaInstrument
entities:
- - uid: 21107
+ - uid: 21115
components:
- pos: 53.479427,24.562923
parent: 2
type: Transform
- proto: HeatExchanger
entities:
- - uid: 21108
+ - uid: 21116
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-42.5
@@ -138139,7 +138167,7 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 21109
+ - uid: 21117
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-39.5
@@ -138147,14 +138175,14 @@ entities:
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 21110
+ - uid: 21118
components:
- pos: -62.5,-41.5
parent: 2
type: Transform
- color: '#0055CCFF'
type: AtmosPipeColor
- - uid: 21111
+ - uid: 21119
components:
- pos: -62.5,-40.5
parent: 2
@@ -138163,60 +138191,60 @@ entities:
type: AtmosPipeColor
- proto: Hemostat
entities:
- - uid: 21112
+ - uid: 21120
components:
- pos: 0.5210637,-64.93571
parent: 2
type: Transform
- - uid: 21113
+ - uid: 21121
components:
- pos: 73.5331,-48.317677
parent: 2
type: Transform
- proto: HighSecArmoryLocked
entities:
- - uid: 21114
+ - uid: 21122
components:
- pos: 28.5,26.5
parent: 2
type: Transform
- - uid: 21115
+ - uid: 21123
components:
- pos: 30.5,26.5
parent: 2
type: Transform
- - uid: 21116
+ - uid: 21124
components:
- pos: 30.5,24.5
parent: 2
type: Transform
- - uid: 21117
+ - uid: 21125
components:
- pos: 28.5,24.5
parent: 2
type: Transform
- proto: HighSecCaptainLocked
entities:
- - uid: 21118
+ - uid: 21126
components:
- name: vault
type: MetaData
- pos: 43.5,-24.5
parent: 2
type: Transform
- - uid: 21119
+ - uid: 21127
components:
- name: vault
type: MetaData
- pos: 43.5,-27.5
parent: 2
type: Transform
- - uid: 21120
+ - uid: 21128
components:
- pos: -1.5,64.5
parent: 2
type: Transform
- - uid: 21121
+ - uid: 21129
components:
- name: AI
type: MetaData
@@ -138225,21 +138253,21 @@ entities:
type: Transform
- proto: HighSecCommandLocked
entities:
- - uid: 21122
+ - uid: 21130
components:
- pos: 13.5,-21.5
parent: 2
type: Transform
- proto: HolofanProjector
entities:
- - uid: 21123
+ - uid: 21131
components:
- pos: -37.369167,-8.432599
parent: 2
type: Transform
- proto: HospitalCurtains
entities:
- - uid: 21124
+ - uid: 21132
components:
- pos: 60.5,21.5
parent: 2
@@ -138250,13 +138278,13 @@ entities:
type: Door
- canCollide: False
type: Physics
- - uid: 21125
+ - uid: 21133
components:
- rot: 3.141592653589793 rad
pos: 60.5,13.5
parent: 2
type: Transform
- - uid: 21126
+ - uid: 21134
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-19.5
@@ -138264,22 +138292,22 @@ entities:
type: Transform
- proto: HospitalCurtainsOpen
entities:
- - uid: 21127
+ - uid: 21135
components:
- pos: -2.5,-55.5
parent: 2
type: Transform
- - uid: 21128
+ - uid: 21136
components:
- pos: -5.5,-55.5
parent: 2
type: Transform
- - uid: 21129
+ - uid: 21137
components:
- pos: -11.5,-55.5
parent: 2
type: Transform
- - uid: 21130
+ - uid: 21138
components:
- pos: 3.5,-62.5
parent: 2
@@ -138290,17 +138318,17 @@ entities:
type: Occluder
- canCollide: True
type: Physics
- - uid: 21131
+ - uid: 21139
components:
- pos: 0.5,-55.5
parent: 2
type: Transform
- - uid: 21132
+ - uid: 21140
components:
- pos: -8.5,-55.5
parent: 2
type: Transform
- - uid: 21133
+ - uid: 21141
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-19.5
@@ -138308,87 +138336,87 @@ entities:
type: Transform
- proto: hydroponicsSoil
entities:
- - uid: 21134
+ - uid: 21142
components:
- pos: 9.5,55.5
parent: 2
type: Transform
- - uid: 21135
+ - uid: 21143
components:
- pos: 8.5,55.5
parent: 2
type: Transform
- - uid: 21136
+ - uid: 21144
components:
- pos: 10.5,55.5
parent: 2
type: Transform
- - uid: 21137
+ - uid: 21145
components:
- pos: 11.5,55.5
parent: 2
type: Transform
- - uid: 21138
+ - uid: 21146
components:
- pos: 7.5,55.5
parent: 2
type: Transform
- - uid: 21139
+ - uid: 21147
components:
- pos: 11.5,52.5
parent: 2
type: Transform
- - uid: 21140
+ - uid: 21148
components:
- pos: 10.5,52.5
parent: 2
type: Transform
- - uid: 21141
+ - uid: 21149
components:
- pos: 9.5,52.5
parent: 2
type: Transform
- - uid: 21142
+ - uid: 21150
components:
- pos: -6.5,49.5
parent: 2
type: Transform
- - uid: 21143
+ - uid: 21151
components:
- pos: -4.5,55.5
parent: 2
type: Transform
- - uid: 21144
+ - uid: 21152
components:
- rot: -1.5707963267948966 rad
pos: -28.5,4.5
parent: 2
type: Transform
- - uid: 21145
+ - uid: 21153
components:
- rot: -1.5707963267948966 rad
pos: -28.5,3.5
parent: 2
type: Transform
- - uid: 21146
+ - uid: 21154
components:
- rot: -1.5707963267948966 rad
pos: -4.5,19.5
parent: 2
type: Transform
- - uid: 21147
+ - uid: 21155
components:
- rot: -1.5707963267948966 rad
pos: -7.5,19.5
parent: 2
type: Transform
- - uid: 21148
+ - uid: 21156
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-68.5
parent: 2
type: Transform
- - uid: 21149
+ - uid: 21157
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-68.5
@@ -138396,296 +138424,296 @@ entities:
type: Transform
- proto: HydroponicsToolClippers
entities:
- - uid: 21150
+ - uid: 21158
components:
- pos: -47.467487,-3.558907
parent: 2
type: Transform
- proto: HydroponicsToolHatchet
entities:
- - uid: 21151
+ - uid: 21159
components:
- pos: 9.725508,-56.44578
parent: 2
type: Transform
- proto: HydroponicsToolMiniHoe
entities:
- - uid: 21152
+ - uid: 21160
components:
- pos: 57.497448,6.490094
parent: 2
type: Transform
- - uid: 21153
+ - uid: 21161
components:
- pos: -28.501194,4.4131045
parent: 2
type: Transform
- - uid: 21154
+ - uid: 21162
components:
- pos: 55.4544,56.501
parent: 2
type: Transform
- - uid: 21155
+ - uid: 21163
components:
- pos: 7.1714664,53.671818
parent: 2
type: Transform
- proto: HydroponicsToolScythe
entities:
- - uid: 21156
+ - uid: 21164
components:
- pos: -2.5396576,10.576576
parent: 2
type: Transform
- proto: HydroponicsToolSpade
entities:
- - uid: 21157
+ - uid: 21165
components:
- pos: 57.622448,6.583844
parent: 2
type: Transform
- - uid: 21158
+ - uid: 21166
components:
- pos: -28.61099,3.5269613
parent: 2
type: Transform
- - uid: 21159
+ - uid: 21167
components:
- pos: 55.54815,56.53225
parent: 2
type: Transform
- proto: hydroponicsTray
entities:
- - uid: 21160
+ - uid: 21168
components:
- pos: -10.5,11.5
parent: 2
type: Transform
- - uid: 21161
+ - uid: 21169
components:
- pos: -6.5,10.5
parent: 2
type: Transform
- - uid: 21162
+ - uid: 21170
components:
- pos: -10.5,10.5
parent: 2
type: Transform
- - uid: 21163
+ - uid: 21171
components:
- pos: -4.5,7.5
parent: 2
type: Transform
- - uid: 21164
+ - uid: 21172
components:
- pos: -8.5,9.5
parent: 2
type: Transform
- - uid: 21165
+ - uid: 21173
components:
- pos: -6.5,7.5
parent: 2
type: Transform
- - uid: 21166
+ - uid: 21174
components:
- pos: -6.5,9.5
parent: 2
type: Transform
- - uid: 21167
+ - uid: 21175
components:
- pos: -8.5,8.5
parent: 2
type: Transform
- - uid: 21168
+ - uid: 21176
components:
- pos: -4.5,8.5
parent: 2
type: Transform
- - uid: 21169
+ - uid: 21177
components:
- pos: -8.5,10.5
parent: 2
type: Transform
- - uid: 21170
+ - uid: 21178
components:
- pos: -6.5,11.5
parent: 2
type: Transform
- - uid: 21171
+ - uid: 21179
components:
- pos: -6.5,8.5
parent: 2
type: Transform
- - uid: 21172
+ - uid: 21180
components:
- pos: -10.5,8.5
parent: 2
type: Transform
- - uid: 21173
+ - uid: 21181
components:
- pos: -8.5,7.5
parent: 2
type: Transform
- - uid: 21174
+ - uid: 21182
components:
- pos: -10.5,7.5
parent: 2
type: Transform
- - uid: 21175
+ - uid: 21183
components:
- pos: -10.5,9.5
parent: 2
type: Transform
- - uid: 21176
+ - uid: 21184
components:
- pos: -8.5,11.5
parent: 2
type: Transform
- - uid: 21177
+ - uid: 21185
components:
- pos: 58.5,8.5
parent: 2
type: Transform
- - uid: 21178
+ - uid: 21186
components:
- pos: 58.5,7.5
parent: 2
type: Transform
- - uid: 21179
+ - uid: 21187
components:
- pos: 58.5,6.5
parent: 2
type: Transform
- - uid: 21180
+ - uid: 21188
components:
- pos: 56.5,8.5
parent: 2
type: Transform
- - uid: 21181
+ - uid: 21189
components:
- pos: 56.5,7.5
parent: 2
type: Transform
- - uid: 21182
+ - uid: 21190
components:
- pos: 56.5,6.5
parent: 2
type: Transform
- - uid: 21183
+ - uid: 21191
components:
- pos: 52.5,55.5
parent: 2
type: Transform
- - uid: 21184
+ - uid: 21192
components:
- pos: 56.5,55.5
parent: 2
type: Transform
- proto: HydroponicsTrayMachineCircuitboard
entities:
- - uid: 21185
+ - uid: 21193
components:
- pos: 38.518326,-56.124916
parent: 2
type: Transform
- proto: InflatableDoorStack1
entities:
- - uid: 21186
+ - uid: 21194
components:
- pos: 41.577766,-55.382984
parent: 2
type: Transform
- proto: InflatableWall
entities:
- - uid: 21187
+ - uid: 21195
components:
- pos: -51.5,-66.5
parent: 2
type: Transform
- - uid: 21188
+ - uid: 21196
components:
- pos: -51.5,-67.5
parent: 2
type: Transform
- - uid: 21189
+ - uid: 21197
components:
- pos: -49.5,-72.5
parent: 2
type: Transform
- proto: InflatableWallStack
entities:
- - uid: 21190
+ - uid: 21198
components:
- pos: 7.4753633,-16.474928
parent: 2
type: Transform
- proto: InflatableWallStack1
entities:
- - uid: 21191
+ - uid: 21199
components:
- pos: -38.56672,-98.45029
parent: 2
type: Transform
- proto: IngotGold
entities:
- - uid: 21192
+ - uid: 21200
components:
- pos: 48.54513,-24.041304
parent: 2
type: Transform
- - uid: 21193
+ - uid: 21201
components:
- pos: 48.16234,-27.566782
parent: 2
type: Transform
- proto: IngotGold1
entities:
- - uid: 21194
+ - uid: 21202
components:
- pos: 14.545005,56.593597
parent: 2
type: Transform
- - uid: 21195
+ - uid: 21203
components:
- pos: 59.385517,-51.41954
parent: 2
type: Transform
- - uid: 21196
+ - uid: 21204
components:
- pos: 59.432392,-51.591415
parent: 2
type: Transform
- proto: IntercomAll
entities:
- - uid: 21197
+ - uid: 21205
components:
- pos: 20.5,-20.5
parent: 2
type: Transform
- proto: IntercomCommand
entities:
- - uid: 21198
+ - uid: 21206
components:
- pos: -34.5,-14.5
parent: 2
type: Transform
- - uid: 21199
+ - uid: 21207
components:
- pos: 64.5,0.5
parent: 2
type: Transform
- - uid: 21200
+ - uid: 21208
components:
- pos: 64.5,-50.5
parent: 2
type: Transform
- - uid: 21201
+ - uid: 21209
components:
- rot: -1.5707963267948966 rad
pos: 9.5,21.5
parent: 2
type: Transform
- - uid: 21202
+ - uid: 21210
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-57.5
@@ -138693,147 +138721,147 @@ entities:
type: Transform
- proto: IntercomCommon
entities:
- - uid: 21203
+ - uid: 21211
components:
- pos: -38.5,-70.5
parent: 2
type: Transform
- - uid: 21204
+ - uid: 21212
components:
- rot: 1.5707963267948966 rad
pos: -14.5,57.5
parent: 2
type: Transform
- - uid: 21205
+ - uid: 21213
components:
- pos: 37.5,-69.5
parent: 2
type: Transform
- - uid: 21206
+ - uid: 21214
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-2.5
parent: 2
type: Transform
- - uid: 21207
+ - uid: 21215
components:
- rot: -1.5707963267948966 rad
pos: 7.5,6.5
parent: 2
type: Transform
- - uid: 21208
+ - uid: 21216
components:
- pos: 14.5,4.5
parent: 2
type: Transform
- - uid: 21209
+ - uid: 21217
components:
- pos: 9.5,11.5
parent: 2
type: Transform
- - uid: 21210
+ - uid: 21218
components:
- rot: 1.5707963267948966 rad
pos: 15.5,-3.5
parent: 2
type: Transform
- - uid: 21211
+ - uid: 21219
components:
- pos: -31.5,11.5
parent: 2
type: Transform
- - uid: 21212
+ - uid: 21220
components:
- pos: -30.5,2.5
parent: 2
type: Transform
- - uid: 21213
+ - uid: 21221
components:
- pos: -15.5,-24.5
parent: 2
type: Transform
- - uid: 21214
+ - uid: 21222
components:
- pos: 4.5,-39.5
parent: 2
type: Transform
- - uid: 21215
+ - uid: 21223
components:
- pos: 39.5,-40.5
parent: 2
type: Transform
- - uid: 21216
+ - uid: 21224
components:
- pos: 29.5,-15.5
parent: 2
type: Transform
- - uid: 21217
+ - uid: 21225
components:
- pos: 39.5,3.5
parent: 2
type: Transform
- - uid: 21218
+ - uid: 21226
components:
- pos: 54.5,-4.5
parent: 2
type: Transform
- - uid: 21219
+ - uid: 21227
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-8.5
parent: 2
type: Transform
- - uid: 21220
+ - uid: 21228
components:
- rot: 1.5707963267948966 rad
pos: -1.5,48.5
parent: 2
type: Transform
- - uid: 21221
+ - uid: 21229
components:
- rot: 1.5707963267948966 rad
pos: -19.5,40.5
parent: 2
type: Transform
- - uid: 21222
+ - uid: 21230
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-18.5
parent: 2
type: Transform
- - uid: 21223
+ - uid: 21231
components:
- pos: -14.5,-40.5
parent: 2
type: Transform
- - uid: 21224
+ - uid: 21232
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-28.5
parent: 2
type: Transform
- - uid: 21225
+ - uid: 21233
components:
- pos: 17.5,-51.5
parent: 2
type: Transform
- - uid: 21226
+ - uid: 21234
components:
- pos: -25.5,-94.5
parent: 2
type: Transform
- - uid: 21227
+ - uid: 21235
components:
- rot: 1.5707963267948966 rad
pos: -21.5,29.5
parent: 2
type: Transform
- - uid: 21228
+ - uid: 21236
components:
- pos: 23.5,-69.5
parent: 2
type: Transform
- - uid: 21229
+ - uid: 21237
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-84.5
@@ -138841,44 +138869,44 @@ entities:
type: Transform
- proto: IntercomEngineering
entities:
- - uid: 21230
+ - uid: 21238
components:
- pos: -24.5,-7.5
parent: 2
type: Transform
- - uid: 21231
+ - uid: 21239
components:
- pos: -35.5,-4.5
parent: 2
type: Transform
- - uid: 21232
+ - uid: 21240
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-9.5
parent: 2
type: Transform
- - uid: 21233
+ - uid: 21241
components:
- pos: -61.5,-26.5
parent: 2
type: Transform
- - uid: 21234
+ - uid: 21242
components:
- pos: -28.5,-32.5
parent: 2
type: Transform
- - uid: 21235
+ - uid: 21243
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-49.5
parent: 2
type: Transform
- - uid: 21236
+ - uid: 21244
components:
- pos: -67.5,-35.5
parent: 2
type: Transform
- - uid: 21237
+ - uid: 21245
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-22.5
@@ -138886,159 +138914,159 @@ entities:
type: Transform
- proto: IntercomMedical
entities:
- - uid: 21238
+ - uid: 21246
components:
- pos: -13.5,-58.5
parent: 2
type: Transform
- - uid: 21239
+ - uid: 21247
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-70.5
parent: 2
type: Transform
- - uid: 21240
+ - uid: 21248
components:
- pos: -24.5,-56.5
parent: 2
type: Transform
- - uid: 21241
+ - uid: 21249
components:
- pos: 2.5,-51.5
parent: 2
type: Transform
- - uid: 21242
+ - uid: 21250
components:
- pos: -25.5,-68.5
parent: 2
type: Transform
- - uid: 21243
+ - uid: 21251
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-64.5
parent: 2
type: Transform
- - uid: 21244
+ - uid: 21252
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-36.5
parent: 2
type: Transform
- - uid: 21245
+ - uid: 21253
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-85.5
parent: 2
type: Transform
- - uid: 21246
+ - uid: 21254
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-80.5
parent: 2
type: Transform
- - uid: 21247
+ - uid: 21255
components:
- pos: -19.5,-74.5
parent: 2
type: Transform
- proto: IntercomScience
entities:
- - uid: 21248
+ - uid: 21256
components:
- pos: 42.5,-34.5
parent: 2
type: Transform
- - uid: 21249
+ - uid: 21257
components:
- pos: 44.5,-40.5
parent: 2
type: Transform
- - uid: 21250
+ - uid: 21258
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-45.5
parent: 2
type: Transform
- - uid: 21251
+ - uid: 21259
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-55.5
parent: 2
type: Transform
- - uid: 21252
+ - uid: 21260
components:
- pos: 67.5,-42.5
parent: 2
type: Transform
- - uid: 21253
+ - uid: 21261
components:
- rot: -1.5707963267948966 rad
pos: 76.5,-40.5
parent: 2
type: Transform
- - uid: 21254
+ - uid: 21262
components:
- pos: 60.5,-30.5
parent: 2
type: Transform
- - uid: 21255
+ - uid: 21263
components:
- pos: 49.5,-36.5
parent: 2
type: Transform
- proto: IntercomSecurity
entities:
- - uid: 21256
+ - uid: 21264
components:
- rot: 1.5707963267948966 rad
pos: 3.5,14.5
parent: 2
type: Transform
- - uid: 21257
+ - uid: 21265
components:
- rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 2
type: Transform
- - uid: 21258
+ - uid: 21266
components:
- pos: -16.5,-19.5
parent: 2
type: Transform
- - uid: 21259
+ - uid: 21267
components:
- rot: 1.5707963267948966 rad
pos: -2.5,18.5
parent: 2
type: Transform
- - uid: 21260
+ - uid: 21268
components:
- pos: 26.5,24.5
parent: 2
type: Transform
- - uid: 21261
+ - uid: 21269
components:
- pos: 16.5,24.5
parent: 2
type: Transform
- - uid: 21262
+ - uid: 21270
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-45.5
parent: 2
type: Transform
- - uid: 21263
+ - uid: 21271
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-13.5
parent: 2
type: Transform
- - uid: 21264
+ - uid: 21272
components:
- pos: 4.5,-55.5
parent: 2
type: Transform
- - uid: 21265
+ - uid: 21273
components:
- rot: -1.5707963267948966 rad
pos: 43.5,9.5
@@ -139046,86 +139074,175 @@ entities:
type: Transform
- proto: IntercomService
entities:
- - uid: 21266
+ - uid: 21274
components:
- pos: 20.5,15.5
parent: 2
type: Transform
- - uid: 21267
+ - uid: 21275
components:
- pos: -26.5,16.5
parent: 2
type: Transform
- - uid: 21268
+ - uid: 21276
components:
- rot: 1.5707963267948966 rad
pos: -11.5,5.5
parent: 2
type: Transform
- - uid: 21269
+ - uid: 21277
components:
- pos: 1.5,-18.5
parent: 2
type: Transform
- proto: IntercomSupply
entities:
- - uid: 21270
- components:
- - rot: -1.5707963267948966 rad
- pos: -29.5,24.5
- parent: 2
- type: Transform
- - uid: 21271
+ - uid: 21278
components:
- pos: -48.5,17.5
parent: 2
type: Transform
- - uid: 21272
+ - uid: 21279
components:
- rot: 1.5707963267948966 rad
pos: -26.5,20.5
parent: 2
type: Transform
- - uid: 21273
+ - uid: 21280
components:
- rot: 1.5707963267948966 rad
pos: -35.5,30.5
parent: 2
type: Transform
- - uid: 21274
+ - uid: 21281
components:
- pos: -43.5,26.5
parent: 2
type: Transform
- - uid: 21275
+ - uid: 21282
components:
- rot: -1.5707963267948966 rad
pos: -39.5,28.5
parent: 2
type: Transform
+ - uid: 21283
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -30.5,16.5
+ parent: 2
+ type: Transform
- proto: JanitorialTrolley
entities:
- - uid: 21276
+ - uid: 21284
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-22.5
parent: 2
type: Transform
+- proto: JanitorServiceLight
+ entities:
+ - uid: 21285
+ components:
+ - pos: -5.5,3.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24265
+ type: DeviceLinkSink
+ - uid: 21286
+ components:
+ - pos: 38.5,-41.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24259
+ type: DeviceLinkSink
+ - uid: 21287
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -20.5,-15.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24260
+ type: DeviceLinkSink
+ - uid: 21288
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 24.5,9.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24262
+ type: DeviceLinkSink
+ - uid: 21289
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-23.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24255
+ type: DeviceLinkSink
+ - uid: 21290
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-43.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24264
+ type: DeviceLinkSink
+ - uid: 21291
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -20.5,-33.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24263
+ type: DeviceLinkSink
+ - uid: 21292
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 34.5,-23.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24255
+ type: DeviceLinkSink
+ - uid: 21293
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -20.5,22.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24261
+ type: DeviceLinkSink
+ - uid: 21294
+ components:
+ - pos: 0.5,-25.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24266
+ type: DeviceLinkSink
- proto: JetpackBlueFilled
entities:
- - uid: 21277
+ - uid: 21295
components:
- rot: 3.141592653589793 rad
pos: 33.468403,-14.391748
parent: 2
type: Transform
- - uid: 21278
+ - uid: 21296
components:
- rot: 3.141592653589793 rad
pos: 33.499653,-14.469873
parent: 2
type: Transform
- - uid: 21279
+ - uid: 21297
components:
- rot: 3.141592653589793 rad
pos: 33.640278,-14.579248
@@ -139133,159 +139250,159 @@ entities:
type: Transform
- proto: KitchenElectricGrill
entities:
- - uid: 21280
+ - uid: 21298
components:
- pos: 3.5,6.5
parent: 2
type: Transform
- proto: KitchenMicrowave
entities:
- - uid: 21281
+ - uid: 21299
components:
- pos: -31.5,-69.5
parent: 2
type: Transform
- - uid: 21282
+ - uid: 21300
components:
- pos: 2.5,7.5
parent: 2
type: Transform
- - uid: 21283
+ - uid: 21301
components:
- pos: 4.5,6.5
parent: 2
type: Transform
- - uid: 21284
+ - uid: 21302
components:
- pos: 31.5,-20.5
parent: 2
type: Transform
- - uid: 21285
+ - uid: 21303
components:
- pos: 52.5,18.5
parent: 2
type: Transform
- - uid: 21286
+ - uid: 21304
components:
- pos: 45.5,-49.5
parent: 2
type: Transform
- - uid: 21287
+ - uid: 21305
components:
- pos: -38.5,-32.5
parent: 2
type: Transform
- - uid: 21288
+ - uid: 21306
components:
- pos: -22.5,45.5
parent: 2
type: Transform
- - uid: 21289
+ - uid: 21307
components:
- pos: -8.5,41.5
parent: 2
type: Transform
- proto: KitchenReagentGrinder
entities:
- - uid: 21290
+ - uid: 21308
components:
- pos: -3.5,5.5
parent: 2
type: Transform
- - uid: 21291
+ - uid: 21309
components:
- pos: 3.5,-47.5
parent: 2
type: Transform
- - uid: 21292
+ - uid: 21310
components:
- pos: 3.5,7.5
parent: 2
type: Transform
- - uid: 21293
+ - uid: 21311
components:
- pos: 53.5,18.5
parent: 2
type: Transform
- proto: KitchenSpike
entities:
- - uid: 21294
+ - uid: 21312
components:
- pos: -0.5,11.5
parent: 2
type: Transform
- proto: Lamp
entities:
- - uid: 21295
+ - uid: 21313
components:
- rot: -1.5707963267948966 rad
pos: -3.8543606,-48.096176
parent: 2
type: Transform
- - uid: 21296
+ - uid: 21314
components:
- rot: 1.5707963267948966 rad
pos: 24.558033,-21.226107
parent: 2
type: Transform
- - uid: 21297
+ - uid: 21315
components:
- pos: 21.425192,-12.111239
parent: 2
type: Transform
- - uid: 21298
+ - uid: 21316
components:
- rot: -1.5707963267948966 rad
pos: 7.6524577,20.90233
parent: 2
type: Transform
- - uid: 21299
+ - uid: 21317
components:
- rot: -1.5707963267948966 rad
pos: -9.565374,-37.00866
parent: 2
type: Transform
- - uid: 21300
+ - uid: 21318
components:
- rot: 1.5707963267948966 rad
pos: 51.608532,-40.935013
parent: 2
type: Transform
- - uid: 21301
+ - uid: 21319
components:
- pos: 59.696476,-1.1797758
parent: 2
type: Transform
- - uid: 21302
+ - uid: 21320
components:
- rot: 1.5707963267948966 rad
pos: -33.336697,29.910027
parent: 2
type: Transform
- - uid: 21303
+ - uid: 21321
components:
- pos: -24.34436,11.920202
parent: 2
type: Transform
- - uid: 21304
+ - uid: 21322
components:
- rot: 1.5707963267948966 rad
pos: -28.600471,45.10426
parent: 2
type: Transform
- - uid: 21305
+ - uid: 21323
components:
- pos: -12.458234,-18.122696
parent: 2
type: Transform
- proto: LampBanana
entities:
- - uid: 21306
+ - uid: 21324
components:
- pos: -22.53235,37.89803
parent: 2
type: Transform
- - uid: 21307
+ - uid: 21325
components:
- rot: -1.5707963267948966 rad
pos: 2.6784086,-21.06689
@@ -139293,49 +139410,49 @@ entities:
type: Transform
- proto: LampGold
entities:
- - uid: 21308
+ - uid: 21326
components:
- pos: -22.537891,-69.31316
parent: 2
type: Transform
- - uid: 21309
+ - uid: 21327
components:
- pos: -18.78946,-56.159798
parent: 2
type: Transform
- - uid: 21310
+ - uid: 21328
components:
- pos: -10.485052,-3.11381
parent: 2
type: Transform
- - uid: 21311
+ - uid: 21329
components:
- rot: 1.5707963267948966 rad
pos: 43.557644,-4.1465535
parent: 2
type: Transform
- - uid: 21312
+ - uid: 21330
components:
- pos: 37.53909,-2.5487528
parent: 2
type: Transform
- - uid: 21313
+ - uid: 21331
components:
- pos: 32.892563,-50.10114
parent: 2
type: Transform
- - uid: 21314
+ - uid: 21332
components:
- pos: 28.845686,-50.06989
parent: 2
type: Transform
- - uid: 21315
+ - uid: 21333
components:
- rot: 1.5707963267948966 rad
pos: -22.520432,-96.69095
parent: 2
type: Transform
- - uid: 21316
+ - uid: 21334
components:
- rot: 1.5707963267948966 rad
pos: 3.3403625,-9.918977
@@ -139343,55 +139460,65 @@ entities:
type: Transform
- proto: LargeBeaker
entities:
- - uid: 21318
+ - uid: 21335
+ components:
+ - pos: 3.459992,-47.48736
+ parent: 2
+ type: Transform
+ - uid: 21336
components:
- pos: 4.621125,7.7027445
parent: 2
type: Transform
- - uid: 21319
+ - uid: 21337
components:
- pos: -25.403534,-78.32023
parent: 2
type: Transform
- - uid: 21320
+ - uid: 21338
components:
- pos: -25.716034,-78.71085
parent: 2
type: Transform
- - uid: 21321
+ - uid: 21339
components:
- pos: -25.591316,-84.223625
parent: 2
type: Transform
+ - uid: 21340
+ components:
+ - pos: 3.678742,-47.471733
+ parent: 2
+ type: Transform
- proto: LauncherCreamPie
entities:
- - uid: 21324
+ - uid: 21341
components:
- pos: 0.32515657,-23.45843
parent: 2
type: Transform
- proto: Lighter
entities:
- - uid: 21325
+ - uid: 21342
components:
- pos: 13.70992,-34.538578
parent: 2
type: Transform
- - uid: 21326
+ - uid: 21343
components:
- pos: 15.667978,-79.47625
parent: 2
type: Transform
- proto: LightTube
entities:
- - uid: 21327
+ - uid: 21344
components:
- pos: -39.78844,-85.422134
parent: 2
type: Transform
- proto: LockerAtmosphericsFilled
entities:
- - uid: 21328
+ - uid: 21345
components:
- pos: -33.5,-32.5
parent: 2
@@ -139414,7 +139541,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21329
+ - uid: 21346
components:
- pos: -39.5,-36.5
parent: 2
@@ -139437,7 +139564,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21330
+ - uid: 21347
components:
- pos: -37.5,-36.5
parent: 2
@@ -139460,7 +139587,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21331
+ - uid: 21348
components:
- pos: -35.5,-36.5
parent: 2
@@ -139485,7 +139612,7 @@ entities:
type: EntityStorage
- proto: LockerBoozeFilled
entities:
- - uid: 21332
+ - uid: 21349
components:
- pos: 22.5,12.5
parent: 2
@@ -139510,7 +139637,7 @@ entities:
type: EntityStorage
- proto: LockerBotanistFilled
entities:
- - uid: 21333
+ - uid: 21350
components:
- pos: -4.5,11.5
parent: 2
@@ -139535,7 +139662,7 @@ entities:
type: EntityStorage
- proto: LockerCaptainFilled
entities:
- - uid: 21334
+ - uid: 21351
components:
- pos: 29.5,-27.5
parent: 2
@@ -139560,14 +139687,14 @@ entities:
type: EntityStorage
- proto: LockerChemistryFilled
entities:
- - uid: 21335
+ - uid: 21352
components:
- pos: 7.5,-50.5
parent: 2
type: Transform
- proto: LockerChiefEngineerFilled
entities:
- - uid: 21336
+ - uid: 21353
components:
- pos: -37.5,-15.5
parent: 2
@@ -139592,7 +139719,7 @@ entities:
type: EntityStorage
- proto: LockerChiefMedicalOfficerFilled
entities:
- - uid: 21337
+ - uid: 21354
components:
- pos: -18.5,-54.5
parent: 2
@@ -139617,14 +139744,14 @@ entities:
type: EntityStorage
- proto: LockerClown
entities:
- - uid: 31538
+ - uid: 21355
components:
- pos: -20.5,37.5
parent: 2
type: Transform
- proto: LockerDetectiveFilled
entities:
- - uid: 21338
+ - uid: 21356
components:
- pos: 17.5,-10.5
parent: 2
@@ -139647,34 +139774,9 @@ entities:
- 0
- 0
type: EntityStorage
-- proto: LockerElectricalSupplies
- entities:
- - uid: 21339
- components:
- - pos: -7.5,-17.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 8.402782
- - 31.610466
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- proto: LockerElectricalSuppliesFilled
entities:
- - uid: 21340
+ - uid: 21357
components:
- pos: 46.5,-3.5
parent: 2
@@ -139697,7 +139799,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21341
+ - uid: 21358
components:
- pos: -53.5,0.5
parent: 2
@@ -139720,7 +139822,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21342
+ - uid: 21359
components:
- pos: 32.5,25.5
parent: 2
@@ -139743,7 +139845,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21343
+ - uid: 21360
components:
- pos: 39.5,-28.5
parent: 2
@@ -139768,7 +139870,7 @@ entities:
type: EntityStorage
- proto: LockerEngineerFilled
entities:
- - uid: 21344
+ - uid: 21361
components:
- pos: -39.5,-7.5
parent: 2
@@ -139791,7 +139893,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21345
+ - uid: 21362
components:
- pos: -39.5,-12.5
parent: 2
@@ -139814,7 +139916,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21346
+ - uid: 21363
components:
- pos: -39.5,-8.5
parent: 2
@@ -139837,7 +139939,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21347
+ - uid: 21364
components:
- pos: -39.5,-9.5
parent: 2
@@ -139860,7 +139962,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21348
+ - uid: 21365
components:
- pos: -50.5,-20.5
parent: 2
@@ -139885,7 +139987,7 @@ entities:
type: EntityStorage
- proto: LockerEvidence
entities:
- - uid: 21349
+ - uid: 21366
components:
- pos: 4.5,-57.5
parent: 2
@@ -139908,7 +140010,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21350
+ - uid: 21367
components:
- pos: 34.5,-45.5
parent: 2
@@ -139931,7 +140033,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21351
+ - uid: 21368
components:
- pos: 18.5,23.5
parent: 2
@@ -139954,17 +140056,17 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21352
+ - uid: 21369
components:
- pos: 37.5,12.5
parent: 2
type: Transform
- - uid: 21353
+ - uid: 21370
components:
- pos: 37.5,11.5
parent: 2
type: Transform
- - uid: 21354
+ - uid: 21371
components:
- pos: 41.5,16.5
parent: 2
@@ -139987,7 +140089,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21355
+ - uid: 21372
components:
- pos: 40.5,16.5
parent: 2
@@ -140010,7 +140112,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21356
+ - uid: 21373
components:
- pos: 39.5,16.5
parent: 2
@@ -140033,7 +140135,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21357
+ - uid: 21374
components:
- pos: 38.5,16.5
parent: 2
@@ -140056,7 +140158,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21358
+ - uid: 21375
components:
- pos: 42.5,16.5
parent: 2
@@ -140079,7 +140181,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21359
+ - uid: 21376
components:
- pos: 37.5,16.5
parent: 2
@@ -140102,14 +140204,14 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21360
+ - uid: 21377
components:
- pos: 37.5,10.5
parent: 2
type: Transform
- proto: LockerFreezer
entities:
- - uid: 21361
+ - uid: 21378
components:
- pos: -38.5,37.5
parent: 2
@@ -140132,7 +140234,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21362
+ - uid: 21379
components:
- pos: -38.5,36.5
parent: 2
@@ -140155,7 +140257,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21363
+ - uid: 21380
components:
- pos: 1.5,14.5
parent: 2
@@ -140178,7 +140280,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21364
+ - uid: 21381
components:
- pos: -5.5,-95.5
parent: 2
@@ -140203,14 +140305,14 @@ entities:
type: EntityStorage
- proto: LockerHeadOfPersonnelFilled
entities:
- - uid: 21365
+ - uid: 21382
components:
- pos: -1.5,-3.5
parent: 2
type: Transform
- proto: LockerHeadOfSecurityFilled
entities:
- - uid: 12336
+ - uid: 12356
components:
- pos: 4.5,22.5
parent: 2
@@ -140238,8 +140340,8 @@ entities:
showEnts: False
occludes: True
ents:
- - 12338
- - 12337
+ - 12358
+ - 12357
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -140247,7 +140349,7 @@ entities:
type: ContainerContainer
- proto: LockerMedicalFilled
entities:
- - uid: 21366
+ - uid: 21383
components:
- pos: -15.5,-49.5
parent: 2
@@ -140270,7 +140372,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21367
+ - uid: 21384
components:
- pos: -15.5,-47.5
parent: 2
@@ -140293,7 +140395,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21368
+ - uid: 21385
components:
- pos: -15.5,-45.5
parent: 2
@@ -140316,33 +140418,33 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21369
+ - uid: 21386
components:
- pos: -15.5,-61.5
parent: 2
type: Transform
- - uid: 21370
+ - uid: 21387
components:
- pos: -14.5,-61.5
parent: 2
type: Transform
- proto: LockerMime
entities:
- - uid: 22707
+ - uid: 21388
components:
- pos: -27.5,46.5
parent: 2
type: Transform
- proto: LockerParamedicFilled
entities:
- - uid: 21371
+ - uid: 21389
components:
- pos: 2.5,-64.5
parent: 2
type: Transform
- proto: LockerQuarterMasterFilled
entities:
- - uid: 21372
+ - uid: 21390
components:
- pos: -34.5,31.5
parent: 2
@@ -140367,7 +140469,7 @@ entities:
type: EntityStorage
- proto: LockerResearchDirectorFilled
entities:
- - uid: 21373
+ - uid: 21391
components:
- pos: 63.5,-55.5
parent: 2
@@ -140392,7 +140494,7 @@ entities:
type: EntityStorage
- proto: LockerSalvageSpecialistFilled
entities:
- - uid: 21374
+ - uid: 21392
components:
- pos: -36.5,32.5
parent: 2
@@ -140415,7 +140517,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21375
+ - uid: 21393
components:
- pos: -36.5,30.5
parent: 2
@@ -140438,7 +140540,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21376
+ - uid: 21394
components:
- pos: -36.5,28.5
parent: 2
@@ -140461,14 +140563,14 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21377
+ - uid: 21395
components:
- pos: -45.5,44.5
parent: 2
type: Transform
- proto: LockerScienceFilled
entities:
- - uid: 21378
+ - uid: 21396
components:
- pos: 44.5,-45.5
parent: 2
@@ -140491,7 +140593,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21379
+ - uid: 21397
components:
- pos: 42.5,-45.5
parent: 2
@@ -140514,7 +140616,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21380
+ - uid: 21398
components:
- pos: 41.5,-45.5
parent: 2
@@ -140539,7 +140641,7 @@ entities:
type: EntityStorage
- proto: LockerSecurity
entities:
- - uid: 21381
+ - uid: 21399
components:
- pos: 19.5,-47.5
parent: 2
@@ -140562,7 +140664,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21382
+ - uid: 21400
components:
- pos: 52.5,13.5
parent: 2
@@ -140587,17 +140689,17 @@ entities:
type: EntityStorage
- proto: LockerSecurityFilled
entities:
- - uid: 21383
+ - uid: 21401
components:
- pos: 31.5,19.5
parent: 2
type: Transform
- - uid: 21384
+ - uid: 21402
components:
- pos: 32.5,19.5
parent: 2
type: Transform
- - uid: 21385
+ - uid: 21403
components:
- pos: -0.5,17.5
parent: 2
@@ -140620,7 +140722,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21386
+ - uid: 21404
components:
- pos: -0.5,19.5
parent: 2
@@ -140643,38 +140745,38 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21387
+ - uid: 21405
components:
- pos: -14.5,23.5
parent: 2
type: Transform
- - uid: 21388
+ - uid: 21406
components:
- pos: -0.5,21.5
parent: 2
type: Transform
- proto: LockerSyndicatePersonal
entities:
- - uid: 21389
+ - uid: 21407
components:
- pos: -52.5,-86.5
parent: 2
type: Transform
- proto: LockerWallMedicalDoctorFilled
entities:
- - uid: 21390
+ - uid: 21408
components:
- pos: 6.5,-58.5
parent: 2
type: Transform
- - uid: 21391
+ - uid: 21409
components:
- pos: -15.5,-51.5
parent: 2
type: Transform
- proto: LockerWallMedicalFilled
entities:
- - uid: 21392
+ - uid: 21410
components:
- pos: -26.5,-56.5
parent: 2
@@ -140699,7 +140801,7 @@ entities:
type: EntityStorage
- proto: LockerWardenFilled
entities:
- - uid: 21393
+ - uid: 21411
components:
- pos: 20.5,23.5
parent: 2
@@ -140724,7 +140826,7 @@ entities:
type: EntityStorage
- proto: LockerWeldingSuppliesFilled
entities:
- - uid: 21394
+ - uid: 21412
components:
- pos: 38.5,-53.5
parent: 2
@@ -140747,7 +140849,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21395
+ - uid: 21413
components:
- pos: -53.5,-61.5
parent: 2
@@ -140772,38 +140874,38 @@ entities:
type: EntityStorage
- proto: MachineAnomalyGenerator
entities:
- - uid: 21396
+ - uid: 21414
components:
- pos: 62.5,-30.5
parent: 2
type: Transform
- proto: MachineAnomalyVessel
entities:
- - uid: 21397
+ - uid: 21415
components:
- pos: 58.5,-32.5
parent: 2
type: Transform
- - uid: 21398
+ - uid: 21416
components:
- pos: 57.5,-32.5
parent: 2
type: Transform
- proto: MachineAPE
entities:
- - uid: 21399
+ - uid: 21417
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-34.5
parent: 2
type: Transform
- - uid: 21400
+ - uid: 21418
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-35.5
parent: 2
type: Transform
- - uid: 21401
+ - uid: 21419
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-35.5
@@ -140811,119 +140913,119 @@ entities:
type: Transform
- proto: MachineArtifactAnalyzer
entities:
- - uid: 21402
+ - uid: 21420
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-28.5
parent: 2
type: Transform
- links:
- - 12584
+ - 12606
type: DeviceLinkSink
- proto: MachineCentrifuge
entities:
- - uid: 14432
+ - uid: 21421
components:
- pos: 7.5,-45.5
parent: 2
type: Transform
- proto: MachineElectrolysisUnit
entities:
- - uid: 14431
+ - uid: 21422
components:
- pos: 3.5,-45.5
parent: 2
type: Transform
- proto: MachineFrame
entities:
- - uid: 21403
+ - uid: 21423
components:
- pos: -7.5,-63.5
parent: 2
type: Transform
- - uid: 21404
+ - uid: 21424
components:
- pos: -9.5,-63.5
parent: 2
type: Transform
- proto: MachineFrameDestroyed
entities:
- - uid: 21405
+ - uid: 21425
components:
- pos: 45.5,44.5
parent: 2
type: Transform
- - uid: 21406
+ - uid: 21426
components:
- pos: -16.5,-8.5
parent: 2
type: Transform
- - uid: 21407
+ - uid: 21427
components:
- pos: -36.5,-29.5
parent: 2
type: Transform
- proto: MagazinePistol
entities:
- - uid: 21408
+ - uid: 21428
components:
- pos: 32.305683,32.48245
parent: 2
type: Transform
- - uid: 21409
+ - uid: 21429
components:
- pos: 32.32131,32.48245
parent: 2
type: Transform
- - uid: 21410
+ - uid: 21430
components:
- pos: 32.32131,32.48245
parent: 2
type: Transform
- - uid: 21411
+ - uid: 21431
components:
- pos: 32.305683,32.48245
parent: 2
type: Transform
- - uid: 21412
+ - uid: 21432
components:
- pos: 32.42361,32.439632
parent: 2
type: Transform
- - uid: 21413
+ - uid: 21433
components:
- pos: 32.439236,32.392757
parent: 2
type: Transform
- proto: MagazinePistolSubMachineGun
entities:
- - uid: 21414
+ - uid: 21434
components:
- pos: 29.960567,32.527683
parent: 2
type: Transform
- - uid: 21415
+ - uid: 21435
components:
- pos: 29.952528,32.56383
parent: 2
type: Transform
- - uid: 21416
+ - uid: 21436
components:
- pos: 29.936903,32.548206
parent: 2
type: Transform
- - uid: 21417
+ - uid: 21437
components:
- pos: 29.968153,32.610706
parent: 2
type: Transform
- - uid: 21418
+ - uid: 21438
components:
- rot: 3.141592653589793 rad
pos: 29.992437,32.514297
parent: 2
type: Transform
- - uid: 21419
+ - uid: 21439
components:
- rot: 3.141592653589793 rad
pos: 29.976812,32.483047
@@ -140931,413 +141033,413 @@ entities:
type: Transform
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- - uid: 21420
+ - uid: 21440
components:
- pos: 6.551134,22.646631
parent: 2
type: Transform
- - uid: 21421
+ - uid: 21441
components:
- pos: 6.5377827,22.587479
parent: 2
type: Transform
- proto: MagicDiceBag
entities:
- - uid: 21422
+ - uid: 21442
components:
- pos: -47.440662,5.801874
parent: 2
type: Transform
- proto: MaintenanceFluffSpawner
entities:
- - uid: 21423
+ - uid: 21443
components:
- rot: 3.141592653589793 rad
pos: 30.5,46.5
parent: 2
type: Transform
- - uid: 21424
+ - uid: 21444
components:
- rot: 3.141592653589793 rad
pos: 22.5,51.5
parent: 2
type: Transform
- - uid: 21425
+ - uid: 21445
components:
- rot: 3.141592653589793 rad
pos: 70.5,-66.5
parent: 2
type: Transform
- - uid: 21426
+ - uid: 21446
components:
- pos: 15.5,-66.5
parent: 2
type: Transform
- - uid: 21427
+ - uid: 21447
components:
- pos: 12.5,-53.5
parent: 2
type: Transform
- - uid: 21428
+ - uid: 21448
components:
- pos: -15.5,-29.5
parent: 2
type: Transform
- - uid: 21429
+ - uid: 21449
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-16.5
parent: 2
type: Transform
- - uid: 21430
+ - uid: 21450
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-10.5
parent: 2
type: Transform
- - uid: 21431
+ - uid: 21451
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-8.5
parent: 2
type: Transform
- - uid: 21432
+ - uid: 21452
components:
- pos: -35.5,-22.5
parent: 2
type: Transform
- - uid: 21433
+ - uid: 21453
components:
- pos: 43.5,-8.5
parent: 2
type: Transform
- - uid: 21434
+ - uid: 21454
components:
- pos: -50.5,-62.5
parent: 2
type: Transform
- - uid: 21435
+ - uid: 21455
components:
- pos: -36.5,-69.5
parent: 2
type: Transform
- - uid: 21436
+ - uid: 21456
components:
- pos: 57.5,-3.5
parent: 2
type: Transform
- - uid: 21437
+ - uid: 21457
components:
- pos: -3.5,30.5
parent: 2
type: Transform
- - uid: 21438
+ - uid: 21458
components:
- pos: -15.5,21.5
parent: 2
type: Transform
- - uid: 21439
+ - uid: 21459
components:
- pos: -49.5,15.5
parent: 2
type: Transform
- - uid: 21440
+ - uid: 21460
components:
- pos: 15.5,57.5
parent: 2
type: Transform
- - uid: 21441
+ - uid: 21461
components:
- pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 21442
+ - uid: 21462
components:
- rot: 3.141592653589793 rad
pos: 43.5,-62.5
parent: 2
type: Transform
- - uid: 21443
+ - uid: 21463
components:
- pos: -32.5,-7.5
parent: 2
type: Transform
- - uid: 21444
+ - uid: 21464
components:
- pos: 6.5,-13.5
parent: 2
type: Transform
- - uid: 21445
+ - uid: 21465
components:
- pos: 54.5,61.5
parent: 2
type: Transform
- proto: MaintenancePlantSpawner
entities:
- - uid: 21446
+ - uid: 21466
components:
- pos: -55.5,-66.5
parent: 2
type: Transform
- - uid: 21447
+ - uid: 21467
components:
- pos: -52.5,-68.5
parent: 2
type: Transform
- - uid: 21448
+ - uid: 21468
components:
- pos: -53.5,-68.5
parent: 2
type: Transform
- - uid: 21449
+ - uid: 21469
components:
- pos: -56.5,-68.5
parent: 2
type: Transform
- - uid: 21450
+ - uid: 21470
components:
- pos: -53.5,-66.5
parent: 2
type: Transform
- - uid: 21451
+ - uid: 21471
components:
- pos: -54.5,-67.5
parent: 2
type: Transform
- - uid: 21452
+ - uid: 21472
components:
- pos: -26.5,31.5
parent: 2
type: Transform
- - uid: 21453
+ - uid: 21473
components:
- pos: 52.5,39.5
parent: 2
type: Transform
- - uid: 21454
+ - uid: 21474
components:
- pos: -7.5,49.5
parent: 2
type: Transform
- - uid: 21455
+ - uid: 21475
components:
- pos: -28.5,-98.5
parent: 2
type: Transform
- - uid: 21456
+ - uid: 21476
components:
- pos: -54.5,-66.5
parent: 2
type: Transform
- - uid: 21457
+ - uid: 21477
components:
- pos: 22.5,-50.5
parent: 2
type: Transform
- - uid: 21458
+ - uid: 21478
components:
- pos: -4.5,53.5
parent: 2
type: Transform
- - uid: 21459
+ - uid: 21479
components:
- pos: 10.5,53.5
parent: 2
type: Transform
- - uid: 21460
+ - uid: 21480
components:
- pos: 8.5,53.5
parent: 2
type: Transform
- - uid: 21461
+ - uid: 21481
components:
- pos: 7.5,54.5
parent: 2
type: Transform
- proto: MaintenanceToolSpawner
entities:
- - uid: 21462
+ - uid: 21482
components:
- pos: -13.5,12.5
parent: 2
type: Transform
- - uid: 21463
+ - uid: 21483
components:
- pos: 36.5,-50.5
parent: 2
type: Transform
- - uid: 21464
+ - uid: 21484
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-6.5
parent: 2
type: Transform
- - uid: 21465
+ - uid: 21485
components:
- pos: -52.5,-15.5
parent: 2
type: Transform
- - uid: 21466
+ - uid: 21486
components:
- pos: -24.5,-52.5
parent: 2
type: Transform
- - uid: 21467
+ - uid: 21487
components:
- pos: 0.5,23.5
parent: 2
type: Transform
- - uid: 21468
+ - uid: 21488
components:
- pos: -3.5,34.5
parent: 2
type: Transform
- - uid: 21469
+ - uid: 21489
components:
- pos: -49.5,14.5
parent: 2
type: Transform
- - uid: 21470
+ - uid: 21490
components:
- pos: 3.5,-17.5
parent: 2
type: Transform
- - uid: 21471
+ - uid: 21491
components:
- pos: 59.5,2.5
parent: 2
type: Transform
- - uid: 21472
+ - uid: 21492
components:
- pos: 53.5,47.5
parent: 2
type: Transform
- - uid: 21473
+ - uid: 21493
components:
- pos: 67.5,8.5
parent: 2
type: Transform
- - uid: 21474
+ - uid: 21494
components:
- pos: 18.5,39.5
parent: 2
type: Transform
- - uid: 21475
+ - uid: 21495
components:
- pos: 16.5,56.5
parent: 2
type: Transform
- - uid: 21476
+ - uid: 21496
components:
- pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 21477
+ - uid: 21497
components:
- pos: -8.5,-82.5
parent: 2
type: Transform
- - uid: 21478
+ - uid: 21498
components:
- pos: 58.5,-30.5
parent: 2
type: Transform
- - uid: 21479
+ - uid: 21499
components:
- pos: 53.5,-28.5
parent: 2
type: Transform
- - uid: 21480
+ - uid: 21500
components:
- pos: 46.5,-63.5
parent: 2
type: Transform
- - uid: 21481
+ - uid: 21501
components:
- pos: 44.5,-8.5
parent: 2
type: Transform
- - uid: 21482
+ - uid: 21502
components:
- pos: 5.5,-13.5
parent: 2
type: Transform
- proto: MaintenanceWeaponSpawner
entities:
- - uid: 21483
+ - uid: 21503
components:
- pos: 55.5,61.5
parent: 2
type: Transform
- - uid: 21484
+ - uid: 21504
components:
- pos: -49.5,-74.5
parent: 2
type: Transform
- - uid: 21485
+ - uid: 21505
components:
- pos: 35.5,-12.5
parent: 2
type: Transform
- - uid: 21486
+ - uid: 21506
components:
- pos: -29.5,-28.5
parent: 2
type: Transform
- - uid: 21487
+ - uid: 21507
components:
- pos: -12.5,17.5
parent: 2
type: Transform
- - uid: 21488
+ - uid: 21508
components:
- pos: 51.5,45.5
parent: 2
type: Transform
- - uid: 21489
+ - uid: 21509
components:
- pos: 43.5,37.5
parent: 2
type: Transform
- - uid: 21490
+ - uid: 21510
components:
- pos: -6.5,-88.5
parent: 2
type: Transform
- - uid: 21491
+ - uid: 21511
components:
- rot: 3.141592653589793 rad
pos: 49.5,-66.5
parent: 2
type: Transform
- - uid: 21492
+ - uid: 21512
components:
- rot: 3.141592653589793 rad
pos: 66.5,-61.5
parent: 2
type: Transform
- - uid: 21493
+ - uid: 21513
components:
- pos: -48.5,16.5
parent: 2
type: Transform
- - uid: 21494
+ - uid: 21514
components:
- pos: -28.5,-5.5
parent: 2
type: Transform
- - uid: 21495
+ - uid: 21515
components:
- pos: 42.5,-7.5
parent: 2
type: Transform
- - uid: 21496
+ - uid: 21516
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-88.5
parent: 2
type: Transform
- - uid: 21497
+ - uid: 21517
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-86.5
@@ -141345,300 +141447,300 @@ entities:
type: Transform
- proto: Matchbox
entities:
- - uid: 21498
+ - uid: 21518
components:
- pos: 61.092392,-1.3427626
parent: 2
type: Transform
- - uid: 21499
+ - uid: 21519
components:
- pos: -38.035473,16.606607
parent: 2
type: Transform
- proto: MaterialCloth
entities:
- - uid: 21500
+ - uid: 21520
components:
- pos: 2.4694777,-7.332773
parent: 2
type: Transform
- - uid: 21501
+ - uid: 21521
components:
- pos: 2.5319777,-7.395273
parent: 2
type: Transform
- - uid: 21502
+ - uid: 21522
components:
- pos: 2.4851027,-7.379648
parent: 2
type: Transform
- proto: MaterialDiamond1
entities:
- - uid: 21503
+ - uid: 21523
components:
- pos: 59.45189,-51.928257
parent: 2
type: Transform
- proto: MaterialDurathread
entities:
- - uid: 21504
+ - uid: 21524
components:
- pos: 2.6569777,-7.614023
parent: 2
type: Transform
- proto: MaterialReclaimer
entities:
- - uid: 21505
+ - uid: 21525
components:
- pos: -39.5,18.5
parent: 2
type: Transform
- proto: MaterialWoodPlank
entities:
- - uid: 21506
+ - uid: 21526
components:
- rot: 3.141592653589793 rad
pos: 38.425755,46.464603
parent: 2
type: Transform
- - uid: 21507
+ - uid: 21527
components:
- pos: -32.447933,-98.42257
parent: 2
type: Transform
- proto: MaterialWoodPlank1
entities:
- - uid: 21508
+ - uid: 21528
components:
- pos: 50.46261,24.730665
parent: 2
type: Transform
- - uid: 21509
+ - uid: 21529
components:
- pos: 17.500986,29.51836
parent: 2
type: Transform
- proto: MedicalBed
entities:
- - uid: 21510
+ - uid: 21530
components:
- pos: 44.5,5.5
parent: 2
type: Transform
- - uid: 21511
+ - uid: 21531
components:
- pos: -9.5,-57.5
parent: 2
type: Transform
- - uid: 21512
+ - uid: 21532
components:
- pos: -12.5,-57.5
parent: 2
type: Transform
- - uid: 21513
+ - uid: 21533
components:
- pos: -3.5,-57.5
parent: 2
type: Transform
- - uid: 21514
+ - uid: 21534
components:
- pos: -0.5,-57.5
parent: 2
type: Transform
- - uid: 21515
+ - uid: 21535
components:
- pos: -21.5,-54.5
parent: 2
type: Transform
- - uid: 21516
+ - uid: 21536
components:
- pos: 44.5,4.5
parent: 2
type: Transform
- - uid: 21517
+ - uid: 21537
components:
- pos: -6.5,-57.5
parent: 2
type: Transform
- - uid: 21518
+ - uid: 21538
components:
- pos: 6.5,-56.5
parent: 2
type: Transform
- proto: MedicalTechFab
entities:
- - uid: 21519
+ - uid: 21539
components:
- pos: -16.5,-48.5
parent: 2
type: Transform
- proto: MedkitBruteFilled
entities:
- - uid: 21520
+ - uid: 21540
components:
- pos: 45.394405,8.60885
parent: 2
type: Transform
- - uid: 21521
+ - uid: 21541
components:
- pos: 19.413246,-20.453436
parent: 2
type: Transform
- - uid: 21522
+ - uid: 21542
components:
- pos: 9.446222,-62.560196
parent: 2
type: Transform
- - uid: 21523
+ - uid: 21543
components:
- pos: 29.573622,4.6594224
parent: 2
type: Transform
- - uid: 21524
+ - uid: 21544
components:
- pos: 9.774347,-62.35707
parent: 2
type: Transform
- - uid: 21525
+ - uid: 21545
components:
- pos: 55.59084,42.504738
parent: 2
type: Transform
- proto: MedkitBurnFilled
entities:
- - uid: 21526
+ - uid: 21546
components:
- pos: 9.368097,-58.216446
parent: 2
type: Transform
- - uid: 21527
+ - uid: 21547
components:
- pos: 9.633722,-58.372696
parent: 2
type: Transform
- - uid: 21528
+ - uid: 21548
components:
- pos: 18.55885,-21.682238
parent: 2
type: Transform
- proto: MedkitCombatFilled
entities:
- - uid: 21529
+ - uid: 21549
components:
- pos: -22.488134,-54.362434
parent: 2
type: Transform
- proto: MedkitFilled
entities:
- - uid: 21530
+ - uid: 21550
components:
- pos: 18.506996,-21.230959
parent: 2
type: Transform
- - uid: 21531
+ - uid: 21551
components:
- pos: 52.41982,-43.535877
parent: 2
type: Transform
- proto: MedkitOxygenFilled
entities:
- - uid: 21532
+ - uid: 21552
components:
- pos: 10.352472,-61.403946
parent: 2
type: Transform
- - uid: 21533
+ - uid: 21553
components:
- pos: 10.649347,-61.57582
parent: 2
type: Transform
- - uid: 21534
+ - uid: 21554
components:
- pos: 18.533411,-22.207966
parent: 2
type: Transform
- - uid: 21535
+ - uid: 21555
components:
- pos: -23.768847,-36.553474
parent: 2
type: Transform
- - uid: 21536
+ - uid: 21556
components:
- pos: 59.446957,-3.3832169
parent: 2
type: Transform
- - uid: 21537
+ - uid: 21557
components:
- pos: 65.55114,-6.3846307
parent: 2
type: Transform
- - uid: 21538
+ - uid: 21558
components:
- pos: -34.54821,20.589455
parent: 2
type: Transform
- - uid: 21539
+ - uid: 21559
components:
- pos: 64.63776,28.514448
parent: 2
type: Transform
- - uid: 21540
+ - uid: 21560
components:
- pos: -70.47538,-28.482313
parent: 2
type: Transform
- proto: MedkitRadiationFilled
entities:
- - uid: 21541
+ - uid: 21561
components:
- pos: 10.352472,-60.278946
parent: 2
type: Transform
- - uid: 21542
+ - uid: 21562
components:
- pos: 10.649347,-60.466446
parent: 2
type: Transform
- - uid: 21543
+ - uid: 21563
components:
- pos: -62.43085,-27.543978
parent: 2
type: Transform
- proto: MedkitToxinFilled
entities:
- - uid: 21544
+ - uid: 21564
components:
- pos: 10.350285,-59.237457
parent: 2
type: Transform
- - uid: 21545
+ - uid: 21565
components:
- pos: 10.649347,-59.372696
parent: 2
type: Transform
- proto: MicroManipulatorStockPart
entities:
- - uid: 21546
+ - uid: 21566
components:
- pos: 57.42882,-47.52101
parent: 2
type: Transform
- proto: MicrowaveMachineCircuitboard
entities:
- - uid: 21547
+ - uid: 21567
components:
- pos: 41.53089,-54.195484
parent: 2
type: Transform
- proto: Mirror
entities:
- - uid: 21548
+ - uid: 21568
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-3.5
parent: 2
type: Transform
- - uid: 21549
+ - uid: 21569
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-2.5
@@ -141646,14 +141748,14 @@ entities:
type: Transform
- proto: ModularGrenade
entities:
- - uid: 21550
+ - uid: 21570
components:
- pos: 65.475975,-29.06539
parent: 2
type: Transform
- proto: MonkeyCube
entities:
- - uid: 21551
+ - uid: 21571
components:
- rot: -1.5707963267948966 rad
pos: -10.530531,-95.43873
@@ -141661,93 +141763,98 @@ entities:
type: Transform
- proto: MonkeyCubeBox
entities:
- - uid: 21552
+ - uid: 21572
components:
- pos: -24.421421,-84.24069
parent: 2
type: Transform
- proto: MonkeyCubeWrapped
entities:
- - uid: 21553
+ - uid: 21573
components:
- pos: 73.2274,-38.215343
parent: 2
type: Transform
- - uid: 21554
+ - uid: 21574
components:
- pos: 73.19615,-38.35597
parent: 2
type: Transform
- - uid: 21555
+ - uid: 21575
components:
- pos: -6.631571,49.76703
parent: 2
type: Transform
- - uid: 21556
+ - uid: 21576
components:
- pos: -6.787821,49.64203
parent: 2
type: Transform
- proto: MoonBattlemap
entities:
- - uid: 21557
+ - uid: 21577
components:
- pos: 10.548178,-6.825127
parent: 2
type: Transform
- proto: MopBucket
entities:
- - uid: 21558
+ - uid: 21578
components:
- pos: -9.522026,-69.41262
parent: 2
type: Transform
- - uid: 21559
+ - uid: 21579
components:
- pos: -7.441774,-23.373123
parent: 2
type: Transform
- - uid: 21560
+ - uid: 21580
components:
- pos: 52.057404,15.557394
parent: 2
type: Transform
- - uid: 21561
+ - uid: 21581
components:
- pos: 15.4907,31.562498
parent: 2
type: Transform
- - uid: 21562
+ - uid: 21582
components:
- pos: -8.510638,-21.457159
parent: 2
type: Transform
- proto: MopItem
entities:
- - uid: 21563
+ - uid: 21583
+ components:
+ - pos: -7.5762715,-19.507223
+ parent: 2
+ type: Transform
+ - uid: 21584
components:
- rot: -1.5707963267948966 rad
pos: -9.459526,-68.63137
parent: 2
type: Transform
- - uid: 21564
+ - uid: 21585
components:
- pos: -13.596031,-22.66943
parent: 2
type: Transform
- - uid: 21565
+ - uid: 21586
components:
- pos: -13.473024,-22.732498
parent: 2
type: Transform
- - uid: 21566
+ - uid: 21587
components:
- pos: 51.744904,15.651144
parent: 2
type: Transform
- proto: Morgue
entities:
- - uid: 21567
+ - uid: 21588
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-65.5
@@ -141771,7 +141878,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21568
+ - uid: 21589
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-64.5
@@ -141795,7 +141902,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21569
+ - uid: 21590
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-64.5
@@ -141819,7 +141926,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21570
+ - uid: 21591
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-65.5
@@ -141843,7 +141950,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21571
+ - uid: 21592
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-66.5
@@ -141867,7 +141974,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21572
+ - uid: 21593
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-64.5
@@ -141891,7 +141998,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21573
+ - uid: 21594
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-65.5
@@ -141915,7 +142022,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21574
+ - uid: 21595
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-66.5
@@ -141939,7 +142046,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21575
+ - uid: 21596
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-66.5
@@ -141963,7 +142070,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21576
+ - uid: 21597
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-63.5
@@ -141987,7 +142094,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21577
+ - uid: 21598
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-63.5
@@ -142011,7 +142118,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21578
+ - uid: 21599
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-64.5
@@ -142035,7 +142142,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21579
+ - uid: 21600
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-65.5
@@ -142059,7 +142166,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21580
+ - uid: 21601
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-66.5
@@ -142083,7 +142190,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21581
+ - uid: 21602
components:
- rot: -1.5707963267948966 rad
pos: -28.5,10.5
@@ -142107,7 +142214,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 21582
+ - uid: 21603
components:
- rot: -1.5707963267948966 rad
pos: -28.5,9.5
@@ -142133,277 +142240,277 @@ entities:
type: EntityStorage
- proto: MouseTimedSpawner
entities:
- - uid: 21583
+ - uid: 21604
components:
- pos: -56.5,-48.5
parent: 2
type: Transform
- - uid: 21584
+ - uid: 21605
components:
- pos: 43.5,-10.5
parent: 2
type: Transform
- - uid: 21585
+ - uid: 21606
components:
- pos: 62.5,13.5
parent: 2
type: Transform
- - uid: 21586
+ - uid: 21607
components:
- pos: 5.5,-70.5
parent: 2
type: Transform
- proto: Multitool
entities:
- - uid: 21587
+ - uid: 21608
components:
- rot: 1.5707963267948966 rad
pos: 12.526134,20.708286
parent: 2
type: Transform
- - uid: 21588
+ - uid: 21609
components:
- pos: 53.354275,-43.443607
parent: 2
type: Transform
- - uid: 21589
+ - uid: 21610
components:
- pos: -25.14612,-19.37103
parent: 2
type: Transform
- - uid: 21590
+ - uid: 21611
components:
- pos: -23.347115,-36.422188
parent: 2
type: Transform
- - uid: 21591
+ - uid: 21612
components:
- rot: -1.5707963267948966 rad
pos: -36.559425,-33.012554
parent: 2
type: Transform
- - uid: 21592
+ - uid: 21613
components:
- pos: -56.47646,-35.42343
parent: 2
type: Transform
- - uid: 21593
+ - uid: 21614
components:
- pos: -40.522213,25.653383
parent: 2
type: Transform
- - uid: 21594
+ - uid: 21615
components:
- rot: 3.141592653589793 rad
pos: -32.80296,29.595348
parent: 2
type: Transform
- - uid: 21595
+ - uid: 21616
components:
- pos: -27.507483,24.649845
parent: 2
type: Transform
- - uid: 21596
+ - uid: 21617
components:
- pos: 73.29074,-44.41717
parent: 2
type: Transform
- - uid: 21597
+ - uid: 21618
components:
- pos: 58.474205,51.52541
parent: 2
type: Transform
- - uid: 21598
+ - uid: 21619
components:
- pos: -57.653404,-25.398897
parent: 2
type: Transform
- devices:
- 'UID: 31532': 12657
+ 'UID: 31532': 12679
type: NetworkConfigurator
- - uid: 21599
+ - uid: 21620
components:
- pos: -9.540877,-65.36475
parent: 2
type: Transform
- - uid: 21600
+ - uid: 21621
components:
- pos: 72.48785,36.5135
parent: 2
type: Transform
- - uid: 21601
+ - uid: 21622
components:
- pos: -29.3818,-98.32888
parent: 2
type: Transform
- devices:
- 'UID: 39451': 19761
- 'UID: 39450': 20002
+ 'UID: 39451': 19764
+ 'UID: 39450': 20004
'UID: 39636': 915
type: NetworkConfigurator
- - uid: 21602
+ - uid: 21623
components:
- pos: 65.54721,-51.514313
parent: 2
type: Transform
- - uid: 21603
+ - uid: 21624
components:
- pos: -28.40416,-19.522995
parent: 2
type: Transform
- - uid: 21604
+ - uid: 21625
components:
- pos: -26.512882,-61.421627
parent: 2
type: Transform
- - uid: 21605
+ - uid: 21626
components:
- pos: -71.37105,-28.43189
parent: 2
type: Transform
- devices:
'UID: 32940': 932
- 'UID: 32944': 15201
- 'UID: 32945': 15202
+ 'UID: 32944': 15219
+ 'UID: 32945': 15220
linkModeActive: False
type: NetworkConfigurator
- proto: NitrogenCanister
entities:
- - uid: 21606
+ - uid: 21627
components:
- pos: -8.5,-72.5
parent: 2
type: Transform
- - uid: 21607
+ - uid: 21628
components:
- pos: 45.5,-51.5
parent: 2
type: Transform
- - uid: 21608
+ - uid: 21629
components:
- pos: -50.5,-54.5
parent: 2
type: Transform
- - uid: 21609
+ - uid: 21630
components:
- pos: -39.5,-38.5
parent: 2
type: Transform
- - uid: 21610
+ - uid: 21631
components:
- pos: -51.5,-70.5
parent: 2
type: Transform
- - uid: 21611
+ - uid: 21632
components:
- pos: -26.5,37.5
parent: 2
type: Transform
- - uid: 21612
+ - uid: 21633
components:
- pos: -28.5,41.5
parent: 2
type: Transform
- - uid: 21613
+ - uid: 21634
components:
- pos: 72.5,-35.5
parent: 2
type: Transform
- - uid: 21614
+ - uid: 21635
components:
- pos: 46.5,-51.5
parent: 2
type: Transform
- - uid: 21615
+ - uid: 21636
components:
- pos: -22.5,-62.5
parent: 2
type: Transform
- - uid: 21616
+ - uid: 21637
components:
- pos: 3.5,-73.5
parent: 2
type: Transform
- proto: NitrogenTankFilled
entities:
- - uid: 21617
+ - uid: 21638
components:
- pos: -22.469156,-57.61924
parent: 2
type: Transform
- - uid: 21618
+ - uid: 21639
components:
- pos: -54.344475,0.46202505
parent: 2
type: Transform
- - uid: 21619
+ - uid: 21640
components:
- pos: -49.491314,1.5773844
parent: 2
type: Transform
- - uid: 21620
+ - uid: 21641
components:
- pos: -70.575325,-25.445038
parent: 2
type: Transform
- - uid: 21621
+ - uid: 21642
components:
- pos: 64.52838,29.170698
parent: 2
type: Transform
- proto: NitrousOxideCanister
entities:
- - uid: 21622
+ - uid: 21643
components:
- pos: -38.5,-38.5
parent: 2
type: Transform
- - uid: 21623
+ - uid: 21644
components:
- pos: 54.5,-55.5
parent: 2
type: Transform
- - uid: 21624
+ - uid: 21645
components:
- pos: -76.5,-46.5
parent: 2
type: Transform
- proto: NitrousOxideTank
entities:
- - uid: 21625
+ - uid: 21646
components:
- pos: -3.498691,-65.92361
parent: 2
type: Transform
- proto: NitrousOxideTankFilled
entities:
- - uid: 21626
+ - uid: 21647
components:
- pos: -15.868101,-35.49305
parent: 2
type: Transform
- proto: NodeScanner
entities:
- - uid: 21627
+ - uid: 21648
components:
- pos: 73.66279,-38.523205
parent: 2
type: Transform
- proto: NoticeBoard
entities:
- - uid: 21628
+ - uid: 21649
components:
- pos: -0.5,4.5
parent: 2
type: Transform
- - uid: 21629
+ - uid: 21650
components:
- pos: 13.5,15.5
parent: 2
type: Transform
- proto: NuclearBomb
entities:
- - uid: 21630
+ - uid: 21651
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-22.5
@@ -142411,868 +142518,868 @@ entities:
type: Transform
- proto: NuclearBombKeg
entities:
- - uid: 21631
+ - uid: 21652
components:
- pos: 46.5,-29.5
parent: 2
type: Transform
- proto: Ointment
entities:
- - uid: 21632
+ - uid: 21653
components:
- rot: -1.5707963267948966 rad
pos: 47.628784,4.507307
parent: 2
type: Transform
- - uid: 21633
+ - uid: 21654
components:
- pos: -12.245195,-56.394966
parent: 2
type: Transform
- - uid: 21634
+ - uid: 21655
components:
- pos: -9.307695,-56.332466
parent: 2
type: Transform
- - uid: 21635
+ - uid: 21656
components:
- pos: -6.2759557,-56.37934
parent: 2
type: Transform
- - uid: 21636
+ - uid: 21657
components:
- pos: -3.256374,-56.363716
parent: 2
type: Transform
- - uid: 21637
+ - uid: 21658
components:
- pos: -0.2810341,-56.37934
parent: 2
type: Transform
- proto: OnionRedSeeds
entities:
- - uid: 21638
+ - uid: 21659
components:
- pos: -32.362232,6.029836
parent: 2
type: Transform
- proto: OnionSeeds
entities:
- - uid: 21639
+ - uid: 21660
components:
- pos: -32.52041,6.4317174
parent: 2
type: Transform
- proto: OperatingTable
entities:
- - uid: 21640
+ - uid: 21661
components:
- pos: -15.5,-33.5
parent: 2
type: Transform
- - uid: 21641
+ - uid: 21662
components:
- pos: -1.5,-65.5
parent: 2
type: Transform
- - uid: 21642
+ - uid: 21663
components:
- pos: -7.5,-97.5
parent: 2
type: Transform
- - uid: 21643
+ - uid: 21664
components:
- pos: 71.5,-48.5
parent: 2
type: Transform
- proto: OreBag
entities:
- - uid: 21644
+ - uid: 21665
components:
- pos: -41.057323,35.546143
parent: 2
type: Transform
- proto: OreBox
entities:
- - uid: 21645
+ - uid: 21666
components:
- pos: -43.5,35.5
parent: 2
type: Transform
- - uid: 21646
+ - uid: 21667
components:
- pos: -42.5,35.5
parent: 2
type: Transform
- proto: OreProcessor
entities:
- - uid: 21647
+ - uid: 21668
components:
- pos: -41.5,26.5
parent: 2
type: Transform
- proto: OxygenCanister
entities:
- - uid: 21648
+ - uid: 21669
components:
- pos: -76.5,-44.5
parent: 2
type: Transform
- - uid: 21649
+ - uid: 21670
components:
- pos: -9.5,-72.5
parent: 2
type: Transform
- - uid: 21650
+ - uid: 21671
components:
- pos: 59.5,29.5
parent: 2
type: Transform
- - uid: 21651
+ - uid: 21672
components:
- pos: 45.5,-52.5
parent: 2
type: Transform
- - uid: 21652
+ - uid: 21673
components:
- pos: -25.5,-31.5
parent: 2
type: Transform
- - uid: 21653
+ - uid: 21674
components:
- pos: -50.5,-52.5
parent: 2
type: Transform
- - uid: 21654
+ - uid: 21675
components:
- pos: -37.5,-38.5
parent: 2
type: Transform
- - uid: 21655
+ - uid: 21676
components:
- pos: -25.5,-55.5
parent: 2
type: Transform
- - uid: 21656
+ - uid: 21677
components:
- pos: -34.5,-30.5
parent: 2
type: Transform
- - uid: 21657
+ - uid: 21678
components:
- pos: -48.5,28.5
parent: 2
type: Transform
- - uid: 21658
+ - uid: 21679
components:
- pos: -31.5,17.5
parent: 2
type: Transform
- - uid: 21659
+ - uid: 21680
components:
- pos: -29.5,41.5
parent: 2
type: Transform
- - uid: 21660
+ - uid: 21681
components:
- pos: 73.5,-35.5
parent: 2
type: Transform
- - uid: 21661
+ - uid: 21682
components:
- pos: 46.5,-52.5
parent: 2
type: Transform
- - uid: 21662
+ - uid: 21683
components:
- pos: -25.5,-62.5
parent: 2
type: Transform
- - uid: 21663
+ - uid: 21684
components:
- pos: 4.5,-73.5
parent: 2
type: Transform
- proto: OxygenTankFilled
entities:
- - uid: 21664
+ - uid: 21685
components:
- pos: -54.60223,0.49364984
parent: 2
type: Transform
- - uid: 21665
+ - uid: 21686
components:
- pos: -22.609781,-57.353615
parent: 2
type: Transform
- proto: PaintingAmogusTriptych
entities:
- - uid: 21666
+ - uid: 21687
components:
- pos: -16.5,-36.5
parent: 2
type: Transform
- - uid: 21667
+ - uid: 21688
components:
- pos: 45.5,-12.5
parent: 2
type: Transform
- proto: PaintingMonkey
entities:
- - uid: 21668
+ - uid: 21689
components:
- pos: 13.5,-9.5
parent: 2
type: Transform
- proto: PaintingNightHawks
entities:
- - uid: 21669
+ - uid: 21690
components:
- pos: -9.5,-34.5
parent: 2
type: Transform
- proto: PaintingSkeletonBoof
entities:
- - uid: 21670
+ - uid: 21691
components:
- pos: 9.5,-3.5
parent: 2
type: Transform
- proto: PaintingSkeletonCigarette
entities:
- - uid: 21671
+ - uid: 21692
components:
- pos: -14.5,-36.5
parent: 2
type: Transform
- proto: PaintingTheGreatWave
entities:
- - uid: 21672
+ - uid: 21693
components:
- pos: 30.5,-26.5
parent: 2
type: Transform
- proto: PaintingTheScream
entities:
- - uid: 21673
+ - uid: 21694
components:
- pos: -7.5,-35.5
parent: 2
type: Transform
- proto: PaintingTheSonOfMan
entities:
- - uid: 21674
+ - uid: 21695
components:
- pos: -25.5,16.5
parent: 2
type: Transform
- proto: Paper
entities:
- - uid: 21675
+ - uid: 21696
components:
- pos: 20.483978,-12.296361
parent: 2
type: Transform
- - uid: 21676
+ - uid: 21697
components:
- pos: 20.661783,-12.471693
parent: 2
type: Transform
- - uid: 21677
+ - uid: 21698
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21678
+ - uid: 21699
components:
- pos: 6.351438,20.675463
parent: 2
type: Transform
- - uid: 21679
+ - uid: 21700
components:
- rot: -1.5707963267948966 rad
pos: -12.583234,-18.98207
parent: 2
type: Transform
- - uid: 21680
+ - uid: 21701
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21681
+ - uid: 21702
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21682
+ - uid: 21703
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21683
+ - uid: 21704
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21684
+ - uid: 21705
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21685
+ - uid: 21706
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21686
+ - uid: 21707
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21687
+ - uid: 21708
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21688
+ - uid: 21709
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21689
+ - uid: 21710
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21690
+ - uid: 21711
components:
- rot: 1.5707963267948966 rad
pos: -28.478912,45.366596
parent: 2
type: Transform
- - uid: 21691
+ - uid: 21712
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21692
+ - uid: 21713
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21693
+ - uid: 21714
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21694
+ - uid: 21715
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21695
+ - uid: 21716
components:
- rot: 3.141592653589793 rad
pos: -10.57877,-37.384254
parent: 2
type: Transform
- - uid: 21696
+ - uid: 21717
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21697
+ - uid: 21718
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21698
+ - uid: 21719
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21699
+ - uid: 21720
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21700
+ - uid: 21721
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21701
+ - uid: 21722
components:
- pos: 24.486351,19.53259
parent: 2
type: Transform
- - uid: 21702
+ - uid: 21723
components:
- rot: 3.141592653589793 rad
pos: 16.421602,22.571196
parent: 2
type: Transform
- - uid: 21703
+ - uid: 21724
components:
- rot: 3.141592653589793 rad
pos: 16.515352,22.55557
parent: 2
type: Transform
- - uid: 21704
+ - uid: 21725
components:
- rot: 3.141592653589793 rad
pos: 16.499727,22.571196
parent: 2
type: Transform
- - uid: 21705
+ - uid: 21726
components:
- rot: 3.141592653589793 rad
pos: 16.499727,22.571196
parent: 2
type: Transform
- - uid: 21706
+ - uid: 21727
components:
- rot: 3.141592653589793 rad
pos: 16.499727,22.571196
parent: 2
type: Transform
- - uid: 21707
+ - uid: 21728
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21708
+ - uid: 21729
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21709
+ - uid: 21730
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21710
+ - uid: 21731
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21711
+ - uid: 21732
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21712
+ - uid: 21733
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21713
+ - uid: 21734
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21714
+ - uid: 21735
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21715
+ - uid: 21736
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21716
+ - uid: 21737
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21717
+ - uid: 21738
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21718
+ - uid: 21739
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21719
+ - uid: 21740
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21720
+ - uid: 21741
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21721
+ - uid: 21742
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21722
+ - uid: 21743
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21723
+ - uid: 21744
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21724
+ - uid: 21745
components:
- rot: 1.5707963267948966 rad
pos: 43.519466,-3.4569287
parent: 2
type: Transform
- - uid: 21725
+ - uid: 21746
components:
- rot: 1.5707963267948966 rad
pos: 37.488216,-3.5194297
parent: 2
type: Transform
- - uid: 21726
+ - uid: 21747
components:
- rot: 1.5707963267948966 rad
pos: 37.488216,-3.5194297
parent: 2
type: Transform
- - uid: 21727
+ - uid: 21748
components:
- rot: 1.5707963267948966 rad
pos: 37.488216,-3.5194297
parent: 2
type: Transform
- - uid: 21728
+ - uid: 21749
components:
- rot: 1.5707963267948966 rad
pos: 37.488216,-3.5194297
parent: 2
type: Transform
- - uid: 21729
+ - uid: 21750
components:
- rot: 1.5707963267948966 rad
pos: 37.59759,-3.6288047
parent: 2
type: Transform
- - uid: 21730
+ - uid: 21751
components:
- rot: 1.5707963267948966 rad
pos: 37.59759,-3.6288047
parent: 2
type: Transform
- - uid: 21731
+ - uid: 21752
components:
- rot: 1.5707963267948966 rad
pos: 37.550716,-3.6131797
parent: 2
type: Transform
- - uid: 21732
+ - uid: 21753
components:
- rot: 1.5707963267948966 rad
pos: 37.550716,-3.6131797
parent: 2
type: Transform
- - uid: 21733
+ - uid: 21754
components:
- rot: 1.5707963267948966 rad
pos: 37.56634,-3.6131797
parent: 2
type: Transform
- - uid: 21734
+ - uid: 21755
components:
- rot: 1.5707963267948966 rad
pos: 37.59759,-3.6288047
parent: 2
type: Transform
- - uid: 21735
+ - uid: 21756
components:
- rot: 1.5707963267948966 rad
pos: 37.59759,-3.6288047
parent: 2
type: Transform
- - uid: 21736
+ - uid: 21757
components:
- rot: 1.5707963267948966 rad
pos: 37.59759,-3.6288047
parent: 2
type: Transform
- - uid: 21737
+ - uid: 21758
components:
- pos: 38.47659,-2.4393778
parent: 2
type: Transform
- - uid: 21738
+ - uid: 21759
components:
- pos: 38.47659,-2.4393778
parent: 2
type: Transform
- - uid: 21739
+ - uid: 21760
components:
- pos: 38.47659,-2.4393778
parent: 2
type: Transform
- - uid: 21740
+ - uid: 21761
components:
- pos: 38.47659,-2.4393778
parent: 2
type: Transform
- - uid: 21741
+ - uid: 21762
components:
- pos: 38.47659,-2.4393778
parent: 2
type: Transform
- - uid: 21742
+ - uid: 21763
components:
- pos: 38.47659,-2.4393778
parent: 2
type: Transform
- - uid: 21743
+ - uid: 21764
components:
- pos: 38.47659,-2.4393778
parent: 2
type: Transform
- - uid: 21744
+ - uid: 21765
components:
- rot: 1.5707963267948966 rad
pos: 51.483532,-41.966263
parent: 2
type: Transform
- - uid: 21745
+ - uid: 21766
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21746
+ - uid: 21767
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21747
+ - uid: 21768
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21748
+ - uid: 21769
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21749
+ - uid: 21770
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21750
+ - uid: 21771
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21751
+ - uid: 21772
components:
- rot: 1.5707963267948966 rad
pos: 51.467907,-41.966263
parent: 2
type: Transform
- - uid: 21752
+ - uid: 21773
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21753
+ - uid: 21774
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21754
+ - uid: 21775
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21755
+ - uid: 21776
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21756
+ - uid: 21777
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21757
+ - uid: 21778
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21758
+ - uid: 21779
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21759
+ - uid: 21780
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21760
+ - uid: 21781
components:
- rot: -1.5707963267948966 rad
pos: -35.51461,-16.473585
parent: 2
type: Transform
- - uid: 21761
+ - uid: 21782
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21762
+ - uid: 21783
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21763
+ - uid: 21784
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21764
+ - uid: 21785
components:
- rot: -1.5707963267948966 rad
pos: -35.467735,-16.567335
parent: 2
type: Transform
- - uid: 21765
+ - uid: 21786
components:
- pos: 1.3868889,23.62748
parent: 2
type: Transform
- - uid: 21766
+ - uid: 21787
components:
- pos: 1.3868889,23.643105
parent: 2
type: Transform
- - uid: 21767
+ - uid: 21788
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21768
+ - uid: 21789
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21769
+ - uid: 21790
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21770
+ - uid: 21791
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21771
+ - uid: 21792
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21772
+ - uid: 21793
components:
- rot: 3.141592653589793 rad
pos: -26.49969,14.6061535
parent: 2
type: Transform
- - uid: 21773
+ - uid: 21794
components:
- pos: -31.206972,15.691786
parent: 2
type: Transform
- - uid: 21774
+ - uid: 21795
components:
- pos: -31.206972,15.691786
parent: 2
type: Transform
- - uid: 21775
+ - uid: 21796
components:
- pos: -31.363222,15.551161
parent: 2
type: Transform
- - uid: 21776
+ - uid: 21797
components:
- pos: -31.363222,15.551161
parent: 2
type: Transform
- - uid: 21777
+ - uid: 21798
components:
- pos: 10.165828,-6.3936543
parent: 2
type: Transform
- - uid: 21778
+ - uid: 21799
components:
- pos: 10.165828,-6.3936543
parent: 2
type: Transform
- - uid: 21779
+ - uid: 21800
components:
- pos: 9.367039,-7.0613875
parent: 2
type: Transform
- - uid: 21780
+ - uid: 21801
components:
- pos: -11.489469,-13.479897
parent: 2
@@ -143282,7 +143389,7 @@ entities:
Anything suspicious, please inform security.
type: Paper
- - uid: 21781
+ - uid: 21802
components:
- pos: -42.540462,17.447073
parent: 2
@@ -143292,53 +143399,53 @@ entities:
type: Paper
- proto: PaperBin10
entities:
- - uid: 21782
+ - uid: 21803
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 21783
+ - uid: 21804
components:
- pos: -22.48288,-97.58025
parent: 2
type: Transform
- proto: PaperBin5
entities:
- - uid: 21784
+ - uid: 21805
components:
- pos: -19.490406,-56.387535
parent: 2
type: Transform
- - uid: 21785
+ - uid: 21806
components:
- pos: -34.544167,24.426237
parent: 2
type: Transform
- - uid: 21786
+ - uid: 21807
components:
- rot: 3.141592653589793 rad
pos: -25.63709,-36.050198
parent: 2
type: Transform
- - uid: 21787
+ - uid: 21808
components:
- pos: -27.800707,-9.411719
parent: 2
type: Transform
- - uid: 21788
+ - uid: 21809
components:
- pos: 39.827625,-39.412262
parent: 2
type: Transform
- - uid: 21789
+ - uid: 21810
components:
- pos: -17.5,-61.5
parent: 2
type: Transform
- proto: PaperCaptainsThoughts
entities:
- - uid: 21790
+ - uid: 21811
components:
- rot: 1.5707963267948966 rad
pos: 30.690884,-28.507551
@@ -143346,21 +143453,21 @@ entities:
type: Transform
- proto: PaperRolling
entities:
- - uid: 21791
+ - uid: 21812
components:
- pos: 50.67044,57.737556
parent: 2
type: Transform
- proto: ParticleAcceleratorControlBoxUnfinished
entities:
- - uid: 21792
+ - uid: 21813
components:
- pos: -66.5,-30.5
parent: 2
type: Transform
- proto: ParticleAcceleratorEmitterForeUnfinished
entities:
- - uid: 21793
+ - uid: 21814
components:
- rot: 3.141592653589793 rad
pos: -66.5,-24.5
@@ -143368,7 +143475,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorEmitterPortUnfinished
entities:
- - uid: 21794
+ - uid: 21815
components:
- rot: 3.141592653589793 rad
pos: -67.5,-24.5
@@ -143376,7 +143483,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorEmitterStarboard
entities:
- - uid: 21795
+ - uid: 21816
components:
- rot: 3.141592653589793 rad
pos: -65.5,-24.5
@@ -143384,7 +143491,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorEndCapUnfinished
entities:
- - uid: 21796
+ - uid: 21817
components:
- rot: 3.141592653589793 rad
pos: -66.5,-27.5
@@ -143392,7 +143499,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- - uid: 21797
+ - uid: 21818
components:
- rot: 3.141592653589793 rad
pos: -65.5,-26.5
@@ -143400,7 +143507,7 @@ entities:
type: Transform
- proto: ParticleAcceleratorPowerBoxUnfinished
entities:
- - uid: 21798
+ - uid: 21819
components:
- rot: 3.141592653589793 rad
pos: -66.5,-25.5
@@ -143408,40 +143515,40 @@ entities:
type: Transform
- proto: PartRodMetal
entities:
- - uid: 21799
+ - uid: 21820
components:
- pos: -40.15428,-18.425268
parent: 2
type: Transform
- - uid: 21800
+ - uid: 21821
components:
- pos: -39.68701,25.670773
parent: 2
type: Transform
- - uid: 21801
+ - uid: 21822
components:
- pos: -40.541622,33.38082
parent: 2
type: Transform
- - uid: 21802
+ - uid: 21823
components:
- pos: -47.52058,40.270145
parent: 2
type: Transform
- proto: PartRodMetal1
entities:
- - uid: 21803
+ - uid: 21824
components:
- pos: -34.56476,-25.498856
parent: 2
type: Transform
- - uid: 21804
+ - uid: 21825
components:
- rot: -1.5707963267948966 rad
pos: 3.9014397,49.543682
parent: 2
type: Transform
- - uid: 21805
+ - uid: 21826
components:
- rot: 3.141592653589793 rad
pos: 1.4099668,48.504288
@@ -143449,46 +143556,46 @@ entities:
type: Transform
- proto: Pen
entities:
- - uid: 21806
+ - uid: 21827
components:
- rot: -1.5707963267948966 rad
pos: -4.7918606,-48.471176
parent: 2
type: Transform
- - uid: 21807
+ - uid: 21828
components:
- rot: 3.141592653589793 rad
pos: -10.781895,-37.52488
parent: 2
type: Transform
- - uid: 21808
+ - uid: 21829
components:
- rot: 3.141592653589793 rad
pos: 16.218477,22.61807
parent: 2
type: Transform
- - uid: 21809
+ - uid: 21830
components:
- pos: 16.327852,21.55557
parent: 2
type: Transform
- - uid: 21810
+ - uid: 21831
components:
- pos: 43.66009,-3.5506787
parent: 2
type: Transform
- - uid: 21811
+ - uid: 21832
components:
- pos: 37.66009,-3.7069297
parent: 2
type: Transform
- - uid: 21812
+ - uid: 21833
components:
- rot: -1.5707963267948966 rad
pos: -35.775307,-16.265104
parent: 2
type: Transform
- - uid: 21813
+ - uid: 21834
components:
- rot: 1.5707963267948966 rad
pos: 3.6684875,-10.184602
@@ -143496,35 +143603,35 @@ entities:
type: Transform
- proto: PersonalAI
entities:
- - uid: 21814
+ - uid: 21835
components:
- flags: SessionSpecific
type: MetaData
- pos: 26.517971,-21.50738
parent: 2
type: Transform
- - uid: 21815
+ - uid: 21836
components:
- flags: SessionSpecific
type: MetaData
- pos: 11.402888,8.363556
parent: 2
type: Transform
- - uid: 21816
+ - uid: 21837
components:
- flags: SessionSpecific
type: MetaData
- pos: 12.500859,-4.4425125
parent: 2
type: Transform
- - uid: 21817
+ - uid: 21838
components:
- flags: SessionSpecific
type: MetaData
- pos: -48.458683,6.4665513
parent: 2
type: Transform
- - uid: 21818
+ - uid: 21839
components:
- flags: SessionSpecific
type: MetaData
@@ -143533,14 +143640,14 @@ entities:
type: Transform
- proto: PhoneInstrument
entities:
- - uid: 21819
+ - uid: 21840
components:
- pos: 60.321476,-1.3655583
parent: 2
type: Transform
- proto: PianoInstrument
entities:
- - uid: 21820
+ - uid: 21841
components:
- rot: -1.5707963267948966 rad
pos: 8.5,0.5
@@ -143548,234 +143655,234 @@ entities:
type: Transform
- proto: Pickaxe
entities:
- - uid: 21821
+ - uid: 21842
components:
- pos: -38.26402,27.606245
parent: 2
type: Transform
- - uid: 21822
+ - uid: 21843
components:
- pos: -38.54527,27.71562
parent: 2
type: Transform
- - uid: 21823
+ - uid: 21844
components:
- pos: -47.972298,26.558094
parent: 2
type: Transform
- - uid: 21824
+ - uid: 21845
components:
- pos: 68.4767,50.00708
parent: 2
type: Transform
- - uid: 21825
+ - uid: 21846
components:
- pos: 20.350138,46.202785
parent: 2
type: Transform
- - uid: 21826
+ - uid: 21847
components:
- pos: -47.48462,39.252865
parent: 2
type: Transform
- - uid: 21827
+ - uid: 21848
components:
- pos: 63.54565,-33.402943
parent: 2
type: Transform
- proto: PillCanister
entities:
- - uid: 21828
+ - uid: 21849
components:
- pos: -10.04752,-37.290504
parent: 2
type: Transform
- proto: PillDexalin
entities:
- - uid: 21829
+ - uid: 21850
components:
- pos: -10.034681,-32.27196
parent: 2
type: Transform
- - uid: 21830
+ - uid: 21851
components:
- pos: -10.034681,-32.27196
parent: 2
type: Transform
- - uid: 21831
+ - uid: 21852
components:
- pos: -10.019056,-32.27196
parent: 2
type: Transform
- - uid: 21832
+ - uid: 21853
components:
- pos: -10.019056,-32.27196
parent: 2
type: Transform
- proto: PillDylovene
entities:
- - uid: 21833
+ - uid: 21854
components:
- pos: -9.519056,-32.52196
parent: 2
type: Transform
- - uid: 21834
+ - uid: 21855
components:
- pos: -9.519056,-32.52196
parent: 2
type: Transform
- - uid: 21835
+ - uid: 21856
components:
- pos: -9.503431,-32.52196
parent: 2
type: Transform
- - uid: 21836
+ - uid: 21857
components:
- pos: -9.487806,-32.537586
parent: 2
type: Transform
- proto: PillHyronalin
entities:
- - uid: 21837
+ - uid: 21858
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- - uid: 21838
+ - uid: 21859
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- - uid: 21839
+ - uid: 21860
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- - uid: 21840
+ - uid: 21861
components:
- pos: -9.534681,-32.256336
parent: 2
type: Transform
- proto: PillIron
entities:
- - uid: 21841
+ - uid: 21862
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- - uid: 21842
+ - uid: 21863
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- - uid: 21843
+ - uid: 21864
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- - uid: 21844
+ - uid: 21865
components:
- pos: -9.034681,-32.506336
parent: 2
type: Transform
- proto: PillKelotane
entities:
- - uid: 21845
+ - uid: 21866
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- - uid: 21846
+ - uid: 21867
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- - uid: 21847
+ - uid: 21868
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- - uid: 21848
+ - uid: 21869
components:
- pos: -9.034681,-32.24071
parent: 2
type: Transform
- proto: PillSpaceDrugs
entities:
- - uid: 21849
+ - uid: 21870
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 21850
+ - uid: 21871
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 21851
+ - uid: 21872
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 21852
+ - uid: 21873
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- proto: PillTricordrazine
entities:
- - uid: 21853
+ - uid: 21874
components:
- pos: -8.519056,-32.256336
parent: 2
type: Transform
- - uid: 21854
+ - uid: 21875
components:
- pos: -8.503431,-32.256336
parent: 2
type: Transform
- - uid: 21855
+ - uid: 21876
components:
- pos: -8.519056,-32.256336
parent: 2
type: Transform
- - uid: 21856
+ - uid: 21877
components:
- pos: -8.519056,-32.256336
parent: 2
type: Transform
- proto: PinpointerNuclear
entities:
- - uid: 21857
+ - uid: 21878
components:
- pos: 47.542713,-21.502851
parent: 2
type: Transform
- proto: PlasmaCanister
entities:
- - uid: 21858
+ - uid: 21879
components:
- pos: 55.5,-55.5
parent: 2
type: Transform
- - uid: 21859
+ - uid: 21880
components:
- pos: -40.5,-39.5
parent: 2
type: Transform
- - uid: 21860
+ - uid: 21881
components:
- pos: -50.5,-46.5
parent: 2
type: Transform
- - uid: 21861
+ - uid: 21882
components:
- pos: -75.5,-44.5
parent: 2
type: Transform
- proto: PlasmaOre1
entities:
- - uid: 21862
+ - uid: 21883
components:
- rot: 3.141592653589793 rad
pos: 13.8918705,48.240677
@@ -143783,47 +143890,47 @@ entities:
type: Transform
- proto: PlasticFlapsAirtightClear
entities:
- - uid: 21863
+ - uid: 21884
components:
- pos: -49.5,19.5
parent: 2
type: Transform
- - uid: 21864
+ - uid: 21885
components:
- pos: -49.5,23.5
parent: 2
type: Transform
- - uid: 21865
+ - uid: 21886
components:
- pos: -49.5,30.5
parent: 2
type: Transform
- - uid: 21866
+ - uid: 21887
components:
- pos: -49.5,34.5
parent: 2
type: Transform
- - uid: 21867
+ - uid: 21888
components:
- pos: -52.5,34.5
parent: 2
type: Transform
- - uid: 21868
+ - uid: 21889
components:
- pos: -52.5,30.5
parent: 2
type: Transform
- - uid: 21869
+ - uid: 21890
components:
- pos: -53.5,23.5
parent: 2
type: Transform
- - uid: 21870
+ - uid: 21891
components:
- pos: -53.5,19.5
parent: 2
type: Transform
- - uid: 21871
+ - uid: 21892
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-56.5
@@ -143831,12 +143938,12 @@ entities:
type: Transform
- proto: PlasticFlapsAirtightOpaque
entities:
- - uid: 21872
+ - uid: 21893
components:
- pos: -35.5,25.5
parent: 2
type: Transform
- - uid: 21873
+ - uid: 21894
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-99.5
@@ -143844,35 +143951,35 @@ entities:
type: Transform
- proto: PlasticFlapsClear
entities:
- - uid: 21874
+ - uid: 21895
components:
- pos: -26.5,25.5
parent: 2
type: Transform
- - uid: 21875
+ - uid: 21896
components:
- pos: -29.5,25.5
parent: 2
type: Transform
- - uid: 21876
+ - uid: 21897
components:
- rot: -1.5707963267948966 rad
pos: -47.5,13.5
parent: 2
type: Transform
- - uid: 21877
+ - uid: 21898
components:
- rot: 1.5707963267948966 rad
pos: -42.5,16.5
parent: 2
type: Transform
- - uid: 21878
+ - uid: 21899
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-11.5
parent: 2
type: Transform
- - uid: 21879
+ - uid: 21900
components:
- rot: 1.5707963267948966 rad
pos: -16.5,9.5
@@ -143880,29 +143987,29 @@ entities:
type: Transform
- proto: PlasticFlapsOpaque
entities:
- - uid: 21880
+ - uid: 21901
components:
- pos: -11.5,27.5
parent: 2
type: Transform
- - uid: 21881
+ - uid: 21902
components:
- rot: -1.5707963267948966 rad
pos: -9.5,25.5
parent: 2
type: Transform
- - uid: 21882
+ - uid: 21903
components:
- pos: -7.5,22.5
parent: 2
type: Transform
- - uid: 21883
+ - uid: 21904
components:
- rot: 3.141592653589793 rad
pos: 44.5,37.5
parent: 2
type: Transform
- - uid: 21884
+ - uid: 21905
components:
- rot: 1.5707963267948966 rad
pos: 48.5,37.5
@@ -143910,121 +144017,121 @@ entities:
type: Transform
- proto: PlushieAtmosian
entities:
- - uid: 21885
+ - uid: 21906
components:
- pos: -22.54358,-34.49993
parent: 2
type: Transform
- proto: PlushieBee
entities:
- - uid: 21886
+ - uid: 21907
components:
- pos: 10.893783,54.42024
parent: 2
type: Transform
- - uid: 21887
+ - uid: 21908
components:
- pos: 8.284408,54.20149
parent: 2
type: Transform
- - uid: 21888
+ - uid: 21909
components:
- pos: -7.8529105,54.918877
parent: 2
type: Transform
- - uid: 21889
+ - uid: 21910
components:
- pos: -6.6029105,50.731377
parent: 2
type: Transform
- proto: PlushieCarp
entities:
- - uid: 21890
+ - uid: 21911
components:
- pos: -38.3623,28.544445
parent: 2
type: Transform
- proto: PlushieDiona
entities:
- - uid: 21891
+ - uid: 21912
components:
- pos: 17.550053,-79.57761
parent: 2
type: Transform
- proto: PlushieHampter
entities:
- - uid: 21892
+ - uid: 21913
components:
- pos: -46.5,-30.5
parent: 2
type: Transform
- - uid: 21893
+ - uid: 21914
components:
- pos: 2.519814,7.511129
parent: 2
type: Transform
- proto: PlushieLizard
entities:
- - uid: 21894
+ - uid: 21915
components:
- pos: 61.496056,-69.34596
parent: 2
type: Transform
- proto: PlushieMoth
entities:
- - uid: 21895
+ - uid: 21916
components:
- pos: -55.418537,-64.31985
parent: 2
type: Transform
- proto: PlushieNar
entities:
- - uid: 21896
+ - uid: 21917
components:
- pos: 44.413727,31.423994
parent: 2
type: Transform
- proto: PlushieNuke
entities:
- - uid: 21897
+ - uid: 21918
components:
- pos: -14.485033,-78.68338
parent: 2
type: Transform
- - uid: 21898
+ - uid: 21919
components:
- pos: 54.48294,57.40943
parent: 2
type: Transform
- proto: PlushieRatvar
entities:
- - uid: 21899
+ - uid: 21920
components:
- pos: 22.555937,-28.535349
parent: 2
type: Transform
- proto: PlushieRGBee
entities:
- - uid: 21900
+ - uid: 21921
components:
- pos: 56.511868,-8.541915
parent: 2
type: Transform
- proto: PlushieSharkGrey
entities:
- - uid: 21901
+ - uid: 21922
components:
- pos: -52.480396,-88.49494
parent: 2
type: Transform
- proto: PlushieSharkPink
entities:
- - uid: 21902
+ - uid: 21923
components:
- pos: -44.508965,16.421295
parent: 2
type: Transform
- - uid: 21903
+ - uid: 21924
components:
- desc: It eerily feels... cute?
name: Cult shark plushie
@@ -144038,184 +144145,184 @@ entities:
type: PointLight
- proto: PlushieSlime
entities:
- - uid: 21904
+ - uid: 21925
components:
- pos: 44.49185,33.486496
parent: 2
type: Transform
- proto: PlushieSnake
entities:
- - uid: 21905
+ - uid: 21926
components:
- pos: 43.507477,33.486496
parent: 2
type: Transform
- - uid: 21906
+ - uid: 21927
components:
- pos: -55.49481,-49.261024
parent: 2
type: Transform
- proto: PlushieSpaceLizard
entities:
- - uid: 21907
+ - uid: 21928
components:
- pos: -44.46209,15.43692
parent: 2
type: Transform
- - uid: 21908
+ - uid: 21929
components:
- pos: 42.55435,33.392746
parent: 2
type: Transform
- proto: PlushieVox
entities:
- - uid: 21909
+ - uid: 21930
components:
- pos: 32.421734,-47.539772
parent: 2
type: Transform
- proto: PortableFlasher
entities:
- - uid: 21910
+ - uid: 21931
components:
- pos: 32.5,31.5
parent: 2
type: Transform
- proto: PortableGeneratorJrPacman
entities:
- - uid: 21911
+ - uid: 21932
components:
- pos: -30.5,-61.5
parent: 2
type: Transform
- - uid: 21912
+ - uid: 21933
components:
- pos: 15.5,-72.5
parent: 2
type: Transform
- - uid: 21913
+ - uid: 21934
components:
- pos: -54.5,-30.5
parent: 2
type: Transform
- - uid: 21914
+ - uid: 21935
components:
- pos: 30.5,44.5
parent: 2
type: Transform
- proto: PortableGeneratorPacman
entities:
- - uid: 21915
+ - uid: 21936
components:
- pos: -65.5,-51.5
parent: 2
type: Transform
- - uid: 21916
+ - uid: 21937
components:
- pos: 4.5,-22.5
parent: 2
type: Transform
- - uid: 21917
+ - uid: 21938
components:
- pos: 4.5,-23.5
parent: 2
type: Transform
- proto: PortableScrubber
entities:
- - uid: 21918
+ - uid: 21939
components:
- pos: -9.5,-68.5
parent: 2
type: Transform
- - uid: 21919
+ - uid: 21940
components:
- pos: -33.5,-43.5
parent: 2
type: Transform
- - uid: 21920
+ - uid: 21941
components:
- pos: -33.5,-44.5
parent: 2
type: Transform
- - uid: 21921
+ - uid: 21942
components:
- pos: -33.5,-45.5
parent: 2
type: Transform
- proto: PosterBroken
entities:
- - uid: 21922
+ - uid: 21943
components:
- pos: 0.5,-70.5
parent: 2
type: Transform
- proto: PosterContrabandAmbrosiaVulgaris
entities:
- - uid: 21923
+ - uid: 21944
components:
- pos: -10.5,-34.5
parent: 2
type: Transform
- proto: PosterContrabandAtmosiaDeclarationIndependence
entities:
- - uid: 21924
+ - uid: 21945
components:
- pos: -36.5,-52.5
parent: 2
type: Transform
- proto: PosterContrabandBeachStarYamamoto
entities:
- - uid: 21925
+ - uid: 21946
components:
- pos: -16.5,-81.5
parent: 2
type: Transform
- - uid: 21926
+ - uid: 21947
components:
- pos: -9.5,-31.5
parent: 2
type: Transform
- proto: PosterContrabandBorgFancy
entities:
- - uid: 21927
+ - uid: 21948
components:
- pos: 16.5,-4.5
parent: 2
type: Transform
- proto: PosterContrabandBountyHunters
entities:
- - uid: 21928
+ - uid: 21949
components:
- pos: 14.5,-56.5
parent: 2
type: Transform
- - uid: 21929
+ - uid: 21950
components:
- pos: -42.5,26.5
parent: 2
type: Transform
- proto: PosterContrabandCC64KAd
entities:
- - uid: 21930
+ - uid: 21951
components:
- pos: 20.5,-3.5
parent: 2
type: Transform
- proto: PosterContrabandClown
entities:
- - uid: 21931
+ - uid: 21952
components:
- rot: 1.5707963267948966 rad
pos: -23.5,39.5
parent: 2
type: Transform
- - uid: 21932
+ - uid: 21953
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-24.5
parent: 2
type: Transform
- - uid: 21933
+ - uid: 21954
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-18.5
@@ -144223,19 +144330,19 @@ entities:
type: Transform
- proto: PosterContrabandCommunistState
entities:
- - uid: 21934
+ - uid: 21955
components:
- pos: 0.5,-15.5
parent: 2
type: Transform
- - uid: 21935
+ - uid: 21956
components:
- pos: 53.5,-64.5
parent: 2
type: Transform
- proto: PosterContrabandCybersun600
entities:
- - uid: 21936
+ - uid: 21957
components:
- rot: 1.5707963267948966 rad
pos: -15.5,48.5
@@ -144243,28 +144350,28 @@ entities:
type: Transform
- proto: PosterContrabandDDayPromo
entities:
- - uid: 21937
+ - uid: 21958
components:
- pos: 14.5,33.5
parent: 2
type: Transform
- proto: PosterContrabandDonutCorp
entities:
- - uid: 21938
+ - uid: 21959
components:
- pos: 49.5,34.5
parent: 2
type: Transform
- proto: PosterContrabandEAT
entities:
- - uid: 21939
+ - uid: 21960
components:
- pos: 4.5,4.5
parent: 2
type: Transform
- proto: PosterContrabandEnlistGorlex
entities:
- - uid: 21940
+ - uid: 21961
components:
- rot: 1.5707963267948966 rad
pos: 53.5,54.5
@@ -144272,59 +144379,59 @@ entities:
type: Transform
- proto: PosterContrabandFreeSyndicateEncryptionKey
entities:
- - uid: 21941
+ - uid: 21962
components:
- pos: -53.5,-85.5
parent: 2
type: Transform
- proto: PosterContrabandFreeTonto
entities:
- - uid: 21942
+ - uid: 21963
components:
- pos: -6.5,-14.5
parent: 2
type: Transform
- proto: PosterContrabandFunPolice
entities:
- - uid: 21943
+ - uid: 21964
components:
- pos: 4.5,18.5
parent: 2
type: Transform
- proto: PosterContrabandGreyTide
entities:
- - uid: 21944
+ - uid: 21965
components:
- pos: 55.5,-9.5
parent: 2
type: Transform
- - uid: 21945
+ - uid: 21966
components:
- pos: 41.5,-57.5
parent: 2
type: Transform
- - uid: 21946
+ - uid: 21967
components:
- pos: -19.5,64.5
parent: 2
type: Transform
- proto: PosterContrabandHackingGuide
entities:
- - uid: 21947
+ - uid: 21968
components:
- pos: 15.5,40.5
parent: 2
type: Transform
- proto: PosterContrabandHighEffectEngineering
entities:
- - uid: 21948
+ - uid: 21969
components:
- pos: -48.5,-7.5
parent: 2
type: Transform
- proto: PosterContrabandInterdyne
entities:
- - uid: 21949
+ - uid: 21970
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-44.5
@@ -144332,195 +144439,195 @@ entities:
type: Transform
- proto: PosterContrabandKosmicheskayaStantsiya
entities:
- - uid: 21950
+ - uid: 21971
components:
- pos: -25.5,-63.5
parent: 2
type: Transform
- proto: PosterContrabandLamarr
entities:
- - uid: 21951
+ - uid: 21972
components:
- pos: 10.5,35.5
parent: 2
type: Transform
- proto: PosterContrabandLustyExomorph
entities:
- - uid: 21952
+ - uid: 21973
components:
- pos: -9.5,-73.5
parent: 2
type: Transform
- - uid: 21953
+ - uid: 21974
components:
- pos: 45.5,50.5
parent: 2
type: Transform
- proto: PosterContrabandMaskedMen
entities:
- - uid: 21954
+ - uid: 21975
components:
- pos: 47.5,51.5
parent: 2
type: Transform
- proto: PosterContrabandMissingGloves
entities:
- - uid: 21955
+ - uid: 21976
components:
- pos: 20.5,19.5
parent: 2
type: Transform
- - uid: 21956
+ - uid: 21977
components:
- pos: 41.5,-52.5
parent: 2
type: Transform
- - uid: 21957
+ - uid: 21978
components:
- pos: -26.5,-18.5
parent: 2
type: Transform
- proto: PosterContrabandNuclearDeviceInformational
entities:
- - uid: 21958
+ - uid: 21979
components:
- pos: 39.5,-24.5
parent: 2
type: Transform
- proto: PosterContrabandPower
entities:
- - uid: 21959
+ - uid: 21980
components:
- pos: -61.5,-22.5
parent: 2
type: Transform
- - uid: 21960
+ - uid: 21981
components:
- pos: -23.5,-7.5
parent: 2
type: Transform
- proto: PosterContrabandRebelsUnite
entities:
- - uid: 21961
+ - uid: 21982
components:
- pos: -0.5,-72.5
parent: 2
type: Transform
- - uid: 21962
+ - uid: 21983
components:
- pos: -42.5,-73.5
parent: 2
type: Transform
- proto: PosterContrabandRedRum
entities:
- - uid: 21963
+ - uid: 21984
components:
- pos: 13.5,4.5
parent: 2
type: Transform
- - uid: 21964
+ - uid: 21985
components:
- pos: 11.5,15.5
parent: 2
type: Transform
- - uid: 21965
+ - uid: 21986
components:
- pos: 35.5,49.5
parent: 2
type: Transform
- proto: PosterContrabandRevolt
entities:
- - uid: 21966
+ - uid: 21987
components:
- pos: -40.5,-73.5
parent: 2
type: Transform
- - uid: 21967
+ - uid: 21988
components:
- pos: -7.5,-73.5
parent: 2
type: Transform
- - uid: 21968
+ - uid: 21989
components:
- pos: 57.5,55.5
parent: 2
type: Transform
- - uid: 21969
+ - uid: 21990
components:
- pos: 51.5,55.5
parent: 2
type: Transform
- - uid: 21970
+ - uid: 21991
components:
- pos: 56.5,60.5
parent: 2
type: Transform
- - uid: 21971
+ - uid: 21992
components:
- pos: 52.5,60.5
parent: 2
type: Transform
- - uid: 21972
+ - uid: 21993
components:
- pos: 51.5,59.5
parent: 2
type: Transform
- - uid: 21973
+ - uid: 21994
components:
- pos: 57.5,59.5
parent: 2
type: Transform
- proto: PosterContrabandRevolver
entities:
- - uid: 21974
+ - uid: 21995
components:
- pos: -30.5,-42.5
parent: 2
type: Transform
- - uid: 21975
+ - uid: 21996
components:
- pos: 42.5,49.5
parent: 2
type: Transform
- proto: PosterContrabandRIPBadger
entities:
- - uid: 21976
+ - uid: 21997
components:
- pos: -41.5,-27.5
parent: 2
type: Transform
- proto: PosterContrabandRise
entities:
- - uid: 21977
+ - uid: 21998
components:
- pos: 63.5,10.5
parent: 2
type: Transform
- - uid: 21978
+ - uid: 21999
components:
- pos: -28.5,-50.5
parent: 2
type: Transform
- - uid: 21979
+ - uid: 22000
components:
- pos: -40.5,-69.5
parent: 2
type: Transform
- - uid: 21980
+ - uid: 22001
components:
- pos: 57.5,53.5
parent: 2
type: Transform
- proto: PosterContrabandRobustSoftdrinks
entities:
- - uid: 21981
+ - uid: 22002
components:
- pos: -6.5,-31.5
parent: 2
type: Transform
- proto: PosterContrabandShamblersJuice
entities:
- - uid: 21982
+ - uid: 22003
components:
- name: changs
type: MetaData
@@ -144530,274 +144637,274 @@ entities:
type: Transform
- proto: PosterContrabandSmoke
entities:
- - uid: 21983
+ - uid: 22004
components:
- pos: -6.5,-51.5
parent: 2
type: Transform
- proto: PosterContrabandSyndicatePistol
entities:
- - uid: 21984
+ - uid: 22005
components:
- pos: -46.5,-71.5
parent: 2
type: Transform
- proto: PosterContrabandSyndicateRecruitment
entities:
- - uid: 21985
+ - uid: 22006
components:
- pos: -44.5,-74.5
parent: 2
type: Transform
- - uid: 21986
+ - uid: 22007
components:
- pos: 30.5,48.5
parent: 2
type: Transform
- proto: PosterContrabandTheGriffin
entities:
- - uid: 21987
+ - uid: 22008
components:
- pos: -43.5,-73.5
parent: 2
type: Transform
- proto: PosterContrabandTools
entities:
- - uid: 21988
+ - uid: 22009
components:
- pos: -54.5,-69.5
parent: 2
type: Transform
- - uid: 21989
+ - uid: 22010
components:
- pos: -22.5,-19.5
parent: 2
type: Transform
- proto: PosterContrabandVoteWeh
entities:
- - uid: 21990
+ - uid: 22011
components:
- pos: -46.5,-65.5
parent: 2
type: Transform
- - uid: 21991
+ - uid: 22012
components:
- pos: 59.5,41.5
parent: 2
type: Transform
- proto: PosterContrabandWehWatches
entities:
- - uid: 21992
+ - uid: 22013
components:
- pos: 55.5,-4.5
parent: 2
type: Transform
- proto: PosterLegit12Gauge
entities:
- - uid: 21993
+ - uid: 22014
components:
- pos: 31.5,23.5
parent: 2
type: Transform
- proto: PosterLegit50thAnniversaryVintageReprint
entities:
- - uid: 21994
+ - uid: 22015
components:
- pos: 44.5,-34.5
parent: 2
type: Transform
- proto: PosterLegitAnatomyPoster
entities:
- - uid: 21995
+ - uid: 22016
components:
- pos: -4.5,-63.5
parent: 2
type: Transform
- proto: PosterLegitBlessThisSpess
entities:
- - uid: 21996
+ - uid: 22017
components:
- pos: 61.5,-4.5
parent: 2
type: Transform
- proto: PosterLegitBuild
entities:
- - uid: 21997
+ - uid: 22018
components:
- pos: -34.5,-4.5
parent: 2
type: Transform
- proto: PosterLegitCarbonDioxide
entities:
- - uid: 21998
+ - uid: 22019
components:
- pos: 46.5,-55.5
parent: 2
type: Transform
- proto: PosterLegitCarpMount
entities:
- - uid: 21999
+ - uid: 22020
components:
- pos: 24.5,-26.5
parent: 2
type: Transform
- proto: PosterLegitCleanliness
entities:
- - uid: 22000
+ - uid: 22021
components:
- pos: -10.5,-24.5
parent: 2
type: Transform
- - uid: 22001
+ - uid: 22022
components:
- pos: 1.5,-58.5
parent: 2
type: Transform
- proto: PosterLegitCohibaRobustoAd
entities:
- - uid: 22002
+ - uid: 22023
components:
- pos: 13.5,-30.5
parent: 2
type: Transform
- - uid: 22003
+ - uid: 22024
components:
- pos: 57.5,-9.5
parent: 2
type: Transform
- proto: PosterLegitDickGumshue
entities:
- - uid: 22004
+ - uid: 22025
components:
- pos: 17.5,-15.5
parent: 2
type: Transform
- proto: PosterLegitDoNotQuestion
entities:
- - uid: 22005
+ - uid: 22026
components:
- pos: 23.5,19.5
parent: 2
type: Transform
- - uid: 22006
+ - uid: 22027
components:
- pos: -17.5,-21.5
parent: 2
type: Transform
- proto: PosterLegitEnlist
entities:
- - uid: 22007
+ - uid: 22028
components:
- pos: -17.5,-31.5
parent: 2
type: Transform
- - uid: 22008
+ - uid: 22029
components:
- pos: 59.5,-9.5
parent: 2
type: Transform
- - uid: 22009
+ - uid: 22030
components:
- pos: -13.5,27.5
parent: 2
type: Transform
- proto: PosterLegitFoamForceAd
entities:
- - uid: 22010
+ - uid: 22031
components:
- pos: 1.5,-39.5
parent: 2
type: Transform
- proto: PosterLegitFruitBowl
entities:
- - uid: 22011
+ - uid: 22032
components:
- pos: -4.5,9.5
parent: 2
type: Transform
- - uid: 22012
+ - uid: 22033
components:
- pos: -22.5,49.5
parent: 2
type: Transform
- proto: PosterLegitGetYourLEGS
entities:
- - uid: 22013
+ - uid: 22034
components:
- pos: -16.5,64.5
parent: 2
type: Transform
- proto: PosterLegitHelpOthers
entities:
- - uid: 22014
+ - uid: 22035
components:
- pos: -7.5,-40.5
parent: 2
type: Transform
- proto: PosterLegitHereForYourSafety
entities:
- - uid: 22015
+ - uid: 22036
components:
- pos: 28.5,9.5
parent: 2
type: Transform
- proto: PosterLegitHighClassMartini
entities:
- - uid: 22016
+ - uid: 22037
components:
- pos: 8.5,11.5
parent: 2
type: Transform
- - uid: 22017
+ - uid: 22038
components:
- pos: -39.5,-74.5
parent: 2
type: Transform
- proto: PosterLegitIan
entities:
- - uid: 22018
+ - uid: 22039
components:
- rot: 3.141592653589793 rad
pos: 5.5,-2.5
parent: 2
type: Transform
- - uid: 22019
+ - uid: 22040
components:
- pos: 21.5,-40.5
parent: 2
type: Transform
- proto: PosterLegitIonRifle
entities:
- - uid: 22020
+ - uid: 22041
components:
- pos: 27.5,33.5
parent: 2
type: Transform
- proto: PosterLegitJustAWeekAway
entities:
- - uid: 22021
+ - uid: 22042
components:
- pos: 27.5,-33.5
parent: 2
type: Transform
- - uid: 22022
+ - uid: 22043
components:
- pos: -37.5,-31.5
parent: 2
type: Transform
- - uid: 22023
+ - uid: 22044
components:
- pos: 30.5,-35.5
parent: 2
type: Transform
- proto: PosterLegitLoveIan
entities:
- - uid: 22024
+ - uid: 22045
components:
- pos: 21.5,-33.5
parent: 2
type: Transform
- - uid: 22025
+ - uid: 22046
components:
- rot: 3.141592653589793 rad
pos: 0.5,-2.5
@@ -144805,7 +144912,7 @@ entities:
type: Transform
- proto: PosterLegitMime
entities:
- - uid: 22026
+ - uid: 22047
components:
- rot: 1.5707963267948966 rad
pos: -27.5,47.5
@@ -144813,37 +144920,37 @@ entities:
type: Transform
- proto: PosterLegitNanomichiAd
entities:
- - uid: 22027
+ - uid: 22048
components:
- pos: -21.5,-27.5
parent: 2
type: Transform
- proto: PosterLegitNanotrasenLogo
entities:
- - uid: 22028
+ - uid: 22049
components:
- pos: 28.5,-31.5
parent: 2
type: Transform
- - uid: 22029
+ - uid: 22050
components:
- pos: 25.5,-33.5
parent: 2
type: Transform
- proto: PosterLegitNoERP
entities:
- - uid: 22030
+ - uid: 22051
components:
- pos: 40.5,49.5
parent: 2
type: Transform
- - uid: 22031
+ - uid: 22052
components:
- rot: 3.141592653589793 rad
pos: -15.5,-36.5
parent: 2
type: Transform
- - uid: 22032
+ - uid: 22053
components:
- rot: 3.141592653589793 rad
pos: -47.5,9.5
@@ -144851,52 +144958,52 @@ entities:
type: Transform
- proto: PosterLegitObey
entities:
- - uid: 22033
+ - uid: 22054
components:
- pos: 31.5,-3.5
parent: 2
type: Transform
- proto: PosterLegitPDAAd
entities:
- - uid: 22034
+ - uid: 22055
components:
- pos: 29.5,-40.5
parent: 2
type: Transform
- proto: PosterLegitReportCrimes
entities:
- - uid: 22035
+ - uid: 22056
components:
- pos: 18.5,-15.5
parent: 2
type: Transform
- - uid: 22036
+ - uid: 22057
components:
- pos: 30.5,-46.5
parent: 2
type: Transform
- proto: PosterLegitSafetyEyeProtection
entities:
- - uid: 22037
+ - uid: 22058
components:
- pos: -33.5,-31.5
parent: 2
type: Transform
- proto: PosterLegitSafetyInternals
entities:
- - uid: 22038
+ - uid: 22059
components:
- pos: -39.5,-31.5
parent: 2
type: Transform
- - uid: 22039
+ - uid: 22060
components:
- pos: 24.5,-54.5
parent: 2
type: Transform
- proto: PosterLegitSafetyMothHardhat
entities:
- - uid: 22040
+ - uid: 22061
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-15.5
@@ -144904,17 +145011,17 @@ entities:
type: Transform
- proto: PosterLegitSecWatch
entities:
- - uid: 22041
+ - uid: 22062
components:
- pos: 10.5,15.5
parent: 2
type: Transform
- - uid: 22042
+ - uid: 22063
components:
- pos: 18.5,-9.5
parent: 2
type: Transform
- - uid: 22043
+ - uid: 22064
components:
- rot: 3.141592653589793 rad
pos: -18.5,-44.5
@@ -144922,19 +145029,19 @@ entities:
type: Transform
- proto: PosterLegitStateLaws
entities:
- - uid: 22044
+ - uid: 22065
components:
- pos: 37.5,-32.5
parent: 2
type: Transform
- - uid: 22045
+ - uid: 22066
components:
- pos: -17.5,27.5
parent: 2
type: Transform
- proto: PosterLegitThereIsNoGasGiant
entities:
- - uid: 22046
+ - uid: 22067
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-40.5
@@ -144942,7 +145049,7 @@ entities:
type: Transform
- proto: PosterLegitVacation
entities:
- - uid: 22047
+ - uid: 22068
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-70.5
@@ -144950,346 +145057,352 @@ entities:
type: Transform
- proto: PosterLegitWalk
entities:
- - uid: 22048
+ - uid: 22069
components:
- pos: -7.5,-28.5
parent: 2
type: Transform
- proto: PottedPlant1
entities:
- - uid: 22049
+ - uid: 22070
components:
- pos: -2.5,-40.5
parent: 2
type: Transform
- proto: PottedPlant14
entities:
- - uid: 22050
+ - uid: 22071
components:
- pos: 36.5,-16.5
parent: 2
type: Transform
- proto: PottedPlant24
entities:
- - uid: 22051
+ - uid: 22072
components:
- pos: -6.5,-40.5
parent: 2
type: Transform
- proto: PottedPlant26
entities:
- - uid: 22052
+ - uid: 22073
components:
- pos: 6.5,-52.5
parent: 2
type: Transform
- proto: PottedPlant27
entities:
- - uid: 22053
+ - uid: 22074
components:
- pos: 46.5,31.5
parent: 2
type: Transform
- - uid: 22054
+ - uid: 22075
components:
- pos: -43.5,-87.5
parent: 2
type: Transform
- proto: PottedPlant28
entities:
- - uid: 22055
+ - uid: 22076
components:
- pos: 46.5,30.5
parent: 2
type: Transform
- - uid: 22056
+ - uid: 22077
components:
- pos: -54.5,-47.5
parent: 2
type: Transform
- proto: PottedPlant29
entities:
- - uid: 22057
+ - uid: 22078
components:
- pos: 46.5,29.5
parent: 2
type: Transform
- - uid: 22058
+ - uid: 22079
components:
- pos: -54.5,-50.5
parent: 2
type: Transform
- - uid: 22059
+ - uid: 22080
components:
- pos: -40.5,-87.5
parent: 2
type: Transform
- proto: PottedPlant3
entities:
- - uid: 22060
+ - uid: 22081
components:
- pos: 14.5,-16.5
parent: 2
type: Transform
- - uid: 22061
+ - uid: 22082
components:
- pos: 54.5,-1.5
parent: 2
type: Transform
- proto: PottedPlant5
entities:
- - uid: 22062
+ - uid: 22083
components:
- pos: -26.5,8.5
parent: 2
type: Transform
- - uid: 22063
+ - uid: 22084
components:
- pos: 50.5,-1.5
parent: 2
type: Transform
- proto: PottedPlant8
entities:
- - uid: 22064
+ - uid: 22085
components:
- pos: -22.5,8.5
parent: 2
type: Transform
- proto: PottedPlantBioluminscent
entities:
- - uid: 22065
+ - uid: 22086
components:
- pos: -27.5,17.5
parent: 2
type: Transform
- proto: PottedPlantRandom
entities:
- - uid: 22066
+ - uid: 22087
components:
- pos: 20.5,18.5
parent: 2
type: Transform
- - uid: 22067
+ - uid: 22088
components:
- pos: 1.5,-40.5
parent: 2
type: Transform
- - uid: 22068
+ - uid: 22089
components:
- pos: 24.5,-81.5
parent: 2
type: Transform
- - uid: 22069
+ - uid: 22090
components:
- pos: -44.5,8.5
parent: 2
type: Transform
- - uid: 22070
+ - uid: 22091
components:
- pos: -49.5,8.5
parent: 2
type: Transform
- - uid: 22071
+ - uid: 22092
components:
- pos: 23.5,-43.5
parent: 2
type: Transform
- - uid: 22072
+ - uid: 22093
components:
- pos: 27.5,-43.5
parent: 2
type: Transform
- - uid: 22073
+ - uid: 22094
components:
- pos: -23.5,-73.5
parent: 2
type: Transform
- - uid: 22074
+ - uid: 22095
components:
- pos: -49.5,12.5
parent: 2
type: Transform
- - uid: 22075
+ - uid: 22096
components:
- pos: -19.5,-73.5
parent: 2
type: Transform
- - uid: 22076
+ - uid: 22097
components:
- pos: -2.5,46.5
parent: 2
type: Transform
- - uid: 22077
+ - uid: 22098
components:
- pos: -14.5,42.5
parent: 2
type: Transform
- - uid: 22078
+ - uid: 22099
components:
- pos: -6.5,46.5
parent: 2
type: Transform
- - uid: 22079
+ - uid: 22100
components:
- pos: 24.5,-85.5
parent: 2
type: Transform
- - uid: 22080
+ - uid: 22101
components:
- pos: 25.5,-74.5
parent: 2
type: Transform
- - uid: 22081
+ - uid: 22102
components:
- pos: -20.5,-66.5
parent: 2
type: Transform
- - uid: 22082
+ - uid: 22103
components:
- pos: -18.5,-66.5
parent: 2
type: Transform
- proto: PottedPlantRandomPlastic
entities:
- - uid: 22083
+ - uid: 22104
components:
- pos: -6.5,-45.5
parent: 2
type: Transform
- - uid: 22084
+ - uid: 22105
components:
- pos: -55.5,-58.5
parent: 2
type: Transform
- - uid: 22085
+ - uid: 22106
components:
- pos: 54.5,31.5
parent: 2
type: Transform
- - uid: 22086
+ - uid: 22107
components:
- pos: -12.5,-96.5
parent: 2
type: Transform
- - uid: 22087
+ - uid: 22108
components:
- pos: -57.5,-60.5
parent: 2
type: Transform
- proto: PowerCellRecharger
entities:
- - uid: 22088
+ - uid: 22109
components:
- - pos: -10.5,-61.5
+ - pos: -24.5,-24.5
parent: 2
type: Transform
- - uid: 22089
+ - uid: 22110
components:
- - pos: -11.5,-61.5
+ - pos: -10.5,-61.5
parent: 2
type: Transform
- - uid: 22090
+ - uid: 22111
components:
- - pos: -26.5,-20.5
+ - pos: -11.5,-61.5
parent: 2
type: Transform
- - uid: 22091
+ - uid: 22112
components:
- pos: 8.5,14.5
parent: 2
type: Transform
- - uid: 22092
+ - uid: 22113
components:
- pos: -23.5,-8.5
parent: 2
type: Transform
- - uid: 22093
+ - uid: 22114
components:
- pos: -35.5,-13.5
parent: 2
type: Transform
- - uid: 22094
+ - uid: 22115
components:
- pos: -32.5,17.5
parent: 2
type: Transform
- - uid: 22095
+ - uid: 22116
components:
- pos: -22.5,-33.5
parent: 2
type: Transform
- - uid: 22096
+ - uid: 22117
components:
- pos: 38.5,-55.5
parent: 2
type: Transform
- - uid: 22097
+ - uid: 22118
components:
- pos: -22.5,17.5
parent: 2
type: Transform
- - uid: 22098
+ - uid: 22119
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- proto: PowerDrill
entities:
- - uid: 22099
+ - uid: 22120
components:
- pos: 62.617344,-53.460384
parent: 2
type: Transform
- - uid: 22100
+ - uid: 22121
components:
- pos: -52.61403,65.565544
parent: 2
type: Transform
- proto: Poweredlight
entities:
- - uid: 14433
+ - uid: 22122
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-16.5
+ parent: 2
+ type: Transform
+ - uid: 22123
components:
- pos: 6.5,-45.5
parent: 2
type: Transform
- - uid: 22101
+ - uid: 22124
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-28.5
parent: 2
type: Transform
- - uid: 22102
+ - uid: 22125
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-5.5
parent: 2
type: Transform
- links:
- - 24214
+ - 24258
type: DeviceLinkSink
- - uid: 22103
+ - uid: 22126
components:
- pos: 62.5,-28.5
parent: 2
type: Transform
- - uid: 22104
+ - uid: 22127
components:
- rot: 3.141592653589793 rad
pos: -61.5,-37.5
parent: 2
type: Transform
- - uid: 22105
+ - uid: 22128
components:
- pos: -44.5,-8.5
parent: 2
type: Transform
- - uid: 22106
+ - uid: 22129
components:
- rot: 3.141592653589793 rad
pos: -5.5,14.5
parent: 2
type: Transform
- - uid: 22107
+ - uid: 22130
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-77.5
@@ -145297,7 +145410,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22108
+ - uid: 22131
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-9.5
@@ -145305,7 +145418,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22109
+ - uid: 22132
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-29.5
@@ -145313,7 +145426,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22110
+ - uid: 22133
components:
- rot: -1.5707963267948966 rad
pos: 14.5,8.5
@@ -145321,7 +145434,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22111
+ - uid: 22134
components:
- rot: 3.141592653589793 rad
pos: -10.5,-1.5
@@ -145329,7 +145442,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22112
+ - uid: 22135
components:
- rot: 3.141592653589793 rad
pos: -2.5,-1.5
@@ -145337,14 +145450,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22113
+ - uid: 22136
components:
- pos: 4.5,-59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22114
+ - uid: 22137
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-31.5
@@ -145352,7 +145465,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22115
+ - uid: 22138
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-22.5
@@ -145360,21 +145473,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22116
+ - uid: 22139
components:
- pos: 30.5,-47.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22117
+ - uid: 22140
components:
- pos: 40.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22118
+ - uid: 22141
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-23.5
@@ -145382,7 +145495,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22119
+ - uid: 22142
components:
- rot: 3.141592653589793 rad
pos: -10.5,-61.5
@@ -145390,7 +145503,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22120
+ - uid: 22143
components:
- rot: 3.141592653589793 rad
pos: -4.5,-61.5
@@ -145398,7 +145511,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22121
+ - uid: 22144
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-77.5
@@ -145406,7 +145519,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22122
+ - uid: 22145
components:
- rot: 3.141592653589793 rad
pos: -9.5,-27.5
@@ -145414,7 +145527,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22123
+ - uid: 22146
components:
- rot: 3.141592653589793 rad
pos: 12.5,-27.5
@@ -145422,21 +145535,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22124
+ - uid: 22147
components:
- pos: 21.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22125
+ - uid: 22148
components:
- pos: 29.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22126
+ - uid: 22149
components:
- rot: -1.5707963267948966 rad
pos: 42.5,8.5
@@ -145444,7 +145557,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22127
+ - uid: 22150
components:
- rot: 3.141592653589793 rad
pos: 24.5,-2.5
@@ -145452,14 +145565,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22128
+ - uid: 22151
components:
- pos: 33.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22129
+ - uid: 22152
components:
- rot: 3.141592653589793 rad
pos: 2.5,-43.5
@@ -145467,7 +145580,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22130
+ - uid: 22153
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-70.5
@@ -145475,7 +145588,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22131
+ - uid: 22154
components:
- rot: -1.5707963267948966 rad
pos: 30.5,0.5
@@ -145483,14 +145596,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22132
+ - uid: 22155
components:
- pos: -23.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22133
+ - uid: 22156
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-60.5
@@ -145498,7 +145611,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22134
+ - uid: 22157
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-35.5
@@ -145506,7 +145619,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22135
+ - uid: 22158
components:
- rot: 3.141592653589793 rad
pos: -8.5,44.5
@@ -145514,7 +145627,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22136
+ - uid: 22159
components:
- rot: -1.5707963267948966 rad
pos: -0.5,62.5
@@ -145522,14 +145635,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22137
+ - uid: 22160
components:
- pos: 4.5,3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22138
+ - uid: 22161
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-28.5
@@ -145537,7 +145650,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22139
+ - uid: 22162
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-25.5
@@ -145545,7 +145658,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22140
+ - uid: 22163
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-29.5
@@ -145553,7 +145666,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22141
+ - uid: 22164
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-9.5
@@ -145561,28 +145674,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22142
+ - uid: 22165
components:
- pos: -21.5,-84.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22143
+ - uid: 22166
components:
- pos: 12.5,3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22144
+ - uid: 22167
components:
- pos: 29.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22145
+ - uid: 22168
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-9.5
@@ -145590,14 +145703,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22146
+ - uid: 22169
components:
- pos: 4.5,-56.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22147
+ - uid: 22170
components:
- rot: -1.5707963267948966 rad
pos: 34.5,3.5
@@ -145607,7 +145720,7 @@ entities:
type: PointLight
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22148
+ - uid: 22171
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-50.5
@@ -145615,7 +145728,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22149
+ - uid: 22172
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-2.5
@@ -145623,14 +145736,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22150
+ - uid: 22173
components:
- pos: 27.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22151
+ - uid: 22174
components:
- rot: 1.5707963267948966 rad
pos: -3.5,-65.5
@@ -145638,7 +145751,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22152
+ - uid: 22175
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-64.5
@@ -145646,7 +145759,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22153
+ - uid: 22176
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-45.5
@@ -145654,7 +145767,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22154
+ - uid: 22177
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-48.5
@@ -145662,14 +145775,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22155
+ - uid: 22178
components:
- pos: -23.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22156
+ - uid: 22179
components:
- rot: 3.141592653589793 rad
pos: -22.5,-73.5
@@ -145677,14 +145790,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22157
+ - uid: 22180
components:
- pos: 16.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22158
+ - uid: 22181
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-11.5
@@ -145692,7 +145805,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22159
+ - uid: 22182
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-22.5
@@ -145700,14 +145813,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22160
+ - uid: 22183
components:
- pos: 24.5,4.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22161
+ - uid: 22184
components:
- rot: 1.5707963267948966 rad
pos: 10.5,11.5
@@ -145715,14 +145828,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22162
+ - uid: 22185
components:
- pos: 16.5,14.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22163
+ - uid: 22186
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-37.5
@@ -145730,14 +145843,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22164
+ - uid: 22187
components:
- pos: -8.5,-35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22165
+ - uid: 22188
components:
- rot: 1.5707963267948966 rad
pos: -10.5,8.5
@@ -145745,14 +145858,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22166
+ - uid: 22189
components:
- pos: 6.5,22.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22167
+ - uid: 22190
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-47.5
@@ -145760,14 +145873,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22168
+ - uid: 22191
components:
- pos: 13.5,17.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22169
+ - uid: 22192
components:
- rot: 1.5707963267948966 rad
pos: 14.5,21.5
@@ -145775,14 +145888,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22170
+ - uid: 22193
components:
- pos: 44.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22171
+ - uid: 22194
components:
- rot: 3.141592653589793 rad
pos: 47.5,4.5
@@ -145790,21 +145903,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22172
+ - uid: 22195
components:
- pos: 44.5,2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22173
+ - uid: 22196
components:
- pos: -4.5,3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22174
+ - uid: 22197
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-6.5
@@ -145812,7 +145925,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22175
+ - uid: 22198
components:
- rot: 3.141592653589793 rad
pos: -2.5,-27.5
@@ -145820,22 +145933,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22176
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,-18.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22177
+ - uid: 22199
components:
- pos: -9.5,-21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22178
+ - uid: 22200
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-22.5
@@ -145843,7 +145948,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22179
+ - uid: 22201
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-2.5
@@ -145851,7 +145956,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22180
+ - uid: 22202
components:
- rot: 3.141592653589793 rad
pos: 36.5,-6.5
@@ -145859,7 +145964,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22181
+ - uid: 22203
components:
- rot: 1.5707963267948966 rad
pos: 26.5,31.5
@@ -145867,7 +145972,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22182
+ - uid: 22204
components:
- rot: 3.141592653589793 rad
pos: 29.5,27.5
@@ -145875,7 +145980,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22183
+ - uid: 22205
components:
- rot: -1.5707963267948966 rad
pos: 30.5,20.5
@@ -145883,7 +145988,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22184
+ - uid: 22206
components:
- rot: 1.5707963267948966 rad
pos: 28.5,14.5
@@ -145891,35 +145996,35 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22185
+ - uid: 22207
components:
- pos: 33.5,16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22186
+ - uid: 22208
components:
- pos: 39.5,16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22187
+ - uid: 22209
components:
- pos: 55.5,9.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22188
+ - uid: 22210
components:
- pos: 51.5,9.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22189
+ - uid: 22211
components:
- rot: 3.141592653589793 rad
pos: 55.5,15.5
@@ -145927,7 +146032,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22190
+ - uid: 22212
components:
- rot: 3.141592653589793 rad
pos: 51.5,15.5
@@ -145935,7 +146040,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22191
+ - uid: 22213
components:
- rot: 3.141592653589793 rad
pos: 48.5,12.5
@@ -145943,7 +146048,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22192
+ - uid: 22214
components:
- rot: 3.141592653589793 rad
pos: 58.5,12.5
@@ -145951,7 +146056,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22193
+ - uid: 22215
components:
- rot: -1.5707963267948966 rad
pos: 59.5,20.5
@@ -145959,7 +146064,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22194
+ - uid: 22216
components:
- rot: 3.141592653589793 rad
pos: 59.5,4.5
@@ -145967,7 +146072,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22195
+ - uid: 22217
components:
- rot: 3.141592653589793 rad
pos: 48.5,18.5
@@ -145975,7 +146080,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22196
+ - uid: 22218
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-3.5
@@ -145983,7 +146088,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22197
+ - uid: 22219
components:
- rot: 3.141592653589793 rad
pos: 24.5,6.5
@@ -145991,7 +146096,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22198
+ - uid: 22220
components:
- rot: 3.141592653589793 rad
pos: 29.5,6.5
@@ -145999,7 +146104,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22199
+ - uid: 22221
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-13.5
@@ -146007,7 +146112,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22200
+ - uid: 22222
components:
- rot: 3.141592653589793 rad
pos: 21.5,-6.5
@@ -146015,7 +146120,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22201
+ - uid: 22223
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-9.5
@@ -146023,7 +146128,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22202
+ - uid: 22224
components:
- rot: 3.141592653589793 rad
pos: 57.5,-6.5
@@ -146031,14 +146136,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22203
+ - uid: 22225
components:
- pos: 57.5,-10.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22204
+ - uid: 22226
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-8.5
@@ -146046,7 +146151,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22205
+ - uid: 22227
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-1.5
@@ -146054,7 +146159,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22206
+ - uid: 22228
components:
- rot: 3.141592653589793 rad
pos: 57.5,-14.5
@@ -146062,7 +146167,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22207
+ - uid: 22229
components:
- rot: 3.141592653589793 rad
pos: 33.5,-60.5
@@ -146070,7 +146175,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22208
+ - uid: 22230
components:
- rot: 3.141592653589793 rad
pos: 45.5,-43.5
@@ -146078,14 +146183,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22209
+ - uid: 22231
components:
- pos: 72.5,-43.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22210
+ - uid: 22232
components:
- rot: 3.141592653589793 rad
pos: 67.5,-49.5
@@ -146093,7 +146198,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22211
+ - uid: 22233
components:
- rot: 3.141592653589793 rad
pos: 60.5,-49.5
@@ -146101,13 +146206,13 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22212
+ - uid: 22234
components:
- rot: 3.141592653589793 rad
pos: 57.5,-45.5
parent: 2
type: Transform
- - uid: 22213
+ - uid: 22235
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-38.5
@@ -146115,7 +146220,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22214
+ - uid: 22236
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-47.5
@@ -146123,21 +146228,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22215
+ - uid: 22237
components:
- pos: 39.5,-35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22216
+ - uid: 22238
components:
- pos: 44.5,-35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22217
+ - uid: 22239
components:
- rot: 3.141592653589793 rad
pos: 10.5,-43.5
@@ -146145,7 +146250,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22218
+ - uid: 22240
components:
- rot: 3.141592653589793 rad
pos: 35.5,-43.5
@@ -146153,7 +146258,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22219
+ - uid: 22241
components:
- rot: 3.141592653589793 rad
pos: 28.5,-6.5
@@ -146161,7 +146266,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22220
+ - uid: 22242
components:
- rot: 3.141592653589793 rad
pos: 16.5,-43.5
@@ -146169,21 +146274,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22221
+ - uid: 22243
components:
- pos: 33.5,-39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22222
+ - uid: 22244
components:
- pos: 45.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22223
+ - uid: 22245
components:
- rot: 3.141592653589793 rad
pos: 42.5,-49.5
@@ -146191,7 +146296,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22224
+ - uid: 22246
components:
- rot: 3.141592653589793 rad
pos: 65.5,-35.5
@@ -146199,7 +146304,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22225
+ - uid: 22247
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-53.5
@@ -146207,14 +146312,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22226
+ - uid: 22248
components:
- pos: 32.5,-47.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22227
+ - uid: 22249
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-51.5
@@ -146222,7 +146327,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22228
+ - uid: 22250
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-50.5
@@ -146230,7 +146335,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22229
+ - uid: 22251
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-55.5
@@ -146238,7 +146343,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22230
+ - uid: 22252
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-56.5
@@ -146246,7 +146351,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22231
+ - uid: 22253
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-52.5
@@ -146254,7 +146359,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22232
+ - uid: 22254
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-56.5
@@ -146262,21 +146367,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22233
+ - uid: 22255
components:
- pos: 28.5,-58.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22234
+ - uid: 22256
components:
- pos: -15.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22235
+ - uid: 22257
components:
- rot: 3.141592653589793 rad
pos: 37.5,-60.5
@@ -146284,13 +146389,13 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22236
+ - uid: 22258
components:
- rot: 3.141592653589793 rad
pos: -27.5,-17.5
parent: 2
type: Transform
- - uid: 22237
+ - uid: 22259
components:
- rot: -1.5707963267948966 rad
pos: 16.5,-31.5
@@ -146298,15 +146403,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22238
- components:
- - rot: 1.5707963267948966 rad
- pos: -20.5,-15.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22239
+ - uid: 22260
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-19.5
@@ -146314,7 +146411,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22240
+ - uid: 22261
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-21.5
@@ -146322,14 +146419,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22241
+ - uid: 22262
components:
- pos: -30.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22242
+ - uid: 22263
components:
- rot: 3.141592653589793 rad
pos: -28.5,-14.5
@@ -146337,7 +146434,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22243
+ - uid: 22264
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-8.5
@@ -146345,7 +146442,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22244
+ - uid: 22265
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-54.5
@@ -146353,14 +146450,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22245
+ - uid: 22266
components:
- pos: 56.5,-58.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22246
+ - uid: 22267
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-56.5
@@ -146368,14 +146465,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22247
+ - uid: 22268
components:
- pos: 45.5,-56.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22248
+ - uid: 22269
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-50.5
@@ -146383,7 +146480,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22249
+ - uid: 22270
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-61.5
@@ -146391,7 +146488,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22250
+ - uid: 22271
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-5.5
@@ -146399,7 +146496,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22251
+ - uid: 22272
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-86.5
@@ -146407,7 +146504,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22252
+ - uid: 22273
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-84.5
@@ -146415,7 +146512,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22253
+ - uid: 22274
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-91.5
@@ -146423,21 +146520,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22254
+ - uid: 22275
components:
- pos: 41.5,-70.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22255
+ - uid: 22276
components:
- pos: 37.5,-70.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22256
+ - uid: 22277
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-61.5
@@ -146445,7 +146542,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22257
+ - uid: 22278
components:
- rot: 3.141592653589793 rad
pos: -35.5,-13.5
@@ -146453,21 +146550,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22258
+ - uid: 22279
components:
- pos: -35.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22259
+ - uid: 22280
components:
- pos: -16.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22260
+ - uid: 22281
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-29.5
@@ -146475,7 +146572,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22261
+ - uid: 22282
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-37.5
@@ -146483,7 +146580,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22262
+ - uid: 22283
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-41.5
@@ -146491,7 +146588,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22263
+ - uid: 22284
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-3.5
@@ -146499,7 +146596,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22264
+ - uid: 22285
components:
- rot: -1.5707963267948966 rad
pos: -6.5,11.5
@@ -146507,34 +146604,34 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22265
+ - uid: 22286
components:
- pos: -41.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22266
+ - uid: 22287
components:
- pos: -36.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22267
+ - uid: 22288
components:
- pos: -36.5,-53.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22268
+ - uid: 22289
components:
- rot: 3.141592653589793 rad
pos: -43.5,-57.5
parent: 2
type: Transform
- - uid: 22269
+ - uid: 22290
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-43.5
@@ -146542,7 +146639,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22270
+ - uid: 22291
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-45.5
@@ -146550,7 +146647,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22271
+ - uid: 22292
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-47.5
@@ -146558,7 +146655,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22272
+ - uid: 22293
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-49.5
@@ -146566,7 +146663,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22273
+ - uid: 22294
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-51.5
@@ -146574,7 +146671,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22274
+ - uid: 22295
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-53.5
@@ -146582,7 +146679,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22275
+ - uid: 22296
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-55.5
@@ -146590,7 +146687,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22276
+ - uid: 22297
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-39.5
@@ -146598,14 +146695,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22277
+ - uid: 22298
components:
- pos: -27.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22278
+ - uid: 22299
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-33.5
@@ -146613,7 +146710,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22279
+ - uid: 22300
components:
- rot: 3.141592653589793 rad
pos: -33.5,-35.5
@@ -146621,7 +146718,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22280
+ - uid: 22301
components:
- rot: 3.141592653589793 rad
pos: -39.5,-36.5
@@ -146629,7 +146726,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22281
+ - uid: 22302
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-47.5
@@ -146637,7 +146734,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22282
+ - uid: 22303
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-48.5
@@ -146645,7 +146742,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22283
+ - uid: 22304
components:
- rot: -1.5707963267948966 rad
pos: 18.5,5.5
@@ -146653,7 +146750,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22284
+ - uid: 22305
components:
- rot: 1.5707963267948966 rad
pos: 16.5,1.5
@@ -146661,7 +146758,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22285
+ - uid: 22306
components:
- rot: -1.5707963267948966 rad
pos: -12.5,5.5
@@ -146669,14 +146766,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22286
+ - uid: 22307
components:
- pos: -18.5,-4.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22287
+ - uid: 22308
components:
- rot: 3.141592653589793 rad
pos: -14.5,-6.5
@@ -146684,7 +146781,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22288
+ - uid: 22309
components:
- rot: 3.141592653589793 rad
pos: -19.5,6.5
@@ -146692,7 +146789,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22289
+ - uid: 22310
components:
- rot: 1.5707963267948966 rad
pos: -26.5,5.5
@@ -146700,7 +146797,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22290
+ - uid: 22311
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-1.5
@@ -146708,21 +146805,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22291
+ - uid: 22312
components:
- pos: -72.5,-23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22292
+ - uid: 22313
components:
- pos: -66.5,-30.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22293
+ - uid: 22314
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-25.5
@@ -146730,7 +146827,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22294
+ - uid: 22315
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-14.5
@@ -146738,7 +146835,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22295
+ - uid: 22316
components:
- rot: 1.5707963267948966 rad
pos: -55.5,-8.5
@@ -146746,27 +146843,27 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22296
+ - uid: 22317
components:
- pos: -51.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22297
+ - uid: 22318
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-18.5
parent: 2
type: Transform
- - uid: 22298
+ - uid: 22319
components:
- pos: -46.5,-19.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22299
+ - uid: 22320
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-21.5
@@ -146774,7 +146871,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22300
+ - uid: 22321
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-11.5
@@ -146782,7 +146879,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22301
+ - uid: 22322
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-15.5
@@ -146790,14 +146887,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22302
+ - uid: 22323
components:
- pos: -45.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22303
+ - uid: 22324
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-13.5
@@ -146805,7 +146902,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22304
+ - uid: 22325
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-24.5
@@ -146813,7 +146910,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22305
+ - uid: 22326
components:
- rot: -1.5707963267948966 rad
pos: 2.5,13.5
@@ -146821,7 +146918,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22306
+ - uid: 22327
components:
- rot: -1.5707963267948966 rad
pos: -2.5,11.5
@@ -146829,14 +146926,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22307
+ - uid: 22328
components:
- pos: -4.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22308
+ - uid: 22329
components:
- rot: 3.141592653589793 rad
pos: 3.5,5.5
@@ -146844,7 +146941,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22309
+ - uid: 22330
components:
- rot: -1.5707963267948966 rad
pos: 6.5,10.5
@@ -146852,27 +146949,27 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22310
+ - uid: 22331
components:
- rot: 1.5707963267948966 rad
pos: -1.5,18.5
parent: 2
type: Transform
- - uid: 22311
+ - uid: 22332
components:
- pos: 1.5,21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22312
+ - uid: 22333
components:
- pos: -42.5,1.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22313
+ - uid: 22334
components:
- rot: -1.5707963267948966 rad
pos: 8.5,15.5
@@ -146880,7 +146977,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22314
+ - uid: 22335
components:
- rot: 3.141592653589793 rad
pos: 23.5,16.5
@@ -146888,21 +146985,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22315
+ - uid: 22336
components:
- pos: 25.5,23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22316
+ - uid: 22337
components:
- pos: 38.5,2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22317
+ - uid: 22338
components:
- rot: 3.141592653589793 rad
pos: 49.5,0.5
@@ -146910,7 +147007,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22318
+ - uid: 22339
components:
- rot: -1.5707963267948966 rad
pos: 54.5,0.5
@@ -146918,7 +147015,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22319
+ - uid: 22340
components:
- rot: 3.141592653589793 rad
pos: -23.5,17.5
@@ -146926,7 +147023,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22320
+ - uid: 22341
components:
- rot: 3.141592653589793 rad
pos: -50.5,29.5
@@ -146934,14 +147031,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22321
+ - uid: 22342
components:
- pos: -22.5,25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22322
+ - uid: 22343
components:
- rot: -1.5707963267948966 rad
pos: -18.5,15.5
@@ -146949,7 +147046,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22323
+ - uid: 22344
components:
- rot: -1.5707963267948966 rad
pos: -18.5,22.5
@@ -146957,14 +147054,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22324
+ - uid: 22345
components:
- pos: -27.5,23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22325
+ - uid: 22346
components:
- rot: 1.5707963267948966 rad
pos: -34.5,23.5
@@ -146972,7 +147069,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22326
+ - uid: 22347
components:
- rot: 3.141592653589793 rad
pos: -29.5,17.5
@@ -146980,7 +147077,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22327
+ - uid: 22348
components:
- rot: -1.5707963267948966 rad
pos: -30.5,30.5
@@ -146988,7 +147085,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22328
+ - uid: 22349
components:
- rot: 3.141592653589793 rad
pos: -39.5,18.5
@@ -146996,7 +147093,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22329
+ - uid: 22350
components:
- rot: -1.5707963267948966 rad
pos: -36.5,23.5
@@ -147004,14 +147101,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22330
+ - uid: 22351
components:
- pos: -43.5,25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22331
+ - uid: 22352
components:
- rot: 1.5707963267948966 rad
pos: -48.5,21.5
@@ -147019,7 +147116,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22332
+ - uid: 22353
components:
- rot: 1.5707963267948966 rad
pos: -48.5,26.5
@@ -147027,7 +147124,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22333
+ - uid: 22354
components:
- rot: -1.5707963267948966 rad
pos: -36.5,30.5
@@ -147035,7 +147132,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22334
+ - uid: 22355
components:
- rot: 3.141592653589793 rad
pos: -47.5,28.5
@@ -147043,14 +147140,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22335
+ - uid: 22356
components:
- pos: -47.5,36.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22336
+ - uid: 22357
components:
- rot: 1.5707963267948966 rad
pos: -48.5,32.5
@@ -147058,7 +147155,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22337
+ - uid: 22358
components:
- rot: 3.141592653589793 rad
pos: -51.5,19.5
@@ -147066,21 +147163,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22338
+ - uid: 22359
components:
- pos: -7.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22339
+ - uid: 22360
components:
- pos: -1.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22340
+ - uid: 22361
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-47.5
@@ -147088,7 +147185,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22341
+ - uid: 22362
components:
- rot: 3.141592653589793 rad
pos: 1.5,-54.5
@@ -147096,14 +147193,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22342
+ - uid: 22363
components:
- pos: -3.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22343
+ - uid: 22364
components:
- rot: 3.141592653589793 rad
pos: -7.5,-54.5
@@ -147111,14 +147208,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22344
+ - uid: 22365
components:
- pos: -11.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22345
+ - uid: 22366
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-53.5
@@ -147126,21 +147223,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22346
+ - uid: 22367
components:
- pos: -17.5,-54.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22347
+ - uid: 22368
components:
- pos: -17.5,-59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22348
+ - uid: 22369
components:
- rot: -1.5707963267948966 rad
pos: -22.5,11.5
@@ -147148,14 +147245,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22349
+ - uid: 22370
components:
- pos: -26.5,15.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22350
+ - uid: 22371
components:
- rot: -1.5707963267948966 rad
pos: 26.5,11.5
@@ -147163,7 +147260,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22351
+ - uid: 22372
components:
- rot: 1.5707963267948966 rad
pos: -48.5,16.5
@@ -147171,14 +147268,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22352
+ - uid: 22373
components:
- pos: -47.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22353
+ - uid: 22374
components:
- rot: 3.141592653589793 rad
pos: -46.5,-0.5
@@ -147186,21 +147283,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22354
+ - uid: 22375
components:
- pos: 8.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22355
+ - uid: 22376
components:
- pos: 1.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22356
+ - uid: 22377
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-34.5
@@ -147208,7 +147305,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22357
+ - uid: 22378
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-29.5
@@ -147216,7 +147313,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22358
+ - uid: 22379
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-24.5
@@ -147224,28 +147321,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22359
+ - uid: 22380
components:
- pos: 21.5,-21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22360
+ - uid: 22381
components:
- pos: 29.5,-21.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22361
+ - uid: 22382
components:
- pos: -29.5,1.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22362
+ - uid: 22383
components:
- rot: 3.141592653589793 rad
pos: -38.5,-0.5
@@ -147253,7 +147350,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22363
+ - uid: 22384
components:
- rot: 3.141592653589793 rad
pos: -51.5,10.5
@@ -147261,7 +147358,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22364
+ - uid: 22385
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-46.5
@@ -147269,14 +147366,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22365
+ - uid: 22386
components:
- pos: 32.5,19.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22366
+ - uid: 22387
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-11.5
@@ -147284,7 +147381,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22367
+ - uid: 22388
components:
- rot: 3.141592653589793 rad
pos: 3.5,-65.5
@@ -147292,7 +147389,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22368
+ - uid: 22389
components:
- rot: 1.5707963267948966 rad
pos: 38.5,19.5
@@ -147300,14 +147397,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22369
+ - uid: 22390
components:
- pos: 64.5,-43.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22370
+ - uid: 22391
components:
- rot: 3.141592653589793 rad
pos: -24.5,-6.5
@@ -147315,7 +147412,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22371
+ - uid: 22392
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-60.5
@@ -147323,14 +147420,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22372
+ - uid: 22393
components:
- pos: -23.5,-57.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22373
+ - uid: 22394
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-73.5
@@ -147338,7 +147435,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22374
+ - uid: 22395
components:
- rot: -1.5707963267948966 rad
pos: 18.5,9.5
@@ -147346,7 +147443,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22375
+ - uid: 22396
components:
- rot: 3.141592653589793 rad
pos: -18.5,65.5
@@ -147354,14 +147451,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22376
+ - uid: 22397
components:
- pos: -21.5,45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22377
+ - uid: 22398
components:
- rot: 1.5707963267948966 rad
pos: -16.5,32.5
@@ -147369,7 +147466,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22378
+ - uid: 22399
components:
- rot: -1.5707963267948966 rad
pos: -14.5,40.5
@@ -147377,7 +147474,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22379
+ - uid: 22400
components:
- rot: 1.5707963267948966 rad
pos: -18.5,46.5
@@ -147385,7 +147482,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22380
+ - uid: 22401
components:
- rot: 1.5707963267948966 rad
pos: -20.5,28.5
@@ -147393,7 +147490,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22381
+ - uid: 22402
components:
- rot: -1.5707963267948966 rad
pos: -2.5,52.5
@@ -147401,7 +147498,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22382
+ - uid: 22403
components:
- rot: 1.5707963267948966 rad
pos: -10.5,55.5
@@ -147409,7 +147506,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22383
+ - uid: 22404
components:
- rot: 1.5707963267948966 rad
pos: -10.5,49.5
@@ -147417,7 +147514,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22384
+ - uid: 22405
components:
- rot: -1.5707963267948966 rad
pos: -40.5,32.5
@@ -147425,14 +147522,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22385
+ - uid: 22406
components:
- pos: -1.5,46.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22386
+ - uid: 22407
components:
- rot: 1.5707963267948966 rad
pos: -0.5,51.5
@@ -147440,7 +147537,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22387
+ - uid: 22408
components:
- rot: 1.5707963267948966 rad
pos: -0.5,57.5
@@ -147448,21 +147545,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22388
+ - uid: 22409
components:
- pos: -6.5,59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22389
+ - uid: 22410
components:
- pos: -19.5,51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22390
+ - uid: 22411
components:
- rot: 1.5707963267948966 rad
pos: -22.5,55.5
@@ -147470,7 +147567,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22391
+ - uid: 22412
components:
- rot: 1.5707963267948966 rad
pos: -22.5,66.5
@@ -147478,7 +147575,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22392
+ - uid: 22413
components:
- rot: -1.5707963267948966 rad
pos: -12.5,66.5
@@ -147486,7 +147583,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22393
+ - uid: 22414
components:
- rot: 1.5707963267948966 rad
pos: -13.5,60.5
@@ -147494,7 +147591,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22394
+ - uid: 22415
components:
- rot: -1.5707963267948966 rad
pos: -12.5,54.5
@@ -147502,7 +147599,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22395
+ - uid: 22416
components:
- rot: 3.141592653589793 rad
pos: 28.5,44.5
@@ -147510,7 +147607,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22396
+ - uid: 22417
components:
- rot: 3.141592653589793 rad
pos: -44.5,-85.5
@@ -147518,7 +147615,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22397
+ - uid: 22418
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-95.5
@@ -147526,7 +147623,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22398
+ - uid: 22419
components:
- rot: 3.141592653589793 rad
pos: -71.5,-32.5
@@ -147534,7 +147631,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22399
+ - uid: 22420
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-2.5
@@ -147542,7 +147639,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22400
+ - uid: 22421
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-8.5
@@ -147550,7 +147647,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22401
+ - uid: 22422
components:
- rot: 1.5707963267948966 rad
pos: 57.5,-33.5
@@ -147558,7 +147655,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22402
+ - uid: 22423
components:
- rot: -1.5707963267948966 rad
pos: 75.5,-35.5
@@ -147566,7 +147663,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22403
+ - uid: 22424
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-65.5
@@ -147574,7 +147671,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22404
+ - uid: 22425
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-21.5
@@ -147582,14 +147679,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22405
+ - uid: 22426
components:
- pos: 67.5,-36.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22406
+ - uid: 22427
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-31.5
@@ -147597,14 +147694,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22407
+ - uid: 22428
components:
- pos: -62.5,-23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22408
+ - uid: 22429
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-28.5
@@ -147612,7 +147709,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22409
+ - uid: 22430
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-59.5
@@ -147620,7 +147717,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22410
+ - uid: 22431
components:
- rot: 1.5707963267948966 rad
pos: 71.5,-31.5
@@ -147628,7 +147725,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22411
+ - uid: 22432
components:
- rot: 3.141592653589793 rad
pos: 4.5,-35.5
@@ -147636,7 +147733,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22412
+ - uid: 22433
components:
- rot: -1.5707963267948966 rad
pos: 32.5,28.5
@@ -147644,21 +147741,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22413
+ - uid: 22434
components:
- pos: 58.5,-28.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22414
+ - uid: 22435
components:
- pos: 34.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22415
+ - uid: 22436
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-30.5
@@ -147666,14 +147763,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22416
+ - uid: 22437
components:
- pos: 55.5,-47.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22417
+ - uid: 22438
components:
- rot: -1.5707963267948966 rad
pos: -43.5,4.5
@@ -147681,7 +147778,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22418
+ - uid: 22439
components:
- rot: -1.5707963267948966 rad
pos: 76.5,-49.5
@@ -147689,7 +147786,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22419
+ - uid: 22440
components:
- rot: -1.5707963267948966 rad
pos: -60.5,-28.5
@@ -147697,14 +147794,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22420
+ - uid: 22441
components:
- pos: -50.5,35.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22421
+ - uid: 22442
components:
- rot: -1.5707963267948966 rad
pos: -14.5,25.5
@@ -147712,7 +147809,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22422
+ - uid: 22443
components:
- rot: 1.5707963267948966 rad
pos: -0.5,6.5
@@ -147720,7 +147817,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22423
+ - uid: 22444
components:
- rot: 3.141592653589793 rad
pos: 25.5,-25.5
@@ -147728,14 +147825,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22424
+ - uid: 22445
components:
- pos: -21.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22425
+ - uid: 22446
components:
- rot: 3.141592653589793 rad
pos: -33.5,-0.5
@@ -147743,14 +147840,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22426
+ - uid: 22447
components:
- pos: -51.5,23.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22427
+ - uid: 22448
components:
- rot: -1.5707963267948966 rad
pos: -44.5,15.5
@@ -147758,15 +147855,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22428
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,-18.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22429
+ - uid: 22449
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-15.5
@@ -147774,7 +147863,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22430
+ - uid: 22450
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-0.5
@@ -147782,7 +147871,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22431
+ - uid: 22451
components:
- rot: -1.5707963267948966 rad
pos: -45.5,10.5
@@ -147790,7 +147879,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22432
+ - uid: 22452
components:
- rot: 1.5707963267948966 rad
pos: 2.5,-49.5
@@ -147798,7 +147887,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22433
+ - uid: 22453
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-21.5
@@ -147806,7 +147895,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22434
+ - uid: 22454
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-21.5
@@ -147814,7 +147903,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22435
+ - uid: 22455
components:
- rot: 1.5707963267948966 rad
pos: -0.5,9.5
@@ -147822,7 +147911,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22436
+ - uid: 22456
components:
- rot: -1.5707963267948966 rad
pos: 6.5,5.5
@@ -147830,7 +147919,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22437
+ - uid: 22457
components:
- rot: 3.141592653589793 rad
pos: 9.5,-1.5
@@ -147838,7 +147927,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22438
+ - uid: 22458
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-38.5
@@ -147846,21 +147935,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22439
+ - uid: 22459
components:
- pos: -49.5,-34.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22440
+ - uid: 22460
components:
- pos: 28.5,-80.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22441
+ - uid: 22461
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-88.5
@@ -147868,7 +147957,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22442
+ - uid: 22462
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-80.5
@@ -147876,14 +147965,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22443
+ - uid: 22463
components:
- pos: 48.5,-71.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22444
+ - uid: 22464
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-82.5
@@ -147891,7 +147980,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22445
+ - uid: 22465
components:
- rot: 3.141592653589793 rad
pos: 12.5,-86.5
@@ -147899,7 +147988,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22446
+ - uid: 22466
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-72.5
@@ -147907,14 +147996,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22447
+ - uid: 22467
components:
- pos: 29.5,-71.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22448
+ - uid: 22468
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-66.5
@@ -147922,21 +148011,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22449
+ - uid: 22469
components:
- pos: 24.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22450
+ - uid: 22470
components:
- pos: 15.5,-79.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22451
+ - uid: 22471
components:
- rot: 1.5707963267948966 rad
pos: 37.5,11.5
@@ -147944,7 +148033,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22452
+ - uid: 22472
components:
- rot: 3.141592653589793 rad
pos: 28.5,-2.5
@@ -147952,203 +148041,220 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22453
+ - uid: 22473
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-47.5
parent: 2
type: Transform
- - uid: 22454
+ - uid: 22474
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-41.5
parent: 2
type: Transform
- - uid: 22455
+ - uid: 22475
components:
- rot: 1.5707963267948966 rad
pos: 20.5,22.5
parent: 2
type: Transform
- - uid: 22456
+ - uid: 22476
components:
- rot: -1.5707963267948966 rad
pos: -45.5,41.5
parent: 2
type: Transform
- - uid: 22457
+ - uid: 22477
components:
- rot: 1.5707963267948966 rad
pos: -50.5,44.5
parent: 2
type: Transform
- - uid: 22458
+ - uid: 22478
components:
- rot: 3.141592653589793 rad
pos: 67.5,-31.5
parent: 2
type: Transform
- - uid: 22459
+ - uid: 22479
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-29.5
parent: 2
type: Transform
- - uid: 22460
+ - uid: 22480
components:
- rot: -1.5707963267948966 rad
pos: -3.5,17.5
parent: 2
type: Transform
- - uid: 22461
+ - uid: 22481
components:
- rot: 1.5707963267948966 rad
pos: -8.5,17.5
parent: 2
type: Transform
- - uid: 22462
+ - uid: 22482
components:
- rot: 3.141592653589793 rad
pos: -44.5,-17.5
parent: 2
type: Transform
- - uid: 22463
+ - uid: 22483
components:
- pos: 77.5,-43.5
parent: 2
type: Transform
- - uid: 22464
+ - uid: 22484
components:
- pos: -71.5,-37.5
parent: 2
type: Transform
- - uid: 22465
+ - uid: 22485
components:
- rot: 3.141592653589793 rad
pos: -65.5,-46.5
parent: 2
type: Transform
- - uid: 22466
+ - uid: 22486
components:
- rot: 3.141592653589793 rad
pos: -71.5,-46.5
parent: 2
type: Transform
- - uid: 22467
+ - uid: 22487
components:
- pos: -65.5,-36.5
parent: 2
type: Transform
- - uid: 22468
+ - uid: 22488
components:
- rot: 3.141592653589793 rad
pos: -66.5,-34.5
parent: 2
type: Transform
- - uid: 22469
+ - uid: 22489
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-32.5
parent: 2
type: Transform
- - uid: 22470
+ - uid: 22490
components:
- pos: -35.5,-15.5
parent: 2
type: Transform
- - uid: 22471
+ - uid: 22491
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-4.5
parent: 2
type: Transform
- - uid: 22472
+ - uid: 22492
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-7.5
parent: 2
type: Transform
- links:
- - 24214
+ - 24258
type: DeviceLinkSink
- - uid: 22473
+ - uid: 22493
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-38.5
parent: 2
type: Transform
- - uid: 22474
+ - uid: 22494
components:
- rot: 3.141592653589793 rad
pos: 21.5,-37.5
parent: 2
type: Transform
- - uid: 22475
+ - uid: 22495
components:
- pos: 24.5,-34.5
parent: 2
type: Transform
- - uid: 22476
+ - uid: 22496
components:
- rot: 3.141592653589793 rad
pos: 1.5,-23.5
parent: 2
type: Transform
- - uid: 22477
+ - uid: 22497
components:
- pos: -1.5,-19.5
parent: 2
type: Transform
- - uid: 22478
+ - uid: 22498
components:
- rot: 3.141592653589793 rad
pos: 5.5,-11.5
parent: 2
type: Transform
- - uid: 22479
+ - uid: 22499
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-41.5
parent: 2
type: Transform
- - uid: 22480
+ - uid: 22500
components:
- rot: 3.141592653589793 rad
pos: -52.5,-25.5
parent: 2
type: Transform
- - uid: 22481
+ - uid: 22501
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-43.5
parent: 2
type: Transform
- - uid: 22482
+ - uid: 22502
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-39.5
parent: 2
type: Transform
- - uid: 22483
+ - uid: 22503
components:
- pos: 11.5,23.5
parent: 2
type: Transform
- - uid: 22484
+ - uid: 22504
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-46.5
parent: 2
type: Transform
- - uid: 22486
+ - uid: 22505
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-17.5
parent: 2
type: Transform
+ - uid: 22506
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 22507
+ components:
+ - pos: -9.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 22508
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -18.5,-15.5
+ parent: 2
+ type: Transform
- proto: PoweredlightEmpty
entities:
- - uid: 22487
+ - uid: 22509
components:
- rot: 3.141592653589793 rad
pos: -39.5,-85.5
@@ -148156,7 +148262,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22488
+ - uid: 22510
components:
- rot: 3.141592653589793 rad
pos: -40.5,-92.5
@@ -148164,7 +148270,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22489
+ - uid: 22511
components:
- rot: 3.141592653589793 rad
pos: -40.5,-97.5
@@ -148172,7 +148278,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22490
+ - uid: 22512
components:
- rot: 3.141592653589793 rad
pos: -28.5,-98.5
@@ -148180,7 +148286,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22491
+ - uid: 22513
components:
- rot: 3.141592653589793 rad
pos: -16.5,-98.5
@@ -148188,21 +148294,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22492
+ - uid: 22514
components:
- pos: -13.5,13.5
parent: 2
type: Transform
- proto: PoweredlightExterior
entities:
- - uid: 22493
+ - uid: 22515
components:
- pos: -1.5,72.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22494
+ - uid: 22516
components:
- rot: 1.5707963267948966 rad
pos: -7.5,68.5
@@ -148210,7 +148316,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22495
+ - uid: 22517
components:
- rot: -1.5707963267948966 rad
pos: 4.5,68.5
@@ -148218,7 +148324,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22496
+ - uid: 22518
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-85.5
@@ -148226,7 +148332,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22497
+ - uid: 22519
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-89.5
@@ -148234,43 +148340,43 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22498
+ - uid: 22520
components:
- pos: 39.5,66.5
parent: 2
type: Transform
- - uid: 22499
+ - uid: 22521
components:
- rot: -1.5707963267948966 rad
pos: 42.5,63.5
parent: 2
type: Transform
- - uid: 22500
+ - uid: 22522
components:
- rot: 1.5707963267948966 rad
pos: 36.5,63.5
parent: 2
type: Transform
- - uid: 22501
+ - uid: 22523
components:
- pos: -52.5,-86.5
parent: 2
type: Transform
- proto: PoweredLightPostSmall
entities:
- - uid: 22502
+ - uid: 22524
components:
- pos: -0.5,-85.5
parent: 2
type: Transform
- - uid: 22503
+ - uid: 22525
components:
- pos: -2.5,-85.5
parent: 2
type: Transform
- proto: PoweredlightSodium
entities:
- - uid: 22504
+ - uid: 22526
components:
- rot: 3.141592653589793 rad
pos: 72.5,34.5
@@ -148278,7 +148384,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22505
+ - uid: 22527
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-65.5
@@ -148286,28 +148392,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22506
+ - uid: 22528
components:
- pos: -18.5,4.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22507
+ - uid: 22529
components:
- pos: -40.5,-15.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22508
+ - uid: 22530
components:
- pos: -20.5,-95.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22509
+ - uid: 22531
components:
- rot: 3.141592653589793 rad
pos: -7.5,-100.5
@@ -148315,7 +148421,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22510
+ - uid: 22532
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-20.5
@@ -148325,52 +148431,52 @@ entities:
type: ApcPowerReceiver
- proto: PoweredSmallLight
entities:
- - uid: 22511
+ - uid: 22533
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-26.5
parent: 2
type: Transform
- - uid: 22512
+ - uid: 22534
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-46.5
parent: 2
type: Transform
- - uid: 22513
+ - uid: 22535
components:
- pos: 12.5,25.5
parent: 2
type: Transform
- - uid: 22514
+ - uid: 22536
components:
- pos: -43.5,-34.5
parent: 2
type: Transform
- - uid: 22515
+ - uid: 22537
components:
- pos: -76.5,-31.5
parent: 2
type: Transform
- - uid: 22516
+ - uid: 22538
components:
- pos: 51.5,-82.5
parent: 2
type: Transform
- - uid: 22517
+ - uid: 22539
components:
- rot: -1.5707963267948966 rad
pos: -49.5,46.5
parent: 2
type: Transform
- - uid: 22518
+ - uid: 22540
components:
- pos: 20.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22519
+ - uid: 22541
components:
- rot: 3.141592653589793 rad
pos: 16.5,-55.5
@@ -148378,21 +148484,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22520
+ - uid: 22542
components:
- pos: 16.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22521
+ - uid: 22543
components:
- pos: 1.5,-40.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22522
+ - uid: 22544
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-47.5
@@ -148400,7 +148506,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22523
+ - uid: 22545
components:
- rot: 3.141592653589793 rad
pos: 20.5,-32.5
@@ -148408,7 +148514,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22524
+ - uid: 22546
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-74.5
@@ -148416,21 +148522,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22525
+ - uid: 22547
components:
- pos: 0.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22526
+ - uid: 22548
components:
- pos: 33.5,-10.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22527
+ - uid: 22549
components:
- rot: 3.141592653589793 rad
pos: 10.5,-17.5
@@ -148438,7 +148544,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22528
+ - uid: 22550
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-12.5
@@ -148446,7 +148552,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22529
+ - uid: 22551
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-13.5
@@ -148454,7 +148560,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22530
+ - uid: 22552
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-12.5
@@ -148462,7 +148568,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22531
+ - uid: 22553
components:
- rot: 1.5707963267948966 rad
pos: 6.5,49.5
@@ -148470,14 +148576,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22532
+ - uid: 22554
components:
- pos: 33.5,-89.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22533
+ - uid: 22555
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-29.5
@@ -148485,7 +148591,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22534
+ - uid: 22556
components:
- rot: 1.5707963267948966 rad
pos: -2.5,-78.5
@@ -148493,14 +148599,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22535
+ - uid: 22557
components:
- pos: -15.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22536
+ - uid: 22558
components:
- rot: 3.141592653589793 rad
pos: -13.5,-67.5
@@ -148508,14 +148614,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22537
+ - uid: 22559
components:
- pos: -20.5,-66.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22538
+ - uid: 22560
components:
- rot: 3.141592653589793 rad
pos: -5.5,-50.5
@@ -148523,28 +148629,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22539
+ - uid: 22561
components:
- pos: -20.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22540
+ - uid: 22562
components:
- pos: -15.5,-75.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22541
+ - uid: 22563
components:
- pos: -15.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22542
+ - uid: 22564
components:
- rot: 3.141592653589793 rad
pos: -15.5,-79.5
@@ -148552,7 +148658,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22543
+ - uid: 22565
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-80.5
@@ -148560,7 +148666,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22544
+ - uid: 22566
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-78.5
@@ -148568,7 +148674,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22545
+ - uid: 22567
components:
- rot: 3.141592653589793 rad
pos: -30.5,-7.5
@@ -148576,7 +148682,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22546
+ - uid: 22568
components:
- rot: -1.5707963267948966 rad
pos: 22.5,12.5
@@ -148584,7 +148690,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22547
+ - uid: 22569
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-37.5
@@ -148592,7 +148698,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22548
+ - uid: 22570
components:
- rot: -1.5707963267948966 rad
pos: 55.5,29.5
@@ -148600,28 +148706,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22549
+ - uid: 22571
components:
- pos: 49.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22550
+ - uid: 22572
components:
- pos: -8.5,-29.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22551
+ - uid: 22573
components:
- pos: -16.5,-29.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22552
+ - uid: 22574
components:
- rot: -1.5707963267948966 rad
pos: 30.5,25.5
@@ -148629,21 +148735,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22553
+ - uid: 22575
components:
- pos: 37.5,8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22554
+ - uid: 22576
components:
- pos: 37.5,5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22555
+ - uid: 22577
components:
- rot: 1.5707963267948966 rad
pos: 34.5,11.5
@@ -148651,7 +148757,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22556
+ - uid: 22578
components:
- rot: 1.5707963267948966 rad
pos: 31.5,11.5
@@ -148659,7 +148765,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22557
+ - uid: 22579
components:
- rot: 1.5707963267948966 rad
pos: 28.5,11.5
@@ -148667,7 +148773,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22558
+ - uid: 22580
components:
- rot: 3.141592653589793 rad
pos: 45.5,14.5
@@ -148675,7 +148781,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22559
+ - uid: 22581
components:
- rot: 1.5707963267948966 rad
pos: 58.5,23.5
@@ -148683,7 +148789,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22560
+ - uid: 22582
components:
- rot: 1.5707963267948966 rad
pos: 55.5,23.5
@@ -148691,7 +148797,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22561
+ - uid: 22583
components:
- rot: 1.5707963267948966 rad
pos: 52.5,23.5
@@ -148699,7 +148805,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22562
+ - uid: 22584
components:
- rot: 1.5707963267948966 rad
pos: 49.5,23.5
@@ -148707,7 +148813,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22563
+ - uid: 22585
components:
- rot: 1.5707963267948966 rad
pos: 46.5,23.5
@@ -148715,21 +148821,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22564
+ - uid: 22586
components:
- pos: 61.5,19.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22565
+ - uid: 22587
components:
- pos: 61.5,16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22566
+ - uid: 22588
components:
- rot: 1.5707963267948966 rad
pos: 62.5,11.5
@@ -148737,14 +148843,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22567
+ - uid: 22589
components:
- pos: 62.5,22.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22568
+ - uid: 22590
components:
- rot: -1.5707963267948966 rad
pos: 54.5,12.5
@@ -148752,7 +148858,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22569
+ - uid: 22591
components:
- rot: 1.5707963267948966 rad
pos: 62.5,6.5
@@ -148760,14 +148866,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22570
+ - uid: 22592
components:
- pos: 60.5,2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22571
+ - uid: 22593
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-1.5
@@ -148775,14 +148881,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22572
+ - uid: 22594
components:
- pos: 35.5,20.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22573
+ - uid: 22595
components:
- rot: 1.5707963267948966 rad
pos: 44.5,18.5
@@ -148790,7 +148896,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22574
+ - uid: 22596
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-2.5
@@ -148798,14 +148904,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22575
+ - uid: 22597
components:
- pos: 49.5,-7.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22576
+ - uid: 22598
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-38.5
@@ -148813,7 +148919,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22577
+ - uid: 22599
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-45.5
@@ -148821,7 +148927,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22578
+ - uid: 22600
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-19.5
@@ -148829,7 +148935,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22579
+ - uid: 22601
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-15.5
@@ -148837,14 +148943,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22580
+ - uid: 22602
components:
- pos: -18.5,-0.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22581
+ - uid: 22603
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-21.5
@@ -148852,28 +148958,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22582
+ - uid: 22604
components:
- pos: 46.5,-51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22583
+ - uid: 22605
components:
- pos: 12.5,-72.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22584
+ - uid: 22606
components:
- pos: 45.5,-89.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22585
+ - uid: 22607
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-94.5
@@ -148881,14 +148987,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22586
+ - uid: 22608
components:
- pos: 20.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22587
+ - uid: 22609
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-5.5
@@ -148896,28 +149002,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22588
+ - uid: 22610
components:
- pos: -20.5,-45.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22589
+ - uid: 22611
components:
- pos: -26.5,-26.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22590
+ - uid: 22612
components:
- pos: 43.5,-51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22591
+ - uid: 22613
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-51.5
@@ -148925,42 +149031,42 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22592
+ - uid: 22614
components:
- pos: 10.5,-55.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22593
+ - uid: 22615
components:
- pos: 15.5,-57.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22594
+ - uid: 22616
components:
- pos: 9.5,-64.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22595
+ - uid: 22617
components:
- pos: -5.5,-68.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22596
+ - uid: 22618
components:
- pos: -33.5,-69.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22597
+ - uid: 22619
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-78.5
@@ -148968,7 +149074,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22598
+ - uid: 22620
components:
- rot: 3.141592653589793 rad
pos: -51.5,-79.5
@@ -148976,14 +149082,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22599
+ - uid: 22621
components:
- pos: -26.5,-66.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22600
+ - uid: 22622
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-61.5
@@ -148991,7 +149097,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22601
+ - uid: 22623
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-68.5
@@ -148999,21 +149105,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22602
+ - uid: 22624
components:
- pos: -37.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22603
+ - uid: 22625
components:
- pos: -44.5,-63.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22604
+ - uid: 22626
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-55.5
@@ -149021,14 +149127,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22605
+ - uid: 22627
components:
- pos: -29.5,-43.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22606
+ - uid: 22628
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-53.5
@@ -149036,14 +149142,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22607
+ - uid: 22629
components:
- pos: -22.5,-41.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22608
+ - uid: 22630
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-41.5
@@ -149051,14 +149157,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22609
+ - uid: 22631
components:
- pos: 44.5,-13.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22610
+ - uid: 22632
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-13.5
@@ -149066,21 +149172,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22611
+ - uid: 22633
components:
- pos: 39.5,-7.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22612
+ - uid: 22634
components:
- pos: 31.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22613
+ - uid: 22635
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-7.5
@@ -149088,7 +149194,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22614
+ - uid: 22636
components:
- rot: 1.5707963267948966 rad
pos: 65.5,24.5
@@ -149096,14 +149202,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22615
+ - uid: 22637
components:
- pos: 57.5,26.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22616
+ - uid: 22638
components:
- rot: 3.141592653589793 rad
pos: 49.5,26.5
@@ -149111,28 +149217,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22617
+ - uid: 22639
components:
- pos: -41.5,-24.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22618
+ - uid: 22640
components:
- pos: -39.5,-28.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22619
+ - uid: 22641
components:
- pos: -45.5,-27.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22620
+ - uid: 22642
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-30.5
@@ -149140,7 +149246,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22621
+ - uid: 22643
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-29.5
@@ -149148,7 +149254,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22622
+ - uid: 22644
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-33.5
@@ -149156,7 +149262,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22623
+ - uid: 22645
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-38.5
@@ -149164,7 +149270,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22624
+ - uid: 22646
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-29.5
@@ -149172,21 +149278,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22625
+ - uid: 22647
components:
- pos: -29.5,-25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22626
+ - uid: 22648
components:
- pos: 15.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22627
+ - uid: 22649
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-4.5
@@ -149194,7 +149300,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22628
+ - uid: 22650
components:
- rot: 3.141592653589793 rad
pos: 14.5,-14.5
@@ -149202,28 +149308,20 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22629
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-13.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22630
+ - uid: 22651
components:
- pos: 1.5,-16.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22631
+ - uid: 22652
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-34.5
parent: 2
type: Transform
- - uid: 22632
+ - uid: 22653
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-7.5
@@ -149231,7 +149329,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22633
+ - uid: 22654
components:
- rot: 1.5707963267948966 rad
pos: 62.5,28.5
@@ -149239,56 +149337,56 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22634
+ - uid: 22655
components:
- pos: -49.5,-42.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22635
+ - uid: 22656
components:
- pos: -49.5,-44.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22636
+ - uid: 22657
components:
- pos: -49.5,-46.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22637
+ - uid: 22658
components:
- pos: -49.5,-48.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22638
+ - uid: 22659
components:
- pos: -49.5,-50.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22639
+ - uid: 22660
components:
- pos: -49.5,-52.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22640
+ - uid: 22661
components:
- pos: -49.5,-54.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22641
+ - uid: 22662
components:
- rot: 1.5707963267948966 rad
pos: 15.5,33.5
@@ -149296,21 +149394,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22642
+ - uid: 22663
components:
- pos: 21.5,25.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22643
+ - uid: 22664
components:
- pos: -6.5,32.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22644
+ - uid: 22665
components:
- rot: -1.5707963267948966 rad
pos: 0.5,33.5
@@ -149318,7 +149416,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22645
+ - uid: 22666
components:
- rot: 1.5707963267948966 rad
pos: -0.5,-10.5
@@ -149326,7 +149424,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22646
+ - uid: 22667
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-0.5
@@ -149334,7 +149432,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22647
+ - uid: 22668
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-3.5
@@ -149342,7 +149440,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22648
+ - uid: 22669
components:
- rot: 1.5707963267948966 rad
pos: -41.5,4.5
@@ -149350,7 +149448,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22649
+ - uid: 22670
components:
- rot: 3.141592653589793 rad
pos: -30.5,3.5
@@ -149358,7 +149456,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22650
+ - uid: 22671
components:
- rot: 1.5707963267948966 rad
pos: -33.5,9.5
@@ -149366,7 +149464,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22651
+ - uid: 22672
components:
- rot: -1.5707963267948966 rad
pos: -28.5,9.5
@@ -149374,7 +149472,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22652
+ - uid: 22673
components:
- rot: -1.5707963267948966 rad
pos: -29.5,14.5
@@ -149382,7 +149480,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22653
+ - uid: 22674
components:
- rot: -1.5707963267948966 rad
pos: -35.5,9.5
@@ -149390,7 +149488,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22654
+ - uid: 22675
components:
- rot: 1.5707963267948966 rad
pos: -40.5,9.5
@@ -149398,7 +149496,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22655
+ - uid: 22676
components:
- rot: -1.5707963267948966 rad
pos: -12.5,19.5
@@ -149406,7 +149504,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22656
+ - uid: 22677
components:
- rot: 1.5707963267948966 rad
pos: -16.5,21.5
@@ -149414,7 +149512,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22657
+ - uid: 22678
components:
- rot: 3.141592653589793 rad
pos: -9.5,21.5
@@ -149422,14 +149520,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22658
+ - uid: 22679
components:
- pos: -0.5,24.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22659
+ - uid: 22680
components:
- rot: -1.5707963267948966 rad
pos: -42.5,10.5
@@ -149437,7 +149535,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22660
+ - uid: 22681
components:
- rot: 1.5707963267948966 rad
pos: -52.5,14.5
@@ -149445,7 +149543,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22661
+ - uid: 22682
components:
- rot: -1.5707963267948966 rad
pos: -51.5,7.5
@@ -149453,28 +149551,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22662
+ - uid: 22683
components:
- pos: -44.5,-2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22663
+ - uid: 22684
components:
- pos: -40.5,-2.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22664
+ - uid: 22685
components:
- pos: -49.5,1.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22665
+ - uid: 22686
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-39.5
@@ -149482,14 +149580,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22666
+ - uid: 22687
components:
- pos: -35.5,-38.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22667
+ - uid: 22688
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-69.5
@@ -149497,7 +149595,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22668
+ - uid: 22689
components:
- rot: 3.141592653589793 rad
pos: -63.5,-21.5
@@ -149505,7 +149603,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22669
+ - uid: 22690
components:
- rot: 3.141592653589793 rad
pos: -69.5,-21.5
@@ -149513,21 +149611,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22670
+ - uid: 22691
components:
- pos: -68.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22671
+ - uid: 22692
components:
- pos: -64.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22672
+ - uid: 22693
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-10.5
@@ -149535,7 +149633,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22673
+ - uid: 22694
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-16.5
@@ -149543,7 +149641,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22674
+ - uid: 22695
components:
- rot: -1.5707963267948966 rad
pos: 61.5,24.5
@@ -149551,7 +149649,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22675
+ - uid: 22696
components:
- rot: -1.5707963267948966 rad
pos: 63.5,24.5
@@ -149559,7 +149657,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22676
+ - uid: 22697
components:
- rot: 3.141592653589793 rad
pos: 63.5,13.5
@@ -149567,7 +149665,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22677
+ - uid: 22698
components:
- rot: 3.141592653589793 rad
pos: 63.5,11.5
@@ -149575,7 +149673,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22678
+ - uid: 22699
components:
- rot: 3.141592653589793 rad
pos: 63.5,9.5
@@ -149583,7 +149681,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22679
+ - uid: 22700
components:
- rot: 3.141592653589793 rad
pos: -47.5,53.5
@@ -149591,7 +149689,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22680
+ - uid: 22701
components:
- rot: 3.141592653589793 rad
pos: -41.5,53.5
@@ -149599,7 +149697,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22681
+ - uid: 22702
components:
- rot: 1.5707963267948966 rad
pos: -40.5,52.5
@@ -149607,7 +149705,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22682
+ - uid: 22703
components:
- rot: 1.5707963267948966 rad
pos: -46.5,52.5
@@ -149615,7 +149713,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22683
+ - uid: 22704
components:
- rot: -1.5707963267948966 rad
pos: 23.5,34.5
@@ -149623,21 +149721,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22684
+ - uid: 22705
components:
- pos: -51.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22685
+ - uid: 22706
components:
- pos: -8.5,-71.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22686
+ - uid: 22707
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-17.5
@@ -149645,7 +149743,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22687
+ - uid: 22708
components:
- rot: 3.141592653589793 rad
pos: 39.5,-30.5
@@ -149653,21 +149751,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22688
+ - uid: 22709
components:
- pos: -30.5,-54.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22689
+ - uid: 22710
components:
- pos: 56.5,59.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22690
+ - uid: 22711
components:
- rot: 3.141592653589793 rad
pos: 52.5,55.5
@@ -149675,7 +149773,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22691
+ - uid: 22712
components:
- rot: 3.141592653589793 rad
pos: 58.5,42.5
@@ -149683,7 +149781,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22692
+ - uid: 22713
components:
- rot: 3.141592653589793 rad
pos: 51.5,42.5
@@ -149691,14 +149789,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22693
+ - uid: 22714
components:
- pos: 15.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22694
+ - uid: 22715
components:
- rot: 1.5707963267948966 rad
pos: 60.5,46.5
@@ -149706,7 +149804,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22695
+ - uid: 22716
components:
- rot: 1.5707963267948966 rad
pos: 65.5,9.5
@@ -149714,21 +149812,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22696
+ - uid: 22717
components:
- pos: 9.5,34.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22697
+ - uid: 22718
components:
- pos: -23.5,31.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22698
+ - uid: 22719
components:
- rot: 3.141592653589793 rad
pos: 57.5,28.5
@@ -149736,7 +149834,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22699
+ - uid: 22720
components:
- rot: 1.5707963267948966 rad
pos: -21.5,33.5
@@ -149744,28 +149842,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22700
+ - uid: 22721
components:
- pos: 46.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22701
+ - uid: 22722
components:
- pos: 54.5,50.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22702
+ - uid: 22723
components:
- pos: 45.5,32.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22703
+ - uid: 22724
components:
- rot: -1.5707963267948966 rad
pos: 48.5,46.5
@@ -149773,7 +149871,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22704
+ - uid: 22725
components:
- rot: -1.5707963267948966 rad
pos: -11.5,33.5
@@ -149781,14 +149879,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22705
+ - uid: 22726
components:
- pos: -11.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22706
+ - uid: 22727
components:
- rot: 3.141592653589793 rad
pos: 43.5,44.5
@@ -149796,7 +149894,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22708
+ - uid: 22728
components:
- rot: -1.5707963267948966 rad
pos: -20.5,48.5
@@ -149804,14 +149902,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22709
+ - uid: 22729
components:
- pos: -10.5,29.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22710
+ - uid: 22730
components:
- rot: -1.5707963267948966 rad
pos: -17.5,69.5
@@ -149819,7 +149917,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22711
+ - uid: 22731
components:
- rot: -1.5707963267948966 rad
pos: -12.5,74.5
@@ -149827,7 +149925,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22712
+ - uid: 22732
components:
- rot: 1.5707963267948966 rad
pos: -22.5,74.5
@@ -149835,7 +149933,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22713
+ - uid: 22733
components:
- rot: 3.141592653589793 rad
pos: -15.5,60.5
@@ -149843,14 +149941,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22714
+ - uid: 22734
components:
- pos: -18.5,55.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22715
+ - uid: 22735
components:
- rot: -1.5707963267948966 rad
pos: -24.5,42.5
@@ -149858,7 +149956,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22716
+ - uid: 22736
components:
- rot: 3.141592653589793 rad
pos: -25.5,33.5
@@ -149866,21 +149964,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22717
+ - uid: 22737
components:
- pos: -30.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22718
+ - uid: 22738
components:
- pos: -42.5,39.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22719
+ - uid: 22739
components:
- rot: 3.141592653589793 rad
pos: -28.5,27.5
@@ -149888,7 +149986,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22720
+ - uid: 22740
components:
- rot: 3.141592653589793 rad
pos: 54.5,52.5
@@ -149896,7 +149994,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22721
+ - uid: 22741
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-87.5
@@ -149904,7 +150002,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22722
+ - uid: 22742
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-37.5
@@ -149912,7 +150010,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22723
+ - uid: 22743
components:
- rot: 1.5707963267948966 rad
pos: 74.5,-40.5
@@ -149920,28 +150018,28 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22724
+ - uid: 22744
components:
- pos: 67.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22725
+ - uid: 22745
components:
- pos: 67.5,-11.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22726
+ - uid: 22746
components:
- pos: 67.5,-3.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22727
+ - uid: 22747
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-56.5
@@ -149949,21 +150047,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22728
+ - uid: 22748
components:
- pos: 67.5,-5.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22729
+ - uid: 22749
components:
- pos: 67.5,-13.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22730
+ - uid: 22750
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-56.5
@@ -149971,7 +150069,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22731
+ - uid: 22751
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-56.5
@@ -149979,7 +150077,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22732
+ - uid: 22752
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-56.5
@@ -149987,7 +150085,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22733
+ - uid: 22753
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-56.5
@@ -149995,21 +150093,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22734
+ - uid: 22754
components:
- pos: 78.5,-33.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22735
+ - uid: 22755
components:
- pos: 78.5,-36.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22736
+ - uid: 22756
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-55.5
@@ -150017,7 +150115,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22737
+ - uid: 22757
components:
- rot: 3.141592653589793 rad
pos: 41.5,-33.5
@@ -150025,7 +150123,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22738
+ - uid: 22758
components:
- rot: 1.5707963267948966 rad
pos: 77.5,-57.5
@@ -150033,7 +150131,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22739
+ - uid: 22759
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-63.5
@@ -150041,7 +150139,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22740
+ - uid: 22760
components:
- rot: -1.5707963267948966 rad
pos: 56.5,-66.5
@@ -150049,7 +150147,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22741
+ - uid: 22761
components:
- rot: 3.141592653589793 rad
pos: 54.5,-37.5
@@ -150057,7 +150155,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22742
+ - uid: 22762
components:
- rot: 1.5707963267948966 rad
pos: 53.5,-26.5
@@ -150065,14 +150163,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22743
+ - uid: 22763
components:
- pos: 59.5,-26.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22744
+ - uid: 22764
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-68.5
@@ -150080,7 +150178,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22745
+ - uid: 22765
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-66.5
@@ -150088,7 +150186,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22746
+ - uid: 22766
components:
- rot: 3.141592653589793 rad
pos: 67.5,-66.5
@@ -150096,7 +150194,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22747
+ - uid: 22767
components:
- rot: 1.5707963267948966 rad
pos: 72.5,-67.5
@@ -150104,7 +150202,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22748
+ - uid: 22768
components:
- rot: 1.5707963267948966 rad
pos: 75.5,-53.5
@@ -150112,7 +150210,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22749
+ - uid: 22769
components:
- rot: 1.5707963267948966 rad
pos: 73.5,-63.5
@@ -150120,7 +150218,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22750
+ - uid: 22770
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-55.5
@@ -150128,7 +150226,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22751
+ - uid: 22771
components:
- rot: 3.141592653589793 rad
pos: -11.5,41.5
@@ -150136,7 +150234,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22752
+ - uid: 22772
components:
- rot: 1.5707963267948966 rad
pos: -42.5,13.5
@@ -150144,7 +150242,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22753
+ - uid: 22773
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-94.5
@@ -150152,15 +150250,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22754
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,-18.5
- parent: 2
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 22755
+ - uid: 22774
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-13.5
@@ -150168,21 +150258,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22756
+ - uid: 22775
components:
- pos: -8.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22757
+ - uid: 22776
components:
- pos: -12.5,-8.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22758
+ - uid: 22777
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-9.5
@@ -150190,14 +150280,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22759
+ - uid: 22778
components:
- pos: -15.5,-12.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22760
+ - uid: 22779
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-5.5
@@ -150205,7 +150295,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22761
+ - uid: 22780
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-7.5
@@ -150213,7 +150303,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22762
+ - uid: 22781
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-68.5
@@ -150221,21 +150311,21 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22763
+ - uid: 22782
components:
- pos: 13.5,-31.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22764
+ - uid: 22783
components:
- pos: -19.5,-51.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22765
+ - uid: 22784
components:
- rot: 3.141592653589793 rad
pos: -19.5,-49.5
@@ -150243,7 +150333,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22766
+ - uid: 22785
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-14.5
@@ -150251,7 +150341,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22767
+ - uid: 22786
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-12.5
@@ -150259,14 +150349,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22768
+ - uid: 22787
components:
- pos: 22.5,-83.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22769
+ - uid: 22788
components:
- rot: 3.141592653589793 rad
pos: 5.5,-23.5
@@ -150274,14 +150364,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22770
+ - uid: 22789
components:
- pos: -57.5,-18.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22771
+ - uid: 22790
components:
- rot: 1.5707963267948966 rad
pos: 6.5,-78.5
@@ -150289,14 +150379,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22772
+ - uid: 22791
components:
- pos: 3.5,-73.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22773
+ - uid: 22792
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-85.5
@@ -150304,157 +150394,163 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22774
+ - uid: 22793
components:
- rot: 3.141592653589793 rad
pos: 32.5,-25.5
parent: 2
type: Transform
- - uid: 22775
+ - uid: 22794
components:
- rot: 3.141592653589793 rad
pos: 18.5,-25.5
parent: 2
type: Transform
- - uid: 22776
+ - uid: 22795
components:
- pos: -52.5,43.5
parent: 2
type: Transform
- - uid: 22777
+ - uid: 22796
components:
- rot: -1.5707963267948966 rad
pos: -37.5,42.5
parent: 2
type: Transform
- - uid: 22778
+ - uid: 22797
components:
- rot: 3.141592653589793 rad
pos: -10.5,-33.5
parent: 2
type: Transform
- - uid: 22779
+ - uid: 22798
components:
- pos: -15.5,-33.5
parent: 2
type: Transform
- - uid: 22780
+ - uid: 22799
components:
- pos: 51.5,-89.5
parent: 2
type: Transform
- - uid: 22781
+ - uid: 22800
components:
- rot: 3.141592653589793 rad
pos: 33.5,-82.5
parent: 2
type: Transform
- - uid: 22782
+ - uid: 22801
components:
- rot: 3.141592653589793 rad
pos: 45.5,-82.5
parent: 2
type: Transform
- - uid: 22783
+ - uid: 22802
components:
- pos: -59.5,-54.5
parent: 2
type: Transform
- - uid: 22784
+ - uid: 22803
components:
- pos: -76.5,-40.5
parent: 2
type: Transform
- - uid: 22785
+ - uid: 22804
components:
- rot: 3.141592653589793 rad
pos: -76.5,-46.5
parent: 2
type: Transform
- - uid: 22786
+ - uid: 22805
components:
- rot: 3.141592653589793 rad
pos: -63.5,-45.5
parent: 2
type: Transform
- - uid: 22787
+ - uid: 22806
components:
- pos: -53.5,-27.5
parent: 2
type: Transform
- - uid: 22788
+ - uid: 22807
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-28.5
parent: 2
type: Transform
- - uid: 22789
+ - uid: 22808
components:
- pos: 31.5,-32.5
parent: 2
type: Transform
- - uid: 22790
+ - uid: 22809
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-14.5
parent: 2
type: Transform
- - uid: 22791
+ - uid: 22810
components:
- rot: 3.141592653589793 rad
pos: -8.5,-6.5
parent: 2
type: Transform
- - uid: 22792
+ - uid: 22811
components:
- rot: 3.141592653589793 rad
pos: -25.5,-90.5
parent: 2
type: Transform
- - uid: 22793
+ - uid: 22812
components:
- rot: 3.141592653589793 rad
pos: -20.5,-90.5
parent: 2
type: Transform
- - uid: 22794
+ - uid: 22813
components:
- rot: -1.5707963267948966 rad
pos: -33.5,15.5
parent: 2
type: Transform
- - uid: 22795
- components:
- - rot: 1.5707963267948966 rad
- pos: -40.5,15.5
- parent: 2
- type: Transform
- - uid: 22796
+ - uid: 22814
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-68.5
parent: 2
type: Transform
- - uid: 22797
+ - uid: 22815
components:
- rot: 3.141592653589793 rad
pos: -56.5,-1.5
parent: 2
type: Transform
- - uid: 25598
+ - uid: 22816
components:
- rot: 1.5707963267948966 rad
pos: -28.5,44.5
parent: 2
type: Transform
- - uid: 31539
+ - uid: 22817
components:
- pos: -19.5,38.5
parent: 2
type: Transform
+ - uid: 22818
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -40.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 22819
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -35.5,12.5
+ parent: 2
+ type: Transform
- proto: PoweredSmallLightEmpty
entities:
- - uid: 22798
+ - uid: 22820
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-79.5
@@ -150462,7 +150558,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22799
+ - uid: 22821
components:
- rot: 3.141592653589793 rad
pos: -37.5,-84.5
@@ -150470,7 +150566,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22800
+ - uid: 22822
components:
- rot: 3.141592653589793 rad
pos: -46.5,-84.5
@@ -150478,7 +150574,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22801
+ - uid: 22823
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-79.5
@@ -150486,14 +150582,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22802
+ - uid: 22824
components:
- pos: -42.5,-74.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22803
+ - uid: 22825
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-72.5
@@ -150501,7 +150597,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22804
+ - uid: 22826
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-72.5
@@ -150509,7 +150605,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22805
+ - uid: 22827
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-80.5
@@ -150517,7 +150613,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22806
+ - uid: 22828
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-74.5
@@ -150525,7 +150621,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22807
+ - uid: 22829
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-72.5
@@ -150533,7 +150629,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22808
+ - uid: 22830
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-36.5
@@ -150541,14 +150637,14 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22809
+ - uid: 22831
components:
- pos: 57.5,34.5
parent: 2
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22810
+ - uid: 22832
components:
- rot: -1.5707963267948966 rad
pos: 43.5,47.5
@@ -150556,7 +150652,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22811
+ - uid: 22833
components:
- rot: 1.5707963267948966 rad
pos: 36.5,50.5
@@ -150564,7 +150660,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22812
+ - uid: 22834
components:
- rot: 3.141592653589793 rad
pos: 37.5,43.5
@@ -150572,7 +150668,7 @@ entities:
type: Transform
- powerLoad: 0
type: ApcPowerReceiver
- - uid: 22813
+ - uid: 22835
components:
- pos: 34.5,47.5
parent: 2
@@ -150581,49 +150677,49 @@ entities:
type: ApcPowerReceiver
- proto: PresentRandom
entities:
- - uid: 22814
+ - uid: 22836
components:
- pos: 12.423648,0.6728656
parent: 2
type: Transform
- - uid: 22815
+ - uid: 22837
components:
- pos: 5.7986484,0.6416156
parent: 2
type: Transform
- - uid: 22816
+ - uid: 22838
components:
- pos: 32.4075,-40.3605
parent: 2
type: Transform
- - uid: 22817
+ - uid: 22839
components:
- pos: 13.28658,14.60049
parent: 2
type: Transform
- - uid: 22818
+ - uid: 22840
components:
- pos: 11.72408,14.616115
parent: 2
type: Transform
- - uid: 22819
+ - uid: 22841
components:
- pos: 16.344246,-84.26074
parent: 2
type: Transform
- - uid: 22820
+ - uid: 22842
components:
- pos: 14.469246,-82.54199
parent: 2
type: Transform
- - uid: 22821
+ - uid: 22843
components:
- pos: 15.141121,-84.60449
parent: 2
type: Transform
- proto: Protolathe
entities:
- - uid: 22822
+ - uid: 22844
components:
- pos: 43.5,-35.5
parent: 2
@@ -150637,1070 +150733,1072 @@ entities:
type: MaterialStorage
- proto: ProtolatheMachineCircuitboard
entities:
- - uid: 22823
+ - uid: 22845
components:
- pos: -37.545918,-18.274307
parent: 2
type: Transform
- proto: ProximitySensor
entities:
- - uid: 22824
+ - uid: 22846
components:
- pos: 59.550594,-52.45363
parent: 2
type: Transform
- proto: PsychBed
entities:
- - uid: 22825
+ - uid: 22847
components:
- pos: -15.5,-39.5
parent: 2
type: Transform
- proto: Rack
entities:
- - uid: 22826
+ - uid: 22848
components:
- pos: 26.5,29.5
parent: 2
type: Transform
- - uid: 22827
+ - uid: 22849
components:
- pos: 29.5,-13.5
parent: 2
type: Transform
- - uid: 22828
+ - uid: 22850
components:
- pos: 13.5,-72.5
parent: 2
type: Transform
- - uid: 22829
+ - uid: 22851
components:
- pos: 10.5,-16.5
parent: 2
type: Transform
- - uid: 22830
+ - uid: 22852
components:
- pos: 31.5,-11.5
parent: 2
type: Transform
- - uid: 22831
+ - uid: 22853
components:
- pos: 22.5,-54.5
parent: 2
type: Transform
- - uid: 22832
+ - uid: 22854
components:
- pos: 33.5,-11.5
parent: 2
type: Transform
- - uid: 22833
+ - uid: 22855
components:
- pos: 33.5,-13.5
parent: 2
type: Transform
- - uid: 22834
+ - uid: 22856
components:
- pos: 31.5,-13.5
parent: 2
type: Transform
- - uid: 22835
+ - uid: 22857
components:
- pos: 29.5,-11.5
parent: 2
type: Transform
- - uid: 22836
+ - uid: 22858
components:
- pos: -6.5,-68.5
parent: 2
type: Transform
- - uid: 22837
+ - uid: 22859
components:
- pos: 4.5,-69.5
parent: 2
type: Transform
- - uid: 22838
+ - uid: 22860
components:
- pos: 6.5,-69.5
parent: 2
type: Transform
- - uid: 22839
+ - uid: 22861
components:
- rot: 3.141592653589793 rad
pos: -28.5,-19.5
parent: 2
type: Transform
- - uid: 22840
+ - uid: 22862
components:
- pos: -16.5,-15.5
parent: 2
type: Transform
- - uid: 22841
+ - uid: 22863
components:
- pos: 36.5,-50.5
parent: 2
type: Transform
- - uid: 22842
+ - uid: 22864
components:
- pos: 37.5,-50.5
parent: 2
type: Transform
- - uid: 22843
+ - uid: 22865
components:
- pos: 42.5,-7.5
parent: 2
type: Transform
- - uid: 22844
+ - uid: 22866
components:
- pos: -8.5,-10.5
parent: 2
type: Transform
- - uid: 22845
+ - uid: 22867
components:
- pos: -16.5,-16.5
parent: 2
type: Transform
- - uid: 22846
+ - uid: 22868
components:
- pos: -9.5,-10.5
parent: 2
type: Transform
- - uid: 22847
+ - uid: 22869
components:
- pos: -11.5,-8.5
parent: 2
type: Transform
- - uid: 22848
+ - uid: 22870
components:
- pos: -50.5,-29.5
parent: 2
type: Transform
- - uid: 22849
+ - uid: 22871
components:
- pos: -50.5,-28.5
parent: 2
type: Transform
- - uid: 22850
+ - uid: 22872
components:
- pos: -50.5,-27.5
parent: 2
type: Transform
- - uid: 22851
+ - uid: 22873
components:
- pos: -45.5,-19.5
parent: 2
type: Transform
- - uid: 22852
+ - uid: 22874
components:
- pos: -47.5,-19.5
parent: 2
type: Transform
- - uid: 22853
+ - uid: 22875
components:
- pos: -55.5,-6.5
parent: 2
type: Transform
- - uid: 22854
+ - uid: 22876
components:
- pos: -31.5,-56.5
parent: 2
type: Transform
- - uid: 22855
+ - uid: 22877
components:
- pos: -56.5,-70.5
parent: 2
type: Transform
- - uid: 22856
+ - uid: 22878
components:
- pos: -38.5,-67.5
parent: 2
type: Transform
- - uid: 22857
+ - uid: 22879
components:
- pos: -32.5,-62.5
parent: 2
type: Transform
- - uid: 22858
+ - uid: 22880
components:
- pos: -31.5,-62.5
parent: 2
type: Transform
- - uid: 22859
+ - uid: 22881
components:
- pos: -46.5,-30.5
parent: 2
type: Transform
- - uid: 22860
+ - uid: 22882
components:
- pos: -44.5,-25.5
parent: 2
type: Transform
- - uid: 22861
+ - uid: 22883
components:
- pos: -42.5,-24.5
parent: 2
type: Transform
- - uid: 22862
+ - uid: 22884
components:
- pos: 35.5,-12.5
parent: 2
type: Transform
- - uid: 22863
+ - uid: 22885
components:
- pos: -31.5,-43.5
parent: 2
type: Transform
- - uid: 22864
+ - uid: 22886
components:
- pos: -29.5,-46.5
parent: 2
type: Transform
- - uid: 22865
+ - uid: 22887
components:
- pos: -28.5,-28.5
parent: 2
type: Transform
- - uid: 22866
+ - uid: 22888
components:
- pos: -23.5,-28.5
parent: 2
type: Transform
- - uid: 22867
+ - uid: 22889
components:
- pos: -34.5,-25.5
parent: 2
type: Transform
- - uid: 22868
+ - uid: 22890
components:
- pos: -42.5,-20.5
parent: 2
type: Transform
- - uid: 22869
+ - uid: 22891
components:
- pos: -42.5,-21.5
parent: 2
type: Transform
- - uid: 22870
+ - uid: 22892
components:
- pos: 4.5,-17.5
parent: 2
type: Transform
- - uid: 22871
+ - uid: 22893
components:
- pos: 3.5,-17.5
parent: 2
type: Transform
- - uid: 22872
+ - uid: 22894
components:
- pos: -44.5,16.5
parent: 2
type: Transform
- - uid: 22873
+ - uid: 22895
components:
- pos: -3.5,21.5
parent: 2
type: Transform
- - uid: 22874
+ - uid: 22896
components:
- pos: 0.5,23.5
parent: 2
type: Transform
- - uid: 22875
+ - uid: 22897
components:
- pos: -3.5,34.5
parent: 2
type: Transform
- - uid: 22876
+ - uid: 22898
components:
- pos: 15.5,34.5
parent: 2
type: Transform
- - uid: 22877
+ - uid: 22899
components:
- pos: -12.5,17.5
parent: 2
type: Transform
- - uid: 22878
+ - uid: 22900
components:
- pos: -49.5,15.5
parent: 2
type: Transform
- - uid: 22879
+ - uid: 22901
components:
- pos: -49.5,14.5
parent: 2
type: Transform
- - uid: 22880
+ - uid: 22902
components:
- pos: -44.5,15.5
parent: 2
type: Transform
- - uid: 22881
+ - uid: 22903
components:
- pos: -47.5,-3.5
parent: 2
type: Transform
- - uid: 22882
+ - uid: 22904
components:
- pos: -52.5,2.5
parent: 2
type: Transform
- - uid: 22883
+ - uid: 22905
components:
- pos: -56.5,-4.5
parent: 2
type: Transform
- - uid: 22884
+ - uid: 22906
components:
- pos: 18.5,39.5
parent: 2
type: Transform
- - uid: 22885
+ - uid: 22907
components:
- pos: -24.5,-67.5
parent: 2
type: Transform
- - uid: 22886
+ - uid: 22908
components:
- pos: -23.5,-67.5
parent: 2
type: Transform
- - uid: 22887
+ - uid: 22909
components:
- pos: 9.5,-16.5
parent: 2
type: Transform
- - uid: 22888
+ - uid: 22910
components:
- pos: 39.5,-30.5
parent: 2
type: Transform
- - uid: 22889
+ - uid: 22911
components:
- pos: 59.5,2.5
parent: 2
type: Transform
- - uid: 22890
+ - uid: 22912
components:
- pos: -34.5,-72.5
parent: 2
type: Transform
- - uid: 22891
+ - uid: 22913
components:
- pos: -33.5,-72.5
parent: 2
type: Transform
- - uid: 22892
+ - uid: 22914
components:
- pos: -41.5,37.5
parent: 2
type: Transform
- - uid: 22893
+ - uid: 22915
components:
- pos: -36.5,35.5
parent: 2
type: Transform
- - uid: 22894
+ - uid: 22916
components:
- pos: -26.5,39.5
parent: 2
type: Transform
- - uid: 22895
+ - uid: 22917
components:
- pos: -26.5,30.5
parent: 2
type: Transform
- - uid: 22896
+ - uid: 22918
components:
- pos: -8.5,-82.5
parent: 2
type: Transform
- - uid: 22897
+ - uid: 22919
components:
- pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 22898
+ - uid: 22920
components:
- pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 22899
+ - uid: 22921
components:
- pos: -6.5,-88.5
parent: 2
type: Transform
- - uid: 22900
+ - uid: 22922
components:
- pos: -19.5,53.5
parent: 2
type: Transform
- - uid: 22901
+ - uid: 22923
components:
- pos: 42.5,-32.5
parent: 2
type: Transform
- - uid: 22902
+ - uid: 22924
components:
- pos: 54.5,-63.5
parent: 2
type: Transform
- - uid: 22903
+ - uid: 22925
components:
- pos: 54.5,-64.5
parent: 2
type: Transform
- - uid: 22904
+ - uid: 22926
components:
- pos: 54.5,-30.5
parent: 2
type: Transform
- - uid: 22905
+ - uid: 22927
components:
- pos: 37.5,-10.5
parent: 2
type: Transform
- - uid: 22906
- components:
- - pos: -8.5,-17.5
- parent: 2
- type: Transform
- - uid: 22907
+ - uid: 22928
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-20.5
parent: 2
type: Transform
- - uid: 22908
+ - uid: 22929
components:
- pos: -48.5,16.5
parent: 2
type: Transform
- - uid: 22909
+ - uid: 22930
components:
- pos: -13.5,-13.5
parent: 2
type: Transform
- - uid: 22910
+ - uid: 22931
components:
- pos: -13.5,-12.5
parent: 2
type: Transform
- - uid: 22911
+ - uid: 22932
components:
- pos: -20.5,-51.5
parent: 2
type: Transform
- - uid: 22912
+ - uid: 22933
components:
- pos: 44.5,-8.5
parent: 2
type: Transform
- - uid: 22913
+ - uid: 22934
components:
- pos: 7.5,-80.5
parent: 2
type: Transform
- - uid: 22914
+ - uid: 22935
components:
- pos: 31.5,27.5
parent: 2
type: Transform
- - uid: 22915
+ - uid: 22936
components:
- pos: 27.5,27.5
parent: 2
type: Transform
- - uid: 22916
+ - uid: 22937
components:
- pos: 6.5,-13.5
parent: 2
type: Transform
- proto: RadiationCollector
entities:
- - uid: 22917
+ - uid: 22938
components:
- pos: -63.5,-20.5
parent: 2
type: Transform
- - uid: 22918
+ - uid: 22939
components:
- pos: -64.5,-20.5
parent: 2
type: Transform
- - uid: 22919
+ - uid: 22940
components:
- pos: -65.5,-20.5
parent: 2
type: Transform
- - uid: 22920
+ - uid: 22941
components:
- pos: -67.5,-20.5
parent: 2
type: Transform
- - uid: 22921
+ - uid: 22942
components:
- pos: -68.5,-20.5
parent: 2
type: Transform
- - uid: 22922
+ - uid: 22943
components:
- pos: -69.5,-20.5
parent: 2
type: Transform
- - uid: 22923
+ - uid: 22944
components:
- pos: -63.5,-6.5
parent: 2
type: Transform
- - uid: 22924
+ - uid: 22945
components:
- pos: -64.5,-6.5
parent: 2
type: Transform
- - uid: 22925
+ - uid: 22946
components:
- pos: -65.5,-6.5
parent: 2
type: Transform
- - uid: 22926
+ - uid: 22947
components:
- pos: -69.5,-6.5
parent: 2
type: Transform
- - uid: 22927
+ - uid: 22948
components:
- pos: -68.5,-6.5
parent: 2
type: Transform
- - uid: 22928
+ - uid: 22949
components:
- pos: -67.5,-6.5
parent: 2
type: Transform
- proto: RadioHandheld
entities:
- - uid: 22929
+ - uid: 22950
components:
- pos: -21.414516,35.539524
parent: 2
type: Transform
+- proto: RagItem
+ entities:
+ - uid: 22951
+ components:
+ - pos: -7.5762715,-17.335348
+ parent: 2
+ type: Transform
- proto: Railing
entities:
- - uid: 22930
+ - uid: 22952
components:
- rot: -1.5707963267948966 rad
pos: -8.5,18.5
parent: 2
type: Transform
- - uid: 22931
+ - uid: 22953
components:
- pos: 24.5,-1.5
parent: 2
type: Transform
- - uid: 22932
+ - uid: 22954
components:
- pos: 25.5,-1.5
parent: 2
type: Transform
- - uid: 22933
+ - uid: 22955
components:
- rot: -1.5707963267948966 rad
pos: 21.5,1.5
parent: 2
type: Transform
- - uid: 22934
+ - uid: 22956
components:
- rot: 3.141592653589793 rad
pos: 24.5,-19.5
parent: 2
type: Transform
- - uid: 22935
+ - uid: 22957
components:
- rot: -1.5707963267948966 rad
pos: 21.5,0.5
parent: 2
type: Transform
- - uid: 22936
+ - uid: 22958
components:
- rot: 3.141592653589793 rad
pos: 25.5,3.5
parent: 2
type: Transform
- - uid: 22937
+ - uid: 22959
components:
- rot: 3.141592653589793 rad
pos: 11.5,1.5
parent: 2
type: Transform
- - uid: 22938
+ - uid: 22960
components:
- pos: 22.5,-1.5
parent: 2
type: Transform
- - uid: 22939
+ - uid: 22961
components:
- pos: 10.5,0.5
parent: 2
type: Transform
- - uid: 22940
+ - uid: 22962
components:
- rot: 1.5707963267948966 rad
pos: 26.5,2.5
parent: 2
type: Transform
- - uid: 22941
+ - uid: 22963
components:
- rot: 3.141592653589793 rad
pos: 24.5,3.5
parent: 2
type: Transform
- - uid: 22942
+ - uid: 22964
components:
- pos: 6.5,0.5
parent: 2
type: Transform
- - uid: 22943
+ - uid: 22965
components:
- rot: 3.141592653589793 rad
pos: 22.5,3.5
parent: 2
type: Transform
- - uid: 22944
+ - uid: 22966
components:
- rot: 3.141592653589793 rad
pos: 10.5,1.5
parent: 2
type: Transform
- - uid: 22945
+ - uid: 22967
components:
- rot: 3.141592653589793 rad
pos: 26.5,-19.5
parent: 2
type: Transform
- - uid: 22946
+ - uid: 22968
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-0.5
parent: 2
type: Transform
- - uid: 22947
+ - uid: 22969
components:
- rot: 3.141592653589793 rad
pos: 25.5,-19.5
parent: 2
type: Transform
- - uid: 22948
+ - uid: 22970
components:
- rot: 3.141592653589793 rad
pos: 23.5,-19.5
parent: 2
type: Transform
- - uid: 22949
+ - uid: 22971
components:
- pos: 23.5,-1.5
parent: 2
type: Transform
- - uid: 22950
+ - uid: 22972
components:
- rot: 3.141592653589793 rad
pos: 28.5,-19.5
parent: 2
type: Transform
- - uid: 22951
+ - uid: 22973
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-0.5
parent: 2
type: Transform
- - uid: 22952
+ - uid: 22974
components:
- rot: -1.5707963267948966 rad
pos: 21.5,2.5
parent: 2
type: Transform
- - uid: 22953
+ - uid: 22975
components:
- pos: 11.5,0.5
parent: 2
type: Transform
- - uid: 22954
+ - uid: 22976
components:
- rot: 3.141592653589793 rad
pos: 6.5,1.5
parent: 2
type: Transform
- - uid: 22955
+ - uid: 22977
components:
- rot: 3.141592653589793 rad
pos: 7.5,1.5
parent: 2
type: Transform
- - uid: 22956
+ - uid: 22978
components:
- pos: 7.5,0.5
parent: 2
type: Transform
- - uid: 22957
+ - uid: 22979
components:
- rot: 3.141592653589793 rad
pos: 23.5,3.5
parent: 2
type: Transform
- - uid: 22958
+ - uid: 22980
components:
- rot: 3.141592653589793 rad
pos: 27.5,-19.5
parent: 2
type: Transform
- - uid: 22959
+ - uid: 22981
components:
- rot: 1.5707963267948966 rad
pos: 26.5,1.5
parent: 2
type: Transform
- - uid: 22960
+ - uid: 22982
components:
- rot: 3.141592653589793 rad
pos: 22.5,-19.5
parent: 2
type: Transform
- - uid: 22961
+ - uid: 22983
components:
- rot: 3.141592653589793 rad
pos: 54.5,19.5
parent: 2
type: Transform
- - uid: 22962
+ - uid: 22984
components:
- rot: 3.141592653589793 rad
pos: 53.5,19.5
parent: 2
type: Transform
- - uid: 22963
+ - uid: 22985
components:
- rot: 3.141592653589793 rad
pos: 52.5,19.5
parent: 2
type: Transform
- - uid: 22964
+ - uid: 22986
components:
- rot: -1.5707963267948966 rad
pos: 51.5,18.5
parent: 2
type: Transform
- - uid: 22965
+ - uid: 22987
components:
- rot: -1.5707963267948966 rad
pos: 51.5,17.5
parent: 2
type: Transform
- - uid: 22966
+ - uid: 22988
components:
- rot: -1.5707963267948966 rad
pos: 51.5,15.5
parent: 2
type: Transform
- - uid: 22967
+ - uid: 22989
components:
- rot: 1.5707963267948966 rad
pos: 55.5,18.5
parent: 2
type: Transform
- - uid: 22968
+ - uid: 22990
components:
- rot: 1.5707963267948966 rad
pos: 55.5,17.5
parent: 2
type: Transform
- - uid: 22969
+ - uid: 22991
components:
- rot: 1.5707963267948966 rad
pos: 55.5,15.5
parent: 2
type: Transform
- - uid: 22970
+ - uid: 22992
components:
- rot: 3.141592653589793 rad
pos: 58.5,8.5
parent: 2
type: Transform
- - uid: 22971
+ - uid: 22993
components:
- rot: 3.141592653589793 rad
pos: 56.5,8.5
parent: 2
type: Transform
- - uid: 22972
+ - uid: 22994
components:
- rot: -1.5707963267948966 rad
pos: 55.5,6.5
parent: 2
type: Transform
- - uid: 22973
+ - uid: 22995
components:
- rot: 1.5707963267948966 rad
pos: 59.5,7.5
parent: 2
type: Transform
- - uid: 22974
+ - uid: 22996
components:
- rot: 1.5707963267948966 rad
pos: 59.5,6.5
parent: 2
type: Transform
- - uid: 22975
+ - uid: 22997
components:
- pos: 58.5,5.5
parent: 2
type: Transform
- - uid: 22976
+ - uid: 22998
components:
- pos: 56.5,5.5
parent: 2
type: Transform
- - uid: 22977
+ - uid: 22999
components:
- rot: 3.141592653589793 rad
pos: 57.5,8.5
parent: 2
type: Transform
- - uid: 22978
+ - uid: 23000
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-8.5
parent: 2
type: Transform
- - uid: 22979
+ - uid: 23001
components:
- pos: 54.5,-9.5
parent: 2
type: Transform
- - uid: 22980
+ - uid: 23002
components:
- rot: 3.141592653589793 rad
pos: 54.5,-7.5
parent: 2
type: Transform
- - uid: 22981
+ - uid: 23003
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-5.5
parent: 2
type: Transform
- - uid: 22982
+ - uid: 23004
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-11.5
parent: 2
type: Transform
- - uid: 22983
+ - uid: 23005
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-8.5
parent: 2
type: Transform
- - uid: 22984
+ - uid: 23006
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-86.5
parent: 2
type: Transform
- - uid: 22985
+ - uid: 23007
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-84.5
parent: 2
type: Transform
- - uid: 22986
+ - uid: 23008
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-85.5
parent: 2
type: Transform
- - uid: 22987
+ - uid: 23009
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-87.5
parent: 2
type: Transform
- - uid: 22988
+ - uid: 23010
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-86.5
parent: 2
type: Transform
- - uid: 22989
+ - uid: 23011
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-84.5
parent: 2
type: Transform
- - uid: 22990
+ - uid: 23012
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-87.5
parent: 2
type: Transform
- - uid: 22991
+ - uid: 23013
components:
- rot: 3.141592653589793 rad
pos: -39.5,-29.5
parent: 2
type: Transform
- - uid: 22992
+ - uid: 23014
components:
- rot: 3.141592653589793 rad
pos: -38.5,-29.5
parent: 2
type: Transform
- - uid: 22993
+ - uid: 23015
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-8.5
parent: 2
type: Transform
- - uid: 22994
+ - uid: 23016
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-7.5
parent: 2
type: Transform
- - uid: 22995
+ - uid: 23017
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-9.5
parent: 2
type: Transform
- - uid: 22996
+ - uid: 23018
components:
- rot: 3.141592653589793 rad
pos: -40.5,38.5
parent: 2
type: Transform
- - uid: 22997
+ - uid: 23019
components:
- rot: 3.141592653589793 rad
pos: -43.5,38.5
parent: 2
type: Transform
- - uid: 22998
+ - uid: 23020
components:
- pos: 60.5,-9.5
parent: 2
type: Transform
- - uid: 22999
+ - uid: 23021
components:
- rot: 3.141592653589793 rad
pos: 60.5,-7.5
parent: 2
type: Transform
- - uid: 23000
+ - uid: 23022
components:
- rot: 1.5707963267948966 rad
pos: -39.5,3.5
parent: 2
type: Transform
- - uid: 23001
+ - uid: 23023
components:
- rot: 1.5707963267948966 rad
pos: -39.5,4.5
parent: 2
type: Transform
- - uid: 23002
+ - uid: 23024
components:
- pos: 31.5,-40.5
parent: 2
type: Transform
- - uid: 23003
+ - uid: 23025
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-39.5
parent: 2
type: Transform
- - uid: 23004
+ - uid: 23026
components:
- rot: 1.5707963267948966 rad
pos: -39.5,5.5
parent: 2
type: Transform
- - uid: 23005
+ - uid: 23027
components:
- rot: 1.5707963267948966 rad
pos: -39.5,6.5
parent: 2
type: Transform
- - uid: 23006
+ - uid: 23028
components:
- rot: -1.5707963267948966 rad
pos: -36.5,6.5
parent: 2
type: Transform
- - uid: 23007
+ - uid: 23029
components:
- rot: -1.5707963267948966 rad
pos: -36.5,5.5
parent: 2
type: Transform
- - uid: 23008
+ - uid: 23030
components:
- rot: -1.5707963267948966 rad
pos: -36.5,4.5
parent: 2
type: Transform
- - uid: 23009
+ - uid: 23031
components:
- rot: -1.5707963267948966 rad
pos: -36.5,3.5
parent: 2
type: Transform
- - uid: 23010
+ - uid: 23032
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-85.5
parent: 2
type: Transform
- - uid: 23011
+ - uid: 23033
components:
- pos: 69.5,-29.5
parent: 2
type: Transform
- - uid: 23012
+ - uid: 23034
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-28.5
parent: 2
type: Transform
- - uid: 23013
+ - uid: 23035
components:
- rot: 1.5707963267948966 rad
pos: -6.5,18.5
parent: 2
type: Transform
- - uid: 23014
+ - uid: 23036
components:
- rot: 1.5707963267948966 rad
pos: -3.5,18.5
parent: 2
type: Transform
- - uid: 23015
+ - uid: 23037
components:
- rot: -1.5707963267948966 rad
pos: -5.5,18.5
parent: 2
type: Transform
- - uid: 23016
+ - uid: 23038
components:
- rot: 3.141592653589793 rad
pos: -7.5,19.5
parent: 2
type: Transform
- - uid: 23017
+ - uid: 23039
components:
- rot: 3.141592653589793 rad
pos: -4.5,19.5
parent: 2
type: Transform
- - uid: 23018
+ - uid: 23040
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-27.5
@@ -151708,185 +151806,185 @@ entities:
type: Transform
- proto: RailingCorner
entities:
- - uid: 23019
+ - uid: 23041
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-29.5
parent: 2
type: Transform
- - uid: 23020
+ - uid: 23042
components:
- rot: -1.5707963267948966 rad
pos: -5.5,17.5
parent: 2
type: Transform
- - uid: 23021
+ - uid: 23043
components:
- rot: -1.5707963267948966 rad
pos: -8.5,17.5
parent: 2
type: Transform
- - uid: 23022
+ - uid: 23044
components:
- rot: 3.141592653589793 rad
pos: -8.5,19.5
parent: 2
type: Transform
- - uid: 23023
+ - uid: 23045
components:
- pos: -6.5,17.5
parent: 2
type: Transform
- - uid: 23024
+ - uid: 23046
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-7.5
parent: 2
type: Transform
- - uid: 23025
+ - uid: 23047
components:
- rot: -1.5707963267948966 rad
pos: 5.5,0.5
parent: 2
type: Transform
- - uid: 23026
+ - uid: 23048
components:
- pos: 26.5,-1.5
parent: 2
type: Transform
- - uid: 23027
+ - uid: 23049
components:
- rot: 1.5707963267948966 rad
pos: 26.5,3.5
parent: 2
type: Transform
- - uid: 23028
+ - uid: 23050
components:
- rot: 3.141592653589793 rad
pos: 5.5,1.5
parent: 2
type: Transform
- - uid: 23029
+ - uid: 23051
components:
- pos: 12.5,0.5
parent: 2
type: Transform
- - uid: 23030
+ - uid: 23052
components:
- rot: 3.141592653589793 rad
pos: 21.5,3.5
parent: 2
type: Transform
- - uid: 23031
+ - uid: 23053
components:
- rot: 1.5707963267948966 rad
pos: 12.5,1.5
parent: 2
type: Transform
- - uid: 23032
+ - uid: 23054
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-1.5
parent: 2
type: Transform
- - uid: 23033
+ - uid: 23055
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-19.5
parent: 2
type: Transform
- - uid: 23034
+ - uid: 23056
components:
- rot: 3.141592653589793 rad
pos: 21.5,-19.5
parent: 2
type: Transform
- - uid: 23035
+ - uid: 23057
components:
- pos: 32.5,-40.5
parent: 2
type: Transform
- - uid: 23036
+ - uid: 23058
components:
- rot: 3.141592653589793 rad
pos: 51.5,19.5
parent: 2
type: Transform
- - uid: 23037
+ - uid: 23059
components:
- rot: 1.5707963267948966 rad
pos: 55.5,19.5
parent: 2
type: Transform
- - uid: 23038
+ - uid: 23060
components:
- pos: 59.5,5.5
parent: 2
type: Transform
- - uid: 23039
+ - uid: 23061
components:
- rot: -1.5707963267948966 rad
pos: 55.5,5.5
parent: 2
type: Transform
- - uid: 23040
+ - uid: 23062
components:
- rot: 3.141592653589793 rad
pos: 55.5,8.5
parent: 2
type: Transform
- - uid: 23041
+ - uid: 23063
components:
- rot: 1.5707963267948966 rad
pos: 59.5,8.5
parent: 2
type: Transform
- - uid: 23042
+ - uid: 23064
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-10.5
parent: 2
type: Transform
- - uid: 23043
+ - uid: 23065
components:
- pos: 50.5,-6.5
parent: 2
type: Transform
- - uid: 23044
+ - uid: 23066
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-9.5
parent: 2
type: Transform
- - uid: 23045
+ - uid: 23067
components:
- rot: 3.141592653589793 rad
pos: 53.5,-7.5
parent: 2
type: Transform
- - uid: 23046
+ - uid: 23068
components:
- pos: 61.5,-9.5
parent: 2
type: Transform
- - uid: 23047
+ - uid: 23069
components:
- pos: -3.5,17.5
parent: 2
type: Transform
- - uid: 23048
+ - uid: 23070
components:
- rot: 1.5707963267948966 rad
pos: -6.5,19.5
parent: 2
type: Transform
- - uid: 23049
+ - uid: 23071
components:
- rot: 3.141592653589793 rad
pos: -5.5,19.5
parent: 2
type: Transform
- - uid: 23050
+ - uid: 23072
components:
- rot: 1.5707963267948966 rad
pos: -3.5,19.5
@@ -151894,692 +151992,692 @@ entities:
type: Transform
- proto: RandomArcade
entities:
- - uid: 23051
+ - uid: 23073
components:
- pos: 44.5,12.5
parent: 2
type: Transform
- - uid: 23052
+ - uid: 23074
components:
- pos: 45.5,12.5
parent: 2
type: Transform
- - uid: 23053
+ - uid: 23075
components:
- pos: 9.5,34.5
parent: 2
type: Transform
- - uid: 23054
+ - uid: 23076
components:
- pos: 7.5,34.5
parent: 2
type: Transform
- - uid: 23055
+ - uid: 23077
components:
- rot: 3.141592653589793 rad
pos: 9.5,30.5
parent: 2
type: Transform
- - uid: 23056
+ - uid: 23078
components:
- rot: 3.141592653589793 rad
pos: 7.5,30.5
parent: 2
type: Transform
- - uid: 23057
+ - uid: 23079
components:
- pos: 4.5,-32.5
parent: 2
type: Transform
- - uid: 23058
+ - uid: 23080
components:
- pos: 4.5,-30.5
parent: 2
type: Transform
- - uid: 23059
+ - uid: 23081
components:
- pos: 2.5,-30.5
parent: 2
type: Transform
- - uid: 23060
+ - uid: 23082
components:
- pos: 2.5,-32.5
parent: 2
type: Transform
- - uid: 23061
+ - uid: 23083
components:
- pos: 6.5,-30.5
parent: 2
type: Transform
- - uid: 23062
+ - uid: 23084
components:
- pos: 6.5,-32.5
parent: 2
type: Transform
- proto: RandomArtifactSpawner
entities:
- - uid: 23063
+ - uid: 23085
components:
- pos: 67.5,-37.5
parent: 2
type: Transform
- - uid: 23064
+ - uid: 23086
components:
- pos: -46.5,65.5
parent: 2
type: Transform
- - uid: 23065
+ - uid: 23087
components:
- pos: 71.5,-28.5
parent: 2
type: Transform
- proto: RandomArtifactSpawner20
entities:
- - uid: 23066
+ - uid: 23088
components:
- pos: 50.5,51.5
parent: 2
type: Transform
- - uid: 23067
+ - uid: 23089
components:
- pos: -20.5,-99.5
parent: 2
type: Transform
- - uid: 23068
+ - uid: 23090
components:
- pos: 11.5,53.5
parent: 2
type: Transform
- - uid: 23069
+ - uid: 23091
components:
- pos: -51.5,22.5
parent: 2
type: Transform
- - uid: 23070
+ - uid: 23092
components:
- pos: 78.5,-34.5
parent: 2
type: Transform
- proto: RandomBoard
entities:
- - uid: 23071
+ - uid: 23093
components:
- rot: 3.141592653589793 rad
pos: 57.5,-30.5
parent: 2
type: Transform
- - uid: 23072
+ - uid: 23094
components:
- rot: 1.5707963267948966 rad
pos: -8.5,39.5
parent: 2
type: Transform
- - uid: 23073
+ - uid: 23095
components:
- rot: 3.141592653589793 rad
pos: -9.5,39.5
parent: 2
type: Transform
- - uid: 23074
+ - uid: 23096
components:
- rot: -1.5707963267948966 rad
pos: -12.5,37.5
parent: 2
type: Transform
- - uid: 23075
+ - uid: 23097
components:
- rot: -1.5707963267948966 rad
pos: -9.5,37.5
parent: 2
type: Transform
- - uid: 23076
+ - uid: 23098
components:
- pos: -8.5,37.5
parent: 2
type: Transform
- - uid: 23077
+ - uid: 23099
components:
- pos: -8.5,38.5
parent: 2
type: Transform
- proto: RandomDrinkBottle
entities:
- - uid: 23078
+ - uid: 23100
components:
- pos: 15.5,13.5
parent: 2
type: Transform
- proto: RandomDrinkGlass
entities:
- - uid: 23079
+ - uid: 23101
components:
- pos: 15.5,11.5
parent: 2
type: Transform
- - uid: 23080
+ - uid: 23102
components:
- pos: 15.5,11.5
parent: 2
type: Transform
- - uid: 23081
+ - uid: 23103
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 23082
+ - uid: 23104
components:
- pos: -8.5,1.5
parent: 2
type: Transform
- - uid: 23083
+ - uid: 23105
components:
- pos: 27.5,-35.5
parent: 2
type: Transform
- - uid: 23084
+ - uid: 23106
components:
- pos: 27.5,-37.5
parent: 2
type: Transform
- - uid: 23085
+ - uid: 23107
components:
- pos: 22.5,-38.5
parent: 2
type: Transform
- proto: RandomFoodBakedSingle
entities:
- - uid: 23086
+ - uid: 23108
components:
- pos: 2.5,0.5
parent: 2
type: Transform
- - uid: 23087
+ - uid: 23109
components:
- pos: -4.5,1.5
parent: 2
type: Transform
- - uid: 23088
+ - uid: 23110
components:
- pos: -8.5,0.5
parent: 2
type: Transform
- proto: RandomFoodMeal
entities:
- - uid: 23089
+ - uid: 23111
components:
- pos: 25.5,-68.5
parent: 2
type: Transform
- proto: RandomFoodSingle
entities:
- - uid: 23090
+ - uid: 23112
components:
- pos: 11.5,7.5
parent: 2
type: Transform
- - uid: 23091
+ - uid: 23113
components:
- pos: 67.5,10.5
parent: 2
type: Transform
- proto: RandomInstruments
entities:
- - uid: 23092
+ - uid: 23114
components:
- pos: -0.5,-8.5
parent: 2
type: Transform
- - uid: 23093
+ - uid: 23115
components:
- pos: 54.5,-28.5
parent: 2
type: Transform
- proto: RandomPainting
entities:
- - uid: 23094
+ - uid: 23116
components:
- pos: 49.5,48.5
parent: 2
type: Transform
- proto: RandomPosterAny
entities:
- - uid: 23095
+ - uid: 23117
components:
- pos: -17.5,-16.5
parent: 2
type: Transform
- - uid: 23096
+ - uid: 23118
components:
- pos: -52.5,-61.5
parent: 2
type: Transform
- - uid: 23097
+ - uid: 23119
components:
- pos: -55.5,-57.5
parent: 2
type: Transform
- - uid: 23098
+ - uid: 23120
components:
- pos: -57.5,-57.5
parent: 2
type: Transform
- proto: RandomPosterContraband
entities:
- - uid: 23099
+ - uid: 23121
components:
- pos: 7.5,-68.5
parent: 2
type: Transform
- - uid: 23100
+ - uid: 23122
components:
- pos: -30.5,-45.5
parent: 2
type: Transform
- - uid: 23101
+ - uid: 23123
components:
- pos: -24.5,-50.5
parent: 2
type: Transform
- - uid: 23102
+ - uid: 23124
components:
- pos: -26.5,-50.5
parent: 2
type: Transform
- - uid: 23103
+ - uid: 23125
components:
- pos: -5.5,-94.5
parent: 2
type: Transform
- - uid: 23104
+ - uid: 23126
components:
- pos: -36.5,-92.5
parent: 2
type: Transform
- - uid: 23105
+ - uid: 23127
components:
- pos: -48.5,-73.5
parent: 2
type: Transform
- - uid: 23106
+ - uid: 23128
components:
- pos: -41.5,-65.5
parent: 2
type: Transform
- - uid: 23107
+ - uid: 23129
components:
- pos: -39.5,-88.5
parent: 2
type: Transform
- - uid: 23108
+ - uid: 23130
components:
- pos: -20.5,-94.5
parent: 2
type: Transform
- - uid: 23109
+ - uid: 23131
components:
- pos: -29.5,-53.5
parent: 2
type: Transform
- - uid: 23110
+ - uid: 23132
components:
- pos: -11.5,-99.5
parent: 2
type: Transform
- - uid: 23111
+ - uid: 23133
components:
- pos: -27.5,-95.5
parent: 2
type: Transform
- - uid: 23112
+ - uid: 23134
components:
- pos: -15.5,14.5
parent: 2
type: Transform
- - uid: 23113
+ - uid: 23135
components:
- pos: -9.5,14.5
parent: 2
type: Transform
- - uid: 23114
+ - uid: 23136
components:
- pos: 11.5,-54.5
parent: 2
type: Transform
- - uid: 23115
+ - uid: 23137
components:
- pos: 11.5,-48.5
parent: 2
type: Transform
- - uid: 23116
+ - uid: 23138
components:
- pos: -24.5,-43.5
parent: 2
type: Transform
- - uid: 23117
+ - uid: 23139
components:
- pos: -25.5,-37.5
parent: 2
type: Transform
- - uid: 23118
+ - uid: 23140
components:
- pos: -13.5,-32.5
parent: 2
type: Transform
- - uid: 23119
+ - uid: 23141
components:
- pos: -15.5,-30.5
parent: 2
type: Transform
- - uid: 23120
+ - uid: 23142
components:
- pos: 11.5,-48.5
parent: 2
type: Transform
- - uid: 23121
+ - uid: 23143
components:
- pos: 12.5,-54.5
parent: 2
type: Transform
- - uid: 23122
+ - uid: 23144
components:
- pos: 13.5,-63.5
parent: 2
type: Transform
- - uid: 23123
+ - uid: 23145
components:
- pos: 41.5,-50.5
parent: 2
type: Transform
- - uid: 23124
+ - uid: 23146
components:
- pos: 37.5,-47.5
parent: 2
type: Transform
- - uid: 23125
+ - uid: 23147
components:
- pos: 61.5,-16.5
parent: 2
type: Transform
- - uid: 23126
+ - uid: 23148
components:
- pos: 55.5,1.5
parent: 2
type: Transform
- - uid: 23127
+ - uid: 23149
components:
- pos: 54.5,30.5
parent: 2
type: Transform
- - uid: 23128
+ - uid: 23150
components:
- pos: 52.5,30.5
parent: 2
type: Transform
- - uid: 23129
+ - uid: 23151
components:
- pos: 59.5,30.5
parent: 2
type: Transform
- - uid: 23130
+ - uid: 23152
components:
- pos: 60.5,27.5
parent: 2
type: Transform
- - uid: 23131
+ - uid: 23153
components:
- pos: 12.5,-13.5
parent: 2
type: Transform
- - uid: 23132
+ - uid: 23154
components:
- pos: 8.5,-13.5
parent: 2
type: Transform
- - uid: 23133
+ - uid: 23155
components:
- pos: -9.5,-94.5
parent: 2
type: Transform
- - uid: 23134
+ - uid: 23156
components:
- pos: -17.5,-95.5
parent: 2
type: Transform
- - uid: 23135
+ - uid: 23157
components:
- pos: -24.5,-94.5
parent: 2
type: Transform
- - uid: 23136
+ - uid: 23158
components:
- pos: -11.5,63.5
parent: 2
type: Transform
- - uid: 23137
+ - uid: 23159
components:
- pos: 53.5,-66.5
parent: 2
type: Transform
- - uid: 23138
+ - uid: 23160
components:
- pos: 6.5,-28.5
parent: 2
type: Transform
- - uid: 23139
+ - uid: 23161
components:
- pos: 1.5,-29.5
parent: 2
type: Transform
- - uid: 23140
+ - uid: 23162
components:
- pos: 52.5,-34.5
parent: 2
type: Transform
- - uid: 23141
+ - uid: 23163
components:
- pos: 59.5,-27.5
parent: 2
type: Transform
- - uid: 23142
+ - uid: 23164
components:
- pos: 44.5,-32.5
parent: 2
type: Transform
- - uid: 23143
+ - uid: 23165
components:
- pos: 69.5,-62.5
parent: 2
type: Transform
- - uid: 23144
+ - uid: 23166
components:
- pos: 58.5,-61.5
parent: 2
type: Transform
- - uid: 23145
+ - uid: 23167
components:
- pos: 57.5,-67.5
parent: 2
type: Transform
- - uid: 23146
+ - uid: 23168
components:
- pos: 48.5,-64.5
parent: 2
type: Transform
- - uid: 23147
+ - uid: 23169
components:
- pos: -29.5,-62.5
parent: 2
type: Transform
- - uid: 23148
+ - uid: 23170
components:
- rot: 3.141592653589793 rad
pos: 15.5,-78.5
parent: 2
type: Transform
- - uid: 23149
+ - uid: 23171
components:
- rot: 3.141592653589793 rad
pos: 15.5,-88.5
parent: 2
type: Transform
- - uid: 23150
+ - uid: 23172
components:
- pos: 4.5,-72.5
parent: 2
type: Transform
- proto: RandomPosterLegit
entities:
- - uid: 23151
+ - uid: 23173
components:
- pos: -40.5,-7.5
parent: 2
type: Transform
- - uid: 23152
+ - uid: 23174
components:
- pos: -24.5,14.5
parent: 2
type: Transform
- - uid: 23153
+ - uid: 23175
components:
- pos: -21.5,-40.5
parent: 2
type: Transform
- - uid: 23154
+ - uid: 23176
components:
- rot: 3.141592653589793 rad
pos: -19.5,32.5
parent: 2
type: Transform
- - uid: 23155
+ - uid: 23177
components:
- rot: 3.141592653589793 rad
pos: -13.5,35.5
parent: 2
type: Transform
- - uid: 23156
+ - uid: 23178
components:
- rot: 3.141592653589793 rad
pos: -8.5,47.5
parent: 2
type: Transform
- - uid: 23157
+ - uid: 23179
components:
- rot: 3.141592653589793 rad
pos: 23.5,-74.5
parent: 2
type: Transform
- - uid: 23158
+ - uid: 23180
components:
- pos: 50.5,-80.5
parent: 2
type: Transform
- - uid: 23159
+ - uid: 23181
components:
- pos: 49.5,-70.5
parent: 2
type: Transform
- - uid: 23160
+ - uid: 23182
components:
- rot: 3.141592653589793 rad
pos: -1.5,55.5
parent: 2
type: Transform
- - uid: 23161
+ - uid: 23183
components:
- rot: 3.141592653589793 rad
pos: -7.5,60.5
parent: 2
type: Transform
- - uid: 23162
+ - uid: 23184
components:
- rot: 3.141592653589793 rad
pos: -5.5,60.5
parent: 2
type: Transform
- - uid: 23163
+ - uid: 23185
components:
- rot: 3.141592653589793 rad
pos: -14.5,58.5
parent: 2
type: Transform
- - uid: 23164
+ - uid: 23186
components:
- rot: 3.141592653589793 rad
pos: -20.5,57.5
parent: 2
type: Transform
- - uid: 23165
+ - uid: 23187
components:
- rot: 3.141592653589793 rad
pos: -23.5,60.5
parent: 2
type: Transform
- - uid: 23166
+ - uid: 23188
components:
- rot: 3.141592653589793 rad
pos: -23.5,67.5
parent: 2
type: Transform
- - uid: 23167
+ - uid: 23189
components:
- rot: 3.141592653589793 rad
pos: -11.5,65.5
parent: 2
type: Transform
- - uid: 23168
+ - uid: 23190
components:
- pos: 2.5,-28.5
parent: 2
type: Transform
- - uid: 23169
+ - uid: 23191
components:
- pos: 32.5,-91.5
parent: 2
type: Transform
- - uid: 23170
+ - uid: 23192
components:
- pos: 66.5,-62.5
parent: 2
type: Transform
- - uid: 23171
+ - uid: 23193
components:
- pos: 34.5,-57.5
parent: 2
type: Transform
- - uid: 23172
+ - uid: 23194
components:
- pos: 41.5,-65.5
parent: 2
type: Transform
- - uid: 23173
+ - uid: 23195
components:
- pos: -44.5,12.5
parent: 2
type: Transform
- - uid: 23174
+ - uid: 23196
components:
- pos: 28.5,-79.5
parent: 2
type: Transform
- - uid: 23175
+ - uid: 23197
components:
- rot: 3.141592653589793 rad
pos: 31.5,-70.5
parent: 2
type: Transform
- - uid: 23176
+ - uid: 23198
components:
- pos: 5.5,-75.5
parent: 2
type: Transform
- - uid: 23177
+ - uid: 23199
components:
- pos: -17.5,-36.5
parent: 2
type: Transform
- proto: RandomSnacks
entities:
- - uid: 23178
+ - uid: 23200
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-50.5
@@ -152587,416 +152685,422 @@ entities:
type: Transform
- proto: RandomSoap
entities:
- - uid: 23179
+ - uid: 23201
components:
- pos: -6.5,-68.5
parent: 2
type: Transform
- - uid: 23180
+ - uid: 23202
components:
- pos: -50.5,62.5
parent: 2
type: Transform
- - uid: 23181
+ - uid: 23203
components:
- pos: -56.5,-62.5
parent: 2
type: Transform
+ - uid: 23204
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-21.5
+ parent: 2
+ type: Transform
- proto: RandomSpawner
entities:
- - uid: 23182
+ - uid: 23205
components:
- pos: 34.5,15.5
parent: 2
type: Transform
- - uid: 23183
+ - uid: 23206
components:
- pos: 16.5,-65.5
parent: 2
type: Transform
- - uid: 23184
+ - uid: 23207
components:
- pos: -5.5,-26.5
parent: 2
type: Transform
- - uid: 23185
+ - uid: 23208
components:
- pos: 25.5,7.5
parent: 2
type: Transform
- - uid: 23186
+ - uid: 23209
components:
- pos: -6.5,-74.5
parent: 2
type: Transform
- - uid: 23187
+ - uid: 23210
components:
- pos: 35.5,-72.5
parent: 2
type: Transform
- - uid: 23188
+ - uid: 23211
components:
- pos: 22.5,17.5
parent: 2
type: Transform
- - uid: 23189
+ - uid: 23212
components:
- pos: 5.5,13.5
parent: 2
type: Transform
- - uid: 23190
+ - uid: 23213
components:
- pos: 6.5,15.5
parent: 2
type: Transform
- - uid: 23191
+ - uid: 23214
components:
- pos: 17.5,0.5
parent: 2
type: Transform
- - uid: 23192
+ - uid: 23215
components:
- pos: 33.5,0.5
parent: 2
type: Transform
- - uid: 23193
+ - uid: 23216
components:
- pos: 32.5,-2.5
parent: 2
type: Transform
- - uid: 23194
+ - uid: 23217
components:
- pos: 26.5,-11.5
parent: 2
type: Transform
- - uid: 23195
+ - uid: 23218
components:
- pos: -5.5,-32.5
parent: 2
type: Transform
- - uid: 23196
+ - uid: 23219
components:
- pos: -2.5,-46.5
parent: 2
type: Transform
- - uid: 23197
+ - uid: 23220
components:
- pos: 35.5,-17.5
parent: 2
type: Transform
- - uid: 23198
+ - uid: 23221
components:
- pos: 49.5,32.5
parent: 2
type: Transform
- - uid: 23199
+ - uid: 23222
components:
- pos: 49.5,33.5
parent: 2
type: Transform
- - uid: 23200
+ - uid: 23223
components:
- pos: 50.5,32.5
parent: 2
type: Transform
- - uid: 23201
+ - uid: 23224
components:
- pos: 48.5,32.5
parent: 2
type: Transform
- - uid: 23202
+ - uid: 23225
components:
- pos: 50.5,33.5
parent: 2
type: Transform
- - uid: 23203
+ - uid: 23226
components:
- pos: 54.5,-12.5
parent: 2
type: Transform
- - uid: 23204
+ - uid: 23227
components:
- pos: 52.5,-6.5
parent: 2
type: Transform
- - uid: 23205
+ - uid: 23228
components:
- pos: 52.5,0.5
parent: 2
type: Transform
- - uid: 23206
+ - uid: 23229
components:
- pos: 50.5,-45.5
parent: 2
type: Transform
- - uid: 23207
+ - uid: 23230
components:
- pos: 42.5,-49.5
parent: 2
type: Transform
- - uid: 23208
+ - uid: 23231
components:
- pos: -4.5,-0.5
parent: 2
type: Transform
- - uid: 23209
+ - uid: 23232
components:
- pos: 7.5,2.5
parent: 2
type: Transform
- - uid: 23210
+ - uid: 23233
components:
- pos: 17.5,-41.5
parent: 2
type: Transform
- - uid: 23211
+ - uid: 23234
components:
- pos: -7.5,-53.5
parent: 2
type: Transform
- - uid: 23212
+ - uid: 23235
components:
- rot: 3.141592653589793 rad
pos: 29.5,-72.5
parent: 2
type: Transform
- - uid: 23213
+ - uid: 23236
components:
- pos: -37.5,-6.5
parent: 2
type: Transform
- - uid: 23214
+ - uid: 23237
components:
- pos: -25.5,-67.5
parent: 2
type: Transform
- - uid: 23215
+ - uid: 23238
components:
- pos: -24.5,-53.5
parent: 2
type: Transform
- - uid: 23216
+ - uid: 23239
components:
- pos: -26.5,-46.5
parent: 2
type: Transform
- - uid: 23217
+ - uid: 23240
components:
- pos: -20.5,-29.5
parent: 2
type: Transform
- - uid: 23218
+ - uid: 23241
components:
- pos: -32.5,-23.5
parent: 2
type: Transform
- - uid: 23219
+ - uid: 23242
components:
- pos: -23.5,-13.5
parent: 2
type: Transform
- - uid: 23220
+ - uid: 23243
components:
- pos: -53.5,-18.5
parent: 2
type: Transform
- - uid: 23221
+ - uid: 23244
components:
- pos: -32.5,-34.5
parent: 2
type: Transform
- - uid: 23222
+ - uid: 23245
components:
- pos: -33.5,-46.5
parent: 2
type: Transform
- - uid: 23223
+ - uid: 23246
components:
- pos: -37.5,-76.5
parent: 2
type: Transform
- - uid: 23224
+ - uid: 23247
components:
- pos: -46.5,-78.5
parent: 2
type: Transform
- - uid: 23225
+ - uid: 23248
components:
- pos: -45.5,-73.5
parent: 2
type: Transform
- - uid: 23226
+ - uid: 23249
components:
- pos: -52.5,-74.5
parent: 2
type: Transform
- - uid: 23227
+ - uid: 23250
components:
- pos: -45.5,-28.5
parent: 2
type: Transform
- - uid: 23228
+ - uid: 23251
components:
- pos: -57.5,-33.5
parent: 2
type: Transform
- - uid: 23229
+ - uid: 23252
components:
- pos: -31.5,-51.5
parent: 2
type: Transform
- - uid: 23230
+ - uid: 23253
components:
- rot: 3.141592653589793 rad
pos: -47.5,11.5
parent: 2
type: Transform
- - uid: 23231
+ - uid: 23254
components:
- rot: 3.141592653589793 rad
pos: -45.5,6.5
parent: 2
type: Transform
- - uid: 23232
+ - uid: 23255
components:
- rot: 3.141592653589793 rad
pos: -46.5,3.5
parent: 2
type: Transform
- - uid: 23233
+ - uid: 23256
components:
- rot: 3.141592653589793 rad
pos: -34.5,0.5
parent: 2
type: Transform
- - uid: 23234
+ - uid: 23257
components:
- rot: 3.141592653589793 rad
pos: 25.5,-71.5
parent: 2
type: Transform
- - uid: 23235
+ - uid: 23258
components:
- rot: 3.141592653589793 rad
pos: 17.5,-84.5
parent: 2
type: Transform
- - uid: 23236
+ - uid: 23259
components:
- pos: 48.5,33.5
parent: 2
type: Transform
- - uid: 23237
+ - uid: 23260
components:
- pos: 22.5,7.5
parent: 2
type: Transform
- - uid: 23238
+ - uid: 23261
components:
- pos: 26.5,-18.5
parent: 2
type: Transform
- - uid: 23239
+ - uid: 23262
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-27.5
parent: 2
type: Transform
- - uid: 23240
+ - uid: 23263
components:
- pos: -15.5,36.5
parent: 2
type: Transform
- - uid: 23241
+ - uid: 23264
components:
- pos: -19.5,26.5
parent: 2
type: Transform
- - uid: 23242
+ - uid: 23265
components:
- pos: -17.5,44.5
parent: 2
type: Transform
- - uid: 23243
+ - uid: 23266
components:
- pos: -14.5,45.5
parent: 2
type: Transform
- - uid: 23244
+ - uid: 23267
components:
- pos: 0.5,32.5
parent: 2
type: Transform
- - uid: 23245
+ - uid: 23268
components:
- pos: 53.5,36.5
parent: 2
type: Transform
- - uid: 23246
+ - uid: 23269
components:
- pos: 65.5,22.5
parent: 2
type: Transform
- - uid: 23247
+ - uid: 23270
components:
- pos: -23.5,-98.5
parent: 2
type: Transform
- - uid: 23248
+ - uid: 23271
components:
- pos: -33.5,-97.5
parent: 2
type: Transform
- - uid: 23249
+ - uid: 23272
components:
- pos: -41.5,-89.5
parent: 2
type: Transform
- - uid: 23250
+ - uid: 23273
components:
- pos: -43.5,-91.5
parent: 2
type: Transform
- - uid: 23251
+ - uid: 23274
components:
- pos: -10.5,-97.5
parent: 2
type: Transform
- - uid: 23252
+ - uid: 23275
components:
- pos: -8.5,-85.5
parent: 2
type: Transform
- - uid: 23253
+ - uid: 23276
components:
- rot: 3.141592653589793 rad
pos: 29.5,-81.5
parent: 2
type: Transform
- - uid: 23254
+ - uid: 23277
components:
- rot: 3.141592653589793 rad
pos: 30.5,-84.5
parent: 2
type: Transform
- - uid: 23255
+ - uid: 23278
components:
- rot: 3.141592653589793 rad
pos: 49.5,-88.5
parent: 2
type: Transform
- - uid: 23256
+ - uid: 23279
components:
- rot: 3.141592653589793 rad
pos: 48.5,-80.5
parent: 2
type: Transform
- - uid: 23257
+ - uid: 23280
components:
- pos: 13.5,7.5
parent: 2
type: Transform
- - uid: 23258
+ - uid: 23281
components:
- rot: 3.141592653589793 rad
pos: 49.5,-73.5
@@ -153004,408 +153108,408 @@ entities:
type: Transform
- proto: RCD
entities:
- - uid: 23259
+ - uid: 23282
components:
- pos: -35.581818,-15.369191
parent: 2
type: Transform
- proto: RCDAmmo
entities:
- - uid: 23260
+ - uid: 23283
components:
- pos: -35.753693,-15.681691
parent: 2
type: Transform
- proto: ReagentContainerFlour
entities:
- - uid: 23261
+ - uid: 23284
components:
- pos: 2.337051,6.9047713
parent: 2
type: Transform
- - uid: 23262
+ - uid: 23285
components:
- pos: 2.696426,6.7797713
parent: 2
type: Transform
- - uid: 23263
+ - uid: 23286
components:
- pos: 2.399551,6.5610213
parent: 2
type: Transform
- - uid: 23264
+ - uid: 23287
components:
- pos: 54.086075,18.83411
parent: 2
type: Transform
- - uid: 23265
+ - uid: 23288
components:
- pos: 53.9767,18.568485
parent: 2
type: Transform
- - uid: 23266
+ - uid: 23289
components:
- pos: 54.2892,18.568485
parent: 2
type: Transform
- proto: ReagentContainerRice
entities:
- - uid: 23267
+ - uid: 23290
components:
- pos: -22.276304,44.96307
parent: 2
type: Transform
- - uid: 23268
+ - uid: 23291
components:
- pos: -22.620054,44.759945
parent: 2
type: Transform
- proto: ReagentContainerSugar
entities:
- - uid: 23269
+ - uid: 23292
components:
- pos: 4.6055,7.306335
parent: 2
type: Transform
- proto: Recycler
entities:
- - uid: 23270
+ - uid: 23293
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-55.5
parent: 2
type: Transform
- links:
- - 25860
+ - 25927
type: DeviceLinkSink
- proto: ReinforcedPlasmaWindow
entities:
- - uid: 23271
+ - uid: 23294
components:
- rot: 3.141592653589793 rad
pos: -57.5,-87.5
parent: 2
type: Transform
- - uid: 23272
+ - uid: 23295
components:
- pos: -42.5,-37.5
parent: 2
type: Transform
- - uid: 23273
+ - uid: 23296
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-43.5
parent: 2
type: Transform
- - uid: 23274
+ - uid: 23297
components:
- rot: -1.5707963267948966 rad
pos: -76.5,-43.5
parent: 2
type: Transform
- - uid: 23275
+ - uid: 23298
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-43.5
parent: 2
type: Transform
- - uid: 23276
+ - uid: 23299
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-42.5
parent: 2
type: Transform
- - uid: 23277
+ - uid: 23300
components:
- rot: 3.141592653589793 rad
pos: 28.5,-20.5
parent: 2
type: Transform
- - uid: 23278
+ - uid: 23301
components:
- pos: -23.5,2.5
parent: 2
type: Transform
- - uid: 23279
+ - uid: 23302
components:
- pos: 71.5,-27.5
parent: 2
type: Transform
- - uid: 23280
+ - uid: 23303
components:
- pos: 29.5,26.5
parent: 2
type: Transform
- - uid: 23281
+ - uid: 23304
components:
- pos: -15.5,2.5
parent: 2
type: Transform
- - uid: 23282
+ - uid: 23305
components:
- rot: 3.141592653589793 rad
pos: 23.5,-20.5
parent: 2
type: Transform
- - uid: 23283
+ - uid: 23306
components:
- pos: 29.5,24.5
parent: 2
type: Transform
- - uid: 23284
+ - uid: 23307
components:
- rot: 3.141592653589793 rad
pos: 25.5,-20.5
parent: 2
type: Transform
- - uid: 23285
+ - uid: 23308
components:
- pos: -19.5,5.5
parent: 2
type: Transform
- - uid: 23286
+ - uid: 23309
components:
- rot: 3.141592653589793 rad
pos: 22.5,-20.5
parent: 2
type: Transform
- - uid: 23287
+ - uid: 23310
components:
- rot: 3.141592653589793 rad
pos: 27.5,-20.5
parent: 2
type: Transform
- - uid: 23288
+ - uid: 23311
components:
- rot: 3.141592653589793 rad
pos: 6.5,-20.5
parent: 2
type: Transform
- - uid: 23289
+ - uid: 23312
components:
- rot: 3.141592653589793 rad
pos: 26.5,-20.5
parent: 2
type: Transform
- - uid: 23290
+ - uid: 23313
components:
- rot: 3.141592653589793 rad
pos: 24.5,-20.5
parent: 2
type: Transform
- - uid: 23291
+ - uid: 23314
components:
- pos: 66.5,-39.5
parent: 2
type: Transform
- - uid: 23292
+ - uid: 23315
components:
- pos: -41.5,-35.5
parent: 2
type: Transform
- - uid: 23293
+ - uid: 23316
components:
- pos: -41.5,-34.5
parent: 2
type: Transform
- - uid: 23294
+ - uid: 23317
components:
- pos: -56.5,-11.5
parent: 2
type: Transform
- - uid: 23295
+ - uid: 23318
components:
- pos: -56.5,-12.5
parent: 2
type: Transform
- - uid: 23296
+ - uid: 23319
components:
- pos: -56.5,-13.5
parent: 2
type: Transform
- - uid: 23297
+ - uid: 23320
components:
- pos: -56.5,-14.5
parent: 2
type: Transform
- - uid: 23298
+ - uid: 23321
components:
- pos: -68.5,-22.5
parent: 2
type: Transform
- - uid: 23299
+ - uid: 23322
components:
- pos: -67.5,-22.5
parent: 2
type: Transform
- - uid: 23300
+ - uid: 23323
components:
- pos: -66.5,-22.5
parent: 2
type: Transform
- - uid: 23301
+ - uid: 23324
components:
- pos: -65.5,-22.5
parent: 2
type: Transform
- - uid: 23302
+ - uid: 23325
components:
- pos: -64.5,-22.5
parent: 2
type: Transform
- - uid: 23303
+ - uid: 23326
components:
- pos: -47.5,-54.5
parent: 2
type: Transform
- - uid: 23304
+ - uid: 23327
components:
- pos: -47.5,-50.5
parent: 2
type: Transform
- - uid: 23305
+ - uid: 23328
components:
- pos: -47.5,-52.5
parent: 2
type: Transform
- - uid: 23306
+ - uid: 23329
components:
- pos: -47.5,-48.5
parent: 2
type: Transform
- - uid: 23307
+ - uid: 23330
components:
- pos: -47.5,-46.5
parent: 2
type: Transform
- - uid: 23308
+ - uid: 23331
components:
- pos: -47.5,-44.5
parent: 2
type: Transform
- - uid: 23309
+ - uid: 23332
components:
- pos: -47.5,-42.5
parent: 2
type: Transform
- - uid: 23310
+ - uid: 23333
components:
- pos: -49.5,-87.5
parent: 2
type: Transform
- - uid: 23311
+ - uid: 23334
components:
- pos: -0.5,60.5
parent: 2
type: Transform
- - uid: 23312
+ - uid: 23335
components:
- pos: -2.5,60.5
parent: 2
type: Transform
- - uid: 23313
+ - uid: 23336
components:
- pos: 5.5,69.5
parent: 2
type: Transform
- - uid: 23314
+ - uid: 23337
components:
- pos: -8.5,69.5
parent: 2
type: Transform
- - uid: 23315
+ - uid: 23338
components:
- pos: -56.5,-15.5
parent: 2
type: Transform
- - uid: 23316
+ - uid: 23339
components:
- pos: 68.5,-39.5
parent: 2
type: Transform
- - uid: 23317
+ - uid: 23340
components:
- pos: 73.5,-30.5
parent: 2
type: Transform
- - uid: 23318
+ - uid: 23341
components:
- pos: 73.5,-27.5
parent: 2
type: Transform
- - uid: 23319
+ - uid: 23342
components:
- pos: 69.5,-36.5
parent: 2
type: Transform
- - uid: 23320
+ - uid: 23343
components:
- pos: 69.5,-38.5
parent: 2
type: Transform
- - uid: 23321
+ - uid: 23344
components:
- pos: -44.5,-37.5
parent: 2
type: Transform
- - uid: 23322
+ - uid: 23345
components:
- pos: 71.5,-30.5
parent: 2
type: Transform
- - uid: 23323
+ - uid: 23346
components:
- rot: 3.141592653589793 rad
pos: 6.5,-22.5
parent: 2
type: Transform
- - uid: 23324
+ - uid: 23347
components:
- rot: 3.141592653589793 rad
pos: 6.5,-23.5
parent: 2
type: Transform
- - uid: 23325
+ - uid: 23348
components:
- pos: 9.5,-18.5
parent: 2
type: Transform
- - uid: 23326
+ - uid: 23349
components:
- rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 2
type: Transform
- - uid: 23327
+ - uid: 23350
components:
- pos: 67.5,-32.5
parent: 2
type: Transform
- - uid: 23328
+ - uid: 23351
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-39.5
parent: 2
type: Transform
- - uid: 23329
+ - uid: 23352
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-40.5
parent: 2
type: Transform
- - uid: 23330
+ - uid: 23353
components:
- rot: -1.5707963267948966 rad
pos: -77.5,-39.5
parent: 2
type: Transform
- - uid: 23331
+ - uid: 23354
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-89.5
parent: 2
type: Transform
- - uid: 23332
+ - uid: 23355
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-85.5
@@ -153413,36 +153517,36 @@ entities:
type: Transform
- proto: ReinforcedPlasmaWindowDiagonal
entities:
- - uid: 23333
+ - uid: 23356
components:
- pos: -50.5,-88.5
parent: 2
type: Transform
- - uid: 23334
+ - uid: 23357
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-86.5
parent: 2
type: Transform
- - uid: 23335
+ - uid: 23358
components:
- rot: 3.141592653589793 rad
pos: -49.5,-88.5
parent: 2
type: Transform
- - uid: 23336
+ - uid: 23359
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-85.5
parent: 2
type: Transform
- - uid: 23337
+ - uid: 23360
components:
- rot: 3.141592653589793 rad
pos: -50.5,-89.5
parent: 2
type: Transform
- - uid: 23338
+ - uid: 23361
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-86.5
@@ -153450,3304 +153554,3310 @@ entities:
type: Transform
- proto: ReinforcedWindow
entities:
- - uid: 23339
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-45.5
- parent: 2
- type: Transform
- - uid: 23340
+ - uid: 23362
components:
- rot: 3.141592653589793 rad
pos: -22.5,-91.5
parent: 2
type: Transform
- - uid: 23341
+ - uid: 23363
components:
- pos: -19.5,-91.5
parent: 2
type: Transform
- - uid: 23342
+ - uid: 23364
components:
- pos: -27.5,-90.5
parent: 2
type: Transform
- - uid: 23343
+ - uid: 23365
components:
- rot: 1.5707963267948966 rad
pos: 59.5,57.5
parent: 2
type: Transform
- - uid: 23344
+ - uid: 23366
components:
- rot: 1.5707963267948966 rad
pos: 49.5,57.5
parent: 2
type: Transform
- - uid: 23345
+ - uid: 23367
components:
- rot: 1.5707963267948966 rad
pos: 49.5,56.5
parent: 2
type: Transform
- - uid: 23346
+ - uid: 23368
components:
- rot: 1.5707963267948966 rad
pos: 59.5,58.5
parent: 2
type: Transform
- - uid: 23347
+ - uid: 23369
components:
- rot: 1.5707963267948966 rad
pos: 49.5,58.5
parent: 2
type: Transform
- - uid: 23348
+ - uid: 23370
components:
- rot: 3.141592653589793 rad
pos: -21.5,-91.5
parent: 2
type: Transform
- - uid: 23349
+ - uid: 23371
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-13.5
parent: 2
type: Transform
- - uid: 23350
+ - uid: 23372
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-12.5
parent: 2
type: Transform
- - uid: 23351
+ - uid: 23373
components:
- pos: -51.5,-21.5
parent: 2
type: Transform
- - uid: 23352
+ - uid: 23374
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-40.5
parent: 2
type: Transform
- - uid: 23353
+ - uid: 23375
components:
- rot: 3.141592653589793 rad
pos: 20.5,-34.5
parent: 2
type: Transform
- - uid: 23354
+ - uid: 23376
components:
- pos: -61.5,-35.5
parent: 2
type: Transform
- - uid: 23355
+ - uid: 23377
components:
- rot: 1.5707963267948966 rad
pos: -13.5,9.5
parent: 2
type: Transform
- - uid: 23356
+ - uid: 23378
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-39.5
parent: 2
type: Transform
- - uid: 23357
+ - uid: 23379
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-35.5
parent: 2
type: Transform
- - uid: 23358
+ - uid: 23380
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-34.5
parent: 2
type: Transform
- - uid: 23359
+ - uid: 23381
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-42.5
parent: 2
type: Transform
- - uid: 23360
+ - uid: 23382
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-41.5
parent: 2
type: Transform
- - uid: 23361
+ - uid: 23383
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-40.5
parent: 2
type: Transform
- - uid: 23362
+ - uid: 23384
components:
- pos: -64.5,-43.5
parent: 2
type: Transform
- - uid: 23363
+ - uid: 23385
components:
- pos: -76.5,-32.5
parent: 2
type: Transform
- - uid: 23364
+ - uid: 23386
components:
- rot: 1.5707963267948966 rad
pos: -7.5,13.5
parent: 2
type: Transform
- - uid: 23365
+ - uid: 23387
components:
- rot: 1.5707963267948966 rad
pos: 40.5,-74.5
parent: 2
type: Transform
- - uid: 23366
+ - uid: 23388
components:
- rot: 1.5707963267948966 rad
pos: 39.5,-74.5
parent: 2
type: Transform
- - uid: 23367
+ - uid: 23389
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-74.5
parent: 2
type: Transform
- - uid: 23368
+ - uid: 23390
components:
- rot: 3.141592653589793 rad
pos: 5.5,18.5
parent: 2
type: Transform
- - uid: 23369
+ - uid: 23391
components:
- rot: -1.5707963267948966 rad
pos: -46.5,45.5
parent: 2
type: Transform
- - uid: 23370
+ - uid: 23392
components:
- rot: -1.5707963267948966 rad
pos: -47.5,45.5
parent: 2
type: Transform
- - uid: 23371
+ - uid: 23393
components:
- pos: 69.5,-42.5
parent: 2
type: Transform
- - uid: 23372
+ - uid: 23394
components:
- pos: 68.5,-42.5
parent: 2
type: Transform
- - uid: 23373
+ - uid: 23395
components:
- pos: 78.5,-45.5
parent: 2
type: Transform
- - uid: 23374
+ - uid: 23396
components:
- pos: 3.5,-39.5
parent: 2
type: Transform
- - uid: 23375
+ - uid: 23397
components:
- pos: 70.5,-42.5
parent: 2
type: Transform
- - uid: 23376
+ - uid: 23398
components:
- rot: 3.141592653589793 rad
pos: 28.5,-62.5
parent: 2
type: Transform
- - uid: 23377
+ - uid: 23399
components:
- rot: 3.141592653589793 rad
pos: 31.5,-64.5
parent: 2
type: Transform
- - uid: 23378
+ - uid: 23400
components:
- rot: 3.141592653589793 rad
pos: 22.5,-55.5
parent: 2
type: Transform
- - uid: 23379
+ - uid: 23401
components:
- rot: 3.141592653589793 rad
pos: 33.5,-63.5
parent: 2
type: Transform
- - uid: 23380
+ - uid: 23402
components:
- pos: 32.5,-9.5
parent: 2
type: Transform
- - uid: 23381
+ - uid: 23403
components:
- pos: 3.5,-28.5
parent: 2
type: Transform
- - uid: 23382
+ - uid: 23404
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-77.5
parent: 2
type: Transform
- - uid: 23383
+ - uid: 23405
components:
- pos: 19.5,-15.5
parent: 2
type: Transform
- - uid: 23384
+ - uid: 23406
components:
- pos: -18.5,-89.5
parent: 2
type: Transform
- - uid: 23385
+ - uid: 23407
components:
- rot: 3.141592653589793 rad
pos: 31.5,-33.5
parent: 2
type: Transform
- - uid: 23386
+ - uid: 23408
components:
- pos: 7.5,-59.5
parent: 2
type: Transform
- - uid: 23387
+ - uid: 23409
components:
- rot: 3.141592653589793 rad
pos: -9.5,-76.5
parent: 2
type: Transform
- - uid: 23388
+ - uid: 23410
components:
- rot: -1.5707963267948966 rad
pos: 35.5,4.5
parent: 2
type: Transform
- - uid: 23389
+ - uid: 23411
components:
- pos: -26.5,-91.5
parent: 2
type: Transform
- - uid: 23390
+ - uid: 23412
components:
- pos: -1.5,-35.5
parent: 2
type: Transform
- - uid: 23391
+ - uid: 23413
components:
- rot: 1.5707963267948966 rad
pos: 39.5,52.5
parent: 2
type: Transform
- - uid: 23392
+ - uid: 23414
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-46.5
parent: 2
type: Transform
- - uid: 23393
+ - uid: 23415
components:
- pos: -17.5,-1.5
parent: 2
type: Transform
- - uid: 23394
+ - uid: 23416
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-11.5
parent: 2
type: Transform
- - uid: 23395
+ - uid: 23417
components:
- pos: -45.5,-50.5
parent: 2
type: Transform
- - uid: 23396
+ - uid: 23418
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-77.5
parent: 2
type: Transform
- - uid: 23397
+ - uid: 23419
components:
- pos: 20.5,-35.5
parent: 2
type: Transform
- - uid: 23398
+ - uid: 23420
components:
- pos: 20.5,-36.5
parent: 2
type: Transform
- - uid: 23399
+ - uid: 23421
components:
- pos: 43.5,11.5
parent: 2
type: Transform
- - uid: 23400
+ - uid: 23422
components:
- pos: -16.5,-1.5
parent: 2
type: Transform
- - uid: 23401
+ - uid: 23423
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-44.5
parent: 2
type: Transform
- - uid: 23402
+ - uid: 23424
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-11.5
parent: 2
type: Transform
- - uid: 23403
+ - uid: 23425
components:
- pos: 17.5,18.5
parent: 2
type: Transform
- - uid: 23404
+ - uid: 23426
components:
- pos: -1.5,-32.5
parent: 2
type: Transform
- - uid: 23405
+ - uid: 23427
components:
- pos: 23.5,-12.5
parent: 2
type: Transform
- - uid: 23406
+ - uid: 23428
components:
- pos: -1.5,-34.5
parent: 2
type: Transform
- - uid: 23407
+ - uid: 23429
components:
- rot: -1.5707963267948966 rad
pos: 32.5,9.5
parent: 2
type: Transform
- - uid: 23408
+ - uid: 23430
components:
- rot: 3.141592653589793 rad
pos: 28.5,13.5
parent: 2
type: Transform
- - uid: 23409
+ - uid: 23431
components:
- pos: 31.5,-38.5
parent: 2
type: Transform
- - uid: 23410
+ - uid: 23432
components:
- pos: 18.5,-38.5
parent: 2
type: Transform
- - uid: 23411
+ - uid: 23433
components:
- rot: 3.141592653589793 rad
pos: 10.5,18.5
parent: 2
type: Transform
- - uid: 23412
+ - uid: 23434
components:
- rot: 3.141592653589793 rad
pos: 21.5,-55.5
parent: 2
type: Transform
- - uid: 23413
+ - uid: 23435
components:
- rot: 3.141592653589793 rad
pos: 33.5,-15.5
parent: 2
type: Transform
- - uid: 23414
+ - uid: 23436
components:
- rot: 3.141592653589793 rad
pos: 37.5,-35.5
parent: 2
type: Transform
- - uid: 23415
+ - uid: 23437
components:
- rot: -1.5707963267948966 rad
pos: 34.5,9.5
parent: 2
type: Transform
- - uid: 23416
+ - uid: 23438
components:
- pos: 43.5,7.5
parent: 2
type: Transform
- - uid: 23417
+ - uid: 23439
components:
- pos: 23.5,-11.5
parent: 2
type: Transform
- - uid: 23418
+ - uid: 23440
components:
- pos: 35.5,18.5
parent: 2
type: Transform
- - uid: 23419
+ - uid: 23441
components:
- rot: 3.141592653589793 rad
pos: 39.5,5.5
parent: 2
type: Transform
- - uid: 23420
+ - uid: 23442
components:
- rot: 3.141592653589793 rad
pos: 34.5,13.5
parent: 2
type: Transform
- - uid: 23421
+ - uid: 23443
components:
- rot: 3.141592653589793 rad
pos: 31.5,-15.5
parent: 2
type: Transform
- - uid: 23422
+ - uid: 23444
components:
- pos: 37.5,-21.5
parent: 2
type: Transform
- - uid: 23423
+ - uid: 23445
components:
- pos: 37.5,-22.5
parent: 2
type: Transform
- - uid: 23424
+ - uid: 23446
components:
- pos: 43.5,10.5
parent: 2
type: Transform
- - uid: 23425
+ - uid: 23447
components:
- pos: 17.5,-34.5
parent: 2
type: Transform
- - uid: 23426
+ - uid: 23448
components:
- pos: 17.5,-35.5
parent: 2
type: Transform
- - uid: 23427
+ - uid: 23449
components:
- pos: 17.5,-36.5
parent: 2
type: Transform
- - uid: 23428
+ - uid: 23450
components:
- pos: 19.5,-38.5
parent: 2
type: Transform
- - uid: 23429
+ - uid: 23451
components:
- pos: 32.5,-38.5
parent: 2
type: Transform
- - uid: 23430
+ - uid: 23452
components:
- pos: 33.5,-34.5
parent: 2
type: Transform
- - uid: 23431
+ - uid: 23453
components:
- pos: 33.5,-36.5
parent: 2
type: Transform
- - uid: 23432
+ - uid: 23454
components:
- pos: 33.5,-35.5
parent: 2
type: Transform
- - uid: 23433
+ - uid: 23455
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-11.5
parent: 2
type: Transform
- - uid: 23434
+ - uid: 23456
components:
- pos: 48.5,-0.5
parent: 2
type: Transform
- - uid: 23435
+ - uid: 23457
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-10.5
parent: 2
type: Transform
- - uid: 23436
+ - uid: 23458
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-13.5
parent: 2
type: Transform
- - uid: 23437
+ - uid: 23459
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-44.5
parent: 2
type: Transform
- - uid: 23438
+ - uid: 23460
components:
- pos: 12.5,-33.5
parent: 2
type: Transform
- - uid: 23439
+ - uid: 23461
components:
- pos: 12.5,-32.5
parent: 2
type: Transform
- - uid: 23440
+ - uid: 23462
components:
- pos: 2.5,-39.5
parent: 2
type: Transform
- - uid: 23441
+ - uid: 23463
components:
- pos: -18.5,-58.5
parent: 2
type: Transform
- - uid: 23442
+ - uid: 23464
components:
- pos: -20.5,-58.5
parent: 2
type: Transform
- - uid: 23443
+ - uid: 23465
components:
- pos: 27.5,22.5
parent: 2
type: Transform
- - uid: 23444
+ - uid: 23466
components:
- pos: -27.5,-89.5
parent: 2
type: Transform
- - uid: 23445
+ - uid: 23467
components:
- pos: -48.5,-81.5
parent: 2
type: Transform
- - uid: 23446
+ - uid: 23468
components:
- pos: -48.5,-82.5
parent: 2
type: Transform
- - uid: 23447
+ - uid: 23469
components:
- pos: 21.5,-15.5
parent: 2
type: Transform
- - uid: 23448
+ - uid: 23470
components:
- pos: -22.5,-3.5
parent: 2
type: Transform
- - uid: 23449
+ - uid: 23471
components:
- pos: -16.5,-3.5
parent: 2
type: Transform
- - uid: 23450
+ - uid: 23472
components:
- pos: 9.5,13.5
parent: 2
type: Transform
- - uid: 23451
+ - uid: 23473
components:
- rot: -1.5707963267948966 rad
pos: 27.5,20.5
parent: 2
type: Transform
- - uid: 23452
+ - uid: 23474
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-11.5
parent: 2
type: Transform
- - uid: 23453
+ - uid: 23475
components:
- rot: 3.141592653589793 rad
pos: 31.5,13.5
parent: 2
type: Transform
- - uid: 23454
+ - uid: 23476
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-82.5
parent: 2
type: Transform
- - uid: 23455
+ - uid: 23477
components:
- rot: 3.141592653589793 rad
pos: 39.5,8.5
parent: 2
type: Transform
- - uid: 23456
+ - uid: 23478
components:
- pos: 42.5,-28.5
parent: 2
type: Transform
- - uid: 23457
+ - uid: 23479
components:
- pos: 16.5,-68.5
parent: 2
type: Transform
- - uid: 23458
+ - uid: 23480
components:
- rot: 3.141592653589793 rad
pos: -7.5,-76.5
parent: 2
type: Transform
- - uid: 23459
+ - uid: 23481
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-11.5
parent: 2
type: Transform
- - uid: 23460
+ - uid: 23482
components:
- pos: -27.5,-88.5
parent: 2
type: Transform
- - uid: 23461
+ - uid: 23483
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-11.5
parent: 2
type: Transform
- - uid: 23462
+ - uid: 23484
components:
- pos: -1.5,-31.5
parent: 2
type: Transform
- - uid: 23463
+ - uid: 23485
components:
- pos: 1.5,-30.5
parent: 2
type: Transform
- - uid: 23464
+ - uid: 23486
components:
- rot: 3.141592653589793 rad
pos: 3.5,-44.5
parent: 2
type: Transform
- - uid: 23465
+ - uid: 23487
components:
- rot: -1.5707963267948966 rad
pos: 29.5,9.5
parent: 2
type: Transform
- - uid: 23466
+ - uid: 23488
components:
- rot: -1.5707963267948966 rad
pos: 7.5,18.5
parent: 2
type: Transform
- - uid: 23467
+ - uid: 23489
components:
- pos: -21.5,-3.5
parent: 2
type: Transform
- - uid: 23468
+ - uid: 23490
components:
- pos: 37.5,-36.5
parent: 2
type: Transform
- - uid: 23469
+ - uid: 23491
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-74.5
parent: 2
type: Transform
- - uid: 23470
+ - uid: 23492
components:
- pos: -29.5,45.5
parent: 2
type: Transform
- - uid: 23471
+ - uid: 23493
components:
- pos: 9.5,14.5
parent: 2
type: Transform
- - uid: 23472
+ - uid: 23494
components:
- pos: -18.5,-90.5
parent: 2
type: Transform
- - uid: 23473
+ - uid: 23495
components:
- pos: -24.5,-91.5
parent: 2
type: Transform
- - uid: 23474
+ - uid: 23496
components:
- rot: -1.5707963267948966 rad
pos: 35.5,7.5
parent: 2
type: Transform
- - uid: 23475
+ - uid: 23497
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-79.5
parent: 2
type: Transform
- - uid: 23476
+ - uid: 23498
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-77.5
parent: 2
type: Transform
- - uid: 23477
+ - uid: 23499
components:
- pos: 15.5,18.5
parent: 2
type: Transform
- - uid: 23478
+ - uid: 23500
components:
- pos: 5.5,-28.5
parent: 2
type: Transform
- - uid: 23479
+ - uid: 23501
components:
- pos: 18.5,-65.5
parent: 2
type: Transform
- - uid: 23480
+ - uid: 23502
components:
- rot: 3.141592653589793 rad
pos: 28.5,-63.5
parent: 2
type: Transform
- - uid: 23481
+ - uid: 23503
components:
- pos: -45.5,-49.5
parent: 2
type: Transform
- - uid: 23482
+ - uid: 23504
components:
- pos: 7.5,-61.5
parent: 2
type: Transform
- - uid: 23483
+ - uid: 23505
components:
- rot: 3.141592653589793 rad
pos: 12.5,18.5
parent: 2
type: Transform
- - uid: 23484
+ - uid: 23506
components:
- pos: 1.5,-31.5
parent: 2
type: Transform
- - uid: 23485
+ - uid: 23507
components:
- rot: -1.5707963267948966 rad
pos: -13.5,37.5
parent: 2
type: Transform
- - uid: 23486
+ - uid: 23508
components:
- pos: 15.5,-68.5
parent: 2
type: Transform
- - uid: 23487
+ - uid: 23509
components:
- rot: 3.141592653589793 rad
pos: 30.5,-64.5
parent: 2
type: Transform
- - uid: 23488
+ - uid: 23510
components:
- rot: 3.141592653589793 rad
pos: 33.5,-62.5
parent: 2
type: Transform
- - uid: 23489
+ - uid: 23511
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-82.5
parent: 2
type: Transform
- - uid: 23490
+ - uid: 23512
components:
- pos: -18.5,-88.5
parent: 2
type: Transform
- - uid: 23491
+ - uid: 23513
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-47.5
parent: 2
type: Transform
- - uid: 23492
+ - uid: 23514
components:
- pos: -1.5,-33.5
parent: 2
type: Transform
- - uid: 23493
+ - uid: 23515
components:
- pos: -22.5,-1.5
parent: 2
type: Transform
- - uid: 23494
+ - uid: 23516
components:
- pos: -21.5,-1.5
parent: 2
type: Transform
- - uid: 23495
+ - uid: 23517
components:
- pos: -17.5,-3.5
parent: 2
type: Transform
- - uid: 23496
+ - uid: 23518
components:
- pos: 12.5,-34.5
parent: 2
type: Transform
- - uid: 23497
+ - uid: 23519
components:
- rot: 3.141592653589793 rad
pos: 20.5,-55.5
parent: 2
type: Transform
- - uid: 23498
+ - uid: 23520
components:
- pos: 18.5,-66.5
parent: 2
type: Transform
- - uid: 23499
+ - uid: 23521
components:
- pos: 42.5,-23.5
parent: 2
type: Transform
- - uid: 23500
+ - uid: 23522
components:
- pos: 41.5,-28.5
parent: 2
type: Transform
- - uid: 23501
+ - uid: 23523
components:
- pos: 41.5,-23.5
parent: 2
type: Transform
- - uid: 23502
+ - uid: 23524
components:
- pos: -2.5,42.5
parent: 2
type: Transform
- - uid: 23503
+ - uid: 23525
components:
- pos: 6.5,25.5
parent: 2
type: Transform
- - uid: 23504
+ - uid: 23526
components:
- pos: 2.5,25.5
parent: 2
type: Transform
- - uid: 23505
+ - uid: 23527
components:
- pos: 18.5,32.5
parent: 2
type: Transform
- - uid: 23506
+ - uid: 23528
components:
- pos: 18.5,33.5
parent: 2
type: Transform
- - uid: 23507
+ - uid: 23529
components:
- rot: -1.5707963267948966 rad
pos: 7.5,35.5
parent: 2
type: Transform
- - uid: 23508
+ - uid: 23530
components:
- pos: 4.5,25.5
parent: 2
type: Transform
- - uid: 23509
+ - uid: 23531
components:
- rot: -1.5707963267948966 rad
pos: 36.5,24.5
parent: 2
type: Transform
- - uid: 23510
+ - uid: 23532
components:
- rot: -1.5707963267948966 rad
pos: 38.5,24.5
parent: 2
type: Transform
- - uid: 23511
+ - uid: 23533
components:
- rot: -1.5707963267948966 rad
pos: 40.5,24.5
parent: 2
type: Transform
- - uid: 23512
+ - uid: 23534
components:
- rot: 3.141592653589793 rad
pos: 52.5,14.5
parent: 2
type: Transform
- - uid: 23513
+ - uid: 23535
components:
- rot: 3.141592653589793 rad
pos: 53.5,14.5
parent: 2
type: Transform
- - uid: 23514
+ - uid: 23536
components:
- rot: 3.141592653589793 rad
pos: 54.5,14.5
parent: 2
type: Transform
- - uid: 23515
+ - uid: 23537
components:
- rot: 3.141592653589793 rad
pos: 51.5,13.5
parent: 2
type: Transform
- - uid: 23516
+ - uid: 23538
components:
- rot: 3.141592653589793 rad
pos: 51.5,11.5
parent: 2
type: Transform
- - uid: 23517
+ - uid: 23539
components:
- rot: 3.141592653589793 rad
pos: 52.5,10.5
parent: 2
type: Transform
- - uid: 23518
+ - uid: 23540
components:
- rot: 3.141592653589793 rad
pos: 54.5,10.5
parent: 2
type: Transform
- - uid: 23519
+ - uid: 23541
components:
- rot: 3.141592653589793 rad
pos: 55.5,11.5
parent: 2
type: Transform
- - uid: 23520
+ - uid: 23542
components:
- rot: 3.141592653589793 rad
pos: 55.5,12.5
parent: 2
type: Transform
- - uid: 23521
+ - uid: 23543
components:
- rot: 3.141592653589793 rad
pos: 55.5,13.5
parent: 2
type: Transform
- - uid: 23522
+ - uid: 23544
components:
- pos: 46.5,9.5
parent: 2
type: Transform
- - uid: 23523
+ - uid: 23545
components:
- rot: -1.5707963267948966 rad
pos: 42.5,24.5
parent: 2
type: Transform
- - uid: 23524
+ - uid: 23546
components:
- rot: -1.5707963267948966 rad
pos: 43.5,5.5
parent: 2
type: Transform
- - uid: 23525
+ - uid: 23547
components:
- pos: 24.5,-58.5
parent: 2
type: Transform
- - uid: 23526
+ - uid: 23548
components:
- pos: 24.5,-59.5
parent: 2
type: Transform
- - uid: 23527
+ - uid: 23549
components:
- pos: 66.5,25.5
parent: 2
type: Transform
- - uid: 23528
+ - uid: 23550
components:
- pos: 66.5,23.5
parent: 2
type: Transform
- - uid: 23529
+ - uid: 23551
components:
- pos: 64.5,27.5
parent: 2
type: Transform
- - uid: 23530
+ - uid: 23552
components:
- pos: 62.5,27.5
parent: 2
type: Transform
- - uid: 23531
+ - uid: 23553
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-6.5
parent: 2
type: Transform
- - uid: 23532
+ - uid: 23554
components:
- pos: 60.5,-4.5
parent: 2
type: Transform
- - uid: 23533
+ - uid: 23555
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-12.5
parent: 2
type: Transform
- - uid: 23534
+ - uid: 23556
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-10.5
parent: 2
type: Transform
- - uid: 23535
+ - uid: 23557
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-4.5
parent: 2
type: Transform
- - uid: 23536
+ - uid: 23558
components:
- pos: 59.5,-15.5
parent: 2
type: Transform
- - uid: 23537
+ - uid: 23559
components:
- pos: 58.5,-15.5
parent: 2
type: Transform
- - uid: 23538
+ - uid: 23560
components:
- pos: 56.5,-15.5
parent: 2
type: Transform
- - uid: 23539
+ - uid: 23561
components:
- pos: 55.5,-15.5
parent: 2
type: Transform
- - uid: 23540
+ - uid: 23562
components:
- pos: 63.5,-26.5
parent: 2
type: Transform
- - uid: 23541
+ - uid: 23563
components:
- pos: 63.5,-24.5
parent: 2
type: Transform
- - uid: 23542
+ - uid: 23564
components:
- pos: 61.5,-22.5
parent: 2
type: Transform
- - uid: 23543
+ - uid: 23565
components:
- pos: 61.5,-20.5
parent: 2
type: Transform
- - uid: 23544
+ - uid: 23566
components:
- pos: 63.5,-18.5
parent: 2
type: Transform
- - uid: 23545
+ - uid: 23567
components:
- pos: 61.5,-24.5
parent: 2
type: Transform
- - uid: 23546
+ - uid: 23568
components:
- pos: 63.5,-22.5
parent: 2
type: Transform
- - uid: 23547
+ - uid: 23569
components:
- pos: 63.5,-20.5
parent: 2
type: Transform
- - uid: 23548
+ - uid: 23570
components:
- pos: 61.5,-18.5
parent: 2
type: Transform
- - uid: 23549
+ - uid: 23571
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-2.5
parent: 2
type: Transform
- - uid: 23550
+ - uid: 23572
components:
- pos: 64.5,-37.5
parent: 2
type: Transform
- - uid: 23551
+ - uid: 23573
components:
- pos: 78.5,-38.5
parent: 2
type: Transform
- - uid: 23552
+ - uid: 23574
components:
- pos: 77.5,-32.5
parent: 2
type: Transform
- - uid: 23553
+ - uid: 23575
components:
- pos: 78.5,-32.5
parent: 2
type: Transform
- - uid: 23554
+ - uid: 23576
components:
- pos: 77.5,-38.5
parent: 2
type: Transform
- - uid: 23555
+ - uid: 23577
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-31.5
parent: 2
type: Transform
- - uid: 23556
+ - uid: 23578
components:
- pos: 56.5,-46.5
parent: 2
type: Transform
- - uid: 23557
+ - uid: 23579
components:
- pos: 61.5,-56.5
parent: 2
type: Transform
- - uid: 23558
+ - uid: 23580
components:
- pos: 61.5,-50.5
parent: 2
type: Transform
- - uid: 23559
+ - uid: 23581
components:
- pos: 63.5,-50.5
parent: 2
type: Transform
- - uid: 23560
+ - uid: 23582
components:
- pos: 62.5,-56.5
parent: 2
type: Transform
- - uid: 23561
+ - uid: 23583
components:
- pos: 58.5,-52.5
parent: 2
type: Transform
- - uid: 23562
+ - uid: 23584
components:
- pos: 58.5,-51.5
parent: 2
type: Transform
- - uid: 23563
+ - uid: 23585
components:
- pos: 66.5,-52.5
parent: 2
type: Transform
- - uid: 23564
+ - uid: 23586
components:
- pos: 66.5,-51.5
parent: 2
type: Transform
- - uid: 23565
+ - uid: 23587
components:
- pos: 63.5,-56.5
parent: 2
type: Transform
- - uid: 23566
+ - uid: 23588
components:
- pos: 54.5,-51.5
parent: 2
type: Transform
- - uid: 23567
+ - uid: 23589
components:
- pos: 54.5,-52.5
parent: 2
type: Transform
- - uid: 23568
+ - uid: 23590
components:
- pos: 54.5,-53.5
parent: 2
type: Transform
- - uid: 23569
+ - uid: 23591
components:
- pos: 50.5,-31.5
parent: 2
type: Transform
- - uid: 23570
+ - uid: 23592
components:
- pos: 51.5,-31.5
parent: 2
type: Transform
- - uid: 23571
+ - uid: 23593
components:
- pos: 79.5,-35.5
parent: 2
type: Transform
- - uid: 23572
+ - uid: 23594
components:
- pos: 58.5,-25.5
parent: 2
type: Transform
- - uid: 23573
+ - uid: 23595
components:
- pos: 76.5,-35.5
parent: 2
type: Transform
- - uid: 23574
+ - uid: 23596
components:
- pos: 77.5,-35.5
parent: 2
type: Transform
- - uid: 23575
+ - uid: 23597
components:
- pos: 78.5,-35.5
parent: 2
type: Transform
- - uid: 23576
+ - uid: 23598
components:
- pos: 78.5,-46.5
parent: 2
type: Transform
- - uid: 23577
+ - uid: 23599
components:
- pos: -45.5,-51.5
parent: 2
type: Transform
- - uid: 23578
+ - uid: 23600
components:
- pos: 49.5,-59.5
parent: 2
type: Transform
- - uid: 23579
+ - uid: 23601
components:
- pos: 50.5,-59.5
parent: 2
type: Transform
- - uid: 23580
+ - uid: 23602
components:
- pos: 52.5,-61.5
parent: 2
type: Transform
- - uid: 23581
+ - uid: 23603
components:
- pos: 49.5,-62.5
parent: 2
type: Transform
- - uid: 23582
+ - uid: 23604
components:
- pos: 51.5,-62.5
parent: 2
type: Transform
- - uid: 23583
+ - uid: 23605
components:
- pos: 43.5,-69.5
parent: 2
type: Transform
- - uid: 23584
+ - uid: 23606
components:
- pos: 42.5,-69.5
parent: 2
type: Transform
- - uid: 23585
+ - uid: 23607
components:
- pos: 35.5,-69.5
parent: 2
type: Transform
- - uid: 23586
+ - uid: 23608
components:
- pos: 44.5,-69.5
parent: 2
type: Transform
- - uid: 23587
+ - uid: 23609
components:
- rot: 1.5707963267948966 rad
pos: 20.5,-44.5
parent: 2
type: Transform
- - uid: 23588
+ - uid: 23610
components:
- pos: -40.5,-12.5
parent: 2
type: Transform
- - uid: 23589
+ - uid: 23611
components:
- pos: -40.5,-9.5
parent: 2
type: Transform
- - uid: 23590
+ - uid: 23612
components:
- pos: -33.5,-17.5
parent: 2
type: Transform
- - uid: 23591
+ - uid: 23613
components:
- pos: -33.5,-15.5
parent: 2
type: Transform
- - uid: 23592
+ - uid: 23614
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-12.5
parent: 2
type: Transform
- - uid: 23593
+ - uid: 23615
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-13.5
parent: 2
type: Transform
- - uid: 23594
+ - uid: 23616
components:
- pos: -26.5,-9.5
parent: 2
type: Transform
- - uid: 23595
+ - uid: 23617
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-35.5
parent: 2
type: Transform
- - uid: 23596
+ - uid: 23618
components:
- pos: 58.5,-59.5
parent: 2
type: Transform
- - uid: 23597
+ - uid: 23619
components:
- pos: 58.5,-60.5
parent: 2
type: Transform
- - uid: 23598
+ - uid: 23620
components:
- pos: 54.5,-25.5
parent: 2
type: Transform
- - uid: 23599
+ - uid: 23621
components:
- rot: 3.141592653589793 rad
pos: 56.5,-55.5
parent: 2
type: Transform
- - uid: 23600
+ - uid: 23622
components:
- rot: 3.141592653589793 rad
pos: 59.5,-54.5
parent: 2
type: Transform
- - uid: 23601
+ - uid: 23623
components:
- rot: 3.141592653589793 rad
pos: 65.5,-54.5
parent: 2
type: Transform
- - uid: 23602
+ - uid: 23624
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-85.5
parent: 2
type: Transform
- - uid: 23603
+ - uid: 23625
components:
- pos: 41.5,-74.5
parent: 2
type: Transform
- - uid: 23604
+ - uid: 23626
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-74.5
parent: 2
type: Transform
- - uid: 23605
+ - uid: 23627
components:
- pos: 37.5,-66.5
parent: 2
type: Transform
- - uid: 23606
+ - uid: 23628
components:
- pos: 36.5,-69.5
parent: 2
type: Transform
- - uid: 23607
+ - uid: 23629
components:
- pos: 34.5,-69.5
parent: 2
type: Transform
- - uid: 23608
+ - uid: 23630
components:
- pos: 37.5,-64.5
parent: 2
type: Transform
- - uid: 23609
+ - uid: 23631
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-86.5
parent: 2
type: Transform
- - uid: 23610
+ - uid: 23632
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-87.5
parent: 2
type: Transform
- - uid: 23611
+ - uid: 23633
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-78.5
parent: 2
type: Transform
- - uid: 23612
+ - uid: 23634
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-88.5
parent: 2
type: Transform
- - uid: 23613
+ - uid: 23635
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-78.5
parent: 2
type: Transform
- - uid: 23614
+ - uid: 23636
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-88.5
parent: 2
type: Transform
- - uid: 23615
+ - uid: 23637
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-78.5
parent: 2
type: Transform
- - uid: 23616
+ - uid: 23638
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-84.5
parent: 2
type: Transform
- - uid: 23617
+ - uid: 23639
components:
- pos: 17.5,-74.5
parent: 2
type: Transform
- - uid: 23618
+ - uid: 23640
components:
- pos: 18.5,-74.5
parent: 2
type: Transform
- - uid: 23619
+ - uid: 23641
components:
- pos: 14.5,-74.5
parent: 2
type: Transform
- - uid: 23620
+ - uid: 23642
components:
- pos: 17.5,-71.5
parent: 2
type: Transform
- - uid: 23621
+ - uid: 23643
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-86.5
parent: 2
type: Transform
- - uid: 23622
+ - uid: 23644
components:
- pos: 15.5,-71.5
parent: 2
type: Transform
- - uid: 23623
+ - uid: 23645
components:
- pos: 15.5,-74.5
parent: 2
type: Transform
- - uid: 23624
+ - uid: 23646
components:
- rot: 3.141592653589793 rad
pos: 26.5,-67.5
parent: 2
type: Transform
- - uid: 23625
+ - uid: 23647
components:
- rot: 3.141592653589793 rad
pos: 28.5,-90.5
parent: 2
type: Transform
- - uid: 23626
+ - uid: 23648
components:
- rot: 3.141592653589793 rad
pos: 24.5,-80.5
parent: 2
type: Transform
- - uid: 23627
+ - uid: 23649
components:
- pos: 14.5,-71.5
parent: 2
type: Transform
- - uid: 23628
+ - uid: 23650
components:
- pos: 18.5,-71.5
parent: 2
type: Transform
- - uid: 23629
+ - uid: 23651
components:
- rot: 3.141592653589793 rad
pos: 25.5,-80.5
parent: 2
type: Transform
- - uid: 23630
+ - uid: 23652
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-79.5
parent: 2
type: Transform
- - uid: 23631
+ - uid: 23653
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-88.5
parent: 2
type: Transform
- - uid: 23632
+ - uid: 23654
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-88.5
parent: 2
type: Transform
- - uid: 23633
+ - uid: 23655
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-77.5
parent: 2
type: Transform
- - uid: 23634
+ - uid: 23656
components:
- rot: 1.5707963267948966 rad
pos: 16.5,-78.5
parent: 2
type: Transform
- - uid: 23635
+ - uid: 23657
components:
- rot: 1.5707963267948966 rad
pos: 14.5,-78.5
parent: 2
type: Transform
- - uid: 23636
+ - uid: 23658
components:
- rot: 3.141592653589793 rad
pos: 25.5,-67.5
parent: 2
type: Transform
- - uid: 23637
+ - uid: 23659
components:
- rot: -1.5707963267948966 rad
pos: 50.5,-64.5
parent: 2
type: Transform
- - uid: 23638
+ - uid: 23660
components:
- pos: -33.5,-9.5
parent: 2
type: Transform
- - uid: 23639
+ - uid: 23661
components:
- pos: -33.5,-12.5
parent: 2
type: Transform
- - uid: 23640
+ - uid: 23662
components:
- pos: -45.5,-47.5
parent: 2
type: Transform
- - uid: 23641
+ - uid: 23663
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-14.5
parent: 2
type: Transform
- - uid: 23642
+ - uid: 23664
components:
- pos: -45.5,-48.5
parent: 2
type: Transform
- - uid: 23643
+ - uid: 23665
components:
- pos: 78.5,-44.5
parent: 2
type: Transform
- - uid: 23644
+ - uid: 23666
components:
- pos: 68.5,-56.5
parent: 2
type: Transform
- - uid: 23645
+ - uid: 23667
components:
- pos: -43.5,-13.5
parent: 2
type: Transform
- - uid: 23646
+ - uid: 23668
components:
- pos: 48.5,7.5
parent: 2
type: Transform
- - uid: 23647
+ - uid: 23669
components:
- pos: 70.5,-54.5
parent: 2
type: Transform
- - uid: 23648
+ - uid: 23670
components:
- pos: 61.5,-61.5
parent: 2
type: Transform
- - uid: 23649
+ - uid: 23671
components:
- pos: 62.5,-61.5
parent: 2
type: Transform
- - uid: 23650
+ - uid: 23672
components:
- pos: 63.5,-61.5
parent: 2
type: Transform
- - uid: 23651
+ - uid: 23673
components:
- pos: 71.5,-64.5
parent: 2
type: Transform
- - uid: 23652
+ - uid: 23674
components:
- pos: -38.5,-37.5
parent: 2
type: Transform
- - uid: 23653
+ - uid: 23675
components:
- pos: -37.5,-37.5
parent: 2
type: Transform
- - uid: 23654
+ - uid: 23676
components:
- pos: -46.5,-7.5
parent: 2
type: Transform
- - uid: 23655
+ - uid: 23677
components:
- pos: -45.5,-18.5
parent: 2
type: Transform
- - uid: 23656
+ - uid: 23678
components:
- rot: 3.141592653589793 rad
pos: -49.5,-19.5
parent: 2
type: Transform
- - uid: 23657
+ - uid: 23679
components:
- pos: -61.5,-31.5
parent: 2
type: Transform
- - uid: 23658
+ - uid: 23680
components:
- rot: 3.141592653589793 rad
pos: -61.5,-44.5
parent: 2
type: Transform
- - uid: 23659
+ - uid: 23681
components:
- pos: -45.5,-43.5
parent: 2
type: Transform
- - uid: 23660
+ - uid: 23682
components:
- pos: -45.5,-45.5
parent: 2
type: Transform
- - uid: 23661
+ - uid: 23683
components:
- pos: -45.5,-46.5
parent: 2
type: Transform
- - uid: 23662
+ - uid: 23684
components:
- pos: -45.5,-44.5
parent: 2
type: Transform
- - uid: 23663
+ - uid: 23685
components:
- pos: -45.5,-42.5
parent: 2
type: Transform
- - uid: 23664
+ - uid: 23686
components:
- pos: -35.5,-58.5
parent: 2
type: Transform
- - uid: 23665
+ - uid: 23687
components:
- rot: 3.141592653589793 rad
pos: -38.5,-59.5
parent: 2
type: Transform
- - uid: 23666
+ - uid: 23688
components:
- pos: -44.5,-58.5
parent: 2
type: Transform
- - uid: 23667
+ - uid: 23689
components:
- pos: -42.5,-58.5
parent: 2
type: Transform
- - uid: 23668
+ - uid: 23690
components:
- pos: -41.5,-58.5
parent: 2
type: Transform
- - uid: 23669
+ - uid: 23691
components:
- rot: 3.141592653589793 rad
pos: -73.5,-27.5
parent: 2
type: Transform
- - uid: 23670
+ - uid: 23692
components:
- pos: -62.5,-35.5
parent: 2
type: Transform
- - uid: 23671
+ - uid: 23693
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-60.5
parent: 2
type: Transform
- - uid: 23672
+ - uid: 23694
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-60.5
parent: 2
type: Transform
- - uid: 23673
+ - uid: 23695
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-59.5
parent: 2
type: Transform
- - uid: 23674
+ - uid: 23696
components:
- pos: -58.5,-52.5
parent: 2
type: Transform
- - uid: 23675
+ - uid: 23697
components:
- pos: -58.5,-51.5
parent: 2
type: Transform
- - uid: 23676
+ - uid: 23698
components:
- pos: -58.5,-48.5
parent: 2
type: Transform
- - uid: 23677
+ - uid: 23699
components:
- pos: -58.5,-47.5
parent: 2
type: Transform
- - uid: 23678
+ - uid: 23700
components:
- pos: -41.5,-62.5
parent: 2
type: Transform
- - uid: 23679
+ - uid: 23701
components:
- pos: -40.5,-62.5
parent: 2
type: Transform
- - uid: 23680
+ - uid: 23702
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-83.5
parent: 2
type: Transform
- - uid: 23681
+ - uid: 23703
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-83.5
parent: 2
type: Transform
- - uid: 23682
+ - uid: 23704
components:
- pos: -57.5,-75.5
parent: 2
type: Transform
- - uid: 23683
+ - uid: 23705
components:
- pos: -57.5,-76.5
parent: 2
type: Transform
- - uid: 23684
+ - uid: 23706
components:
- pos: -57.5,-77.5
parent: 2
type: Transform
- - uid: 23685
+ - uid: 23707
components:
- pos: -48.5,-83.5
parent: 2
type: Transform
- - uid: 23686
+ - uid: 23708
components:
- pos: -35.5,-82.5
parent: 2
type: Transform
- - uid: 23687
+ - uid: 23709
components:
- pos: -35.5,-81.5
parent: 2
type: Transform
- - uid: 23688
+ - uid: 23710
components:
- pos: -35.5,-77.5
parent: 2
type: Transform
- - uid: 23689
+ - uid: 23711
components:
- pos: -35.5,-83.5
parent: 2
type: Transform
- - uid: 23690
+ - uid: 23712
components:
- pos: -35.5,-76.5
parent: 2
type: Transform
- - uid: 23691
+ - uid: 23713
components:
- pos: -35.5,-78.5
parent: 2
type: Transform
- - uid: 23692
+ - uid: 23714
components:
- pos: -40.5,-86.5
parent: 2
type: Transform
- - uid: 23693
+ - uid: 23715
components:
- pos: -43.5,-86.5
parent: 2
type: Transform
- - uid: 23694
+ - uid: 23716
components:
- rot: 3.141592653589793 rad
pos: 19.5,-33.5
parent: 2
type: Transform
- - uid: 23695
+ - uid: 23717
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-38.5
parent: 2
type: Transform
- - uid: 23696
+ - uid: 23718
components:
- rot: -1.5707963267948966 rad
pos: 8.5,35.5
parent: 2
type: Transform
- - uid: 23697
+ - uid: 23719
components:
- rot: 3.141592653589793 rad
pos: 59.5,56.5
parent: 2
type: Transform
- - uid: 23698
+ - uid: 23720
components:
- rot: -1.5707963267948966 rad
pos: -7.5,28.5
parent: 2
type: Transform
- - uid: 23699
+ - uid: 23721
components:
- rot: -1.5707963267948966 rad
pos: -7.5,27.5
parent: 2
type: Transform
- - uid: 23700
+ - uid: 23722
components:
- pos: -0.5,35.5
parent: 2
type: Transform
- - uid: 23701
+ - uid: 23723
components:
- pos: -1.5,35.5
parent: 2
type: Transform
- - uid: 23702
+ - uid: 23724
components:
- pos: -2.5,35.5
parent: 2
type: Transform
- - uid: 23703
+ - uid: 23725
components:
- rot: 1.5707963267948966 rad
pos: 53.5,62.5
parent: 2
type: Transform
- - uid: 23704
+ - uid: 23726
components:
- rot: -1.5707963267948966 rad
pos: 7.5,29.5
parent: 2
type: Transform
- - uid: 23705
+ - uid: 23727
components:
- rot: -1.5707963267948966 rad
pos: -26.5,23.5
parent: 2
type: Transform
- - uid: 23706
+ - uid: 23728
components:
- pos: -3.5,42.5
parent: 2
type: Transform
- - uid: 23707
+ - uid: 23729
components:
- pos: 45.5,9.5
parent: 2
type: Transform
- - uid: 23708
+ - uid: 23730
components:
- pos: -29.5,21.5
parent: 2
type: Transform
- - uid: 23709
+ - uid: 23731
components:
- pos: -29.5,23.5
parent: 2
type: Transform
- - uid: 23710
+ - uid: 23732
components:
- pos: -26.5,21.5
parent: 2
type: Transform
- - uid: 23711
+ - uid: 23733
components:
- pos: -31.5,27.5
parent: 2
type: Transform
- - uid: 23712
+ - uid: 23734
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- - uid: 23713
+ - uid: 23735
components:
- pos: -30.5,27.5
parent: 2
type: Transform
- - uid: 23714
+ - uid: 23736
components:
- rot: 1.5707963267948966 rad
pos: -49.5,21.5
parent: 2
type: Transform
- - uid: 23715
+ - uid: 23737
components:
- rot: 1.5707963267948966 rad
pos: -50.5,21.5
parent: 2
type: Transform
- - uid: 23716
+ - uid: 23738
components:
- rot: -1.5707963267948966 rad
pos: -50.5,18.5
parent: 2
type: Transform
- - uid: 23717
+ - uid: 23739
components:
- rot: -1.5707963267948966 rad
pos: -50.5,24.5
parent: 2
type: Transform
- - uid: 23718
+ - uid: 23740
components:
- rot: -1.5707963267948966 rad
pos: 8.5,29.5
parent: 2
type: Transform
- - uid: 23719
+ - uid: 23741
components:
- rot: 1.5707963267948966 rad
pos: 54.5,62.5
parent: 2
type: Transform
- - uid: 23720
+ - uid: 23742
components:
- rot: 1.5707963267948966 rad
pos: 55.5,62.5
parent: 2
type: Transform
- - uid: 23721
+ - uid: 23743
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-8.5
parent: 2
type: Transform
- - uid: 23722
+ - uid: 23744
components:
- pos: -33.5,32.5
parent: 2
type: Transform
- - uid: 23723
+ - uid: 23745
components:
- pos: -32.5,32.5
parent: 2
type: Transform
- - uid: 23724
+ - uid: 23746
components:
- pos: -31.5,32.5
parent: 2
type: Transform
- - uid: 23725
+ - uid: 23747
components:
- pos: -49.5,29.5
parent: 2
type: Transform
- - uid: 23726
+ - uid: 23748
components:
- pos: -49.5,35.5
parent: 2
type: Transform
- - uid: 23727
+ - uid: 23749
components:
- pos: -52.5,35.5
parent: 2
type: Transform
- - uid: 23728
+ - uid: 23750
components:
- pos: -52.5,29.5
parent: 2
type: Transform
- - uid: 23729
+ - uid: 23751
components:
- pos: -52.5,18.5
parent: 2
type: Transform
- - uid: 23730
+ - uid: 23752
components:
- pos: -52.5,24.5
parent: 2
type: Transform
- - uid: 23731
+ - uid: 23753
components:
- rot: -1.5707963267948966 rad
pos: -52.5,21.5
parent: 2
type: Transform
- - uid: 23732
+ - uid: 23754
components:
- rot: -1.5707963267948966 rad
pos: -53.5,21.5
parent: 2
type: Transform
- - uid: 23733
+ - uid: 23755
components:
- rot: -1.5707963267948966 rad
pos: -31.5,35.5
parent: 2
type: Transform
- - uid: 23734
+ - uid: 23756
components:
- pos: -39.5,31.5
parent: 2
type: Transform
- - uid: 23735
+ - uid: 23757
components:
- rot: -1.5707963267948966 rad
pos: -32.5,35.5
parent: 2
type: Transform
- - uid: 23736
+ - uid: 23758
components:
- rot: -1.5707963267948966 rad
pos: -17.5,26.5
parent: 2
type: Transform
- - uid: 23737
+ - uid: 23759
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-1.5
parent: 2
type: Transform
- - uid: 23738
+ - uid: 23760
components:
- pos: -53.5,11.5
parent: 2
type: Transform
- - uid: 23739
+ - uid: 23761
components:
- pos: -53.5,10.5
parent: 2
type: Transform
- - uid: 23740
+ - uid: 23762
components:
- rot: -1.5707963267948966 rad
pos: -49.5,13.5
parent: 2
type: Transform
- - uid: 23741
+ - uid: 23763
components:
- rot: -1.5707963267948966 rad
pos: -48.5,13.5
parent: 2
type: Transform
- - uid: 23742
+ - uid: 23764
components:
- pos: 56.5,-25.5
parent: 2
type: Transform
- - uid: 23743
+ - uid: 23765
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-7.5
parent: 2
type: Transform
- - uid: 23744
+ - uid: 23766
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-9.5
parent: 2
type: Transform
- - uid: 23745
+ - uid: 23767
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-0.5
parent: 2
type: Transform
- - uid: 23746
+ - uid: 23768
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-77.5
parent: 2
type: Transform
- - uid: 23747
+ - uid: 23769
components:
- pos: 25.5,24.5
parent: 2
type: Transform
- - uid: 23748
+ - uid: 23770
components:
- pos: -45.5,-52.5
parent: 2
type: Transform
- - uid: 23749
+ - uid: 23771
components:
- pos: -45.5,-53.5
parent: 2
type: Transform
- - uid: 23750
+ - uid: 23772
components:
- pos: -45.5,-54.5
parent: 2
type: Transform
- - uid: 23751
+ - uid: 23773
components:
- pos: -45.5,-55.5
parent: 2
type: Transform
- - uid: 23752
+ - uid: 23774
components:
- pos: 24.5,-60.5
parent: 2
type: Transform
- - uid: 23753
+ - uid: 23775
components:
- pos: 46.5,43.5
parent: 2
type: Transform
- - uid: 23754
+ - uid: 23776
components:
- rot: 3.141592653589793 rad
pos: 46.5,3.5
parent: 2
type: Transform
- - uid: 23755
+ - uid: 23777
components:
- rot: 3.141592653589793 rad
pos: 59.5,43.5
parent: 2
type: Transform
- - uid: 23756
+ - uid: 23778
components:
- rot: -1.5707963267948966 rad
pos: -13.5,39.5
parent: 2
type: Transform
- - uid: 23757
+ - uid: 23779
components:
- pos: -14.5,56.5
parent: 2
type: Transform
- - uid: 23758
+ - uid: 23780
components:
- pos: -11.5,69.5
parent: 2
type: Transform
- - uid: 23759
+ - uid: 23781
components:
- pos: -14.5,55.5
parent: 2
type: Transform
- - uid: 23760
+ - uid: 23782
components:
- pos: -16.5,55.5
parent: 2
type: Transform
- - uid: 23761
+ - uid: 23783
components:
- pos: -16.5,56.5
parent: 2
type: Transform
- - uid: 23762
+ - uid: 23784
components:
- pos: -23.5,61.5
parent: 2
type: Transform
- - uid: 23763
+ - uid: 23785
components:
- pos: -23.5,62.5
parent: 2
type: Transform
- - uid: 23764
+ - uid: 23786
components:
- pos: -11.5,68.5
parent: 2
type: Transform
- - uid: 23765
+ - uid: 23787
components:
- pos: -11.5,67.5
parent: 2
type: Transform
- - uid: 23766
+ - uid: 23788
components:
- pos: -14.5,73.5
parent: 2
type: Transform
- - uid: 23767
+ - uid: 23789
components:
- pos: -20.5,73.5
parent: 2
type: Transform
- - uid: 23768
+ - uid: 23790
components:
- pos: -11.5,73.5
parent: 2
type: Transform
- - uid: 23769
+ - uid: 23791
components:
- pos: -23.5,63.5
parent: 2
type: Transform
- - uid: 23770
+ - uid: 23792
components:
- pos: -23.5,73.5
parent: 2
type: Transform
- - uid: 23771
+ - uid: 23793
components:
- rot: -1.5707963267948966 rad
pos: -17.5,24.5
parent: 2
type: Transform
- - uid: 23772
+ - uid: 23794
components:
- rot: -1.5707963267948966 rad
pos: 68.5,11.5
parent: 2
type: Transform
- - uid: 23773
+ - uid: 23795
components:
- rot: -1.5707963267948966 rad
pos: 68.5,10.5
parent: 2
type: Transform
- - uid: 23774
+ - uid: 23796
components:
- rot: -1.5707963267948966 rad
pos: 68.5,8.5
parent: 2
type: Transform
- - uid: 23775
+ - uid: 23797
components:
- rot: -1.5707963267948966 rad
pos: 68.5,7.5
parent: 2
type: Transform
- - uid: 23776
+ - uid: 23798
components:
- rot: -1.5707963267948966 rad
pos: 59.5,33.5
parent: 2
type: Transform
- - uid: 23777
+ - uid: 23799
components:
- rot: -1.5707963267948966 rad
pos: 59.5,32.5
parent: 2
type: Transform
- - uid: 23778
+ - uid: 23800
components:
- rot: -1.5707963267948966 rad
pos: -1.5,27.5
parent: 2
type: Transform
- - uid: 23779
+ - uid: 23801
components:
- rot: -1.5707963267948966 rad
pos: -3.5,27.5
parent: 2
type: Transform
- - uid: 23780
+ - uid: 23802
components:
- rot: -1.5707963267948966 rad
pos: -33.5,35.5
parent: 2
type: Transform
- - uid: 23781
+ - uid: 23803
components:
- rot: 3.141592653589793 rad
pos: -32.5,37.5
parent: 2
type: Transform
- - uid: 23782
+ - uid: 23804
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-17.5
parent: 2
type: Transform
- - uid: 23783
+ - uid: 23805
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-17.5
parent: 2
type: Transform
- - uid: 23784
+ - uid: 23806
components:
- pos: -46.5,13.5
parent: 2
type: Transform
- - uid: 23785
+ - uid: 23807
components:
- pos: -1.5,42.5
parent: 2
type: Transform
- - uid: 23786
+ - uid: 23808
components:
- rot: 1.5707963267948966 rad
pos: 47.5,40.5
parent: 2
type: Transform
- - uid: 23787
+ - uid: 23809
components:
- rot: 1.5707963267948966 rad
pos: 45.5,40.5
parent: 2
type: Transform
- - uid: 23788
+ - uid: 23810
components:
- rot: -1.5707963267948966 rad
pos: 41.5,42.5
parent: 2
type: Transform
- - uid: 23789
+ - uid: 23811
components:
- rot: 3.141592653589793 rad
pos: 41.5,32.5
parent: 2
type: Transform
- - uid: 23790
+ - uid: 23812
components:
- rot: 3.141592653589793 rad
pos: 41.5,31.5
parent: 2
type: Transform
- - uid: 23791
+ - uid: 23813
components:
- rot: 3.141592653589793 rad
pos: 41.5,30.5
parent: 2
type: Transform
- - uid: 23792
+ - uid: 23814
components:
- rot: -1.5707963267948966 rad
pos: 40.5,42.5
parent: 2
type: Transform
- - uid: 23793
+ - uid: 23815
components:
- rot: -1.5707963267948966 rad
pos: 39.5,42.5
parent: 2
type: Transform
- - uid: 23794
+ - uid: 23816
components:
- pos: 71.5,39.5
parent: 2
type: Transform
- - uid: 23795
+ - uid: 23817
components:
- pos: 73.5,39.5
parent: 2
type: Transform
- - uid: 23796
+ - uid: 23818
components:
- pos: 73.5,33.5
parent: 2
type: Transform
- - uid: 23797
+ - uid: 23819
components:
- pos: 71.5,33.5
parent: 2
type: Transform
- - uid: 23798
+ - uid: 23820
components:
- pos: -33.5,40.5
parent: 2
type: Transform
- - uid: 23799
+ - uid: 23821
components:
- pos: -32.5,40.5
parent: 2
type: Transform
- - uid: 23800
+ - uid: 23822
components:
- pos: -26.5,54.5
parent: 2
type: Transform
- - uid: 23801
+ - uid: 23823
components:
- pos: -26.5,53.5
parent: 2
type: Transform
- - uid: 23802
+ - uid: 23824
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-88.5
parent: 2
type: Transform
- - uid: 23803
+ - uid: 23825
components:
- pos: -18.5,-97.5
parent: 2
type: Transform
- - uid: 23804
+ - uid: 23826
components:
- pos: -26.5,-97.5
parent: 2
type: Transform
- - uid: 23805
+ - uid: 23827
components:
- pos: -23.5,-94.5
parent: 2
type: Transform
- - uid: 23806
+ - uid: 23828
components:
- pos: -22.5,-94.5
parent: 2
type: Transform
- - uid: 23807
+ - uid: 23829
components:
- pos: -21.5,-94.5
parent: 2
type: Transform
- - uid: 23808
+ - uid: 23830
components:
- pos: -9.5,-101.5
parent: 2
type: Transform
- - uid: 23809
+ - uid: 23831
components:
- pos: -8.5,-101.5
parent: 2
type: Transform
- - uid: 23810
+ - uid: 23832
components:
- pos: -6.5,-101.5
parent: 2
type: Transform
- - uid: 23811
+ - uid: 23833
components:
- pos: -5.5,-101.5
parent: 2
type: Transform
- - uid: 23812
+ - uid: 23834
components:
- pos: -3.5,-97.5
parent: 2
type: Transform
- - uid: 23813
+ - uid: 23835
components:
- pos: -3.5,-98.5
parent: 2
type: Transform
- - uid: 23814
+ - uid: 23836
components:
- rot: 3.141592653589793 rad
pos: -44.5,-90.5
parent: 2
type: Transform
- - uid: 23815
+ - uid: 23837
components:
- rot: 3.141592653589793 rad
pos: -44.5,-89.5
parent: 2
type: Transform
- - uid: 23816
+ - uid: 23838
components:
- pos: -39.5,-90.5
parent: 2
type: Transform
- - uid: 23817
+ - uid: 23839
components:
- pos: -39.5,-89.5
parent: 2
type: Transform
- - uid: 23818
+ - uid: 23840
components:
- pos: -34.5,-100.5
parent: 2
type: Transform
- - uid: 23819
+ - uid: 23841
components:
- pos: -36.5,-100.5
parent: 2
type: Transform
- - uid: 23820
+ - uid: 23842
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-95.5
parent: 2
type: Transform
- - uid: 23821
+ - uid: 23843
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-96.5
parent: 2
type: Transform
- - uid: 23822
+ - uid: 23844
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-98.5
parent: 2
type: Transform
- - uid: 23823
+ - uid: 23845
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-98.5
parent: 2
type: Transform
- - uid: 23824
+ - uid: 23846
components:
- pos: -23.5,-101.5
parent: 2
type: Transform
- - uid: 23825
+ - uid: 23847
components:
- pos: -22.5,-101.5
parent: 2
type: Transform
- - uid: 23826
+ - uid: 23848
components:
- pos: -21.5,-101.5
parent: 2
type: Transform
- - uid: 23827
+ - uid: 23849
components:
- rot: -1.5707963267948966 rad
pos: 72.5,-50.5
parent: 2
type: Transform
- - uid: 23828
+ - uid: 23850
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-50.5
parent: 2
type: Transform
- - uid: 23829
+ - uid: 23851
components:
- rot: -1.5707963267948966 rad
pos: 71.5,-50.5
parent: 2
type: Transform
- - uid: 23830
+ - uid: 23852
components:
- pos: 51.5,-68.5
parent: 2
type: Transform
- - uid: 23831
+ - uid: 23853
components:
- rot: 3.141592653589793 rad
pos: 55.5,-68.5
parent: 2
type: Transform
- - uid: 23832
+ - uid: 23854
components:
- rot: 3.141592653589793 rad
pos: 56.5,-68.5
parent: 2
type: Transform
- - uid: 23833
+ - uid: 23855
components:
- pos: 61.5,-70.5
parent: 2
type: Transform
- - uid: 23834
+ - uid: 23856
components:
- pos: 62.5,-70.5
parent: 2
type: Transform
- - uid: 23835
+ - uid: 23857
components:
- rot: 3.141592653589793 rad
pos: 54.5,-68.5
parent: 2
type: Transform
- - uid: 23836
+ - uid: 23858
components:
- pos: 50.5,-68.5
parent: 2
type: Transform
- - uid: 23837
+ - uid: 23859
components:
- pos: 3.5,-36.5
parent: 2
type: Transform
- - uid: 23838
+ - uid: 23860
components:
- pos: 68.5,-57.5
parent: 2
type: Transform
- - uid: 23839
+ - uid: 23861
components:
- pos: 71.5,-54.5
parent: 2
type: Transform
- - uid: 23840
+ - uid: 23862
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-57.5
parent: 2
type: Transform
- - uid: 23841
+ - uid: 23863
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-31.5
parent: 2
type: Transform
- - uid: 23842
+ - uid: 23864
components:
- pos: 60.5,-70.5
parent: 2
type: Transform
- - uid: 23843
+ - uid: 23865
components:
- pos: 9.5,-31.5
parent: 2
type: Transform
- - uid: 23844
+ - uid: 23866
components:
- pos: 9.5,-34.5
parent: 2
type: Transform
- - uid: 23845
+ - uid: 23867
components:
- pos: 2.5,-36.5
parent: 2
type: Transform
- - uid: 23846
+ - uid: 23868
components:
- pos: 36.5,18.5
parent: 2
type: Transform
- - uid: 23847
+ - uid: 23869
components:
- pos: 34.5,18.5
parent: 2
type: Transform
- - uid: 23848
+ - uid: 23870
components:
- pos: 52.5,-57.5
parent: 2
type: Transform
- - uid: 23849
+ - uid: 23871
components:
- pos: -60.5,-35.5
parent: 2
type: Transform
- - uid: 23850
+ - uid: 23872
components:
- pos: -52.5,-38.5
parent: 2
type: Transform
- - uid: 23851
+ - uid: 23873
components:
- pos: -47.5,-34.5
parent: 2
type: Transform
- - uid: 23852
+ - uid: 23874
components:
- pos: -47.5,-35.5
parent: 2
type: Transform
- - uid: 23853
+ - uid: 23875
components:
- rot: 3.141592653589793 rad
pos: 51.5,-72.5
parent: 2
type: Transform
- - uid: 23854
+ - uid: 23876
components:
- rot: 3.141592653589793 rad
pos: 51.5,-71.5
parent: 2
type: Transform
- - uid: 23855
+ - uid: 23877
components:
- rot: 3.141592653589793 rad
pos: 24.5,-86.5
parent: 2
type: Transform
- - uid: 23856
+ - uid: 23878
components:
- rot: 3.141592653589793 rad
pos: 25.5,-86.5
parent: 2
type: Transform
- - uid: 23857
+ - uid: 23879
components:
- rot: 3.141592653589793 rad
pos: 25.5,-75.5
parent: 2
type: Transform
- - uid: 23858
+ - uid: 23880
components:
- rot: 3.141592653589793 rad
pos: 28.5,-89.5
parent: 2
type: Transform
- - uid: 23859
+ - uid: 23881
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-79.5
parent: 2
type: Transform
- - uid: 23860
+ - uid: 23882
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-84.5
parent: 2
type: Transform
- - uid: 23861
+ - uid: 23883
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-85.5
parent: 2
type: Transform
- - uid: 23862
+ - uid: 23884
components:
- rot: 3.141592653589793 rad
pos: 26.5,-75.5
parent: 2
type: Transform
- - uid: 23863
+ - uid: 23885
components:
- rot: 3.141592653589793 rad
pos: 51.5,-73.5
parent: 2
type: Transform
- - uid: 23864
+ - uid: 23886
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-78.5
parent: 2
type: Transform
- - uid: 23865
+ - uid: 23887
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-87.5
parent: 2
type: Transform
- - uid: 23866
+ - uid: 23888
components:
- rot: -1.5707963267948966 rad
pos: -45.5,45.5
parent: 2
type: Transform
- - uid: 23867
+ - uid: 23889
components:
- rot: 1.5707963267948966 rad
pos: -8.5,13.5
parent: 2
type: Transform
- - uid: 23868
+ - uid: 23890
components:
- pos: -4.5,20.5
parent: 2
type: Transform
- - uid: 23869
+ - uid: 23891
components:
- pos: -5.5,20.5
parent: 2
type: Transform
- - uid: 23870
+ - uid: 23892
components:
- rot: 3.141592653589793 rad
pos: -71.5,-27.5
parent: 2
type: Transform
- - uid: 23871
+ - uid: 23893
components:
- pos: -70.5,-47.5
parent: 2
type: Transform
- - uid: 23872
+ - uid: 23894
components:
- pos: -69.5,-47.5
parent: 2
type: Transform
- - uid: 23873
+ - uid: 23895
components:
- pos: -68.5,-47.5
parent: 2
type: Transform
- - uid: 23874
+ - uid: 23896
components:
- pos: -60.5,-38.5
parent: 2
type: Transform
- - uid: 23875
+ - uid: 23897
components:
- pos: -62.5,-38.5
parent: 2
type: Transform
- - uid: 23876
+ - uid: 23898
components:
- pos: -51.5,-13.5
parent: 2
type: Transform
- - uid: 23877
+ - uid: 23899
components:
- rot: 3.141592653589793 rad
pos: -78.5,-45.5
parent: 2
type: Transform
- - uid: 23878
+ - uid: 23900
components:
- rot: 1.5707963267948966 rad
pos: -15.5,9.5
parent: 2
type: Transform
- - uid: 23879
+ - uid: 23901
components:
- rot: 1.5707963267948966 rad
pos: -14.5,9.5
parent: 2
type: Transform
- - uid: 23880
+ - uid: 23902
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- - uid: 23881
+ - uid: 23903
components:
- rot: 3.141592653589793 rad
pos: 2.5,-3.5
parent: 2
type: Transform
- - uid: 23882
+ - uid: 23904
components:
- rot: 3.141592653589793 rad
pos: 1.5,-3.5
parent: 2
type: Transform
- - uid: 23883
+ - uid: 23905
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-40.5
parent: 2
type: Transform
- - uid: 23884
+ - uid: 23906
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-40.5
parent: 2
type: Transform
- - uid: 23885
+ - uid: 23907
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-40.5
parent: 2
type: Transform
- - uid: 23886
+ - uid: 23908
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-40.5
parent: 2
type: Transform
- - uid: 23887
+ - uid: 23909
components:
- rot: -1.5707963267948966 rad
pos: 54.5,-42.5
parent: 2
type: Transform
- - uid: 23888
+ - uid: 23910
components:
- pos: 10.5,29.5
parent: 2
type: Transform
- - uid: 23889
+ - uid: 23911
components:
- pos: 8.5,27.5
parent: 2
type: Transform
- - uid: 23890
+ - uid: 23912
components:
- pos: 10.5,27.5
parent: 2
type: Transform
- - uid: 23891
+ - uid: 23913
components:
- pos: 9.5,27.5
parent: 2
type: Transform
- - uid: 23892
+ - uid: 23914
components:
- pos: 9.5,29.5
parent: 2
type: Transform
- - uid: 23893
+ - uid: 23915
components:
- pos: -29.5,-63.5
parent: 2
type: Transform
- - uid: 23894
+ - uid: 23916
components:
- rot: 3.141592653589793 rad
pos: -23.5,-91.5
parent: 2
type: Transform
- - uid: 23895
+ - uid: 23917
components:
- pos: 78.5,-47.5
parent: 2
type: Transform
- - uid: 23896
+ - uid: 23918
components:
- pos: 78.5,-43.5
parent: 2
type: Transform
- - uid: 23897
+ - uid: 23919
components:
- rot: 1.5707963267948966 rad
pos: 43.5,63.5
parent: 2
type: Transform
- - uid: 23898
+ - uid: 23920
components:
- rot: 1.5707963267948966 rad
pos: 35.5,63.5
parent: 2
type: Transform
- - uid: 23899
+ - uid: 23921
components:
- rot: 1.5707963267948966 rad
pos: 39.5,67.5
parent: 2
type: Transform
- - uid: 23900
+ - uid: 23922
components:
- - pos: 8.5,-46.5
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-17.5
+ parent: 2
+ type: Transform
+ - uid: 23923
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 23924
+ components:
+ - pos: -27.5,-20.5
parent: 2
type: Transform
- proto: ReinforcedWindowDiagonal
entities:
- - uid: 23901
+ - uid: 23925
components:
- pos: 12.5,-78.5
parent: 2
type: Transform
- - uid: 23902
+ - uid: 23926
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-30.5
parent: 2
type: Transform
- - uid: 23903
+ - uid: 23927
components:
- rot: 1.5707963267948966 rad
pos: 49.5,55.5
parent: 2
type: Transform
- - uid: 23904
+ - uid: 23928
components:
- rot: -1.5707963267948966 rad
pos: 59.5,59.5
parent: 2
type: Transform
- - uid: 23905
+ - uid: 23929
components:
- pos: 49.5,59.5
parent: 2
type: Transform
- - uid: 23906
+ - uid: 23930
components:
- pos: 52.5,62.5
parent: 2
type: Transform
- - uid: 23907
+ - uid: 23931
components:
- rot: -1.5707963267948966 rad
pos: 56.5,62.5
parent: 2
type: Transform
- - uid: 23908
+ - uid: 23932
components:
- rot: 3.141592653589793 rad
pos: 59.5,55.5
parent: 2
type: Transform
- - uid: 23909
+ - uid: 23933
components:
- rot: 3.141592653589793 rad
pos: -1.5,-36.5
parent: 2
type: Transform
- - uid: 23910
+ - uid: 23934
components:
- rot: 3.141592653589793 rad
pos: -18.5,-91.5
parent: 2
type: Transform
- - uid: 23911
+ - uid: 23935
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-91.5
parent: 2
type: Transform
- - uid: 23912
+ - uid: 23936
components:
- rot: -1.5707963267948966 rad
pos: 78.5,-42.5
parent: 2
type: Transform
- - uid: 23913
+ - uid: 23937
components:
- rot: 3.141592653589793 rad
pos: 43.5,62.5
parent: 2
type: Transform
- - uid: 23914
+ - uid: 23938
components:
- pos: 42.5,62.5
parent: 2
type: Transform
- - uid: 23915
+ - uid: 23939
components:
- rot: 3.141592653589793 rad
pos: 42.5,61.5
parent: 2
type: Transform
- - uid: 23916
+ - uid: 23940
components:
- pos: 41.5,61.5
parent: 2
type: Transform
- - uid: 23917
+ - uid: 23941
components:
- rot: 3.141592653589793 rad
pos: 41.5,60.5
parent: 2
type: Transform
- - uid: 23918
+ - uid: 23942
components:
- pos: 40.5,60.5
parent: 2
type: Transform
- - uid: 23919
+ - uid: 23943
components:
- rot: 3.141592653589793 rad
pos: 40.5,59.5
parent: 2
type: Transform
- - uid: 23920
+ - uid: 23944
components:
- rot: 1.5707963267948966 rad
pos: 38.5,59.5
parent: 2
type: Transform
- - uid: 23921
+ - uid: 23945
components:
- rot: -1.5707963267948966 rad
pos: 38.5,60.5
parent: 2
type: Transform
- - uid: 23922
+ - uid: 23946
components:
- rot: 1.5707963267948966 rad
pos: 37.5,60.5
parent: 2
type: Transform
- - uid: 23923
+ - uid: 23947
components:
- rot: -1.5707963267948966 rad
pos: 37.5,61.5
parent: 2
type: Transform
- - uid: 23924
+ - uid: 23948
components:
- rot: 1.5707963267948966 rad
pos: 36.5,61.5
parent: 2
type: Transform
- - uid: 23925
+ - uid: 23949
components:
- rot: 1.5707963267948966 rad
pos: 35.5,62.5
parent: 2
type: Transform
- - uid: 23926
+ - uid: 23950
components:
- rot: -1.5707963267948966 rad
pos: 36.5,62.5
parent: 2
type: Transform
- - uid: 23927
+ - uid: 23951
components:
- pos: 35.5,64.5
parent: 2
type: Transform
- - uid: 23928
+ - uid: 23952
components:
- rot: 3.141592653589793 rad
pos: 36.5,64.5
parent: 2
type: Transform
- - uid: 23929
+ - uid: 23953
components:
- pos: 36.5,65.5
parent: 2
type: Transform
- - uid: 23930
+ - uid: 23954
components:
- rot: 3.141592653589793 rad
pos: 37.5,65.5
parent: 2
type: Transform
- - uid: 23931
+ - uid: 23955
components:
- pos: 37.5,66.5
parent: 2
type: Transform
- - uid: 23932
+ - uid: 23956
components:
- rot: 3.141592653589793 rad
pos: 38.5,66.5
parent: 2
type: Transform
- - uid: 23933
+ - uid: 23957
components:
- pos: 38.5,67.5
parent: 2
type: Transform
- - uid: 23934
+ - uid: 23958
components:
- rot: -1.5707963267948966 rad
pos: 40.5,67.5
parent: 2
type: Transform
- - uid: 23935
+ - uid: 23959
components:
- rot: 1.5707963267948966 rad
pos: 40.5,66.5
parent: 2
type: Transform
- - uid: 23936
+ - uid: 23960
components:
- rot: -1.5707963267948966 rad
pos: 41.5,66.5
parent: 2
type: Transform
- - uid: 23937
+ - uid: 23961
components:
- rot: 1.5707963267948966 rad
pos: 41.5,65.5
parent: 2
type: Transform
- - uid: 23938
+ - uid: 23962
components:
- rot: -1.5707963267948966 rad
pos: 42.5,65.5
parent: 2
type: Transform
- - uid: 23939
+ - uid: 23963
components:
- rot: 1.5707963267948966 rad
pos: 42.5,64.5
parent: 2
type: Transform
- - uid: 23940
+ - uid: 23964
components:
- rot: -1.5707963267948966 rad
pos: 43.5,64.5
parent: 2
type: Transform
- - uid: 23941
+ - uid: 23965
components:
- rot: 3.141592653589793 rad
pos: 78.5,-48.5
parent: 2
type: Transform
- - uid: 23942
+ - uid: 23966
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-78.5
parent: 2
type: Transform
- - uid: 23943
+ - uid: 23967
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-88.5
parent: 2
type: Transform
- - uid: 23944
+ - uid: 23968
components:
- rot: 3.141592653589793 rad
pos: 18.5,-88.5
@@ -156755,7 +156865,7 @@ entities:
type: Transform
- proto: RemoteSignaller
entities:
- - uid: 23945
+ - uid: 23969
components:
- pos: 4.3008337,-7.3968306
parent: 2
@@ -156770,71 +156880,71 @@ entities:
type: DeviceLinkSource
- proto: ResearchAndDevelopmentServer
entities:
- - uid: 23946
+ - uid: 23970
components:
- pos: 55.5,-49.5
parent: 2
type: Transform
- proto: Retractor
entities:
- - uid: 23947
+ - uid: 23971
components:
- pos: 0.5210637,-65.43571
parent: 2
type: Transform
- - uid: 23948
+ - uid: 23972
components:
- pos: 73.5331,-48.86455
parent: 2
type: Transform
- proto: RevolverCapGun
entities:
- - uid: 23949
+ - uid: 23973
components:
- pos: 48.521713,-29.492037
parent: 2
type: Transform
- - uid: 23950
+ - uid: 23974
components:
- pos: 3.523116,-35.41609
parent: 2
type: Transform
- proto: RiceSeeds
entities:
- - uid: 23951
+ - uid: 23975
components:
- pos: -32.424732,6.232961
parent: 2
type: Transform
- proto: RockGuitarInstrument
entities:
- - uid: 23952
+ - uid: 23976
components:
- pos: -10.563177,-6.285685
parent: 2
type: Transform
- proto: RollerBed
entities:
- - uid: 23953
+ - uid: 23977
components:
- pos: -29.534147,-77.30682
parent: 2
type: Transform
- - uid: 23954
+ - uid: 23978
components:
- pos: -29.534147,-79.2912
parent: 2
type: Transform
- proto: SalvageHumanCorpseSpawner
entities:
- - uid: 23955
+ - uid: 23979
components:
- pos: -7.5,-97.5
parent: 2
type: Transform
- proto: SalvageMagnet
entities:
- - uid: 23956
+ - uid: 23980
components:
- rot: -1.5707963267948966 rad
pos: -46.5,32.5
@@ -156842,82 +156952,82 @@ entities:
type: Transform
- proto: Saw
entities:
- - uid: 23957
+ - uid: 23981
components:
- pos: 0.4741887,-64.29508
parent: 2
type: Transform
- - uid: 23958
+ - uid: 23982
components:
- pos: 73.565475,-49.416637
parent: 2
type: Transform
- proto: SawElectric
entities:
- - uid: 23959
+ - uid: 23983
components:
- pos: 0.5054387,-66.18094
parent: 2
type: Transform
- proto: Scalpel
entities:
- - uid: 23960
+ - uid: 23984
components:
- pos: 69.49932,-48.836205
parent: 2
type: Transform
- - uid: 23961
+ - uid: 23985
components:
- pos: 0.4585637,-63.810703
parent: 2
type: Transform
- proto: ScalpelShiv
entities:
- - uid: 23962
+ - uid: 23986
components:
- rot: -1.5707963267948966 rad
pos: -7.55561,-100.43354
parent: 2
type: Transform
- - uid: 23963
+ - uid: 23987
components:
- pos: 54.135303,18.76531
parent: 2
type: Transform
- proto: Screwdriver
entities:
- - uid: 23964
+ - uid: 23988
components:
- pos: 43.519844,-49.259262
parent: 2
type: Transform
- - uid: 23965
+ - uid: 23989
components:
- pos: -25.458826,-24.443584
parent: 2
type: Transform
- - uid: 23966
+ - uid: 23990
components:
- pos: -9.599733,-10.450774
parent: 2
type: Transform
- - uid: 23967
+ - uid: 23991
components:
- pos: -62.449627,-28.095568
parent: 2
type: Transform
- - uid: 23968
+ - uid: 23992
components:
- pos: -38.450848,-27.350416
parent: 2
type: Transform
- - uid: 23969
+ - uid: 23993
components:
- rot: 12.566370614359172 rad
pos: 72.048706,-43.392498
parent: 2
type: Transform
- - uid: 23970
+ - uid: 23994
components:
- rot: 3.141592653589793 rad
pos: 12.463634,20.302036
@@ -156925,7 +157035,7 @@ entities:
type: Transform
- proto: SecurityTechFab
entities:
- - uid: 23971
+ - uid: 23995
components:
- pos: 20.5,22.5
parent: 2
@@ -156937,49 +157047,49 @@ entities:
type: MaterialStorage
- proto: SeedExtractor
entities:
- - uid: 23972
+ - uid: 23996
components:
- pos: -9.5,12.5
parent: 2
type: Transform
- - uid: 23973
+ - uid: 23997
components:
- pos: 57.5,8.5
parent: 2
type: Transform
- proto: ShardGlass
entities:
- - uid: 23974
+ - uid: 23998
components:
- pos: -54.711452,-83.287796
parent: 2
type: Transform
- proto: ShardGlassReinforced
entities:
- - uid: 23975
+ - uid: 23999
components:
- rot: 1.5707963267948966 rad
pos: -54.638016,-82.45104
parent: 2
type: Transform
- - uid: 23976
+ - uid: 24000
components:
- rot: 3.141592653589793 rad
pos: 2.3392181,49.47093
parent: 2
type: Transform
- - uid: 23977
+ - uid: 24001
components:
- rot: 3.141592653589793 rad
pos: 1.651718,49.767803
parent: 2
type: Transform
- - uid: 23978
+ - uid: 24002
components:
- pos: 3.3860931,48.767803
parent: 2
type: Transform
- - uid: 23979
+ - uid: 24003
components:
- rot: -1.5707963267948966 rad
pos: 1.745468,48.361553
@@ -156987,31 +157097,31 @@ entities:
type: Transform
- proto: SheetGlass
entities:
- - uid: 23980
+ - uid: 24004
components:
- pos: 38.525932,-39.04589
parent: 2
type: Transform
- count: 28
type: Stack
- - uid: 23981
+ - uid: 24005
components:
- pos: -42.541218,-17.668886
parent: 2
type: Transform
- - uid: 23982
+ - uid: 24006
components:
- pos: -55.463116,-25.47082
parent: 2
type: Transform
- - uid: 23983
+ - uid: 24007
components:
- pos: -24.799974,-52.361668
parent: 2
type: Transform
- proto: SheetGlass1
entities:
- - uid: 23984
+ - uid: 24008
components:
- rot: 12.566370614359172 rad
pos: 77.45773,-46.509197
@@ -157021,1158 +157131,1331 @@ entities:
type: Stack
- proto: SheetPaper1
entities:
- - uid: 23985
+ - uid: 24009
components:
- pos: -4.555317,-48.4215
parent: 2
type: Transform
- proto: SheetPlasma
entities:
- - uid: 23986
+ - uid: 24010
components:
- pos: 62.516293,-33.369144
parent: 2
type: Transform
- proto: SheetPlasma1
entities:
- - uid: 23987
+ - uid: 24011
components:
- pos: 39.28695,-35.266556
parent: 2
type: Transform
- - uid: 23988
+ - uid: 24012
components:
- pos: 39.583824,-35.40718
parent: 2
type: Transform
- proto: SheetPlasteel
entities:
- - uid: 23989
+ - uid: 24013
components:
- pos: -42.49803,-16.612768
parent: 2
type: Transform
- - uid: 23990
+ - uid: 24014
components:
- pos: -43.304523,25.592714
parent: 2
type: Transform
- proto: SheetPlastic
entities:
- - uid: 23991
+ - uid: 24015
components:
- pos: 38.479057,-36.60921
parent: 2
type: Transform
- - uid: 23992
+ - uid: 24016
components:
- pos: -42.44606,-18.09971
parent: 2
type: Transform
- proto: SheetRGlass
entities:
- - uid: 23993
+ - uid: 24017
components:
- pos: -42.558216,-17.530426
parent: 2
type: Transform
- proto: SheetSteel
entities:
- - uid: 23994
+ - uid: 24018
components:
- rot: 3.141592653589793 rad
pos: -37.461926,-7.6284776
parent: 2
type: Transform
- - uid: 23995
+ - uid: 24019
components:
- pos: 38.51507,-38.238213
parent: 2
type: Transform
- - uid: 23996
+ - uid: 24020
components:
- pos: 38.494682,-37.42171
parent: 2
type: Transform
- - uid: 23997
+ - uid: 24021
components:
- pos: -27.53877,-10.535285
parent: 2
type: Transform
- - uid: 23998
+ - uid: 24022
components:
- pos: -39.513657,-16.565893
parent: 2
type: Transform
- - uid: 23999
+ - uid: 24023
components:
- pos: -39.544514,-17.164497
parent: 2
type: Transform
- - uid: 24000
+ - uid: 24024
components:
- pos: 58.50727,52.410095
parent: 2
type: Transform
- - uid: 24001
+ - uid: 24025
components:
- pos: 77.369896,-46.771843
parent: 2
type: Transform
- - uid: 24002
+ - uid: 24026
components:
- pos: -42.505978,14.552313
parent: 2
type: Transform
- - uid: 24003
+ - uid: 24027
components:
- pos: -72.541214,-39.47832
parent: 2
type: Transform
- - uid: 24004
+ - uid: 24028
components:
- pos: -35.44409,-49.59786
parent: 2
type: Transform
- proto: ShipBattlemap
entities:
- - uid: 24005
+ - uid: 24029
components:
- pos: 12.360678,-6.028252
parent: 2
type: Transform
- proto: Shovel
entities:
- - uid: 24006
+ - uid: 24030
components:
- pos: -52.711685,-67.34979
parent: 2
type: Transform
- - uid: 24007
+ - uid: 24031
components:
- pos: -40.5417,35.280518
parent: 2
type: Transform
- - uid: 24008
+ - uid: 24032
components:
- pos: -40.51045,34.905518
parent: 2
type: Transform
- - uid: 24009
+ - uid: 24033
components:
- pos: -48.500484,26.545332
parent: 2
type: Transform
- - uid: 24010
+ - uid: 24034
components:
- pos: -9.892679,54.810154
parent: 2
type: Transform
- proto: ShowcaseRobot
entities:
- - uid: 24011
+ - uid: 24035
components:
- pos: 62.5,-45.5
parent: 2
type: Transform
- - uid: 24012
+ - uid: 24036
components:
- pos: -0.5,63.5
parent: 2
type: Transform
- - uid: 24013
+ - uid: 24037
components:
- pos: -2.5,63.5
parent: 2
type: Transform
- proto: ShowcaseRobotAntique
entities:
- - uid: 24014
+ - uid: 24038
components:
- pos: 61.5,-46.5
parent: 2
type: Transform
- proto: ShowcaseRobotMarauder
entities:
- - uid: 24015
+ - uid: 24039
components:
- pos: 63.5,-46.5
parent: 2
type: Transform
- proto: ShowcaseRobotWhite
entities:
- - uid: 24016
+ - uid: 24040
components:
- pos: 62.5,-47.5
parent: 2
type: Transform
- proto: ShuttersNormal
entities:
- - uid: 24017
+ - uid: 24041
components:
- pos: -9.5,-24.5
parent: 2
type: Transform
- - uid: 24018
+ - uid: 24042
components:
- pos: -8.5,-24.5
parent: 2
type: Transform
- - uid: 24019
+ - uid: 24043
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-45.5
parent: 2
type: Transform
- links:
- - 24162
+ - 24203
type: DeviceLinkSink
- - uid: 24020
+ - uid: 24044
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-46.5
parent: 2
type: Transform
- links:
- - 24162
+ - 24203
type: DeviceLinkSink
- proto: ShuttersNormalOpen
entities:
- - uid: 24021
+ - uid: 24045
components:
- pos: -4.5,20.5
parent: 2
type: Transform
- invokeCounter: 4
links:
- - 24210
+ - 24251
type: DeviceLinkSink
- - uid: 24022
+ - uid: 24046
components:
- pos: -5.5,20.5
parent: 2
type: Transform
- invokeCounter: 4
links:
- - 24210
+ - 24251
type: DeviceLinkSink
- - uid: 24023
+ - uid: 24047
components:
- rot: -1.5707963267948966 rad
pos: 15.5,13.5
parent: 2
type: Transform
- links:
- - 24159
+ - 24200
type: DeviceLinkSink
- - uid: 24024
+ - uid: 24048
components:
- rot: -1.5707963267948966 rad
pos: 15.5,9.5
parent: 2
type: Transform
- - uid: 24025
+ - uid: 24049
components:
- pos: -32.5,32.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24231
type: DeviceLinkSink
- - uid: 24026
+ - uid: 24050
components:
- pos: 37.5,-0.5
parent: 2
type: Transform
- links:
- - 24161
+ - 24202
type: DeviceLinkSink
- - uid: 24027
+ - uid: 24051
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- links:
- - 24206
+ - 24247
type: DeviceLinkSink
- - uid: 24028
+ - uid: 24052
components:
- rot: -1.5707963267948966 rad
pos: 15.5,11.5
parent: 2
type: Transform
- links:
- - 24159
+ - 24200
type: DeviceLinkSink
- - uid: 24029
+ - uid: 24053
components:
- rot: -1.5707963267948966 rad
pos: 15.5,10.5
parent: 2
type: Transform
- links:
- - 24159
+ - 24200
type: DeviceLinkSink
- - uid: 24030
+ - uid: 24054
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- links:
- - 24159
+ - 24200
type: DeviceLinkSink
- - uid: 24031
+ - uid: 24055
components:
- pos: 17.5,15.5
parent: 2
type: Transform
- links:
- - 24159
+ - 24200
type: DeviceLinkSink
- - uid: 24032
+ - uid: 24056
components:
- pos: -6.5,4.5
parent: 2
type: Transform
- links:
- - 24206
+ - 24247
type: DeviceLinkSink
- - uid: 24033
+ - uid: 24057
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- links:
- - 24158
+ - 24199
type: DeviceLinkSink
- - uid: 24034
+ - uid: 24058
components:
- rot: -1.5707963267948966 rad
pos: 35.5,4.5
parent: 2
type: Transform
- links:
- - 24200
+ - 24241
type: DeviceLinkSink
- - uid: 24035
+ - uid: 24059
components:
- rot: -1.5707963267948966 rad
pos: 15.5,12.5
parent: 2
type: Transform
- links:
- - 24159
+ - 24200
type: DeviceLinkSink
- - uid: 24036
+ - uid: 24060
components:
- pos: 61.5,-56.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24037
+ - uid: 24061
components:
- rot: -1.5707963267948966 rad
pos: 15.5,14.5
parent: 2
type: Transform
- links:
- - 24159
+ - 24200
type: DeviceLinkSink
- - uid: 24038
+ - uid: 24062
components:
- pos: 45.5,9.5
parent: 2
type: Transform
- links:
- - 24158
+ - 24199
type: DeviceLinkSink
- - uid: 24039
+ - uid: 24063
components:
- pos: 43.5,7.5
parent: 2
type: Transform
- links:
- - 24158
+ - 24199
type: DeviceLinkSink
- - uid: 24040
+ - uid: 24064
components:
- pos: 62.5,-56.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24041
+ - uid: 24065
components:
- pos: 63.5,-56.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24042
+ - uid: 24066
components:
- pos: -30.5,27.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24231
type: DeviceLinkSink
- - uid: 24043
+ - uid: 24067
components:
- pos: 29.5,9.5
parent: 2
type: Transform
- links:
- - 24200
+ - 24241
type: DeviceLinkSink
- - uid: 24044
+ - uid: 24068
components:
- pos: 34.5,9.5
parent: 2
type: Transform
- links:
- - 24200
+ - 24241
type: DeviceLinkSink
- - uid: 24045
+ - uid: 24069
components:
- pos: -31.5,27.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24231
type: DeviceLinkSink
- - uid: 24046
+ - uid: 24070
components:
- rot: -1.5707963267948966 rad
pos: 35.5,7.5
parent: 2
type: Transform
- links:
- - 24200
+ - 24241
type: DeviceLinkSink
- - uid: 24047
+ - uid: 24071
components:
- pos: -33.5,27.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24231
type: DeviceLinkSink
- - uid: 24048
+ - uid: 24072
components:
- pos: -49.5,13.5
parent: 2
type: Transform
- links:
- - 24176
+ - 24217
type: DeviceLinkSink
- - uid: 24049
+ - uid: 24073
components:
- pos: -48.5,13.5
parent: 2
type: Transform
- links:
- - 24176
+ - 24217
type: DeviceLinkSink
- - uid: 24050
+ - uid: 24074
components:
- pos: -31.5,32.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24231
type: DeviceLinkSink
- - uid: 24051
+ - uid: 24075
components:
- pos: 32.5,9.5
parent: 2
type: Transform
- links:
- - 24200
+ - 24241
type: DeviceLinkSink
- - uid: 24052
+ - uid: 24076
components:
- pos: 39.5,-0.5
parent: 2
type: Transform
- links:
- - 24161
+ - 24202
type: DeviceLinkSink
- - uid: 24053
+ - uid: 24077
components:
- pos: -33.5,32.5
parent: 2
type: Transform
- links:
- - 24190
+ - 24231
type: DeviceLinkSink
- - uid: 24054
+ - uid: 24078
components:
- pos: -46.5,13.5
parent: 2
type: Transform
- links:
- - 24176
+ - 24217
type: DeviceLinkSink
- - uid: 24055
+ - uid: 24079
components:
- pos: -47.5,13.5
parent: 2
type: Transform
- links:
- - 24176
+ - 24217
type: DeviceLinkSink
- - uid: 24056
+ - uid: 24080
components:
- pos: 43.5,5.5
parent: 2
type: Transform
- links:
- - 24158
+ - 24199
type: DeviceLinkSink
- - uid: 24057
+ - uid: 24081
components:
- pos: 59.5,-54.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24058
+ - uid: 24082
components:
- pos: 65.5,-54.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24059
+ - uid: 24083
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-51.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24060
+ - uid: 24084
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-52.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24061
+ - uid: 24085
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-51.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24062
+ - uid: 24086
components:
- rot: -1.5707963267948966 rad
pos: 58.5,-52.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24063
+ - uid: 24087
components:
- pos: 61.5,-50.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24064
+ - uid: 24088
components:
- pos: 63.5,-50.5
parent: 2
type: Transform
- links:
- - 24201
+ - 24242
type: DeviceLinkSink
- - uid: 24065
+ - uid: 24089
components:
- pos: -20.5,-58.5
parent: 2
type: Transform
- links:
- - 24202
+ - 24243
type: DeviceLinkSink
- - uid: 24066
+ - uid: 24090
components:
- pos: -18.5,-58.5
parent: 2
type: Transform
- links:
- - 24202
+ - 24243
type: DeviceLinkSink
- - uid: 24067
+ - uid: 24091
components:
- pos: -37.5,-14.5
parent: 2
type: Transform
- - uid: 24068
+ - uid: 24092
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-15.5
parent: 2
type: Transform
- links:
- - 24156
+ - 24197
type: DeviceLinkSink
- - uid: 24069
+ - uid: 24093
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-17.5
parent: 2
type: Transform
- links:
- - 24156
+ - 24197
type: DeviceLinkSink
- - uid: 24070
+ - uid: 24094
components:
- rot: -1.5707963267948966 rad
pos: 7.5,9.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24071
+ - uid: 24095
components:
- rot: -1.5707963267948966 rad
pos: 7.5,8.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24072
+ - uid: 24096
components:
- rot: -1.5707963267948966 rad
pos: 7.5,7.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24073
+ - uid: 24097
components:
- pos: 2.5,4.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24074
+ - uid: 24098
components:
- pos: 1.5,4.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24075
+ - uid: 24099
components:
- pos: 0.5,4.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24076
+ - uid: 24100
components:
- pos: 5.5,11.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24077
+ - uid: 24101
components:
- pos: 4.5,11.5
parent: 2
type: Transform
- links:
- - 24204
+ - 24245
type: DeviceLinkSink
- - uid: 24078
+ - uid: 24102
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-46.5
parent: 2
type: Transform
- links:
- - 24157
+ - 24198
type: DeviceLinkSink
- - uid: 24079
+ - uid: 24103
components:
- pos: 34.5,18.5
parent: 2
type: Transform
- links:
- - 24205
+ - 24246
type: DeviceLinkSink
- - uid: 24080
+ - uid: 24104
components:
- pos: 35.5,18.5
parent: 2
type: Transform
- links:
- - 24205
+ - 24246
type: DeviceLinkSink
- - uid: 24081
+ - uid: 24105
components:
- pos: 36.5,18.5
parent: 2
type: Transform
- links:
- - 24205
+ - 24246
type: DeviceLinkSink
- - uid: 24082
+ - uid: 24106
components:
- pos: -7.5,4.5
parent: 2
type: Transform
- links:
- - 24206
+ - 24247
type: DeviceLinkSink
- - uid: 24083
+ - uid: 24107
components:
- rot: 1.5707963267948966 rad
pos: 48.5,7.5
parent: 2
type: Transform
- links:
- - 24158
+ - 24199
type: DeviceLinkSink
- - uid: 24084
+ - uid: 24108
components:
- pos: 46.5,9.5
parent: 2
type: Transform
- links:
- - 24158
+ - 24199
type: DeviceLinkSink
- - uid: 24085
+ - uid: 24109
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-1.5
parent: 2
type: Transform
- links:
- - 24161
+ - 24202
type: DeviceLinkSink
- - uid: 24086
+ - uid: 24110
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-2.5
parent: 2
type: Transform
- links:
- - 24161
+ - 24202
type: DeviceLinkSink
- - uid: 24087
+ - uid: 24111
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-4.5
parent: 2
type: Transform
- links:
- - 24161
+ - 24202
type: DeviceLinkSink
- - uid: 24088
+ - uid: 24112
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-5.5
parent: 2
type: Transform
- links:
- - 24161
+ - 24202
type: DeviceLinkSink
- - uid: 24089
+ - uid: 24113
components:
- pos: 41.5,-0.5
parent: 2
type: Transform
- links:
- - 24207
+ - 24248
type: DeviceLinkSink
- - uid: 24090
+ - uid: 24114
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- links:
- - 24207
+ - 24248
type: DeviceLinkSink
- - uid: 24091
+ - uid: 24115
components:
- pos: 43.5,-0.5
parent: 2
type: Transform
- links:
- - 24207
+ - 24248
type: DeviceLinkSink
- - uid: 24092
+ - uid: 24116
components:
- pos: 46.5,3.5
parent: 2
type: Transform
- links:
- - 24158
+ - 24199
type: DeviceLinkSink
- - uid: 24093
+ - uid: 24117
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-47.5
parent: 2
type: Transform
- links:
- - 24157
+ - 24198
type: DeviceLinkSink
- - uid: 24094
+ - uid: 24118
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-48.5
parent: 2
type: Transform
- links:
- - 24157
+ - 24198
type: DeviceLinkSink
- - uid: 24095
+ - uid: 24119
components:
- pos: 3.5,-44.5
parent: 2
type: Transform
- links:
- - 24157
+ - 24198
type: DeviceLinkSink
- - uid: 24096
+ - uid: 24120
components:
- pos: 4.5,-44.5
parent: 2
type: Transform
- links:
- - 24157
+ - 24198
type: DeviceLinkSink
- - uid: 24097
+ - uid: 24121
components:
- pos: 5.5,-44.5
parent: 2
type: Transform
- links:
- - 24157
+ - 24198
type: DeviceLinkSink
- - uid: 24098
+ - uid: 24122
components:
- pos: 3.5,-51.5
parent: 2
type: Transform
- links:
- - 24157
+ - 24198
type: DeviceLinkSink
- - uid: 24099
+ - uid: 24123
components:
- pos: 23.5,5.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24100
+ - uid: 24124
components:
- pos: 22.5,5.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24101
+ - uid: 24125
components:
- pos: 21.5,5.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24102
+ - uid: 24126
components:
- pos: 25.5,5.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24103
+ - uid: 24127
components:
- pos: 26.5,5.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24104
+ - uid: 24128
components:
- pos: 27.5,5.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24105
+ - uid: 24129
components:
- pos: 27.5,-3.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24106
+ - uid: 24130
components:
- pos: 26.5,-3.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24107
+ - uid: 24131
components:
- pos: 25.5,-3.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24108
+ - uid: 24132
components:
- pos: 23.5,-3.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24109
+ - uid: 24133
components:
- pos: 22.5,-3.5
parent: 2
type: Transform
- - uid: 24110
+ - links:
+ - 24249
+ type: DeviceLinkSink
+ - uid: 24134
components:
- pos: 21.5,-3.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24111
+ - uid: 24135
components:
- rot: 1.5707963267948966 rad
pos: 19.5,3.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24112
+ - uid: 24136
components:
- rot: 1.5707963267948966 rad
pos: 19.5,2.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24113
+ - uid: 24137
components:
- rot: 1.5707963267948966 rad
pos: 19.5,1.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24114
+ - uid: 24138
components:
- rot: 1.5707963267948966 rad
pos: 19.5,0.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24115
+ - uid: 24139
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-0.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24116
+ - uid: 24140
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-1.5
parent: 2
type: Transform
- links:
- - 24208
+ - 24249
type: DeviceLinkSink
- - uid: 24117
+ - uid: 24141
components:
- pos: 22.5,-20.5
parent: 2
type: Transform
- - uid: 24118
+ - links:
+ - 24250
+ type: DeviceLinkSink
+ - uid: 24142
components:
- pos: 23.5,-20.5
parent: 2
type: Transform
- - uid: 24119
+ - links:
+ - 24250
+ type: DeviceLinkSink
+ - uid: 24143
components:
- pos: 24.5,-20.5
parent: 2
type: Transform
- - uid: 24120
+ - links:
+ - 24250
+ type: DeviceLinkSink
+ - uid: 24144
components:
- pos: 25.5,-20.5
parent: 2
type: Transform
- - uid: 24121
+ - links:
+ - 24250
+ type: DeviceLinkSink
+ - uid: 24145
components:
- pos: 26.5,-20.5
parent: 2
type: Transform
- - uid: 24122
+ - links:
+ - 24250
+ type: DeviceLinkSink
+ - uid: 24146
components:
- pos: 27.5,-20.5
parent: 2
type: Transform
- - uid: 24123
+ - links:
+ - 24250
+ type: DeviceLinkSink
+ - uid: 24147
components:
- pos: 28.5,-20.5
parent: 2
type: Transform
- - uid: 24124
+ - links:
+ - 24250
+ type: DeviceLinkSink
+ - uid: 24148
components:
- pos: 4.5,-3.5
parent: 2
type: Transform
- links:
- - 24214
+ - 24267
type: DeviceLinkSink
- - uid: 24125
+ - uid: 24149
components:
- pos: 1.5,-3.5
parent: 2
type: Transform
- links:
- - 24214
+ - 24267
type: DeviceLinkSink
- - uid: 24126
+ - uid: 24150
components:
- pos: 3.5,-3.5
parent: 2
type: Transform
- links:
- - 24214
+ - 24267
type: DeviceLinkSink
- - uid: 24127
+ - uid: 24151
components:
- pos: 2.5,-3.5
parent: 2
type: Transform
- links:
- - 24214
+ - 24267
+ type: DeviceLinkSink
+ - uid: 24152
+ components:
+ - pos: 23.5,-40.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24269
+ type: DeviceLinkSink
+ - uid: 24153
+ components:
+ - pos: 24.5,-40.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24269
+ type: DeviceLinkSink
+ - uid: 24154
+ components:
+ - pos: 26.5,-40.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24269
+ type: DeviceLinkSink
+ - uid: 24155
+ components:
+ - pos: 27.5,-40.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24269
+ type: DeviceLinkSink
+ - uid: 24156
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-36.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24269
+ type: DeviceLinkSink
+ - uid: 24157
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-35.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24269
+ type: DeviceLinkSink
+ - uid: 24158
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-34.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24269
+ type: DeviceLinkSink
+ - uid: 24159
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,-9.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24268
+ type: DeviceLinkSink
+ - uid: 24160
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,-10.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24268
+ type: DeviceLinkSink
+ - uid: 24161
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,-13.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24268
+ type: DeviceLinkSink
+ - uid: 24162
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,-14.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24268
+ type: DeviceLinkSink
+ - uid: 24163
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,24.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24257
+ type: DeviceLinkSink
+ - uid: 24164
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,23.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24257
+ type: DeviceLinkSink
+ - uid: 24165
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,19.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24257
+ type: DeviceLinkSink
+ - uid: 24166
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -21.5,18.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24257
+ type: DeviceLinkSink
+ - uid: 24167
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 37.5,-35.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24270
+ type: DeviceLinkSink
+ - uid: 24168
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 37.5,-36.5
+ parent: 2
+ type: Transform
+ - links:
+ - 24270
type: DeviceLinkSink
- proto: ShuttleConsoleCircuitboard
entities:
- - uid: 24128
+ - uid: 24169
components:
- pos: 8.934531,42.902378
parent: 2
type: Transform
- proto: ShuttleWindow
entities:
- - uid: 24129
+ - uid: 24170
components:
- rot: -1.5707963267948966 rad
pos: -72.5,-57.5
parent: 2
type: Transform
- - uid: 24130
+ - uid: 24171
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-51.5
parent: 2
type: Transform
- - uid: 24131
+ - uid: 24172
components:
- rot: 3.141592653589793 rad
pos: -80.5,-53.5
parent: 2
type: Transform
- - uid: 24132
+ - uid: 24173
components:
- rot: 1.5707963267948966 rad
pos: -77.5,-56.5
parent: 2
type: Transform
- - uid: 24133
+ - uid: 24174
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-54.5
parent: 2
type: Transform
- - uid: 24134
+ - uid: 24175
components:
- pos: -72.5,-50.5
parent: 2
type: Transform
- - uid: 24135
+ - uid: 24176
components:
- rot: 3.141592653589793 rad
pos: -78.5,-51.5
parent: 2
type: Transform
- - uid: 24136
+ - uid: 24177
components:
- rot: 1.5707963267948966 rad
pos: -78.5,-56.5
parent: 2
type: Transform
- - uid: 24137
+ - uid: 24178
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-55.5
parent: 2
type: Transform
- - uid: 24138
+ - uid: 24179
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-54.5
parent: 2
type: Transform
- - uid: 24139
+ - uid: 24180
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-53.5
parent: 2
type: Transform
- - uid: 24140
+ - uid: 24181
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-52.5
@@ -158180,35 +158463,35 @@ entities:
type: Transform
- proto: ShuttleWindowDiagonal
entities:
- - uid: 24141
+ - uid: 24182
components:
- rot: 1.5707963267948966 rad
pos: -79.5,-56.5
parent: 2
type: Transform
- - uid: 24142
+ - uid: 24183
components:
- rot: 1.5707963267948966 rad
pos: -80.5,-55.5
parent: 2
type: Transform
- - uid: 24143
+ - uid: 24184
components:
- rot: 3.141592653589793 rad
pos: -79.5,-52.5
parent: 2
type: Transform
- - uid: 24144
+ - uid: 24185
components:
- pos: -80.5,-52.5
parent: 2
type: Transform
- - uid: 24145
+ - uid: 24186
components:
- pos: -79.5,-51.5
parent: 2
type: Transform
- - uid: 24146
+ - uid: 24187
components:
- rot: -1.5707963267948966 rad
pos: -79.5,-55.5
@@ -158216,14 +158499,14 @@ entities:
type: Transform
- proto: SignAi
entities:
- - uid: 24147
+ - uid: 24188
components:
- pos: -3.5,60.5
parent: 2
type: Transform
- proto: SignalButtonDirectional
entities:
- - uid: 24148
+ - uid: 24189
components:
- rot: -1.5707963267948966 rad
pos: -50.5,13.5
@@ -158233,7 +158516,7 @@ entities:
112:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24149
+ - uid: 24190
components:
- rot: 1.5707963267948966 rad
pos: -53.5,8.5
@@ -158243,7 +158526,7 @@ entities:
113:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24150
+ - uid: 24191
components:
- rot: 1.5707963267948966 rad
pos: -44.5,10.5
@@ -158253,7 +158536,7 @@ entities:
111:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24151
+ - uid: 24192
components:
- pos: -22.5,40.5
parent: 2
@@ -158262,7 +158545,7 @@ entities:
797:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24152
+ - uid: 24193
components:
- rot: 3.141592653589793 rad
pos: -22.5,28.5
@@ -158272,7 +158555,7 @@ entities:
114:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24153
+ - uid: 24194
components:
- rot: -1.5707963267948966 rad
pos: -17.5,35.5
@@ -158284,7 +158567,7 @@ entities:
677:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24154
+ - uid: 24195
components:
- rot: -1.5707963267948966 rad
pos: -25.5,44.5
@@ -158294,8 +158577,10 @@ entities:
796:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24155
+ - uid: 24196
components:
+ - name: door switch
+ type: MetaData
- rot: 1.5707963267948966 rad
pos: -13.5,33.5
parent: 2
@@ -158304,22 +158589,24 @@ entities:
116:
- Pressed: DoorBolt
type: DeviceLinkSource
- - uid: 24156
+ - uid: 24197
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-18.5
parent: 2
type: Transform
- linkedPorts:
- 24069:
+ 24093:
- Pressed: Toggle
- 24068:
+ 24092:
- Pressed: Toggle
type: DeviceLinkSource
- proto: SignalSwitch
entities:
- - uid: 24157
+ - uid: 24198
components:
+ - name: shutters switch
+ type: MetaData
- rot: -1.5707963267948966 rad
pos: 8.5,-48.5
parent: 2
@@ -158327,30 +158614,30 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24098:
+ 24122:
- On: Open
- Off: Close
- 24094:
+ 24118:
- On: Open
- Off: Close
- 24093:
+ 24117:
- On: Open
- Off: Close
- 24078:
+ 24102:
- On: Open
- Off: Close
- 24095:
+ 24119:
- On: Open
- Off: Close
- 24096:
+ 24120:
- On: Open
- Off: Close
- 24097:
+ 24121:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24158
+ - uid: 24199
components:
- rot: -1.5707963267948966 rad
pos: 47.5,8.5
@@ -158359,62 +158646,66 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24033:
+ 24057:
- On: Open
- Off: Close
- 24083:
+ 24107:
- On: Open
- Off: Close
- 24084:
+ 24108:
- On: Open
- Off: Close
- 24038:
+ 24062:
- On: Open
- Off: Close
- 24039:
+ 24063:
- On: Open
- Off: Close
- 24056:
+ 24080:
- On: Open
- Off: Close
- 24092:
+ 24116:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24159
+ - uid: 24200
components:
+ - name: shutters switch
+ type: MetaData
- pos: 16.5,15.5
parent: 2
type: Transform
- state: True
type: SignalSwitch
- linkedPorts:
- 24023:
+ 24047:
- On: Open
- Off: Close
- 24028:
+ 24052:
- On: Open
- Off: Close
- 24029:
+ 24053:
- On: Open
- Off: Close
- 24035:
+ 24059:
- On: Open
- Off: Close
- 24031:
+ 24055:
- On: Open
- Off: Close
- 24030:
+ 24054:
- On: Open
- Off: Close
- 24037:
+ 24061:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24160
+ - uid: 24201
components:
+ - name: blast door switch
+ type: MetaData
- rot: 3.141592653589793 rad
pos: -13.5,-16.5
parent: 2
@@ -158425,7 +158716,7 @@ entities:
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24161
+ - uid: 24202
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-3.5
@@ -158434,42 +158725,42 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24052:
+ 24076:
- On: Open
- Off: Close
- 24026:
+ 24050:
- On: Open
- Off: Close
- 24085:
+ 24109:
- On: Open
- Off: Close
- 24086:
+ 24110:
- On: Open
- Off: Close
- 24087:
+ 24111:
- On: Open
- Off: Close
- 24088:
+ 24112:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24162
+ - uid: 24203
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-44.5
parent: 2
type: Transform
- linkedPorts:
- 24019:
+ 24043:
- On: Open
- Off: Close
- 24020:
+ 24044:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24163
+ - uid: 24204
components:
- rot: 3.141592653589793 rad
pos: 70.5,-39.5
@@ -158480,7 +158771,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24164
+ - uid: 24205
components:
- pos: 47.5,-55.5
parent: 2
@@ -158499,7 +158790,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24165
+ - uid: 24206
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-56.5
@@ -158510,7 +158801,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24166
+ - uid: 24207
components:
- pos: -51.5,32.5
parent: 2
@@ -158521,7 +158812,7 @@ entities:
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24167
+ - uid: 24208
components:
- rot: 3.141592653589793 rad
pos: 60.5,-55.5
@@ -158535,7 +158826,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24168
+ - uid: 24209
components:
- pos: 16.5,-51.5
parent: 2
@@ -158545,7 +158836,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24169
+ - uid: 24210
components:
- pos: -62.5,-26.5
parent: 2
@@ -158568,7 +158859,7 @@ entities:
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24170
+ - uid: 24211
components:
- pos: -52.5,-11.5
parent: 2
@@ -158592,7 +158883,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24171
+ - uid: 24212
components:
- pos: -36.5,-40.5
parent: 2
@@ -158611,7 +158902,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24172
+ - uid: 24213
components:
- pos: -51.5,21.5
parent: 2
@@ -158625,7 +158916,7 @@ entities:
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24173
+ - uid: 24214
components:
- pos: -49.5,24.5
parent: 2
@@ -158638,7 +158929,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24174
+ - uid: 24215
components:
- pos: 50.5,48.5
parent: 2
@@ -158653,7 +158944,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24175
+ - uid: 24216
components:
- pos: 52.5,48.5
parent: 2
@@ -158668,7 +158959,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24176
+ - uid: 24217
components:
- pos: -46.5,17.5
parent: 2
@@ -158676,21 +158967,21 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24048:
+ 24072:
- On: Open
- Off: Close
- 24049:
+ 24073:
- On: Open
- Off: Close
- 24054:
+ 24078:
- On: Open
- Off: Close
- 24055:
+ 24079:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24177
+ - uid: 24218
components:
- pos: 58.5,48.5
parent: 2
@@ -158705,7 +158996,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24178
+ - uid: 24219
components:
- pos: 54.5,46.5
parent: 2
@@ -158718,7 +159009,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24179
+ - uid: 24220
components:
- pos: 52.5,46.5
parent: 2
@@ -158731,7 +159022,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24180
+ - uid: 24221
components:
- pos: 54.5,48.5
parent: 2
@@ -158746,7 +159037,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24181
+ - uid: 24222
components:
- pos: 56.5,44.5
parent: 2
@@ -158761,7 +159052,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24182
+ - uid: 24223
components:
- pos: 50.5,44.5
parent: 2
@@ -158776,7 +159067,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24183
+ - uid: 24224
components:
- pos: 52.5,44.5
parent: 2
@@ -158791,7 +159082,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24184
+ - uid: 24225
components:
- pos: 58.5,46.5
parent: 2
@@ -158804,7 +159095,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24185
+ - uid: 24226
components:
- pos: 54.5,44.5
parent: 2
@@ -158819,7 +159110,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24186
+ - uid: 24227
components:
- pos: 50.5,46.5
parent: 2
@@ -158832,7 +159123,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24187
+ - uid: 24228
components:
- pos: 56.5,46.5
parent: 2
@@ -158847,7 +159138,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24188
+ - uid: 24229
components:
- pos: 58.5,44.5
parent: 2
@@ -158865,7 +159156,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24189
+ - uid: 24230
components:
- pos: 56.5,48.5
parent: 2
@@ -158884,7 +159175,7 @@ entities:
- On: Close
- Off: Open
type: DeviceLinkSource
- - uid: 24190
+ - uid: 24231
components:
- rot: 1.5707963267948966 rad
pos: -35.5,29.5
@@ -158893,27 +159184,27 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24047:
+ 24071:
- On: Open
- Off: Close
- 24045:
+ 24069:
- On: Open
- Off: Close
- 24042:
+ 24066:
- On: Open
- Off: Close
- 24053:
+ 24077:
- On: Open
- Off: Close
- 24025:
+ 24049:
- On: Open
- Off: Close
- 24050:
+ 24074:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24191
+ - uid: 24232
components:
- pos: 54.5,51.5
parent: 2
@@ -158930,7 +159221,7 @@ entities:
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24192
+ - uid: 24233
components:
- pos: 5.5,49.5
parent: 2
@@ -158946,7 +159237,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24193
+ - uid: 24234
components:
- pos: 27.5,44.5
parent: 2
@@ -158985,7 +159276,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24194
+ - uid: 24235
components:
- pos: -28.5,-96.5
parent: 2
@@ -158998,7 +159289,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24195
+ - uid: 24236
components:
- pos: -16.5,-96.5
parent: 2
@@ -159011,7 +159302,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24196
+ - uid: 24237
components:
- rot: 3.141592653589793 rad
pos: -5.5,-89.5
@@ -159045,7 +159336,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24197
+ - uid: 24238
components:
- pos: -8.5,-94.5
parent: 2
@@ -159078,7 +159369,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24198
+ - uid: 24239
components:
- rot: 3.141592653589793 rad
pos: 48.5,-59.5
@@ -159089,7 +159380,7 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24199
+ - uid: 24240
components:
- pos: 69.5,-32.5
parent: 2
@@ -159099,32 +159390,34 @@ entities:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24200
+ - uid: 24241
components:
+ - name: cell shutter switch
+ type: MetaData
- pos: 33.483017,17.346874
parent: 2
type: Transform
- state: True
type: SignalSwitch
- linkedPorts:
- 24043:
+ 24067:
- On: Open
- Off: Close
- 24051:
+ 24075:
- On: Open
- Off: Close
- 24044:
+ 24068:
- On: Open
- Off: Close
- 24046:
+ 24070:
- On: Open
- Off: Close
- 24034:
+ 24058:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24201
+ - uid: 24242
components:
- rot: 3.141592653589793 rad
pos: 64.5,-55.5
@@ -159133,43 +159426,45 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24041:
+ 24065:
- On: Open
- Off: Close
- 24040:
+ 24064:
- On: Open
- Off: Close
- 24036:
+ 24060:
- On: Open
- Off: Close
- 24058:
+ 24082:
- On: Open
- Off: Close
- 24057:
+ 24081:
- On: Open
- Off: Close
- 24060:
+ 24084:
- On: Open
- Off: Close
- 24059:
+ 24083:
- On: Open
- Off: Close
- 24061:
+ 24085:
- On: Open
- Off: Close
- 24062:
+ 24086:
- On: Open
- Off: Close
- 24063:
+ 24087:
- On: Open
- Off: Close
- 24064:
+ 24088:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24202
+ - uid: 24243
components:
+ - name: shutters switch
+ type: MetaData
- rot: -1.5707963267948966 rad
pos: -16.5,-55.5
parent: 2
@@ -159177,15 +159472,17 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24066:
+ 24090:
- On: Open
- Off: Close
- 24065:
+ - Status: Toggle
+ 24089:
- On: Open
- Off: Close
+ - Status: Toggle
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24203
+ - uid: 24244
components:
- pos: -51.5,36.5
parent: 2
@@ -159196,8 +159493,10 @@ entities:
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24204
+ - uid: 24245
components:
+ - name: shutters switch
+ type: MetaData
- rot: 1.5707963267948966 rad
pos: 3.5,10.5
parent: 2
@@ -159205,69 +159504,73 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24070:
+ 24094:
- On: Open
- Off: Close
- 24071:
+ 24095:
- On: Open
- Off: Close
- 24072:
+ 24096:
- On: Open
- Off: Close
- 24077:
+ 24101:
- On: Open
- Off: Close
- 24076:
+ 24100:
- On: Open
- Off: Close
- 24075:
+ 24099:
- On: Open
- Off: Close
- 24074:
+ 24098:
- On: Open
- Off: Close
- 24073:
+ 24097:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24205
+ - uid: 24246
components:
+ - name: visitation switch
+ type: MetaData
- pos: 33.487907,17.698355
parent: 2
type: Transform
- state: True
type: SignalSwitch
- linkedPorts:
- 24079:
+ 24103:
- On: Open
- Off: Close
- 24080:
+ 24104:
- On: Open
- Off: Close
- 24081:
+ 24105:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24206
+ - uid: 24247
components:
+ - name: shutters switch
+ type: MetaData
- rot: -1.5707963267948966 rad
pos: -5.5,10.5
parent: 2
type: Transform
- linkedPorts:
- 24027:
+ 24051:
- On: Open
- Off: Close
- 24082:
+ 24106:
- On: Open
- Off: Close
- 24032:
+ 24056:
- On: Open
- Off: Close
type: DeviceLinkSource
- - uid: 24207
+ - uid: 24248
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-2.5
@@ -159276,99 +159579,137 @@ entities:
- state: True
type: SignalSwitch
- linkedPorts:
- 24091:
+ 24115:
- On: Open
- Off: Close
- 24090:
+ 24114:
- On: Open
- Off: Close
- 24089:
+ 24113:
- On: Open
- Off: Close
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24208
+ - uid: 24249
components:
+ - name: shutters switch
+ type: MetaData
- rot: -1.5707963267948966 rad
pos: 29.5,-1.5
parent: 2
type: Transform
- linkedPorts:
- 24101:
+ 24125:
- On: Open
- Off: Close
- 24100:
+ 24124:
- On: Open
- Off: Close
- 24099:
+ 24123:
- On: Open
- Off: Close
- 24102:
+ 24126:
- On: Open
- Off: Close
- 24103:
+ 24127:
- On: Open
- Off: Close
- 24104:
+ 24128:
- On: Open
- Off: Close
- 24105:
+ 24129:
- On: Open
- Off: Close
- 24106:
+ 24130:
- On: Open
- Off: Close
- 24107:
+ 24131:
- On: Open
- Off: Close
- 24108:
+ 24132:
- On: Open
- Off: Close
- 24110:
+ 24134:
- On: Open
- Off: Close
- 24116:
+ 24140:
- On: Open
- Off: Close
- 24115:
+ 24139:
- On: Open
- Off: Close
- 24114:
+ 24138:
- On: Open
- Off: Close
- 24113:
+ 24137:
- On: Open
- Off: Close
- 24112:
+ 24136:
- On: Open
- Off: Close
- 24111:
+ 24135:
- On: Open
- Off: Close
+ 24133:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
type: DeviceLinkSource
- - uid: 24209
+ - uid: 24250
components:
+ - name: shutters switch
+ type: MetaData
- rot: -1.5707963267948966 rad
pos: 31.5,-23.5
parent: 2
type: Transform
- - uid: 24210
+ - linkedPorts:
+ 24147:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24146:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24145:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24144:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24143:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24142:
+ - On: Open
+ - Status: Toggle
+ - Off: Close
+ 24141:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24251
components:
- pos: -2.5,16.5
parent: 2
type: Transform
- linkedPorts:
- 24021:
+ 24045:
- On: Open
- Off: Close
- Status: Toggle
- 24022:
+ 24046:
- On: Open
- Off: Close
- Status: Toggle
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 24211
+ - uid: 24252
components:
- pos: -74.5,-43.5
parent: 2
@@ -159387,7 +159728,7 @@ entities:
- Off: Close
- Status: Toggle
type: DeviceLinkSource
- - uid: 24212
+ - uid: 24253
components:
- pos: -74.5,-38.5
parent: 2
@@ -159406,7 +159747,7 @@ entities:
- Off: Close
- Status: Toggle
type: DeviceLinkSource
- - uid: 24213
+ - uid: 24254
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-39.5
@@ -159422,65 +159763,386 @@ entities:
- Off: Close
- Status: Toggle
type: DeviceLinkSource
+ - uid: 24255
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: 3.141592653589793 rad
+ pos: 27.5,-26.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21289:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ 21292:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
- proto: SignalSwitchDirectional
entities:
- - uid: 24214
+ - uid: 24256
components:
+ - name: lockdown switch
+ type: MetaData
- rot: 1.5707963267948966 rad
- pos: 0.5,-7.5
+ pos: 19.5,21.5
parent: 2
type: Transform
- linkedPorts:
- 24126:
+ 386:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 392:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 385:
+ - On: DoorBolt
+ - Off: DoorBolt
+ type: DeviceLinkSource
+ - uid: 24257
+ components:
+ - name: lockdown switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -29.5,24.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 24163:
- On: Open
- Off: Close
- Status: Toggle
- 24124:
+ 24164:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 505:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 490:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 24165:
+ - On: Open
- Off: Close
+ - Status: Toggle
+ 24166:
- On: Open
+ - Off: Close
- Status: Toggle
- 24127:
+ type: DeviceLinkSource
+ - uid: 24258
+ components:
+ - name: light switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: 0.47646403,-7.7606826
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 22492:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ 22125:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24259
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: 47.5,-39.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21286:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24260
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -30.5,-14.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21287:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24261
+ components:
+ - name: JSL switch
+ type: MetaData
+ - pos: -27.5,20.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21293:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24262
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: 27.5,16.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21288:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24263
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -26.5,-32.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21291:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24264
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-50.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21290:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24265
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,9.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21285:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24266
+ components:
+ - name: JSL switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-21.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 21294:
+ - On: On
+ - Off: Off
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24267
+ components:
+ - name: shutters switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: 0.4804752,-7.3767347
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 24149:
- On: Open
- Off: Close
- Status: Toggle
- 24125:
+ 24151:
- On: Open
- Off: Close
- Status: Toggle
- 22472:
+ 24150:
+ - On: Open
+ - Off: Close
- Status: Toggle
- 22102:
+ 24148:
+ - On: Open
+ - Off: Close
- Status: Toggle
type: DeviceLinkSource
+ - uid: 24268
+ components:
+ - name: lockdown switch
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: -30.5,-9.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 24159:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24160:
+ - On: Open
+ - Status: Toggle
+ - Off: Close
+ 24161:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24162:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 489:
+ - Off: DoorBolt
+ - On: DoorBolt
+ 488:
+ - On: DoorBolt
+ - Off: DoorBolt
+ type: DeviceLinkSource
+ - uid: 24269
+ components:
+ - name: shutters switch
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: 29.5,-37.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 24154:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24155:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24153:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24152:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24157:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24156:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24158:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24270
+ components:
+ - name: lockdown switch
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: 47.507183,-39.140865
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 438:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 439:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 440:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 24167:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ 24168:
+ - On: Open
+ - Off: Close
+ - Status: Toggle
+ type: DeviceLinkSource
+ - uid: 24271
+ components:
+ - name: lockdown switch
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,-56.5
+ parent: 2
+ type: Transform
+ - linkedPorts:
+ 477:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 476:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 475:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 406:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 402:
+ - On: DoorBolt
+ - Off: DoorBolt
+ 401:
+ - On: DoorBolt
+ - Off: DoorBolt
+ type: DeviceLinkSource
- proto: SignAnomaly
entities:
- - uid: 24215
+ - uid: 24272
components:
- pos: 76.5,-42.5
parent: 2
type: Transform
- proto: SignAnomaly2
entities:
- - uid: 24216
+ - uid: 24273
components:
- pos: 63.5,-41.5
parent: 2
type: Transform
- proto: SignArmory
entities:
- - uid: 24217
+ - uid: 24274
components:
- pos: 29.5,24.5
parent: 2
type: Transform
- proto: SignAtmos
entities:
- - uid: 24218
+ - uid: 24275
components:
- pos: -21.5,-31.5
parent: 2
type: Transform
- - uid: 24219
+ - uid: 24276
components:
- name: Thermoelectric Generator
type: MetaData
@@ -159488,7 +160150,7 @@ entities:
pos: -71.5,-33.5
parent: 2
type: Transform
- - uid: 24220
+ - uid: 24277
components:
- name: Thermo-Electric Generator
type: MetaData
@@ -159498,24 +160160,24 @@ entities:
type: Transform
- proto: SignAtmosMinsky
entities:
- - uid: 24221
+ - uid: 24278
components:
- pos: -30.5,-29.5
parent: 2
type: Transform
- - uid: 24222
+ - uid: 24279
components:
- pos: -21.5,-33.5
parent: 2
type: Transform
- proto: SignBar
entities:
- - uid: 24223
+ - uid: 24280
components:
- pos: 15.5,5.5
parent: 2
type: Transform
- - uid: 24224
+ - uid: 24281
components:
- rot: 1.5707963267948966 rad
pos: 12.5,4.5
@@ -159523,97 +160185,97 @@ entities:
type: Transform
- proto: SignBiohazardMed
entities:
- - uid: 24225
+ - uid: 24282
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- proto: SignBridge
entities:
- - uid: 24226
+ - uid: 24283
components:
- pos: 17.5,-26.5
parent: 2
type: Transform
- - uid: 24227
+ - uid: 24284
components:
- pos: 33.5,-26.5
parent: 2
type: Transform
- proto: SignCanisters
entities:
- - uid: 24228
+ - uid: 24285
components:
- pos: -36.5,-39.5
parent: 2
type: Transform
- - uid: 24229
+ - uid: 24286
components:
- pos: 47.5,-50.5
parent: 2
type: Transform
- proto: SignCargo
entities:
- - uid: 24230
+ - uid: 24287
components:
- pos: -21.5,22.5
parent: 2
type: Transform
- proto: SignCargoDock
entities:
- - uid: 24231
+ - uid: 24288
components:
- pos: -35.532974,23.594805
parent: 2
type: Transform
- proto: SignChem
entities:
- - uid: 24232
+ - uid: 24289
components:
- pos: 2.5,-44.5
parent: 2
type: Transform
- proto: SignCloning
entities:
- - uid: 24233
+ - uid: 24290
components:
- pos: -7.5,-62.5
parent: 2
type: Transform
- proto: SignConference
entities:
- - uid: 24234
+ - uid: 24291
components:
- pos: 22.5,-26.5
parent: 2
type: Transform
- proto: SignDangerMed
entities:
- - uid: 24235
+ - uid: 24292
components:
- pos: 15.5,35.5
parent: 2
type: Transform
- proto: SignDirectionalBar
entities:
- - uid: 24236
+ - uid: 24293
components:
- pos: -19.478512,48.31118
parent: 2
type: Transform
- - uid: 24237
+ - uid: 24294
components:
- rot: 1.5707963267948966 rad
pos: -17.472397,9.2931385
parent: 2
type: Transform
- - uid: 24238
+ - uid: 24295
components:
- rot: 3.141592653589793 rad
pos: 23.49888,-45.152493
parent: 2
type: Transform
- - uid: 24239
+ - uid: 24296
components:
- rot: 1.5707963267948966 rad
pos: -27.50719,3.4686704
@@ -159621,52 +160283,52 @@ entities:
type: Transform
- proto: SignDirectionalBridge
entities:
- - uid: 24240
+ - uid: 24297
components:
- pos: -19.478844,48.09307
parent: 2
type: Transform
- - uid: 24241
+ - uid: 24298
components:
- rot: 1.5707963267948966 rad
pos: -1.5055174,1.4292434
parent: 2
type: Transform
- - uid: 24242
+ - uid: 24299
components:
- rot: 1.5707963267948966 rad
pos: -2.4872613,-24.496803
parent: 2
type: Transform
- - uid: 24243
+ - uid: 24300
components:
- pos: 27.5,-7.5
parent: 2
type: Transform
- - uid: 24244
+ - uid: 24301
components:
- pos: 15.5507345,4.4965997
parent: 2
type: Transform
- - uid: 24245
+ - uid: 24302
components:
- rot: 1.5707963267948966 rad
pos: -11.506838,1.2987667
parent: 2
type: Transform
- - uid: 24246
+ - uid: 24303
components:
- rot: 1.5707963267948966 rad
pos: -1.4898663,-40.13394
parent: 2
type: Transform
- - uid: 24247
+ - uid: 24304
components:
- rot: 1.5707963267948966 rad
pos: -17.465254,8.332064
parent: 2
type: Transform
- - uid: 24248
+ - uid: 24305
components:
- rot: 1.5707963267948966 rad
pos: -27.50719,3.2186704
@@ -159674,19 +160336,19 @@ entities:
type: Transform
- proto: SignDirectionalChapel
entities:
- - uid: 24249
+ - uid: 24306
components:
- rot: -1.5707963267948966 rad
pos: -27.5,2.5
parent: 2
type: Transform
- - uid: 24250
+ - uid: 24307
components:
- rot: 3.141592653589793 rad
pos: -17.448181,-40.311073
parent: 2
type: Transform
- - uid: 24251
+ - uid: 24308
components:
- rot: -1.5707963267948966 rad
pos: -21.478504,9.770466
@@ -159694,238 +160356,238 @@ entities:
type: Transform
- proto: SignDirectionalEng
entities:
- - uid: 24252
+ - uid: 24309
components:
- rot: -1.5707963267948966 rad
pos: 23.456676,-44.465714
parent: 2
type: Transform
- - uid: 24253
+ - uid: 24310
components:
- rot: -1.5707963267948966 rad
pos: 13.481093,-40.52887
parent: 2
type: Transform
- - uid: 24254
+ - uid: 24311
components:
- rot: -1.5707963267948966 rad
pos: -1.5094987,0.23005629
parent: 2
type: Transform
- - uid: 24255
+ - uid: 24312
components:
- rot: -1.5707963267948966 rad
pos: 15.5186825,0.3410281
parent: 2
type: Transform
- - uid: 24256
+ - uid: 24313
components:
- rot: -1.5707963267948966 rad
pos: -6.468719,-24.535433
parent: 2
type: Transform
- - uid: 24257
+ - uid: 24314
components:
- rot: -1.5707963267948966 rad
pos: 13.494198,-28.706446
parent: 2
type: Transform
- - uid: 24258
+ - uid: 24315
components:
- rot: -1.5707963267948966 rad
pos: 27.506605,-7.2696166
parent: 2
type: Transform
- - uid: 24259
+ - uid: 24316
components:
- pos: -11.54485,0.20892155
parent: 2
type: Transform
- - uid: 24260
+ - uid: 24317
components:
- rot: -1.5707963267948966 rad
pos: -12.525326,-40.537384
parent: 2
type: Transform
- - uid: 24261
+ - uid: 24318
components:
- rot: -1.5707963267948966 rad
pos: 37.56283,-40.519398
parent: 2
type: Transform
- - uid: 24262
+ - uid: 24319
components:
- pos: -19.479143,47.185772
parent: 2
type: Transform
- - uid: 24263
+ - uid: 24320
components:
- pos: -21.4735,10.205865
parent: 2
type: Transform
- - uid: 24264
+ - uid: 24321
components:
- rot: 3.141592653589793 rad
pos: -17.5,-33.5
parent: 2
type: Transform
- - uid: 24265
+ - uid: 24322
components:
- pos: -27.491566,-1.4688294
parent: 2
type: Transform
- proto: SignDirectionalEvac
entities:
- - uid: 24266
+ - uid: 24323
components:
- rot: 1.5707963267948966 rad
pos: 23.453842,-7.240517
parent: 2
type: Transform
- - uid: 24267
+ - uid: 24324
components:
- rot: 3.141592653589793 rad
pos: 13.494197,-24.550196
parent: 2
type: Transform
- - uid: 24268
+ - uid: 24325
components:
- rot: 3.141592653589793 rad
pos: 17.50633,-38.506306
parent: 2
type: Transform
- - uid: 24269
+ - uid: 24326
components:
- rot: 3.141592653589793 rad
pos: 27.469652,-44.466072
parent: 2
type: Transform
- - uid: 24270
+ - uid: 24327
components:
- rot: 3.141592653589793 rad
pos: 33.56561,-38.47694
parent: 2
type: Transform
- - uid: 24271
+ - uid: 24328
components:
- rot: 1.5707963267948966 rad
pos: 15.500585,1.4258997
parent: 2
type: Transform
- - uid: 24272
+ - uid: 24329
components:
- rot: 1.5707963267948966 rad
pos: -2.4941144,-24.735882
parent: 2
type: Transform
- - uid: 24273
+ - uid: 24330
components:
- rot: 1.5707963267948966 rad
pos: -1.5055175,1.6636184
parent: 2
type: Transform
- - uid: 24274
+ - uid: 24331
components:
- rot: 1.5707963267948966 rad
pos: -11.506838,1.7987667
parent: 2
type: Transform
- - uid: 24275
+ - uid: 24332
components:
- rot: 1.5707963267948966 rad
pos: -1.4898663,-40.82144
parent: 2
type: Transform
- - uid: 24276
+ - uid: 24333
components:
- rot: 1.5707963267948966 rad
pos: 35.5,3.5
parent: 2
type: Transform
- - uid: 24277
+ - uid: 24334
components:
- pos: -19.483376,48.548702
parent: 2
type: Transform
- - uid: 24278
+ - uid: 24335
components:
- rot: 1.5707963267948966 rad
pos: -17.48425,-7.298242
parent: 2
type: Transform
- - uid: 24279
+ - uid: 24336
components:
- rot: 1.5707963267948966 rad
pos: -17.5155,-24.43221
parent: 2
type: Transform
- - uid: 24280
+ - uid: 24337
components:
- rot: 1.5707963267948966 rad
pos: -17.453,-40.550083
parent: 2
type: Transform
- - uid: 24281
+ - uid: 24338
components:
- rot: 1.5707963267948966 rad
pos: -17.465254,9.066439
parent: 2
type: Transform
- - uid: 24282
+ - uid: 24339
components:
- rot: 3.141592653589793 rad
pos: 60.5,-42.5
parent: 2
type: Transform
- - uid: 24283
+ - uid: 24340
components:
- pos: -17.5,22.5
parent: 2
type: Transform
- - uid: 24284
+ - uid: 24341
components:
- pos: -17.5,33.5
parent: 2
type: Transform
- proto: SignDirectionalFood
entities:
- - uid: 24285
+ - uid: 24342
components:
- rot: -1.5707963267948966 rad
pos: 23.455772,-7.472424
parent: 2
type: Transform
- - uid: 24286
+ - uid: 24343
components:
- rot: 3.141592653589793 rad
pos: -6.442209,-23.658274
parent: 2
type: Transform
- - uid: 24287
+ - uid: 24344
components:
- rot: -1.5707963267948966 rad
pos: 13.515763,-23.596605
parent: 2
type: Transform
- - uid: 24288
+ - uid: 24345
components:
- rot: 3.141592653589793 rad
pos: 13.482204,-40.04481
parent: 2
type: Transform
- - uid: 24289
+ - uid: 24346
components:
- rot: 3.141592653589793 rad
pos: -6.4057527,-39.46833
parent: 2
type: Transform
- - uid: 24290
+ - uid: 24347
components:
- rot: 3.141592653589793 rad
pos: 23.49562,-45.402493
parent: 2
type: Transform
- - uid: 24291
+ - uid: 24348
components:
- rot: 1.5707963267948966 rad
pos: -27.50719,2.7655454
@@ -159933,43 +160595,43 @@ entities:
type: Transform
- proto: SignDirectionalHop
entities:
- - uid: 24292
+ - uid: 24349
components:
- rot: 3.141592653589793 rad
pos: -6.407528,-39.689182
parent: 2
type: Transform
- - uid: 24293
+ - uid: 24350
components:
- rot: 3.141592653589793 rad
pos: -2.5195708,-23.764477
parent: 2
type: Transform
- - uid: 24294
+ - uid: 24351
components:
- rot: -1.5707963267948966 rad
pos: 13.506188,-24.076977
parent: 2
type: Transform
- - uid: 24295
+ - uid: 24352
components:
- rot: 3.141592653589793 rad
pos: 13.449441,-39.80865
parent: 2
type: Transform
- - uid: 24296
+ - uid: 24353
components:
- rot: 1.5707963267948966 rad
pos: -2.5029292,-2.2492237
parent: 2
type: Transform
- - uid: 24297
+ - uid: 24354
components:
- rot: -1.5707963267948966 rad
pos: 28.50559,-7.2209973
parent: 2
type: Transform
- - uid: 24298
+ - uid: 24355
components:
- rot: -1.5707963267948966 rad
pos: 23.500246,-45.63412
@@ -159977,24 +160639,24 @@ entities:
type: Transform
- proto: SignDirectionalJanitor
entities:
- - uid: 24299
+ - uid: 24356
components:
- pos: -6.5,-2.5
parent: 2
type: Transform
- - uid: 24300
+ - uid: 24357
components:
- rot: -1.5707963267948966 rad
pos: 13.511264,-23.825424
parent: 2
type: Transform
- - uid: 24301
+ - uid: 24358
components:
- rot: -1.5707963267948966 rad
pos: 13.468106,-40.766113
parent: 2
type: Transform
- - uid: 24302
+ - uid: 24359
components:
- rot: 3.141592653589793 rad
pos: -6.4057527,-39.226246
@@ -160002,230 +160664,230 @@ entities:
type: Transform
- proto: SignDirectionalMed
entities:
- - uid: 24303
+ - uid: 24360
components:
- pos: -19.479143,47.404522
parent: 2
type: Transform
- - uid: 24304
+ - uid: 24361
components:
- rot: -1.5707963267948966 rad
pos: 13.494197,-24.31582
parent: 2
type: Transform
- - uid: 24305
+ - uid: 24362
components:
- rot: -1.5707963267948966 rad
pos: 23.456676,-44.23134
parent: 2
type: Transform
- - uid: 24306
+ - uid: 24363
components:
- rot: -1.5707963267948966 rad
pos: 13.481093,-40.279392
parent: 2
type: Transform
- - uid: 24307
+ - uid: 24364
components:
- rot: -1.5707963267948966 rad
pos: 15.518682,0.809778
parent: 2
type: Transform
- - uid: 24308
+ - uid: 24365
components:
- pos: -1.509499,0.7144314
parent: 2
type: Transform
- - uid: 24309
+ - uid: 24366
components:
- pos: -6.468719,-24.785433
parent: 2
type: Transform
- - uid: 24310
+ - uid: 24367
components:
- pos: -11.538088,0.45501685
parent: 2
type: Transform
- - uid: 24311
+ - uid: 24368
components:
- rot: -1.5707963267948966 rad
pos: 37.560596,-40.278557
parent: 2
type: Transform
- - uid: 24312
+ - uid: 24369
components:
- pos: -17.51201,-24.680704
parent: 2
type: Transform
- - uid: 24313
+ - uid: 24370
components:
- pos: -21.471863,9.993778
parent: 2
type: Transform
- - uid: 24314
+ - uid: 24371
components:
- pos: -17.494442,-12.803106
parent: 2
type: Transform
- - uid: 24315
+ - uid: 24372
components:
- pos: -27.491566,-1.7032045
parent: 2
type: Transform
- proto: SignDirectionalSci
entities:
- - uid: 24316
+ - uid: 24373
components:
- rot: 1.5707963267948966 rad
pos: -2.4872613,-24.231178
parent: 2
type: Transform
- - uid: 24317
+ - uid: 24374
components:
- rot: 1.5707963267948966 rad
pos: 27.465042,-44.22285
parent: 2
type: Transform
- - uid: 24318
+ - uid: 24375
components:
- pos: 15.550735,4.2699327
parent: 2
type: Transform
- - uid: 24319
+ - uid: 24376
components:
- pos: 13.494197,-28.22207
parent: 2
type: Transform
- - uid: 24320
+ - uid: 24377
components:
- pos: 27.506117,-7.7341094
parent: 2
type: Transform
- - uid: 24321
+ - uid: 24378
components:
- rot: 1.5707963267948966 rad
pos: -11.506838,1.5487667
parent: 2
type: Transform
- - uid: 24322
+ - uid: 24379
components:
- rot: 1.5707963267948966 rad
pos: -1.4898663,-40.368317
parent: 2
type: Transform
- - uid: 24323
+ - uid: 24380
components:
- pos: -19.479143,47.623272
parent: 2
type: Transform
- - uid: 24324
+ - uid: 24381
components:
- rot: 1.5707963267948966 rad
pos: -17.465254,8.816439
parent: 2
type: Transform
- - uid: 24325
+ - uid: 24382
components:
- rot: 1.5707963267948966 rad
pos: -17.460167,-40.790154
parent: 2
type: Transform
- - uid: 24326
+ - uid: 24383
components:
- pos: -17.507042,-24.18393
parent: 2
type: Transform
- - uid: 24327
+ - uid: 24384
components:
- pos: -27.491566,-1.2344544
parent: 2
type: Transform
- proto: SignDirectionalSec
entities:
- - uid: 24328
+ - uid: 24385
components:
- rot: 3.141592653589793 rad
pos: 23.45433,-7.7213244
parent: 2
type: Transform
- - uid: 24329
+ - uid: 24386
components:
- rot: 3.141592653589793 rad
pos: 27.468637,-44.695934
parent: 2
type: Transform
- - uid: 24330
+ - uid: 24387
components:
- rot: 3.141592653589793 rad
pos: 33.55467,-38.221992
parent: 2
type: Transform
- - uid: 24331
+ - uid: 24388
components:
- rot: 3.141592653589793 rad
pos: 17.50898,-38.26922
parent: 2
type: Transform
- - uid: 24332
+ - uid: 24389
components:
- rot: 3.141592653589793 rad
pos: 15.5581455,4.7444477
parent: 2
type: Transform
- - uid: 24333
+ - uid: 24390
components:
- rot: 3.141592653589793 rad
pos: 13.4980955,-24.785376
parent: 2
type: Transform
- - uid: 24334
+ - uid: 24391
components:
- rot: 1.5707963267948966 rad
pos: -6.4826374,-24.301481
parent: 2
type: Transform
- - uid: 24335
+ - uid: 24392
components:
- rot: 1.5707963267948966 rad
pos: -1.4980723,1.197365
parent: 2
type: Transform
- - uid: 24336
+ - uid: 24393
components:
- rot: 1.5707963267948966 rad
pos: -11.517976,1.041115
parent: 2
type: Transform
- - uid: 24337
+ - uid: 24394
components:
- rot: 1.5707963267948966 rad
pos: -1.4758278,-40.604027
parent: 2
type: Transform
- - uid: 24338
+ - uid: 24395
components:
- pos: -19.471409,47.857254
parent: 2
type: Transform
- - uid: 24339
+ - uid: 24396
components:
- rot: 1.5707963267948966 rad
pos: -17.523046,-28.22695
parent: 2
type: Transform
- - uid: 24340
+ - uid: 24397
components:
- rot: 1.5707963267948966 rad
pos: -17.476206,8.574429
parent: 2
type: Transform
- - uid: 24341
+ - uid: 24398
components:
- rot: 1.5707963267948966 rad
pos: -17.478817,-7.5615916
parent: 2
type: Transform
- - uid: 24342
+ - uid: 24399
components:
- rot: 1.5707963267948966 rad
pos: -27.522816,2.2499206
@@ -160233,12 +160895,12 @@ entities:
type: Transform
- proto: SignDirectionalSolar
entities:
- - uid: 24343
+ - uid: 24400
components:
- pos: -0.5,-76.5
parent: 2
type: Transform
- - uid: 24344
+ - uid: 24401
components:
- rot: 3.141592653589793 rad
pos: 65.5,27.5
@@ -160246,225 +160908,225 @@ entities:
type: Transform
- proto: SignDirectionalSupply
entities:
- - uid: 24345
+ - uid: 24402
components:
- rot: -1.5707963267948966 rad
pos: 23.453947,-44.6932
parent: 2
type: Transform
- - uid: 24346
+ - uid: 24403
components:
- rot: -1.5707963267948966 rad
pos: 15.5186825,0.5754031
parent: 2
type: Transform
- - uid: 24347
+ - uid: 24404
components:
- rot: -1.5707963267948966 rad
pos: -1.5094988,0.4800564
parent: 2
type: Transform
- - uid: 24348
+ - uid: 24405
components:
- rot: -1.5707963267948966 rad
pos: 13.494197,-28.47207
parent: 2
type: Transform
- - uid: 24349
+ - uid: 24406
components:
- rot: 3.141592653589793 rad
pos: -11.522463,0.70501685
parent: 2
type: Transform
- - uid: 24350
+ - uid: 24407
components:
- rot: -1.5707963267948966 rad
pos: -12.525326,-40.287384
parent: 2
type: Transform
- - uid: 24351
+ - uid: 24408
components:
- rot: -1.5707963267948966 rad
pos: 37.56283,-40.753773
parent: 2
type: Transform
- - uid: 24352
+ - uid: 24409
components:
- rot: 3.141592653589793 rad
pos: -21.4735,9.533642
parent: 2
type: Transform
- - uid: 24353
+ - uid: 24410
components:
- rot: 3.141592653589793 rad
pos: -2.5,-23.5
parent: 2
type: Transform
- - uid: 24354
+ - uid: 24411
components:
- rot: 3.141592653589793 rad
pos: -17.496458,-33.756527
parent: 2
type: Transform
- - uid: 24355
+ - uid: 24412
components:
- rot: 3.141592653589793 rad
pos: -17.5,-12.5
parent: 2
type: Transform
- - uid: 24356
+ - uid: 24413
components:
- rot: 3.141592653589793 rad
pos: -27.491566,3.7030454
parent: 2
type: Transform
- - uid: 24357
+ - uid: 24414
components:
- pos: -19.471409,48.794754
parent: 2
type: Transform
- proto: SignDisposalSpace
entities:
- - uid: 24358
+ - uid: 24415
components:
- pos: 23.5,-52.5
parent: 2
type: Transform
- proto: SignElectrical
entities:
- - uid: 24359
+ - uid: 24416
components:
- pos: -78.5,-5.5
parent: 2
type: Transform
- - uid: 24360
+ - uid: 24417
components:
- pos: -78.5,-19.5
parent: 2
type: Transform
- - uid: 24361
+ - uid: 24418
components:
- pos: -71.5,-2.5
parent: 2
type: Transform
- - uid: 24362
+ - uid: 24419
components:
- pos: -64.5,-2.5
parent: 2
type: Transform
- - uid: 24363
+ - uid: 24420
components:
- pos: 24.5,39.5
parent: 2
type: Transform
- - uid: 24364
+ - uid: 24421
components:
- pos: 32.5,39.5
parent: 2
type: Transform
- - uid: 24365
+ - uid: 24422
components:
- pos: 38.5,31.5
parent: 2
type: Transform
- proto: SignElectricalMed
entities:
- - uid: 24366
+ - uid: 24423
components:
- pos: -12.5,-70.5
parent: 2
type: Transform
- - uid: 24367
+ - uid: 24424
components:
- pos: 42.5,-60.5
parent: 2
type: Transform
- - uid: 24368
+ - uid: 24425
components:
- pos: 8.5,-44.5
parent: 2
type: Transform
- - uid: 24369
+ - uid: 24426
components:
- pos: 37.5,-44.5
parent: 2
type: Transform
- - uid: 24370
+ - uid: 24427
components:
- pos: 37.5,-29.5
parent: 2
type: Transform
- - uid: 24371
+ - uid: 24428
components:
- pos: 46.5,-6.5
parent: 2
type: Transform
- - uid: 24372
+ - uid: 24429
components:
- pos: 47.5,-0.5
parent: 2
type: Transform
- - uid: 24373
+ - uid: 24430
components:
- pos: 33.5,23.5
parent: 2
type: Transform
- - uid: 24374
+ - uid: 24431
components:
- pos: -29.5,-54.5
parent: 2
type: Transform
- proto: SignEngine
entities:
- - uid: 24375
+ - uid: 24432
components:
- pos: -43.5,-9.5
parent: 2
type: Transform
- - uid: 24376
+ - uid: 24433
components:
- pos: -49.5,-18.5
parent: 2
type: Transform
- proto: SignEngineering
entities:
- - uid: 24377
+ - uid: 24434
components:
- pos: -21.5,-8.5
parent: 2
type: Transform
- - uid: 24378
+ - uid: 24435
components:
- pos: -21.5,-15.5
parent: 2
type: Transform
- proto: SignEscapePods
entities:
- - uid: 24379
+ - uid: 24436
components:
- pos: 29.5,-93.5
parent: 2
type: Transform
- - uid: 24380
+ - uid: 24437
components:
- pos: -16.5,68.5
parent: 2
type: Transform
- - uid: 24381
+ - uid: 24438
components:
- pos: 49.5,-93.5
parent: 2
type: Transform
- proto: SignEVA
entities:
- - uid: 24382
+ - uid: 24439
components:
- pos: 34.5,-15.5
parent: 2
type: Transform
- proto: SignExplosives
entities:
- - uid: 24383
+ - uid: 24440
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-26.5
@@ -160472,98 +161134,112 @@ entities:
type: Transform
- proto: SignFlammableMed
entities:
- - uid: 24384
+ - uid: 24441
components:
- pos: -42.5,-63.5
parent: 2
type: Transform
- proto: SignGravity
entities:
- - uid: 24385
+ - uid: 24442
components:
- pos: -18.5,-3.5
parent: 2
type: Transform
- proto: SignHydro3
entities:
- - uid: 24386
+ - uid: 24443
components:
- pos: -5.5,4.5
parent: 2
type: Transform
- proto: SignInterrogation
entities:
- - uid: 24387
+ - uid: 24444
components:
- pos: 18.5,18.5
parent: 2
type: Transform
+- proto: SignJanitor
+ entities:
+ - uid: 24445
+ components:
+ - pos: -6.5,-20.5
+ parent: 2
+ type: Transform
- proto: SignLaserMed
entities:
- - uid: 24388
+ - uid: 24446
components:
- rot: 3.141592653589793 rad
pos: -63.5,-29.5
parent: 2
type: Transform
- - uid: 24389
+ - uid: 24447
components:
- pos: -62.5,-22.5
parent: 2
type: Transform
- - uid: 24390
+ - uid: 24448
components:
- pos: -70.5,-22.5
parent: 2
type: Transform
- proto: SignLibrary
entities:
- - uid: 24391
+ - uid: 24449
components:
- pos: 9.5,-2.5
parent: 2
type: Transform
- proto: SignMagneticsMed
entities:
- - uid: 24392
+ - uid: 24450
components:
- pos: -47.5,27.5
parent: 2
type: Transform
- proto: SignMedical
entities:
- - uid: 24393
+ - uid: 24451
components:
- pos: -2.5,-44.5
parent: 2
type: Transform
- proto: SignMinerDock
entities:
- - uid: 24394
+ - uid: 24452
components:
- pos: -44.5,27.5
parent: 2
type: Transform
- proto: SignMorgue
entities:
- - uid: 24395
+ - uid: 24453
components:
- pos: -15.5,-68.5
parent: 2
type: Transform
- - uid: 24396
+ - uid: 24454
components:
- pos: -12.5,-62.5
parent: 2
type: Transform
+- proto: SignPlaque
+ entities:
+ - uid: 24455
+ components:
+ - pos: -8.5,-16.5
+ parent: 2
+ type: Transform
- proto: SignPrison
entities:
- - uid: 24397
+ - uid: 24456
components:
- pos: 39.5,24.5
parent: 2
type: Transform
- - uid: 24398
+ - uid: 24457
components:
- name: open prison sign
type: MetaData
@@ -160572,24 +161248,24 @@ entities:
type: Transform
- proto: SignRadiationMed
entities:
- - uid: 24399
+ - uid: 24458
components:
- pos: -63.5,-25.5
parent: 2
type: Transform
- proto: SignRedFive
entities:
- - uid: 24400
+ - uid: 24459
components:
- pos: 57.5,22.5
parent: 2
type: Transform
- - uid: 24401
+ - uid: 24460
components:
- pos: 41.5,17.5
parent: 2
type: Transform
- - uid: 24402
+ - uid: 24461
components:
- rot: 3.141592653589793 rad
pos: 39.5,5.5
@@ -160597,17 +161273,17 @@ entities:
type: Transform
- proto: SignRedFour
entities:
- - uid: 24403
+ - uid: 24462
components:
- pos: 40.5,17.5
parent: 2
type: Transform
- - uid: 24404
+ - uid: 24463
components:
- pos: 54.5,22.5
parent: 2
type: Transform
- - uid: 24405
+ - uid: 24464
components:
- rot: 3.141592653589793 rad
pos: 39.5,8.5
@@ -160615,71 +161291,71 @@ entities:
type: Transform
- proto: SignRedNine
entities:
- - uid: 24406
+ - uid: 24465
components:
- pos: 51.62568,41.505035
parent: 2
type: Transform
- proto: SignRedOne
entities:
- - uid: 24407
+ - uid: 24466
components:
- pos: 45.5,22.5
parent: 2
type: Transform
- - uid: 24408
+ - uid: 24467
components:
- rot: 3.141592653589793 rad
pos: 28.5,13.5
parent: 2
type: Transform
- - uid: 24409
+ - uid: 24468
components:
- pos: 30.70196,-15.491432
parent: 2
type: Transform
- - uid: 24410
+ - uid: 24469
components:
- pos: 37.5,17.5
parent: 2
type: Transform
- proto: SignRedSeven
entities:
- - uid: 24411
+ - uid: 24470
components:
- pos: 60.5,17.5
parent: 2
type: Transform
- proto: SignRedSix
entities:
- - uid: 24412
+ - uid: 24471
components:
- pos: 42.5,17.5
parent: 2
type: Transform
- - uid: 24413
+ - uid: 24472
components:
- pos: 60.5,20.5
parent: 2
type: Transform
- - uid: 24414
+ - uid: 24473
components:
- pos: 51.40693,41.505035
parent: 2
type: Transform
- proto: SignRedThree
entities:
- - uid: 24415
+ - uid: 24474
components:
- pos: 51.5,22.5
parent: 2
type: Transform
- - uid: 24416
+ - uid: 24475
components:
- pos: 39.5,17.5
parent: 2
type: Transform
- - uid: 24417
+ - uid: 24476
components:
- rot: 3.141592653589793 rad
pos: 34.5,13.5
@@ -160687,18 +161363,18 @@ entities:
type: Transform
- proto: SignRedTwo
entities:
- - uid: 24418
+ - uid: 24477
components:
- pos: 48.5,22.5
parent: 2
type: Transform
- - uid: 24419
+ - uid: 24478
components:
- rot: 3.141592653589793 rad
pos: 38.5,17.5
parent: 2
type: Transform
- - uid: 24420
+ - uid: 24479
components:
- rot: 3.141592653589793 rad
pos: 31.5,13.5
@@ -160706,130 +161382,130 @@ entities:
type: Transform
- proto: SignRedZero
entities:
- - uid: 24421
+ - uid: 24480
components:
- pos: 30.467585,-15.491432
parent: 2
type: Transform
- - uid: 24422
+ - uid: 24481
components:
- pos: 30.23321,-15.491432
parent: 2
type: Transform
- proto: SignRND
entities:
- - uid: 24423
+ - uid: 24482
components:
- pos: 47.5,-38.5
parent: 2
type: Transform
- proto: SignRobo
entities:
- - uid: 24424
+ - uid: 24483
components:
- pos: 66.5,-47.5
parent: 2
type: Transform
- proto: SignScience1
entities:
- - uid: 24425
+ - uid: 24484
components:
- pos: 38.5,-40.5
parent: 2
type: Transform
- proto: SignShipDock
entities:
- - uid: 24426
+ - uid: 24485
components:
- name: docking arm
type: MetaData
- pos: -14.5,70.5
parent: 2
type: Transform
- - uid: 24427
+ - uid: 24486
components:
- name: docking arm
type: MetaData
- pos: -20.5,70.5
parent: 2
type: Transform
- - uid: 24428
+ - uid: 24487
components:
- pos: 76.5,-32.5
parent: 2
type: Transform
- proto: SignShock
entities:
- - uid: 24429
+ - uid: 24488
components:
- pos: 17.5,-30.5
parent: 2
type: Transform
- - uid: 24430
+ - uid: 24489
components:
- pos: 11.5,-15.5
parent: 2
type: Transform
- proto: SignSmoking
entities:
- - uid: 24431
+ - uid: 24490
components:
- pos: 1.5,-49.5
parent: 2
type: Transform
- - uid: 24432
+ - uid: 24491
components:
- pos: -10.5,-49.5
parent: 2
type: Transform
- proto: SignSomethingOld
entities:
- - uid: 24433
+ - uid: 24492
components:
- pos: -29.5,2.5
parent: 2
type: Transform
- proto: SignSpace
entities:
- - uid: 24434
+ - uid: 24493
components:
- pos: -2.5,-76.5
parent: 2
type: Transform
- - uid: 24435
+ - uid: 24494
components:
- pos: -58.5,-53.5
parent: 2
type: Transform
- - uid: 24436
+ - uid: 24495
components:
- pos: -49.5,18.5
parent: 2
type: Transform
- proto: SignSurgery
entities:
- - uid: 24437
+ - uid: 24496
components:
- pos: -1.5,-62.5
parent: 2
type: Transform
- proto: SignTelecomms
entities:
- - uid: 24438
+ - uid: 24497
components:
- pos: 13.5,-22.5
parent: 2
type: Transform
- proto: SignToolStorage
entities:
- - uid: 24439
+ - uid: 24498
components:
- pos: -33.5,-13.5
parent: 2
type: Transform
- proto: SignToxins2
entities:
- - uid: 24440
+ - uid: 24499
components:
- name: toxin lab sign
type: MetaData
@@ -160838,45 +161514,45 @@ entities:
type: Transform
- proto: SignVirology
entities:
- - uid: 24441
+ - uid: 24500
components:
- pos: -18.5,-62.5
parent: 2
type: Transform
- proto: SilverOre1
entities:
- - uid: 24442
+ - uid: 24501
components:
- pos: 73.48065,-67.68085
parent: 2
type: Transform
- proto: SingularityGenerator
entities:
- - uid: 24443
+ - uid: 24502
components:
- pos: -66.5,-13.5
parent: 2
type: Transform
- - uid: 24444
+ - uid: 24503
components:
- pos: -72.5,-23.5
parent: 2
type: Transform
- proto: SinkStemlessWater
entities:
- - uid: 24445
+ - uid: 24504
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-3.5
parent: 2
type: Transform
- - uid: 24446
+ - uid: 24505
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-2.5
parent: 2
type: Transform
- - uid: 24447
+ - uid: 24506
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-96.5
@@ -160884,92 +161560,92 @@ entities:
type: Transform
- proto: SinkWide
entities:
- - uid: 24448
+ - uid: 24507
components:
- rot: 3.141592653589793 rad
pos: -9.5,-33.5
parent: 2
type: Transform
- - uid: 24449
+ - uid: 24508
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-48.5
parent: 2
type: Transform
- - uid: 24450
+ - uid: 24509
components:
- pos: 1.5,9.5
parent: 2
type: Transform
- - uid: 24451
+ - uid: 24510
components:
- rot: 3.141592653589793 rad
pos: 17.5,9.5
parent: 2
type: Transform
- - uid: 24452
+ - uid: 24511
components:
- rot: -1.5707963267948966 rad
pos: -8.5,-69.5
parent: 2
type: Transform
- - uid: 24453
+ - uid: 24512
components:
- rot: -1.5707963267948966 rad
pos: -2.5,5.5
parent: 2
type: Transform
- - uid: 24454
+ - uid: 24513
components:
- rot: -1.5707963267948966 rad
pos: -2.5,6.5
parent: 2
type: Transform
- - uid: 24455
+ - uid: 24514
components:
- rot: 3.141592653589793 rad
pos: -21.5,41.5
parent: 2
type: Transform
- - uid: 24456
+ - uid: 24515
components:
- rot: 3.141592653589793 rad
pos: 62.5,21.5
parent: 2
type: Transform
- - uid: 24457
+ - uid: 24516
components:
- pos: 63.5,13.5
parent: 2
type: Transform
- - uid: 24458
+ - uid: 24517
components:
- pos: 63.5,11.5
parent: 2
type: Transform
- - uid: 24459
+ - uid: 24518
components:
- pos: 63.5,9.5
parent: 2
type: Transform
- - uid: 24460
+ - uid: 24519
components:
- rot: 1.5707963267948966 rad
pos: -33.5,9.5
parent: 2
type: Transform
- - uid: 24461
+ - uid: 24520
components:
- pos: -3.5,56.5
parent: 2
type: Transform
- - uid: 24462
+ - uid: 24521
components:
- rot: 3.141592653589793 rad
pos: 46.5,-39.5
parent: 2
type: Transform
- - uid: 24463
+ - uid: 24522
components:
- rot: 3.141592653589793 rad
pos: 71.5,-38.5
@@ -160977,7 +161653,7 @@ entities:
type: Transform
- proto: SmallLight
entities:
- - uid: 24464
+ - uid: 24523
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-48.5
@@ -160985,181 +161661,169 @@ entities:
type: Transform
- proto: SmartFridge
entities:
- - uid: 24465
+ - uid: 24524
components:
- flags: SessionSpecific
type: MetaData
- pos: -4.5,-61.5
parent: 2
type: Transform
- - uid: 24466
+ - uid: 24525
components:
- pos: 11.5,-45.5
parent: 2
type: Transform
- proto: SMESBasic
entities:
- - uid: 24467
+ - uid: 24526
components:
- pos: -56.5,-87.5
parent: 2
type: Transform
- - uid: 24468
+ - uid: 24527
components:
- name: shuttle smes
type: MetaData
- pos: -65.5,-53.5
parent: 2
type: Transform
- - uid: 24469
+ - uid: 24528
components:
- name: teg smes
type: MetaData
- pos: -69.5,-35.5
parent: 2
type: Transform
- - uid: 24470
+ - uid: 24529
components:
- name: telecoms smes
type: MetaData
- pos: 4.5,-20.5
parent: 2
type: Transform
- - uid: 24471
+ - uid: 24530
components:
- name: south solar smes 2
type: MetaData
- pos: -2.5,-78.5
parent: 2
type: Transform
- - uid: 24472
+ - uid: 24531
components:
- name: brig smes
type: MetaData
- pos: 48.5,-3.5
parent: 2
type: Transform
- - uid: 24473
+ - uid: 24532
components:
- name: engineering smes 1
type: MetaData
- pos: -48.5,-21.5
parent: 2
type: Transform
- - uid: 24474
+ - uid: 24533
components:
- name: engineering smes 2
type: MetaData
- pos: -46.5,-21.5
parent: 2
type: Transform
- - uid: 24475
+ - uid: 24534
components:
- name: engineering smes 3
type: MetaData
- pos: -44.5,-21.5
parent: 2
type: Transform
- - uid: 24476
+ - uid: 24535
components:
- name: singularity substation
type: MetaData
- pos: -50.5,-9.5
parent: 2
type: Transform
- - uid: 24477
+ - uid: 24536
components:
- name: PA smes
type: MetaData
- pos: -56.5,-20.5
parent: 2
type: Transform
- - uid: 24478
+ - uid: 24537
components:
- name: atmos smes
type: MetaData
- pos: -28.5,-37.5
parent: 2
type: Transform
- - uid: 24479
+ - uid: 24538
components:
- name: north solars smes 1
type: MetaData
- pos: 73.5,38.5
parent: 2
type: Transform
- - uid: 24480
+ - uid: 24539
components:
- name: north solars smes 2
type: MetaData
- pos: 73.5,34.5
parent: 2
type: Transform
- - uid: 24481
+ - uid: 24540
components:
- name: south solar smes 1
type: MetaData
- pos: -0.5,-78.5
parent: 2
type: Transform
- - uid: 24482
+ - uid: 24541
components:
- name: engineering smes 6
type: MetaData
- pos: -70.5,-30.5
parent: 2
type: Transform
- - uid: 24483
+ - uid: 24542
components:
- name: engineering smes 4
type: MetaData
- pos: -74.5,-30.5
parent: 2
type: Transform
- - uid: 24484
+ - uid: 24543
components:
- name: engineering smes 5
type: MetaData
- pos: -72.5,-30.5
parent: 2
type: Transform
-- proto: Soap
- entities:
- - uid: 24485
- components:
- - pos: -13.533843,-21.411894
- parent: 2
- type: Transform
- - uid: 24486
- components:
- - pos: -13.440093,-21.677519
- parent: 2
- type: Transform
- proto: soda_dispenser
entities:
- - uid: 24487
+ - uid: 24544
components:
- rot: -1.5707963267948966 rad
pos: 18.5,11.5
parent: 2
type: Transform
- - uid: 24488
+ - uid: 24545
components:
- pos: -40.5,-74.5
parent: 2
type: Transform
- - uid: 24489
+ - uid: 24546
components:
- pos: 37.5,51.5
parent: 2
type: Transform
- - uid: 24490
+ - uid: 24547
components:
- rot: 3.141592653589793 rad
pos: -20.5,47.5
parent: 2
type: Transform
- - uid: 24491
+ - uid: 24548
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-34.5
@@ -161167,653 +161831,653 @@ entities:
type: Transform
- proto: SodiumLightTube
entities:
- - uid: 24492
+ - uid: 24549
components:
- pos: -42.50719,-90.42425
parent: 2
type: Transform
- - uid: 24493
+ - uid: 24550
components:
- pos: -13.634616,12.467242
parent: 2
type: Transform
- proto: SolarPanel
entities:
- - uid: 24494
+ - uid: 24551
components:
- pos: 10.5,-101.5
parent: 2
type: Transform
- - uid: 24495
+ - uid: 24552
components:
- pos: 16.5,-95.5
parent: 2
type: Transform
- - uid: 24496
+ - uid: 24553
components:
- pos: 18.5,-95.5
parent: 2
type: Transform
- - uid: 24497
+ - uid: 24554
components:
- pos: 6.5,-104.5
parent: 2
type: Transform
- - uid: 24498
+ - uid: 24555
components:
- pos: 10.5,-95.5
parent: 2
type: Transform
- - uid: 24499
+ - uid: 24556
components:
- pos: 12.5,-101.5
parent: 2
type: Transform
- - uid: 24500
+ - uid: 24557
components:
- pos: 8.5,-104.5
parent: 2
type: Transform
- - uid: 24501
+ - uid: 24558
components:
- pos: 14.5,-98.5
parent: 2
type: Transform
- - uid: 24502
+ - uid: 24559
components:
- pos: 10.5,-98.5
parent: 2
type: Transform
- - uid: 24503
+ - uid: 24560
components:
- pos: 8.5,-98.5
parent: 2
type: Transform
- - uid: 24504
+ - uid: 24561
components:
- pos: 8.5,-95.5
parent: 2
type: Transform
- - uid: 24505
+ - uid: 24562
components:
- pos: 12.5,-95.5
parent: 2
type: Transform
- - uid: 24506
+ - uid: 24563
components:
- pos: 12.5,-98.5
parent: 2
type: Transform
- - uid: 24507
+ - uid: 24564
components:
- pos: 14.5,-101.5
parent: 2
type: Transform
- - uid: 24508
+ - uid: 24565
components:
- pos: 14.5,-95.5
parent: 2
type: Transform
- - uid: 24509
+ - uid: 24566
components:
- pos: 6.5,-95.5
parent: 2
type: Transform
- - uid: 24510
+ - uid: 24567
components:
- pos: 8.5,-101.5
parent: 2
type: Transform
- - uid: 24511
+ - uid: 24568
components:
- pos: 4.5,-95.5
parent: 2
type: Transform
- - uid: 24512
+ - uid: 24569
components:
- pos: 12.5,-104.5
parent: 2
type: Transform
- - uid: 24513
+ - uid: 24570
components:
- pos: 16.5,-101.5
parent: 2
type: Transform
- - uid: 24514
+ - uid: 24571
components:
- pos: 18.5,-101.5
parent: 2
type: Transform
- - uid: 24515
+ - uid: 24572
components:
- pos: 18.5,-98.5
parent: 2
type: Transform
- - uid: 24516
+ - uid: 24573
components:
- pos: 16.5,-98.5
parent: 2
type: Transform
- - uid: 24517
+ - uid: 24574
components:
- pos: 18.5,-104.5
parent: 2
type: Transform
- - uid: 24518
+ - uid: 24575
components:
- pos: 16.5,-104.5
parent: 2
type: Transform
- - uid: 24519
+ - uid: 24576
components:
- pos: 4.5,-104.5
parent: 2
type: Transform
- - uid: 24520
+ - uid: 24577
components:
- pos: 4.5,-101.5
parent: 2
type: Transform
- - uid: 24521
+ - uid: 24578
components:
- pos: 6.5,-101.5
parent: 2
type: Transform
- - uid: 24522
+ - uid: 24579
components:
- pos: 4.5,-98.5
parent: 2
type: Transform
- - uid: 24523
+ - uid: 24580
components:
- pos: 6.5,-98.5
parent: 2
type: Transform
- - uid: 24524
+ - uid: 24581
components:
- pos: 14.5,-104.5
parent: 2
type: Transform
- - uid: 24525
+ - uid: 24582
components:
- pos: 10.5,-104.5
parent: 2
type: Transform
- - uid: 24526
+ - uid: 24583
components:
- rot: 1.5707963267948966 rad
pos: 90.5,44.5
parent: 2
type: Transform
- - uid: 24527
+ - uid: 24584
components:
- rot: 1.5707963267948966 rad
pos: 90.5,43.5
parent: 2
type: Transform
- - uid: 24528
+ - uid: 24585
components:
- rot: 1.5707963267948966 rad
pos: 90.5,41.5
parent: 2
type: Transform
- - uid: 24529
+ - uid: 24586
components:
- rot: 1.5707963267948966 rad
pos: 90.5,42.5
parent: 2
type: Transform
- - uid: 24530
+ - uid: 24587
components:
- rot: 1.5707963267948966 rad
pos: 90.5,40.5
parent: 2
type: Transform
- - uid: 24531
+ - uid: 24588
components:
- rot: 1.5707963267948966 rad
pos: 90.5,39.5
parent: 2
type: Transform
- - uid: 24532
+ - uid: 24589
components:
- rot: 1.5707963267948966 rad
pos: 90.5,38.5
parent: 2
type: Transform
- - uid: 24533
+ - uid: 24590
components:
- rot: 1.5707963267948966 rad
pos: 90.5,37.5
parent: 2
type: Transform
- - uid: 24534
+ - uid: 24591
components:
- rot: 1.5707963267948966 rad
pos: 87.5,44.5
parent: 2
type: Transform
- - uid: 24535
+ - uid: 24592
components:
- rot: 1.5707963267948966 rad
pos: 87.5,43.5
parent: 2
type: Transform
- - uid: 24536
+ - uid: 24593
components:
- rot: 1.5707963267948966 rad
pos: 87.5,42.5
parent: 2
type: Transform
- - uid: 24537
+ - uid: 24594
components:
- rot: 1.5707963267948966 rad
pos: 87.5,41.5
parent: 2
type: Transform
- - uid: 24538
+ - uid: 24595
components:
- rot: 1.5707963267948966 rad
pos: 87.5,40.5
parent: 2
type: Transform
- - uid: 24539
+ - uid: 24596
components:
- rot: 1.5707963267948966 rad
pos: 87.5,39.5
parent: 2
type: Transform
- - uid: 24540
+ - uid: 24597
components:
- rot: 1.5707963267948966 rad
pos: 87.5,38.5
parent: 2
type: Transform
- - uid: 24541
+ - uid: 24598
components:
- rot: 1.5707963267948966 rad
pos: 87.5,37.5
parent: 2
type: Transform
- - uid: 24542
+ - uid: 24599
components:
- rot: 1.5707963267948966 rad
pos: 84.5,44.5
parent: 2
type: Transform
- - uid: 24543
+ - uid: 24600
components:
- rot: 1.5707963267948966 rad
pos: 84.5,43.5
parent: 2
type: Transform
- - uid: 24544
+ - uid: 24601
components:
- rot: 1.5707963267948966 rad
pos: 84.5,42.5
parent: 2
type: Transform
- - uid: 24545
+ - uid: 24602
components:
- rot: 1.5707963267948966 rad
pos: 84.5,41.5
parent: 2
type: Transform
- - uid: 24546
+ - uid: 24603
components:
- rot: 1.5707963267948966 rad
pos: 84.5,40.5
parent: 2
type: Transform
- - uid: 24547
+ - uid: 24604
components:
- rot: 1.5707963267948966 rad
pos: 84.5,39.5
parent: 2
type: Transform
- - uid: 24548
+ - uid: 24605
components:
- rot: 1.5707963267948966 rad
pos: 84.5,38.5
parent: 2
type: Transform
- - uid: 24549
+ - uid: 24606
components:
- rot: 1.5707963267948966 rad
pos: 84.5,37.5
parent: 2
type: Transform
- - uid: 24550
+ - uid: 24607
components:
- rot: 1.5707963267948966 rad
pos: 81.5,44.5
parent: 2
type: Transform
- - uid: 24551
+ - uid: 24608
components:
- rot: 1.5707963267948966 rad
pos: 81.5,43.5
parent: 2
type: Transform
- - uid: 24552
+ - uid: 24609
components:
- rot: 1.5707963267948966 rad
pos: 81.5,42.5
parent: 2
type: Transform
- - uid: 24553
+ - uid: 24610
components:
- rot: 1.5707963267948966 rad
pos: 81.5,41.5
parent: 2
type: Transform
- - uid: 24554
+ - uid: 24611
components:
- rot: 1.5707963267948966 rad
pos: 81.5,40.5
parent: 2
type: Transform
- - uid: 24555
+ - uid: 24612
components:
- rot: 1.5707963267948966 rad
pos: 81.5,39.5
parent: 2
type: Transform
- - uid: 24556
+ - uid: 24613
components:
- rot: 1.5707963267948966 rad
pos: 81.5,38.5
parent: 2
type: Transform
- - uid: 24557
+ - uid: 24614
components:
- rot: 1.5707963267948966 rad
pos: 81.5,37.5
parent: 2
type: Transform
- - uid: 24558
+ - uid: 24615
components:
- rot: 1.5707963267948966 rad
pos: 78.5,44.5
parent: 2
type: Transform
- - uid: 24559
+ - uid: 24616
components:
- rot: 1.5707963267948966 rad
pos: 78.5,43.5
parent: 2
type: Transform
- - uid: 24560
+ - uid: 24617
components:
- rot: 1.5707963267948966 rad
pos: 78.5,42.5
parent: 2
type: Transform
- - uid: 24561
+ - uid: 24618
components:
- rot: 1.5707963267948966 rad
pos: 78.5,41.5
parent: 2
type: Transform
- - uid: 24562
+ - uid: 24619
components:
- rot: 1.5707963267948966 rad
pos: 78.5,40.5
parent: 2
type: Transform
- - uid: 24563
+ - uid: 24620
components:
- rot: 1.5707963267948966 rad
pos: 78.5,39.5
parent: 2
type: Transform
- - uid: 24564
+ - uid: 24621
components:
- rot: 1.5707963267948966 rad
pos: 78.5,38.5
parent: 2
type: Transform
- - uid: 24565
+ - uid: 24622
components:
- rot: 1.5707963267948966 rad
pos: 78.5,37.5
parent: 2
type: Transform
- - uid: 24566
+ - uid: 24623
components:
- rot: 1.5707963267948966 rad
pos: 78.5,35.5
parent: 2
type: Transform
- - uid: 24567
+ - uid: 24624
components:
- rot: 1.5707963267948966 rad
pos: 78.5,34.5
parent: 2
type: Transform
- - uid: 24568
+ - uid: 24625
components:
- rot: 1.5707963267948966 rad
pos: 78.5,33.5
parent: 2
type: Transform
- - uid: 24569
+ - uid: 24626
components:
- rot: 1.5707963267948966 rad
pos: 78.5,32.5
parent: 2
type: Transform
- - uid: 24570
+ - uid: 24627
components:
- rot: 1.5707963267948966 rad
pos: 78.5,31.5
parent: 2
type: Transform
- - uid: 24571
+ - uid: 24628
components:
- rot: 1.5707963267948966 rad
pos: 78.5,30.5
parent: 2
type: Transform
- - uid: 24572
+ - uid: 24629
components:
- rot: 1.5707963267948966 rad
pos: 78.5,29.5
parent: 2
type: Transform
- - uid: 24573
+ - uid: 24630
components:
- rot: 1.5707963267948966 rad
pos: 78.5,28.5
parent: 2
type: Transform
- - uid: 24574
+ - uid: 24631
components:
- rot: 1.5707963267948966 rad
pos: 81.5,35.5
parent: 2
type: Transform
- - uid: 24575
+ - uid: 24632
components:
- rot: 1.5707963267948966 rad
pos: 81.5,34.5
parent: 2
type: Transform
- - uid: 24576
+ - uid: 24633
components:
- rot: 1.5707963267948966 rad
pos: 81.5,33.5
parent: 2
type: Transform
- - uid: 24577
+ - uid: 24634
components:
- rot: 1.5707963267948966 rad
pos: 81.5,32.5
parent: 2
type: Transform
- - uid: 24578
+ - uid: 24635
components:
- rot: 1.5707963267948966 rad
pos: 81.5,31.5
parent: 2
type: Transform
- - uid: 24579
+ - uid: 24636
components:
- rot: 1.5707963267948966 rad
pos: 81.5,30.5
parent: 2
type: Transform
- - uid: 24580
+ - uid: 24637
components:
- rot: 1.5707963267948966 rad
pos: 81.5,29.5
parent: 2
type: Transform
- - uid: 24581
+ - uid: 24638
components:
- rot: 1.5707963267948966 rad
pos: 81.5,28.5
parent: 2
type: Transform
- - uid: 24582
+ - uid: 24639
components:
- rot: 1.5707963267948966 rad
pos: 84.5,35.5
parent: 2
type: Transform
- - uid: 24583
+ - uid: 24640
components:
- rot: 1.5707963267948966 rad
pos: 84.5,34.5
parent: 2
type: Transform
- - uid: 24584
+ - uid: 24641
components:
- rot: 1.5707963267948966 rad
pos: 84.5,33.5
parent: 2
type: Transform
- - uid: 24585
+ - uid: 24642
components:
- rot: 1.5707963267948966 rad
pos: 84.5,32.5
parent: 2
type: Transform
- - uid: 24586
+ - uid: 24643
components:
- rot: 1.5707963267948966 rad
pos: 84.5,31.5
parent: 2
type: Transform
- - uid: 24587
+ - uid: 24644
components:
- rot: 1.5707963267948966 rad
pos: 84.5,30.5
parent: 2
type: Transform
- - uid: 24588
+ - uid: 24645
components:
- rot: 1.5707963267948966 rad
pos: 84.5,29.5
parent: 2
type: Transform
- - uid: 24589
+ - uid: 24646
components:
- rot: 1.5707963267948966 rad
pos: 84.5,28.5
parent: 2
type: Transform
- - uid: 24590
+ - uid: 24647
components:
- rot: 1.5707963267948966 rad
pos: 87.5,35.5
parent: 2
type: Transform
- - uid: 24591
+ - uid: 24648
components:
- rot: 1.5707963267948966 rad
pos: 87.5,34.5
parent: 2
type: Transform
- - uid: 24592
+ - uid: 24649
components:
- rot: 1.5707963267948966 rad
pos: 87.5,33.5
parent: 2
type: Transform
- - uid: 24593
+ - uid: 24650
components:
- rot: 1.5707963267948966 rad
pos: 87.5,32.5
parent: 2
type: Transform
- - uid: 24594
+ - uid: 24651
components:
- rot: 1.5707963267948966 rad
pos: 87.5,31.5
parent: 2
type: Transform
- - uid: 24595
+ - uid: 24652
components:
- rot: 1.5707963267948966 rad
pos: 87.5,30.5
parent: 2
type: Transform
- - uid: 24596
+ - uid: 24653
components:
- rot: 1.5707963267948966 rad
pos: 87.5,29.5
parent: 2
type: Transform
- - uid: 24597
+ - uid: 24654
components:
- rot: 1.5707963267948966 rad
pos: 87.5,28.5
parent: 2
type: Transform
- - uid: 24598
+ - uid: 24655
components:
- rot: 1.5707963267948966 rad
pos: 90.5,35.5
parent: 2
type: Transform
- - uid: 24599
+ - uid: 24656
components:
- rot: 1.5707963267948966 rad
pos: 90.5,34.5
parent: 2
type: Transform
- - uid: 24600
+ - uid: 24657
components:
- rot: 1.5707963267948966 rad
pos: 90.5,33.5
parent: 2
type: Transform
- - uid: 24601
+ - uid: 24658
components:
- rot: 1.5707963267948966 rad
pos: 90.5,32.5
parent: 2
type: Transform
- - uid: 24602
+ - uid: 24659
components:
- rot: 1.5707963267948966 rad
pos: 90.5,31.5
parent: 2
type: Transform
- - uid: 24603
+ - uid: 24660
components:
- rot: 1.5707963267948966 rad
pos: 90.5,30.5
parent: 2
type: Transform
- - uid: 24604
+ - uid: 24661
components:
- rot: 1.5707963267948966 rad
pos: 90.5,29.5
parent: 2
type: Transform
- - uid: 24605
+ - uid: 24662
components:
- rot: 1.5707963267948966 rad
pos: 90.5,28.5
@@ -161821,62 +162485,62 @@ entities:
type: Transform
- proto: SolarPanelBroken
entities:
- - uid: 24606
+ - uid: 24663
components:
- pos: -4.5,-73.5
parent: 2
type: Transform
- - uid: 24607
+ - uid: 24664
components:
- rot: 3.141592653589793 rad
pos: 62.5,29.5
parent: 2
type: Transform
- - uid: 24608
+ - uid: 24665
components:
- pos: 46.5,-62.5
parent: 2
type: Transform
- proto: SolarTracker
entities:
- - uid: 24609
+ - uid: 24666
components:
- pos: 11.5,-105.5
parent: 2
type: Transform
- - uid: 24610
+ - uid: 24667
components:
- pos: 91.5,36.5
parent: 2
type: Transform
- proto: SpaceCash
entities:
- - uid: 24611
+ - uid: 24668
components:
- rot: 1.5707963267948966 rad
pos: 53.352566,29.426033
parent: 2
type: Transform
- - uid: 24612
+ - uid: 24669
components:
- pos: 53.49319,28.910408
parent: 2
type: Transform
- - uid: 24613
+ - uid: 24670
components:
- pos: 53.58694,28.691658
parent: 2
type: Transform
- proto: SpaceCash1000
entities:
- - uid: 24614
+ - uid: 24671
components:
- pos: 59.59177,-29.360462
parent: 2
type: Transform
- proto: SpaceMedipen
entities:
- - uid: 24615
+ - uid: 24672
components:
- rot: -1.5707963267948966 rad
pos: -55.678448,-39.42407
@@ -161884,152 +162548,152 @@ entities:
type: Transform
- proto: SpaceQuartz1
entities:
- - uid: 24616
+ - uid: 24673
components:
- pos: -31.635456,29.591772
parent: 2
type: Transform
- proto: SpaceVillainArcadeComputerCircuitboard
entities:
- - uid: 24617
+ - uid: 24674
components:
- pos: -12.610414,35.61681
parent: 2
type: Transform
- proto: SpawnMobAlexander
entities:
- - uid: 24618
+ - uid: 24675
components:
- pos: 3.5,5.5
parent: 2
type: Transform
- proto: SpawnMobBear
entities:
- - uid: 24619
+ - uid: 24676
components:
- pos: -37.5,62.5
parent: 2
type: Transform
- proto: SpawnMobButterfly
entities:
- - uid: 24620
+ - uid: 24677
components:
- pos: -5.5,54.5
parent: 2
type: Transform
- - uid: 24621
+ - uid: 24678
components:
- pos: -8.5,51.5
parent: 2
type: Transform
- proto: SpawnMobCat
entities:
- - uid: 24622
+ - uid: 24679
components:
- pos: -12.5,-38.5
parent: 2
type: Transform
- - uid: 24623
+ - uid: 24680
components:
- pos: 57.5,16.5
parent: 2
type: Transform
- proto: SpawnMobCatGeneric
entities:
- - uid: 24624
+ - uid: 24681
components:
- pos: -55.5,-64.5
parent: 2
type: Transform
- proto: SpawnMobCleanBot
entities:
- - uid: 24625
+ - uid: 24682
components:
- pos: 15.5,-42.5
parent: 2
type: Transform
- proto: SpawnMobCorgi
entities:
- - uid: 24626
+ - uid: 24683
components:
- pos: 3.5,-7.5
parent: 2
type: Transform
- proto: SpawnMobCow
entities:
- - uid: 24627
+ - uid: 24684
components:
- pos: -7.5,18.5
parent: 2
type: Transform
- - uid: 24628
+ - uid: 24685
components:
- pos: -4.5,18.5
parent: 2
type: Transform
- proto: SpawnMobFoxRenault
entities:
- - uid: 24629
+ - uid: 24686
components:
- pos: 32.5,-28.5
parent: 2
type: Transform
- proto: SpawnMobFrog
entities:
- - uid: 24630
+ - uid: 24687
components:
- pos: 11.5,53.5
parent: 2
type: Transform
- - uid: 24631
+ - uid: 24688
components:
- pos: 8.5,54.5
parent: 2
type: Transform
- proto: SpawnMobHamsterHamlet
entities:
- - uid: 24632
+ - uid: 24689
components:
- pos: 30.5,-23.5
parent: 2
type: Transform
- proto: SpawnMobKangaroo
entities:
- - uid: 24633
+ - uid: 24690
components:
- pos: -53.5,61.5
parent: 2
type: Transform
- proto: SpawnMobKangarooWillow
entities:
- - uid: 24634
+ - uid: 24691
components:
- pos: 25.5,-0.5
parent: 2
type: Transform
- proto: SpawnMobMcGriff
entities:
- - uid: 24635
+ - uid: 24692
components:
- pos: 26.5,23.5
parent: 2
type: Transform
- proto: SpawnMobMedibot
entities:
- - uid: 24636
+ - uid: 24693
components:
- pos: -8.5,-46.5
parent: 2
type: Transform
- proto: SpawnMobMonkey
entities:
- - uid: 24637
+ - uid: 24694
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-89.5
parent: 2
type: Transform
- - uid: 24638
+ - uid: 24695
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-89.5
@@ -162037,928 +162701,944 @@ entities:
type: Transform
- proto: SpawnMobMonkeyPunpun
entities:
- - uid: 24639
+ - uid: 24696
components:
- pos: 16.5,9.5
parent: 2
type: Transform
- proto: SpawnMobMouse
entities:
- - uid: 24640
+ - uid: 24697
components:
- pos: 2.5,-69.5
parent: 2
type: Transform
- - uid: 24641
+ - uid: 24698
components:
- pos: -0.5,33.5
parent: 2
type: Transform
- - uid: 24642
+ - uid: 24699
components:
- pos: -28.5,-41.5
parent: 2
type: Transform
- - uid: 24643
+ - uid: 24700
components:
- pos: -29.5,-47.5
parent: 2
type: Transform
- - uid: 24644
+ - uid: 24701
components:
- pos: 49.5,-33.5
parent: 2
type: Transform
- - uid: 24645
+ - uid: 24702
components:
- pos: -7.5,-81.5
parent: 2
type: Transform
- - uid: 24646
+ - uid: 24703
components:
- pos: 6.5,32.5
parent: 2
type: Transform
- - uid: 24647
+ - uid: 24704
components:
- pos: 35.5,22.5
parent: 2
type: Transform
- - uid: 24648
+ - uid: 24705
components:
- pos: -15.5,13.5
parent: 2
type: Transform
- - uid: 24649
+ - uid: 24706
components:
- pos: 52.5,36.5
parent: 2
type: Transform
- - uid: 24650
+ - uid: 24707
components:
- pos: -51.5,-0.5
parent: 2
type: Transform
- - uid: 24651
+ - uid: 24708
components:
- pos: -38.5,-64.5
parent: 2
type: Transform
- - uid: 24652
+ - uid: 24709
components:
- pos: -40.5,-81.5
parent: 2
type: Transform
- - uid: 24653
+ - uid: 24710
components:
- pos: -45.5,-77.5
parent: 2
type: Transform
- - uid: 24654
+ - uid: 24711
components:
- pos: 48.5,-65.5
parent: 2
type: Transform
- proto: SpawnMobPossumMorty
entities:
- - uid: 24655
+ - uid: 24712
components:
- pos: -15.5,-63.5
parent: 2
type: Transform
- proto: SpawnMobRaccoonMorticia
entities:
- - uid: 24656
+ - uid: 24713
components:
- pos: -33.5,31.5
parent: 2
type: Transform
- proto: SpawnMobShiva
entities:
- - uid: 24657
+ - uid: 24714
components:
- pos: 4.5,19.5
parent: 2
type: Transform
- proto: SpawnMobSlothPaperwork
entities:
- - uid: 24658
+ - uid: 24715
components:
- pos: 12.5,-7.5
parent: 2
type: Transform
- proto: SpawnMobSmile
entities:
- - uid: 24659
+ - uid: 24716
components:
- pos: 62.5,-43.5
parent: 2
type: Transform
- proto: SpawnMobSpaceSpider
entities:
- - uid: 24660
+ - uid: 24717
components:
- pos: -47.5,68.5
parent: 2
type: Transform
- proto: SpawnMobWalter
entities:
- - uid: 24661
+ - uid: 24718
components:
- pos: -0.5,-53.5
parent: 2
type: Transform
- proto: SpawnPointAssistant
entities:
- - uid: 24662
+ - uid: 24719
components:
- pos: -25.5,-22.5
parent: 2
type: Transform
- - uid: 24663
+ - uid: 24720
components:
- pos: -23.5,-22.5
parent: 2
type: Transform
- - uid: 24664
+ - uid: 24721
components:
- pos: 41.5,-72.5
parent: 2
type: Transform
- - uid: 24665
+ - uid: 24722
components:
- pos: 38.5,-72.5
parent: 2
type: Transform
- - uid: 24666
+ - uid: 24723
components:
- pos: 40.5,-55.5
parent: 2
type: Transform
- - uid: 24667
+ - uid: 24724
components:
- pos: -51.5,14.5
parent: 2
type: Transform
- - uid: 24668
+ - uid: 24725
components:
- pos: -45.5,5.5
parent: 2
type: Transform
- - uid: 24669
+ - uid: 24726
components:
- pos: -52.5,7.5
parent: 2
type: Transform
- - uid: 24670
+ - uid: 24727
components:
- pos: 39.5,-54.5
parent: 2
type: Transform
- - uid: 24671
+ - uid: 24728
components:
- pos: -46.5,7.5
parent: 2
type: Transform
- - uid: 24672
+ - uid: 24729
components:
- pos: -19.5,34.5
parent: 2
type: Transform
- - uid: 24673
+ - uid: 24730
components:
- pos: -11.5,32.5
parent: 2
type: Transform
- - uid: 24674
+ - uid: 24731
components:
- pos: -23.5,30.5
parent: 2
type: Transform
- - uid: 24675
+ - uid: 24732
components:
- pos: -42.5,10.5
parent: 2
type: Transform
- - uid: 24676
+ - uid: 24733
components:
- pos: -24.5,-20.5
parent: 2
type: Transform
- - uid: 24677
+ - uid: 24734
components:
- pos: -44.5,3.5
parent: 2
type: Transform
- - uid: 24678
+ - uid: 24735
components:
- pos: 43.5,-72.5
parent: 2
type: Transform
- - uid: 24679
+ - uid: 24736
components:
- pos: 36.5,-72.5
parent: 2
type: Transform
- proto: SpawnPointAtmos
entities:
- - uid: 24680
+ - uid: 24737
components:
- pos: -39.5,-34.5
parent: 2
type: Transform
- - uid: 24681
+ - uid: 24738
components:
- pos: -37.5,-35.5
parent: 2
type: Transform
- - uid: 24682
+ - uid: 24739
components:
- pos: -36.5,-34.5
parent: 2
type: Transform
- proto: SpawnPointBartender
entities:
- - uid: 24683
+ - uid: 24740
components:
- pos: 17.5,13.5
parent: 2
type: Transform
- - uid: 24684
+ - uid: 24741
components:
- pos: 17.5,11.5
parent: 2
type: Transform
- proto: SpawnPointBorg
entities:
- - uid: 24685
+ - uid: 24742
components:
- pos: 64.5,-44.5
parent: 2
type: Transform
- - uid: 24686
+ - uid: 24743
components:
- pos: 60.5,-44.5
parent: 2
type: Transform
- proto: SpawnPointBotanist
entities:
- - uid: 24687
+ - uid: 24744
components:
- pos: -5.5,7.5
parent: 2
type: Transform
- - uid: 24688
+ - uid: 24745
components:
- pos: -7.5,7.5
parent: 2
type: Transform
- - uid: 24689
+ - uid: 24746
components:
- pos: -9.5,7.5
parent: 2
type: Transform
- proto: SpawnPointBoxer
entities:
- - uid: 24690
+ - uid: 24747
components:
- pos: 22.5,2.5
parent: 2
type: Transform
- proto: SpawnPointCaptain
entities:
- - uid: 24691
+ - uid: 24748
components:
- pos: 26.5,-22.5
parent: 2
type: Transform
- proto: SpawnPointCargoTechnician
entities:
- - uid: 24692
+ - uid: 24749
components:
- pos: -46.5,16.5
parent: 2
type: Transform
- - uid: 24693
+ - uid: 24750
components:
- pos: -31.5,24.5
parent: 2
type: Transform
- - uid: 24694
+ - uid: 24751
components:
- pos: -33.5,22.5
parent: 2
type: Transform
- - uid: 24695
+ - uid: 24752
components:
- pos: -31.5,19.5
parent: 2
type: Transform
- - uid: 24696
+ - uid: 24753
components:
- pos: -31.5,21.5
parent: 2
type: Transform
- proto: SpawnPointChaplain
entities:
- - uid: 24697
+ - uid: 24754
components:
- pos: -30.5,13.5
parent: 2
type: Transform
- - uid: 24698
+ - uid: 24755
components:
- pos: -30.5,14.5
parent: 2
type: Transform
- proto: SpawnPointChef
entities:
- - uid: 24699
+ - uid: 24756
components:
- pos: 0.5,7.5
parent: 2
type: Transform
- - uid: 24700
+ - uid: 24757
components:
- pos: 5.5,7.5
parent: 2
type: Transform
- - uid: 24701
+ - uid: 24758
components:
- pos: 5.5,9.5
parent: 2
type: Transform
- proto: SpawnPointChemist
entities:
- - uid: 24702
+ - uid: 24759
components:
- pos: 3.5,-50.5
parent: 2
type: Transform
- - uid: 24703
+ - uid: 24760
components:
- pos: 3.5,-48.5
parent: 2
type: Transform
- - uid: 24704
+ - uid: 24761
components:
- pos: 3.5,-46.5
parent: 2
type: Transform
- proto: SpawnPointChiefEngineer
entities:
- - uid: 24705
+ - uid: 24762
components:
- pos: -36.5,-17.5
parent: 2
type: Transform
- proto: SpawnPointChiefMedicalOfficer
entities:
- - uid: 24706
+ - uid: 24763
components:
- pos: -18.5,-55.5
parent: 2
type: Transform
- proto: SpawnPointClown
entities:
- - uid: 24707
+ - uid: 24764
components:
- pos: -21.5,38.5
parent: 2
type: Transform
- - uid: 24708
+ - uid: 24765
components:
- pos: 0.5,-21.5
parent: 2
type: Transform
- proto: SpawnPointDetective
entities:
- - uid: 24709
+ - uid: 24766
components:
- pos: 19.5,-11.5
parent: 2
type: Transform
- proto: SpawnPointHeadOfPersonnel
entities:
- - uid: 24710
+ - uid: 24767
components:
- pos: 4.5,-5.5
parent: 2
type: Transform
- proto: SpawnPointHeadOfSecurity
entities:
- - uid: 24711
+ - uid: 24768
components:
- pos: 5.5,21.5
parent: 2
type: Transform
- proto: SpawnPointJanitor
entities:
- - uid: 24712
+ - uid: 24769
components:
- pos: -11.5,-18.5
parent: 2
type: Transform
- - uid: 24713
+ - uid: 24770
components:
- pos: -10.5,-22.5
parent: 2
type: Transform
- - uid: 24714
+ - uid: 24771
components:
- pos: -12.5,-22.5
parent: 2
type: Transform
- proto: SpawnPointLatejoin
entities:
- - uid: 24715
+ - uid: 24772
components:
- pos: 39.5,-72.5
parent: 2
type: Transform
- - uid: 24716
+ - uid: 24773
components:
- pos: 40.5,-72.5
parent: 2
type: Transform
- - uid: 24717
+ - uid: 24774
components:
- pos: 42.5,-72.5
parent: 2
type: Transform
- - uid: 24718
+ - uid: 24775
components:
- pos: 37.5,-72.5
parent: 2
type: Transform
- proto: SpawnPointLawyer
entities:
- - uid: 24719
+ - uid: 24776
components:
- pos: 42.5,-2.5
parent: 2
type: Transform
- - uid: 24720
+ - uid: 24777
components:
- pos: 39.5,-4.5
parent: 2
type: Transform
- proto: SpawnPointLibrarian
entities:
- - uid: 24721
+ - uid: 24778
components:
- pos: 11.5,-9.5
parent: 2
type: Transform
- - uid: 24722
+ - uid: 24779
components:
- pos: 9.5,-9.5
parent: 2
type: Transform
- proto: SpawnPointMedicalDoctor
entities:
- - uid: 24723
+ - uid: 24780
components:
- pos: -14.5,-46.5
parent: 2
type: Transform
- - uid: 24724
+ - uid: 24781
components:
- pos: -12.5,-46.5
parent: 2
type: Transform
- - uid: 24725
+ - uid: 24782
components:
- pos: -12.5,-48.5
parent: 2
type: Transform
- - uid: 24726
+ - uid: 24783
components:
- pos: -14.5,-48.5
parent: 2
type: Transform
- - uid: 24727
+ - uid: 24784
components:
- pos: -28.5,-74.5
parent: 2
type: Transform
- proto: SpawnPointMedicalIntern
entities:
- - uid: 24728
+ - uid: 24785
components:
- - pos: -1.5,-47.5
+ - pos: -0.5,-47.5
parent: 2
type: Transform
- proto: SpawnPointMime
entities:
- - uid: 24729
+ - uid: 24786
components:
- pos: -27.5,45.5
parent: 2
type: Transform
- - uid: 24730
+ - uid: 24787
components:
- pos: -0.5,-20.5
parent: 2
type: Transform
- proto: SpawnPointMusician
entities:
- - uid: 24731
+ - uid: 24788
components:
- pos: -9.5,-5.5
parent: 2
type: Transform
- - uid: 24732
+ - uid: 24789
components:
- pos: -7.5,-5.5
parent: 2
type: Transform
- proto: SpawnPointObserver
entities:
- - uid: 24733
+ - uid: 24790
components:
- pos: -4.5,-41.5
parent: 2
type: Transform
- proto: SpawnPointParamedic
entities:
- - uid: 24734
+ - uid: 24791
components:
- pos: 3.5,-64.5
parent: 2
type: Transform
- proto: SpawnPointPsychologist
entities:
- - uid: 24735
+ - uid: 24792
components:
- pos: -11.5,-36.5
parent: 2
type: Transform
- proto: SpawnPointQuartermaster
entities:
- - uid: 24736
+ - uid: 24793
components:
- pos: -31.5,30.5
parent: 2
type: Transform
- proto: SpawnPointReporter
entities:
- - uid: 24737
+ - uid: 24794
components:
- pos: -25.5,11.5
parent: 2
type: Transform
- proto: SpawnPointResearchAssistant
entities:
- - uid: 24738
+ - uid: 24795
components:
- pos: 49.5,-40.5
parent: 2
type: Transform
- proto: SpawnPointResearchDirector
entities:
- - uid: 24739
+ - uid: 24796
components:
- pos: 63.5,-52.5
parent: 2
type: Transform
- proto: SpawnPointSalvageSpecialist
entities:
- - uid: 24740
+ - uid: 24797
components:
- pos: -37.5,32.5
parent: 2
type: Transform
- - uid: 24741
+ - uid: 24798
components:
- pos: -37.5,30.5
parent: 2
type: Transform
- - uid: 24742
+ - uid: 24799
components:
- pos: -37.5,28.5
parent: 2
type: Transform
- proto: SpawnPointScientist
entities:
- - uid: 24743
+ - uid: 24800
components:
- pos: 45.5,-46.5
parent: 2
type: Transform
- - uid: 24744
+ - uid: 24801
components:
- pos: 43.5,-46.5
parent: 2
type: Transform
- - uid: 24745
+ - uid: 24802
components:
- pos: 41.5,-46.5
parent: 2
type: Transform
- - uid: 24746
+ - uid: 24803
components:
- pos: 44.5,-47.5
parent: 2
type: Transform
- - uid: 24747
+ - uid: 24804
components:
- pos: 74.5,-34.5
parent: 2
type: Transform
- proto: SpawnPointSecurityCadet
entities:
- - uid: 24748
+ - uid: 24805
components:
- pos: 23.5,18.5
parent: 2
type: Transform
- - uid: 24749
+ - uid: 24806
components:
- pos: 25.5,18.5
parent: 2
type: Transform
- proto: SpawnPointSecurityOfficer
entities:
- - uid: 24750
+ - uid: 24807
components:
- pos: 1.5,19.5
parent: 2
type: Transform
- - uid: 24751
+ - uid: 24808
components:
- pos: 7.5,16.5
parent: 2
type: Transform
- - uid: 24752
+ - uid: 24809
components:
- pos: 5.5,16.5
parent: 2
type: Transform
- - uid: 24753
+ - uid: 24810
components:
- pos: 0.5,18.5
parent: 2
type: Transform
- - uid: 24754
+ - uid: 24811
components:
- pos: 1.5,17.5
parent: 2
type: Transform
- - uid: 24755
+ - uid: 24812
components:
- pos: 6.5,13.5
parent: 2
type: Transform
- proto: SpawnPointServiceWorker
entities:
- - uid: 24756
+ - uid: 24813
components:
- pos: -21.5,44.5
parent: 2
type: Transform
- - uid: 24757
+ - uid: 24814
components:
- pos: -10.5,42.5
parent: 2
type: Transform
- - uid: 24758
+ - uid: 24815
components:
- pos: -21.5,48.5
parent: 2
type: Transform
- proto: SpawnPointStationEngineer
entities:
- - uid: 24759
+ - uid: 24816
components:
- pos: -37.5,-10.5
parent: 2
type: Transform
- - uid: 24760
+ - uid: 24817
components:
- pos: -38.5,-12.5
parent: 2
type: Transform
- - uid: 24761
+ - uid: 24818
components:
- pos: -36.5,-12.5
parent: 2
type: Transform
- - uid: 24762
+ - uid: 24819
components:
- pos: -35.5,-10.5
parent: 2
type: Transform
- - uid: 24763
+ - uid: 24820
components:
- pos: -35.5,-7.5
parent: 2
type: Transform
- proto: SpawnPointTechnicalAssistant
entities:
- - uid: 24764
+ - uid: 24821
components:
- pos: -23.5,-10.5
parent: 2
type: Transform
- - uid: 24765
+ - uid: 24822
components:
- pos: -24.5,-12.5
parent: 2
type: Transform
- proto: SpawnPointWarden
entities:
- - uid: 24766
+ - uid: 24823
components:
- pos: 23.5,21.5
parent: 2
type: Transform
- proto: SpawnVehicleJanicart
entities:
- - uid: 24767
+ - uid: 24824
components:
- pos: -12.5,-23.5
parent: 2
type: Transform
- proto: SpawnVehicleSecway
entities:
- - uid: 24768
+ - uid: 24825
components:
- pos: 10.5,22.5
parent: 2
type: Transform
- - uid: 24769
+ - uid: 24826
components:
- pos: 10.5,21.5
parent: 2
type: Transform
- - uid: 24770
+ - uid: 24827
components:
- pos: 10.5,20.5
parent: 2
type: Transform
- proto: SpawnVehicleWheelchairFolded
entities:
- - uid: 24771
+ - uid: 24828
components:
- pos: -12.5,-61.5
parent: 2
type: Transform
- proto: SpawnVendingMachineRestockFoodDrink
entities:
- - uid: 24772
+ - uid: 24829
components:
- pos: 37.5,-10.5
parent: 2
type: Transform
- - uid: 24773
+ - uid: 24830
components:
- pos: -13.5,-12.5
parent: 2
type: Transform
- proto: SpiderWeb
entities:
- - uid: 24774
+ - uid: 24831
components:
- pos: -38.5,-71.5
parent: 2
type: Transform
- - uid: 24775
+ - uid: 24832
components:
- pos: -39.5,-70.5
parent: 2
type: Transform
- - uid: 24776
+ - uid: 24833
components:
- pos: -46.5,-72.5
parent: 2
type: Transform
- - uid: 24777
+ - uid: 24834
components:
- pos: -47.5,-73.5
parent: 2
type: Transform
- - uid: 24778
+ - uid: 24835
components:
- pos: -52.5,-68.5
parent: 2
type: Transform
- - uid: 24779
+ - uid: 24836
components:
- pos: -50.5,-62.5
parent: 2
type: Transform
- proto: SprayBottle
entities:
- - uid: 24780
+ - uid: 24837
+ components:
+ - pos: -7.3262715,-17.288473
+ parent: 2
+ type: Transform
+ - uid: 24838
+ components:
+ - pos: -7.2793965,-17.491598
+ parent: 2
+ type: Transform
+ - uid: 24839
components:
- pos: 53.44381,-51.454926
parent: 2
type: Transform
- proto: SprayBottleSpaceCleaner
entities:
- - uid: 24781
+ - uid: 24840
components:
- pos: -13.517906,-22.26318
parent: 2
type: Transform
- - uid: 24782
+ - uid: 24841
components:
- pos: -13.721031,-22.20068
parent: 2
type: Transform
- - uid: 24783
+ - uid: 24842
components:
- pos: -13.62392,-22.29671
parent: 2
type: Transform
- - uid: 24784
+ - uid: 24843
components:
- pos: -13.389545,-22.218584
parent: 2
type: Transform
- proto: Stairs
entities:
- - uid: 24785
+ - uid: 24844
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 24845
components:
- rot: 3.141592653589793 rad
pos: -19.5,-8.5
parent: 2
type: Transform
- - uid: 24786
+ - uid: 24846
components:
- rot: 3.141592653589793 rad
pos: -18.5,-8.5
parent: 2
type: Transform
- - uid: 24787
+ - uid: 24847
components:
- pos: -20.5,-23.5
parent: 2
type: Transform
- - uid: 24788
+ - uid: 24848
components:
- pos: -19.5,-23.5
parent: 2
type: Transform
- - uid: 24789
+ - uid: 24849
components:
- rot: 3.141592653589793 rad
pos: -20.5,-8.5
parent: 2
type: Transform
- - uid: 24790
+ - uid: 24850
components:
- pos: -18.5,-23.5
parent: 2
type: Transform
- - uid: 24791
+ - uid: 24851
components:
- pos: -31.5,-20.5
parent: 2
type: Transform
- - uid: 24792
+ - uid: 24852
components:
- pos: -32.5,-20.5
parent: 2
type: Transform
- - uid: 24793
+ - uid: 24853
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-32.5
parent: 2
type: Transform
- - uid: 24794
+ - uid: 24854
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-31.5
parent: 2
type: Transform
- - uid: 24795
+ - uid: 24855
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-36.5
parent: 2
type: Transform
- - uid: 24796
+ - uid: 24856
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-37.5
parent: 2
type: Transform
- - uid: 24797
+ - uid: 24857
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-27.5
parent: 2
type: Transform
- - uid: 24798
+ - uid: 24858
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-28.5
parent: 2
type: Transform
- - uid: 24799
+ - uid: 24859
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-22.5
@@ -162966,13 +163646,13 @@ entities:
type: Transform
- proto: StairStage
entities:
- - uid: 24800
+ - uid: 24860
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-2.5
parent: 2
type: Transform
- - uid: 24801
+ - uid: 24861
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-3.5
@@ -162980,74 +163660,74 @@ entities:
type: Transform
- proto: StasisBed
entities:
- - uid: 24802
+ - uid: 24862
components:
- pos: 4.5,-64.5
parent: 2
type: Transform
- - uid: 24803
+ - uid: 24863
components:
- pos: 4.5,-63.5
parent: 2
type: Transform
- proto: StationMap
entities:
- - uid: 24804
+ - uid: 24864
components:
- pos: 5.5,-24.5
parent: 2
type: Transform
- - uid: 24805
+ - uid: 24865
components:
- pos: 12.5,-40.5
parent: 2
type: Transform
- - uid: 24806
+ - uid: 24866
components:
- pos: -32.5,2.5
parent: 2
type: Transform
- - uid: 24807
+ - uid: 24867
components:
- pos: -18.5,52.5
parent: 2
type: Transform
- - uid: 24808
+ - uid: 24868
components:
- pos: 45.5,-70.5
parent: 2
type: Transform
- - uid: 24809
+ - uid: 24869
components:
- pos: 41.5,-40.5
parent: 2
type: Transform
- - uid: 24810
+ - uid: 24870
components:
- pos: 48.5,3.5
parent: 2
type: Transform
- - uid: 24811
+ - uid: 24871
components:
- pos: 20.5,9.5
parent: 2
type: Transform
- - uid: 24812
+ - uid: 24872
components:
- pos: -8.5,47.5
parent: 2
type: Transform
- - uid: 24813
+ - uid: 24873
components:
- pos: 12.5,-79.5
parent: 2
type: Transform
- - uid: 24814
+ - uid: 24874
components:
- pos: -69.5,-36.5
parent: 2
type: Transform
- - uid: 24815
+ - uid: 24875
components:
- rot: 3.141592653589793 rad
pos: 13.5,-2.5
@@ -163055,7 +163735,7 @@ entities:
type: Transform
- proto: SteelOre1
entities:
- - uid: 24816
+ - uid: 24876
components:
- rot: 3.141592653589793 rad
pos: 20.04077,49.432205
@@ -163063,27 +163743,63 @@ entities:
type: Transform
- proto: Stool
entities:
- - uid: 24817
+ - uid: 24877
components:
- rot: -1.5707963267948966 rad
pos: 9.5,5.5
parent: 2
type: Transform
- - uid: 24818
+ - uid: 24878
components:
- rot: -1.5707963267948966 rad
pos: -33.5,13.5
parent: 2
type: Transform
+ - uid: 24879
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.4904113,-31.020304
+ parent: 2
+ type: Transform
+ - uid: 24880
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.4904113,-31.020304
+ parent: 2
+ type: Transform
+ - uid: 24881
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5372863,-31.035929
+ parent: 2
+ type: Transform
+ - uid: 24882
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.4904113,-33.067177
+ parent: 2
+ type: Transform
+ - uid: 24883
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.4904113,-33.035927
+ parent: 2
+ type: Transform
+ - uid: 24884
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5060363,-33.05155
+ parent: 2
+ type: Transform
- proto: StoolBar
entities:
- - uid: 24819
+ - uid: 24885
components:
- rot: 1.5707963267948966 rad
pos: 14.5,10.5
parent: 2
type: Transform
- - uid: 24820
+ - uid: 24886
components:
- name: stool
type: MetaData
@@ -163091,7 +163807,7 @@ entities:
pos: -6.5,3.5
parent: 2
type: Transform
- - uid: 24821
+ - uid: 24887
components:
- name: stool
type: MetaData
@@ -163099,24 +163815,24 @@ entities:
pos: 1.5,3.5
parent: 2
type: Transform
- - uid: 24822
+ - uid: 24888
components:
- rot: 1.5707963267948966 rad
pos: 14.5,13.5
parent: 2
type: Transform
- - uid: 24823
+ - uid: 24889
components:
- rot: 1.5707963267948966 rad
pos: 14.5,12.5
parent: 2
type: Transform
- - uid: 24824
+ - uid: 24890
components:
- pos: 5.5,12.5
parent: 2
type: Transform
- - uid: 24825
+ - uid: 24891
components:
- name: stool
type: MetaData
@@ -163124,7 +163840,7 @@ entities:
pos: 0.5,3.5
parent: 2
type: Transform
- - uid: 24826
+ - uid: 24892
components:
- name: stool
type: MetaData
@@ -163132,78 +163848,78 @@ entities:
pos: 2.5,3.5
parent: 2
type: Transform
- - uid: 24827
+ - uid: 24893
components:
- rot: 1.5707963267948966 rad
pos: 14.5,11.5
parent: 2
type: Transform
- - uid: 24828
+ - uid: 24894
components:
- rot: -1.5707963267948966 rad
pos: 8.5,9.5
parent: 2
type: Transform
- - uid: 24829
+ - uid: 24895
components:
- rot: -1.5707963267948966 rad
pos: 8.5,8.5
parent: 2
type: Transform
- - uid: 24830
+ - uid: 24896
components:
- rot: -1.5707963267948966 rad
pos: 8.5,7.5
parent: 2
type: Transform
- - uid: 24831
+ - uid: 24897
components:
- rot: 1.5707963267948966 rad
pos: 14.5,9.5
parent: 2
type: Transform
- - uid: 24832
+ - uid: 24898
components:
- rot: 3.141592653589793 rad
pos: -40.5,-79.5
parent: 2
type: Transform
- - uid: 24833
+ - uid: 24899
components:
- rot: 3.141592653589793 rad
pos: -41.5,-79.5
parent: 2
type: Transform
- - uid: 24834
+ - uid: 24900
components:
- rot: 3.141592653589793 rad
pos: -42.5,-79.5
parent: 2
type: Transform
- - uid: 24835
+ - uid: 24901
components:
- rot: 3.141592653589793 rad
pos: -43.5,-79.5
parent: 2
type: Transform
- - uid: 24836
+ - uid: 24902
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-78.5
parent: 2
type: Transform
- - uid: 24837
+ - uid: 24903
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-78.5
parent: 2
type: Transform
- - uid: 24838
+ - uid: 24904
components:
- pos: 4.5,12.5
parent: 2
type: Transform
- - uid: 24839
+ - uid: 24905
components:
- name: stool
type: MetaData
@@ -163211,7 +163927,7 @@ entities:
pos: -7.5,3.5
parent: 2
type: Transform
- - uid: 24840
+ - uid: 24906
components:
- name: stool
type: MetaData
@@ -163219,75 +163935,75 @@ entities:
pos: -8.5,3.5
parent: 2
type: Transform
- - uid: 24841
+ - uid: 24907
components:
- rot: 3.141592653589793 rad
pos: 39.5,48.5
parent: 2
type: Transform
- - uid: 24842
+ - uid: 24908
components:
- rot: 3.141592653589793 rad
pos: 38.5,48.5
parent: 2
type: Transform
- - uid: 24843
+ - uid: 24909
components:
- rot: 3.141592653589793 rad
pos: 37.5,48.5
parent: 2
type: Transform
- - uid: 24844
+ - uid: 24910
components:
- rot: 3.141592653589793 rad
pos: 36.5,48.5
parent: 2
type: Transform
- - uid: 24845
+ - uid: 24911
components:
- name: donk stool
type: MetaData
- pos: -9.5,44.5
parent: 2
type: Transform
- - uid: 24846
+ - uid: 24912
components:
- name: donk stool
type: MetaData
- pos: -10.5,44.5
parent: 2
type: Transform
- - uid: 24847
+ - uid: 24913
components:
- pos: -30.5,-96.5
parent: 2
type: Transform
- - uid: 24848
+ - uid: 24914
components:
- name: donk stool
type: MetaData
- pos: -11.5,44.5
parent: 2
type: Transform
- - uid: 24849
+ - uid: 24915
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-34.5
parent: 2
type: Transform
- - uid: 24850
+ - uid: 24916
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-35.5
parent: 2
type: Transform
- - uid: 24851
+ - uid: 24917
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-36.5
parent: 2
type: Transform
- - uid: 24852
+ - uid: 24918
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-37.5
@@ -163295,285 +164011,283 @@ entities:
type: Transform
- proto: StorageCanister
entities:
- - uid: 24853
+ - uid: 24919
components:
- pos: -75.5,-45.5
parent: 2
type: Transform
- - uid: 24854
+ - uid: 24920
components:
- pos: 45.5,-54.5
parent: 2
type: Transform
- - uid: 24855
+ - uid: 24921
components:
- pos: 45.5,-58.5
parent: 2
type: Transform
- - uid: 24856
+ - uid: 24922
components:
- pos: -16.5,-10.5
parent: 2
type: Transform
- - uid: 24857
+ - uid: 24923
components:
- pos: -38.5,-51.5
parent: 2
type: Transform
- - uid: 24858
+ - uid: 24924
components:
- pos: -38.5,-50.5
parent: 2
type: Transform
- - uid: 24859
+ - uid: 24925
components:
- pos: -38.5,-49.5
parent: 2
type: Transform
- - uid: 24860
+ - uid: 24926
components:
- pos: -34.5,-39.5
parent: 2
type: Transform
- - uid: 24861
+ - uid: 24927
components:
- pos: -35.5,-39.5
parent: 2
type: Transform
- - uid: 24862
+ - uid: 24928
components:
- pos: -50.5,-44.5
parent: 2
type: Transform
- - uid: 24863
+ - uid: 24929
components:
- pos: -50.5,-42.5
parent: 2
type: Transform
- - uid: 24864
+ - uid: 24930
components:
- pos: 53.5,-37.5
parent: 2
type: Transform
- - uid: 24865
+ - uid: 24931
components:
- pos: -24.5,-55.5
parent: 2
type: Transform
- - uid: 24866
+ - uid: 24932
components:
- pos: -26.5,-55.5
parent: 2
type: Transform
- - uid: 24867
+ - uid: 24933
components:
- pos: 51.5,-35.5
parent: 2
type: Transform
- - uid: 24868
+ - uid: 24934
components:
- pos: -50.5,-35.5
parent: 2
type: Transform
- - uid: 24869
+ - uid: 24935
components:
- pos: -50.5,-34.5
parent: 2
type: Transform
- - uid: 24870
+ - uid: 24936
components:
- pos: -35.5,-38.5
parent: 2
type: Transform
- - uid: 24871
+ - uid: 24937
components:
- pos: -75.5,-46.5
parent: 2
type: Transform
- proto: Stunbaton
entities:
- - uid: 24872
+ - uid: 24938
components:
- pos: 8.313212,12.723815
parent: 2
type: Transform
- - uid: 24873
+ - uid: 24939
+ components:
+ - pos: 8.262076,12.8623
+ parent: 2
+ type: Transform
+- proto: SubstationBasic
+ entities:
+ - uid: 24940
components:
- - pos: 8.262076,12.8623
+ - pos: -0.5,-14.5
parent: 2
type: Transform
-- proto: SubstationBasic
- entities:
- - uid: 24874
+ - uid: 24941
components:
- pos: 13.5,-45.5
parent: 2
type: Transform
- - uid: 24875
+ - uid: 24942
components:
- pos: 13.5,-47.5
parent: 2
type: Transform
- - uid: 24876
+ - uid: 24943
components:
- pos: -56.5,-86.5
parent: 2
type: Transform
- - uid: 24877
+ - uid: 24944
components:
- name: command substation
type: MetaData
- pos: 18.5,-27.5
parent: 2
type: Transform
- - uid: 24878
+ - uid: 24945
components:
- name: teg substation
type: MetaData
- pos: -69.5,-34.5
parent: 2
type: Transform
- - uid: 24879
+ - uid: 24946
components:
- name: chapel substation
type: MetaData
- pos: -34.5,-3.5
parent: 2
type: Transform
- - uid: 24880
+ - uid: 24947
components:
- name: virology substation
type: MetaData
- pos: -12.5,-69.5
parent: 2
type: Transform
- - uid: 24881
+ - uid: 24948
components:
- name: medical substation 3
type: MetaData
- pos: 15.5,-58.5
parent: 2
type: Transform
- - uid: 24882
+ - uid: 24949
components:
- name: boxing substation
type: MetaData
- pos: 30.5,-2.5
parent: 2
type: Transform
- - uid: 24883
- components:
- - name: janitorial substation
- type: MetaData
- - pos: -8.5,-19.5
- parent: 2
- type: Transform
- - uid: 24884
+ - uid: 24950
components:
- name: vault substation
type: MetaData
- pos: 38.5,-28.5
parent: 2
type: Transform
- - uid: 24885
+ - uid: 24951
components:
- name: robotics substation
type: MetaData
- pos: 69.5,-59.5
parent: 2
type: Transform
- - uid: 24886
+ - uid: 24952
components:
- name: sec substation
type: MetaData
- pos: 33.5,25.5
parent: 2
type: Transform
- - uid: 24887
+ - uid: 24953
components:
- name: prison substation
type: MetaData
- pos: 63.5,7.5
parent: 2
type: Transform
- - uid: 24888
+ - uid: 24954
components:
- name: brig substation
type: MetaData
- pos: 47.5,-3.5
parent: 2
type: Transform
- - uid: 24889
+ - uid: 24955
components:
- name: evac substation
type: MetaData
- pos: 48.5,-5.5
parent: 2
type: Transform
- - uid: 24890
+ - uid: 24956
components:
- name: science substation
type: MetaData
- pos: 38.5,-46.5
parent: 2
type: Transform
- - uid: 24891
+ - uid: 24957
components:
- name: gravity substation
type: MetaData
- pos: -16.5,-0.5
parent: 2
type: Transform
- - uid: 24892
+ - uid: 24958
components:
- name: engineering substation
type: MetaData
- pos: -28.5,-23.5
parent: 2
type: Transform
- - uid: 24893
+ - uid: 24959
components:
- name: arrivals substation
type: MetaData
- pos: 43.5,-58.5
parent: 2
type: Transform
- - uid: 24894
+ - uid: 24960
components:
- name: singularity substation
type: MetaData
- pos: -50.5,-8.5
parent: 2
type: Transform
- - uid: 24895
+ - uid: 24961
components:
- name: PA substation
type: MetaData
- pos: -57.5,-20.5
parent: 2
type: Transform
- - uid: 24896
+ - uid: 24962
components:
- name: atmos substation
type: MetaData
- pos: -27.5,-37.5
parent: 2
type: Transform
- - uid: 24897
+ - uid: 24963
components:
- name: maints bar substation
type: MetaData
- pos: -31.5,-54.5
parent: 2
type: Transform
- - uid: 24898
+ - uid: 24964
components:
- name: north maints substation
type: MetaData
- pos: -8.5,35.5
parent: 2
type: Transform
- - uid: 24899
+ - uid: 24965
components:
- name: cargo substation
type: MetaData
@@ -163582,35 +164296,35 @@ entities:
type: Transform
missingComponents:
- Anchorable
- - uid: 24900
+ - uid: 24966
components:
- name: telecoms substation
type: MetaData
- pos: 4.5,-19.5
parent: 2
type: Transform
- - uid: 24901
+ - uid: 24967
components:
- name: sec maints substation
type: MetaData
- pos: 50.5,29.5
parent: 2
type: Transform
- - uid: 24902
+ - uid: 24968
components:
- name: ai substation
type: MetaData
- pos: -10.5,62.5
parent: 2
type: Transform
- - uid: 24903
+ - uid: 24969
components:
- name: detective substation
type: MetaData
- pos: 8.5,-16.5
parent: 2
type: Transform
- - uid: 24904
+ - uid: 24970
components:
- name: shuttle substation
type: MetaData
@@ -163619,178 +164333,178 @@ entities:
type: Transform
- proto: SuitStorageAtmos
entities:
- - uid: 24905
+ - uid: 24971
components:
- pos: -40.5,-36.5
parent: 2
type: Transform
- - uid: 24906
+ - uid: 24972
components:
- pos: -36.5,-36.5
parent: 2
type: Transform
- - uid: 24907
+ - uid: 24973
components:
- pos: -38.5,-36.5
parent: 2
type: Transform
- proto: SuitStorageCaptain
entities:
- - uid: 24908
+ - uid: 24974
components:
- pos: 28.5,-29.5
parent: 2
type: Transform
- proto: SuitStorageCE
entities:
- - uid: 24909
+ - uid: 24975
components:
- pos: -37.5,-16.5
parent: 2
type: Transform
- proto: SuitStorageCMO
entities:
- - uid: 24910
+ - uid: 24976
components:
- pos: -22.5,-55.5
parent: 2
type: Transform
- proto: SuitStorageEngi
entities:
- - uid: 24911
+ - uid: 24977
components:
- pos: -34.5,-5.5
parent: 2
type: Transform
- - uid: 24912
+ - uid: 24978
components:
- pos: -34.5,-7.5
parent: 2
type: Transform
- - uid: 24913
+ - uid: 24979
components:
- pos: -34.5,-8.5
parent: 2
type: Transform
- - uid: 24914
+ - uid: 24980
components:
- pos: -34.5,-6.5
parent: 2
type: Transform
- - uid: 24915
+ - uid: 24981
components:
- pos: -55.5,-15.5
parent: 2
type: Transform
- proto: SuitStorageEVA
entities:
- - uid: 24916
+ - uid: 24982
components:
- pos: 29.5,-10.5
parent: 2
type: Transform
- - uid: 24917
+ - uid: 24983
components:
- pos: 29.5,-12.5
parent: 2
type: Transform
- - uid: 24918
+ - uid: 24984
components:
- pos: 33.5,-10.5
parent: 2
type: Transform
- - uid: 24919
+ - uid: 24985
components:
- pos: 31.5,-12.5
parent: 2
type: Transform
- - uid: 24920
+ - uid: 24986
components:
- pos: 31.5,-10.5
parent: 2
type: Transform
- - uid: 24921
+ - uid: 24987
components:
- pos: 33.5,-12.5
parent: 2
type: Transform
- proto: SuitStorageEVAPrisoner
entities:
- - uid: 24922
+ - uid: 24988
components:
- pos: 63.5,4.5
parent: 2
type: Transform
- - uid: 24923
+ - uid: 24989
components:
- pos: 63.5,5.5
parent: 2
type: Transform
- proto: SuitStorageHOS
entities:
- - uid: 24924
+ - uid: 24990
components:
- pos: 5.5,22.5
parent: 2
type: Transform
- proto: SuitStorageRD
entities:
- - uid: 24925
+ - uid: 24991
components:
- pos: 65.5,-52.5
parent: 2
type: Transform
- proto: SuitStorageSalv
entities:
- - uid: 24926
+ - uid: 24992
components:
- pos: -36.5,33.5
parent: 2
type: Transform
- - uid: 24927
+ - uid: 24993
components:
- pos: -36.5,29.5
parent: 2
type: Transform
- - uid: 24928
+ - uid: 24994
components:
- pos: -36.5,31.5
parent: 2
type: Transform
- proto: SuitStorageSec
entities:
- - uid: 24929
+ - uid: 24995
components:
- pos: 26.5,30.5
parent: 2
type: Transform
- - uid: 24930
+ - uid: 24996
components:
- pos: 26.5,27.5
parent: 2
type: Transform
- - uid: 24931
+ - uid: 24997
components:
- pos: 32.5,27.5
parent: 2
type: Transform
- proto: SuitStorageWarden
entities:
- - uid: 24932
+ - uid: 24998
components:
- pos: 20.5,20.5
parent: 2
type: Transform
- proto: SuperMatterBinStockPart
entities:
- - uid: 24933
+ - uid: 24999
components:
- pos: -50.47893,-29.292162
parent: 2
type: Transform
- proto: SurveillanceCameraCommand
entities:
- - uid: 24934
+ - uid: 25000
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-55.5
@@ -163801,7 +164515,7 @@ entities:
nameSet: True
id: chief medical officer
type: SurveillanceCamera
- - uid: 24935
+ - uid: 25001
components:
- rot: -1.5707963267948966 rad
pos: 4.5,21.5
@@ -163812,7 +164526,7 @@ entities:
nameSet: True
id: 'head of security '
type: SurveillanceCamera
- - uid: 24936
+ - uid: 25002
components:
- rot: 3.141592653589793 rad
pos: 46.5,-27.5
@@ -163823,7 +164537,7 @@ entities:
nameSet: True
id: vault b
type: SurveillanceCamera
- - uid: 24937
+ - uid: 25003
components:
- rot: 3.141592653589793 rad
pos: 46.5,-21.5
@@ -163834,7 +164548,7 @@ entities:
nameSet: True
id: vault a
type: SurveillanceCamera
- - uid: 24938
+ - uid: 25004
components:
- pos: 31.5,-22.5
parent: 2
@@ -163844,7 +164558,7 @@ entities:
nameSet: True
id: bridge
type: SurveillanceCamera
- - uid: 24939
+ - uid: 25005
components:
- rot: 3.141592653589793 rad
pos: 64.5,-51.5
@@ -163855,7 +164569,7 @@ entities:
nameSet: True
id: research director
type: SurveillanceCamera
- - uid: 24940
+ - uid: 25006
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-10.5
@@ -163866,7 +164580,7 @@ entities:
nameSet: True
id: EVA closet
type: SurveillanceCamera
- - uid: 24941
+ - uid: 25007
components:
- pos: 28.5,-43.5
parent: 2
@@ -163876,7 +164590,7 @@ entities:
nameSet: True
id: personnel
type: SurveillanceCamera
- - uid: 24942
+ - uid: 25008
components:
- rot: 1.5707963267948966 rad
pos: 5.5,-6.5
@@ -163889,7 +164603,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraEngineering
entities:
- - uid: 24943
+ - uid: 25009
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-41.5
@@ -163900,7 +164614,7 @@ entities:
nameSet: True
id: atmospherics
type: SurveillanceCamera
- - uid: 24944
+ - uid: 25010
components:
- rot: 3.141592653589793 rad
pos: -29.5,-16.5
@@ -163911,7 +164625,7 @@ entities:
nameSet: True
id: engineering main corridor
type: SurveillanceCamera
- - uid: 24945
+ - uid: 25011
components:
- pos: -38.5,-13.5
parent: 2
@@ -163921,7 +164635,7 @@ entities:
nameSet: True
id: engineer canteen
type: SurveillanceCamera
- - uid: 24946
+ - uid: 25012
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-9.5
@@ -163932,7 +164646,7 @@ entities:
nameSet: True
id: 'AME '
type: SurveillanceCamera
- - uid: 24947
+ - uid: 25013
components:
- pos: -52.5,-20.5
parent: 2
@@ -163942,7 +164656,7 @@ entities:
nameSet: True
id: engineering console room
type: SurveillanceCamera
- - uid: 24948
+ - uid: 25014
components:
- pos: -67.5,-28.5
parent: 2
@@ -163952,7 +164666,7 @@ entities:
nameSet: True
id: particle accelerator
type: SurveillanceCamera
- - uid: 24949
+ - uid: 25015
components:
- rot: -1.5707963267948966 rad
pos: -22.5,4.5
@@ -163965,7 +164679,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraGeneral
entities:
- - uid: 24950
+ - uid: 25016
components:
- pos: -6.5,-27.5
parent: 2
@@ -163975,7 +164689,7 @@ entities:
nameSet: True
id: janitorial closet
type: SurveillanceCamera
- - uid: 24951
+ - uid: 25017
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-23.5
@@ -163986,7 +164700,7 @@ entities:
nameSet: True
id: north youtool
type: SurveillanceCamera
- - uid: 24952
+ - uid: 25018
components:
- rot: 3.141592653589793 rad
pos: 8.5,3.5
@@ -163997,7 +164711,7 @@ entities:
nameSet: True
id: food court
type: SurveillanceCamera
- - uid: 24953
+ - uid: 25019
components:
- rot: 1.5707963267948966 rad
pos: 41.5,-56.5
@@ -164008,7 +164722,7 @@ entities:
nameSet: True
id: south youtool
type: SurveillanceCamera
- - uid: 24954
+ - uid: 25020
components:
- pos: 37.5,-73.5
parent: 2
@@ -164018,7 +164732,7 @@ entities:
nameSet: True
id: arrivals
type: SurveillanceCamera
- - uid: 24955
+ - uid: 25021
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-7.5
@@ -164029,7 +164743,7 @@ entities:
nameSet: True
id: evac
type: SurveillanceCamera
- - uid: 24956
+ - uid: 25022
components:
- rot: 3.141592653589793 rad
pos: -12.5,-8.5
@@ -164042,7 +164756,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraMedical
entities:
- - uid: 24957
+ - uid: 25023
components:
- rot: -1.5707963267948966 rad
pos: -20.5,-61.5
@@ -164053,7 +164767,7 @@ entities:
nameSet: True
id: medbay corridor
type: SurveillanceCamera
- - uid: 24958
+ - uid: 25024
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-47.5
@@ -164064,7 +164778,7 @@ entities:
nameSet: True
id: medbay reception
type: SurveillanceCamera
- - uid: 24959
+ - uid: 25025
components:
- pos: -10.5,-61.5
parent: 2
@@ -164074,7 +164788,7 @@ entities:
nameSet: True
id: medical doctors corridor
type: SurveillanceCamera
- - uid: 24960
+ - uid: 25026
components:
- rot: 3.141592653589793 rad
pos: -6.5,-52.5
@@ -164085,7 +164799,7 @@ entities:
nameSet: True
id: medical beds
type: SurveillanceCamera
- - uid: 24961
+ - uid: 25027
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-70.5
@@ -164096,7 +164810,7 @@ entities:
nameSet: True
id: virology reception
type: SurveillanceCamera
- - uid: 24962
+ - uid: 25028
components:
- pos: -26.5,-80.5
parent: 2
@@ -164106,7 +164820,7 @@ entities:
nameSet: True
id: virology treatment
type: SurveillanceCamera
- - uid: 24963
+ - uid: 25029
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-83.5
@@ -164119,63 +164833,63 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraRouterCommand
entities:
- - uid: 24964
+ - uid: 25030
components:
- pos: -18.5,-48.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterEngineering
entities:
- - uid: 24965
+ - uid: 25031
components:
- pos: -21.5,-47.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterGeneral
entities:
- - uid: 24966
+ - uid: 25032
components:
- pos: -18.5,-45.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterMedical
entities:
- - uid: 24967
+ - uid: 25033
components:
- pos: -18.5,-46.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterScience
entities:
- - uid: 24968
+ - uid: 25034
components:
- pos: -21.5,-45.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterSecurity
entities:
- - uid: 24969
+ - uid: 25035
components:
- pos: -21.5,-48.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterService
entities:
- - uid: 24970
+ - uid: 25036
components:
- pos: -18.5,-47.5
parent: 2
type: Transform
- proto: SurveillanceCameraRouterSupply
entities:
- - uid: 24971
+ - uid: 25037
components:
- pos: -21.5,-46.5
parent: 2
type: Transform
- proto: SurveillanceCameraScience
entities:
- - uid: 24972
+ - uid: 25038
components:
- rot: 1.5707963267948966 rad
pos: 76.5,-48.5
@@ -164186,7 +164900,7 @@ entities:
nameSet: True
id: robotics
type: SurveillanceCamera
- - uid: 24973
+ - uid: 25039
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-36.5
@@ -164197,7 +164911,7 @@ entities:
nameSet: True
id: r&d
type: SurveillanceCamera
- - uid: 24974
+ - uid: 25040
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-47.5
@@ -164208,7 +164922,7 @@ entities:
nameSet: True
id: science robotics showcase
type: SurveillanceCamera
- - uid: 24975
+ - uid: 25041
components:
- rot: 3.141592653589793 rad
pos: 37.5,-41.5
@@ -164219,7 +164933,7 @@ entities:
nameSet: True
id: science entrance
type: SurveillanceCamera
- - uid: 24976
+ - uid: 25042
components:
- rot: 1.5707963267948966 rad
pos: 75.5,-38.5
@@ -164232,7 +164946,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraSecurity
entities:
- - uid: 24977
+ - uid: 25043
components:
- rot: 1.5707963267948966 rad
pos: 23.5,34.5
@@ -164243,7 +164957,7 @@ entities:
nameSet: True
id: space armory
type: SurveillanceCamera
- - uid: 24978
+ - uid: 25044
components:
- rot: 1.5707963267948966 rad
pos: 50.5,14.5
@@ -164254,7 +164968,7 @@ entities:
nameSet: True
id: open prison north west
type: SurveillanceCamera
- - uid: 24979
+ - uid: 25045
components:
- rot: -1.5707963267948966 rad
pos: 56.5,10.5
@@ -164265,7 +164979,7 @@ entities:
nameSet: True
id: open prison south
type: SurveillanceCamera
- - uid: 24980
+ - uid: 25046
components:
- rot: 1.5707963267948966 rad
pos: 42.5,9.5
@@ -164276,7 +164990,7 @@ entities:
nameSet: True
id: brig south
type: SurveillanceCamera
- - uid: 24981
+ - uid: 25047
components:
- rot: 3.141592653589793 rad
pos: 33.5,16.5
@@ -164287,7 +165001,7 @@ entities:
nameSet: True
id: brig
type: SurveillanceCamera
- - uid: 24982
+ - uid: 25048
components:
- rot: 1.5707963267948966 rad
pos: 32.5,31.5
@@ -164298,7 +165012,7 @@ entities:
nameSet: True
id: armory
type: SurveillanceCamera
- - uid: 24983
+ - uid: 25049
components:
- rot: 3.141592653589793 rad
pos: 8.5,17.5
@@ -164309,7 +165023,7 @@ entities:
nameSet: True
id: security canteen
type: SurveillanceCamera
- - uid: 24984
+ - uid: 25050
components:
- rot: -1.5707963267948966 rad
pos: 17.5,-11.5
@@ -164322,7 +165036,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraService
entities:
- - uid: 24985
+ - uid: 25051
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-6.5
@@ -164333,7 +165047,7 @@ entities:
nameSet: True
id: library
type: SurveillanceCamera
- - uid: 24986
+ - uid: 25052
components:
- rot: 1.5707963267948966 rad
pos: 6.5,6.5
@@ -164344,7 +165058,7 @@ entities:
nameSet: True
id: Kitchen
type: SurveillanceCamera
- - uid: 24987
+ - uid: 25053
components:
- rot: 1.5707963267948966 rad
pos: 14.5,8.5
@@ -164355,7 +165069,7 @@ entities:
nameSet: True
id: bar
type: SurveillanceCamera
- - uid: 24988
+ - uid: 25054
components:
- rot: 1.5707963267948966 rad
pos: -6.5,9.5
@@ -164368,7 +165082,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraSupply
entities:
- - uid: 24989
+ - uid: 25055
components:
- pos: -43.5,18.5
parent: 2
@@ -164378,7 +165092,7 @@ entities:
nameSet: True
id: cargo dock
type: SurveillanceCamera
- - uid: 24990
+ - uid: 25056
components:
- rot: 1.5707963267948966 rad
pos: -30.5,22.5
@@ -164389,7 +165103,7 @@ entities:
nameSet: True
id: cargo
type: SurveillanceCamera
- - uid: 24991
+ - uid: 25057
components:
- pos: -43.5,28.5
parent: 2
@@ -164399,7 +165113,7 @@ entities:
nameSet: True
id: salvage magnet
type: SurveillanceCamera
- - uid: 24992
+ - uid: 25058
components:
- rot: 3.141592653589793 rad
pos: -44.5,16.5
@@ -164412,14 +165126,14 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceCameraWirelessRouterEntertainment
entities:
- - uid: 24993
+ - uid: 25059
components:
- pos: -27.5,12.5
parent: 2
type: Transform
- proto: SurveillanceWirelessCameraAnchoredConstructed
entities:
- - uid: 24994
+ - uid: 25060
components:
- rot: 3.141592653589793 rad
pos: -26.5,13.5
@@ -164430,7 +165144,7 @@ entities:
type: SurveillanceCamera
- proto: SurveillanceWirelessCameraMovableEntertainment
entities:
- - uid: 24995
+ - uid: 25061
components:
- pos: -24.5,13.5
parent: 2
@@ -164440,7 +165154,7 @@ entities:
nameSet: True
id: news camera
type: SurveillanceCamera
- - uid: 24996
+ - uid: 25062
components:
- rot: -1.5707963267948966 rad
pos: 29.5,3.5
@@ -164448,2211 +165162,2224 @@ entities:
type: Transform
- proto: SynthesizerInstrument
entities:
- - uid: 24997
+ - uid: 25063
components:
- pos: -10.500677,-5.723185
parent: 2
type: Transform
- proto: Syringe
entities:
- - uid: 24998
+ - uid: 25064
components:
- pos: -25.497284,-79.35806
parent: 2
type: Transform
- proto: Table
entities:
- - uid: 24999
+ - uid: 25065
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-21.5
+ parent: 2
+ type: Transform
+ - uid: 25066
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-19.5
+ parent: 2
+ type: Transform
+ - uid: 25067
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-45.5
parent: 2
type: Transform
- - uid: 25000
+ - uid: 25068
components:
- pos: 7.5,-45.5
parent: 2
type: Transform
- - uid: 25001
+ - uid: 25069
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-46.5
parent: 2
type: Transform
- - uid: 25002
+ - uid: 25070
components:
- pos: 55.5,61.5
parent: 2
type: Transform
- - uid: 25003
+ - uid: 25071
components:
- pos: 54.5,61.5
parent: 2
type: Transform
- - uid: 25004
+ - uid: 25072
components:
- pos: 53.5,61.5
parent: 2
type: Transform
- - uid: 25005
+ - uid: 25073
components:
- rot: -1.5707963267948966 rad
pos: 55.5,-40.5
parent: 2
type: Transform
- - uid: 25006
+ - uid: 25074
components:
- pos: -37.5,-18.5
parent: 2
type: Transform
- - uid: 25007
+ - uid: 25075
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-34.5
parent: 2
type: Transform
- - uid: 25008
+ - uid: 25076
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-34.5
parent: 2
type: Transform
- - uid: 25009
+ - uid: 25077
components:
- pos: -25.5,-52.5
parent: 2
type: Transform
- - uid: 25010
+ - uid: 25078
components:
- rot: 3.141592653589793 rad
pos: -37.5,-7.5
parent: 2
type: Transform
- - uid: 25011
+ - uid: 25079
components:
- rot: 3.141592653589793 rad
pos: -36.5,-7.5
parent: 2
type: Transform
- - uid: 25012
+ - uid: 25080
components:
- rot: 1.5707963267948966 rad
pos: 2.5,7.5
parent: 2
type: Transform
- - uid: 25013
+ - uid: 25081
components:
- rot: 3.141592653589793 rad
pos: 18.5,11.5
parent: 2
type: Transform
- - uid: 25014
+ - uid: 25082
components:
- rot: 3.141592653589793 rad
pos: 18.5,13.5
parent: 2
type: Transform
- - uid: 25015
+ - uid: 25083
components:
- pos: -25.5,-78.5
parent: 2
type: Transform
- - uid: 25016
+ - uid: 25084
components:
- pos: -19.5,-85.5
parent: 2
type: Transform
- - uid: 25017
+ - uid: 25085
components:
- rot: 1.5707963267948966 rad
pos: 2.5,6.5
parent: 2
type: Transform
- - uid: 25018
+ - uid: 25086
components:
- rot: 3.141592653589793 rad
pos: 4.5,-50.5
parent: 2
type: Transform
- - uid: 25019
+ - uid: 25087
components:
- rot: -1.5707963267948966 rad
pos: 6.5,12.5
parent: 2
type: Transform
- - uid: 25020
+ - uid: 25088
components:
- pos: 10.5,-56.5
parent: 2
type: Transform
- - uid: 25021
+ - uid: 25089
components:
- pos: -28.5,21.5
parent: 2
type: Transform
- - uid: 25022
+ - uid: 25090
components:
- rot: 3.141592653589793 rad
pos: 73.5,-38.5
parent: 2
type: Transform
- - uid: 25023
+ - uid: 25091
components:
- rot: 1.5707963267948966 rad
pos: 4.5,6.5
parent: 2
type: Transform
- - uid: 25024
+ - uid: 25092
components:
- rot: 3.141592653589793 rad
pos: 18.5,12.5
parent: 2
type: Transform
- - uid: 25025
+ - uid: 25093
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-56.5
parent: 2
type: Transform
- - uid: 25026
+ - uid: 25094
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-56.5
parent: 2
type: Transform
- - uid: 25027
+ - uid: 25095
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-56.5
parent: 2
type: Transform
- - uid: 25028
+ - uid: 25096
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-56.5
parent: 2
type: Transform
- - uid: 25029
+ - uid: 25097
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-56.5
parent: 2
type: Transform
- - uid: 25030
+ - uid: 25098
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-56.5
parent: 2
type: Transform
- - uid: 25031
+ - uid: 25099
components:
- rot: 3.141592653589793 rad
pos: 64.5,-36.5
parent: 2
type: Transform
- - uid: 25032
+ - uid: 25100
components:
- pos: 10.5,-58.5
parent: 2
type: Transform
- - uid: 25033
+ - uid: 25101
components:
- pos: 10.5,-59.5
parent: 2
type: Transform
- - uid: 25034
+ - uid: 25102
components:
- pos: 10.5,-61.5
parent: 2
type: Transform
- - uid: 25035
+ - uid: 25103
components:
- pos: 10.5,-62.5
parent: 2
type: Transform
- - uid: 25036
+ - uid: 25104
components:
- pos: 9.5,-62.5
parent: 2
type: Transform
- - uid: 25037
+ - uid: 25105
components:
- pos: 8.5,-62.5
parent: 2
type: Transform
- - uid: 25038
- components:
- - pos: -13.5,-21.5
- parent: 2
- type: Transform
- - uid: 25039
+ - uid: 25106
components:
- pos: -13.5,-23.5
parent: 2
type: Transform
- - uid: 25040
+ - uid: 25107
components:
- pos: -12.5,-19.5
parent: 2
type: Transform
- - uid: 25041
+ - uid: 25108
components:
- pos: 3.5,-47.5
parent: 2
type: Transform
- - uid: 25042
+ - uid: 25109
components:
- pos: 8.5,13.5
parent: 2
type: Transform
- - uid: 25043
+ - uid: 25110
components:
- pos: 7.5,12.5
parent: 2
type: Transform
- - uid: 25044
+ - uid: 25111
components:
- pos: -22.5,-78.5
parent: 2
type: Transform
- - uid: 25045
+ - uid: 25112
components:
- pos: -20.5,-78.5
parent: 2
type: Transform
- - uid: 25046
+ - uid: 25113
components:
- rot: 1.5707963267948966 rad
pos: 3.5,7.5
parent: 2
type: Transform
- - uid: 25047
+ - uid: 25114
components:
- rot: 1.5707963267948966 rad
pos: 3.5,6.5
parent: 2
type: Transform
- - uid: 25048
+ - uid: 25115
components:
- pos: 10.5,-60.5
parent: 2
type: Transform
- - uid: 25049
+ - uid: 25116
components:
- rot: -1.5707963267948966 rad
pos: 8.5,14.5
parent: 2
type: Transform
- - uid: 25050
+ - uid: 25117
components:
- pos: -25.5,-79.5
parent: 2
type: Transform
- - uid: 25051
+ - uid: 25118
components:
- pos: -26.5,-20.5
parent: 2
type: Transform
- - uid: 25052
+ - uid: 25119
components:
- pos: 5.5,15.5
parent: 2
type: Transform
- - uid: 25053
+ - uid: 25120
components:
- pos: -62.5,-28.5
parent: 2
type: Transform
- - uid: 25054
+ - uid: 25121
components:
- pos: -22.5,-76.5
parent: 2
type: Transform
- - uid: 25055
+ - uid: 25122
components:
- pos: -20.5,-77.5
parent: 2
type: Transform
- - uid: 25056
+ - uid: 25123
components:
- pos: -6.5,-73.5
parent: 2
type: Transform
- - uid: 25057
+ - uid: 25124
components:
- pos: 9.5,-56.5
parent: 2
type: Transform
- - uid: 25058
+ - uid: 25125
components:
- pos: -23.5,-71.5
parent: 2
type: Transform
- - uid: 25059
+ - uid: 25126
components:
- pos: -11.5,-67.5
parent: 2
type: Transform
- - uid: 25060
+ - uid: 25127
components:
- pos: -24.5,-71.5
parent: 2
type: Transform
- - uid: 25061
+ - uid: 25128
components:
- pos: -22.5,-71.5
parent: 2
type: Transform
- - uid: 25062
+ - uid: 25129
components:
- pos: -22.5,-70.5
parent: 2
type: Transform
- - uid: 25063
+ - uid: 25130
components:
- pos: -13.5,-22.5
parent: 2
type: Transform
- - uid: 25064
+ - uid: 25131
components:
- pos: -22.5,-69.5
parent: 2
type: Transform
- - uid: 25065
+ - uid: 25132
components:
- pos: -30.5,-69.5
parent: 2
type: Transform
- - uid: 25066
+ - uid: 25133
components:
- rot: 3.141592653589793 rad
pos: -31.5,-69.5
parent: 2
type: Transform
- - uid: 25067
+ - uid: 25134
components:
- pos: -8.5,-15.5
parent: 2
type: Transform
- - uid: 25068
+ - uid: 25135
components:
- pos: 15.5,-64.5
parent: 2
type: Transform
- - uid: 25069
+ - uid: 25136
components:
- pos: 16.5,-64.5
parent: 2
type: Transform
- - uid: 25070
+ - uid: 25137
components:
- rot: 1.5707963267948966 rad
pos: 4.5,7.5
parent: 2
type: Transform
- - uid: 25071
+ - uid: 25138
components:
- rot: 3.141592653589793 rad
pos: 18.5,11.5
parent: 2
type: Transform
- - uid: 25072
+ - uid: 25139
components:
- pos: 8.5,12.5
parent: 2
type: Transform
- - uid: 25073
+ - uid: 25140
components:
- pos: 9.5,-58.5
parent: 2
type: Transform
- - uid: 25074
+ - uid: 25141
components:
- pos: -7.5,-15.5
parent: 2
type: Transform
- - uid: 25075
+ - uid: 25142
components:
- pos: -19.5,-87.5
parent: 2
type: Transform
- - uid: 25076
+ - uid: 25143
components:
- pos: -19.5,-84.5
parent: 2
type: Transform
- - uid: 25077
+ - uid: 25144
components:
- pos: -26.5,-86.5
parent: 2
type: Transform
- - uid: 25078
+ - uid: 25145
components:
- pos: -26.5,-84.5
parent: 2
type: Transform
- - uid: 25079
+ - uid: 25146
components:
- pos: -25.5,-84.5
parent: 2
type: Transform
- - uid: 25080
+ - uid: 25147
components:
- pos: -24.5,-84.5
parent: 2
type: Transform
- - uid: 25081
+ - uid: 25148
components:
- pos: 12.5,20.5
parent: 2
type: Transform
- - uid: 25082
+ - uid: 25149
components:
- pos: 12.5,19.5
parent: 2
type: Transform
- - uid: 25083
+ - uid: 25150
components:
- pos: 12.5,21.5
parent: 2
type: Transform
- - uid: 25084
+ - uid: 25151
components:
- pos: -10.5,-32.5
parent: 2
type: Transform
- - uid: 25085
+ - uid: 25152
components:
- pos: -9.5,-32.5
parent: 2
type: Transform
- - uid: 25086
+ - uid: 25153
components:
- pos: -8.5,-32.5
parent: 2
type: Transform
- - uid: 25087
+ - uid: 25154
components:
- pos: -8.5,-33.5
parent: 2
type: Transform
- - uid: 25088
+ - uid: 25155
components:
- rot: 3.141592653589793 rad
pos: 17.5,22.5
parent: 2
type: Transform
- - uid: 25089
+ - uid: 25156
components:
- pos: 17.5,21.5
parent: 2
type: Transform
- - uid: 25090
+ - uid: 25157
components:
- pos: 16.5,21.5
parent: 2
type: Transform
- - uid: 25091
+ - uid: 25158
components:
- pos: 15.5,21.5
parent: 2
type: Transform
- - uid: 25092
+ - uid: 25159
components:
- rot: 3.141592653589793 rad
pos: 15.5,22.5
parent: 2
type: Transform
- - uid: 25093
+ - uid: 25160
components:
- rot: 3.141592653589793 rad
pos: 16.5,22.5
parent: 2
type: Transform
- - uid: 25094
+ - uid: 25161
components:
- pos: -9.5,-15.5
parent: 2
type: Transform
- - uid: 25095
+ - uid: 25162
components:
- pos: 53.5,35.5
parent: 2
type: Transform
- - uid: 25096
+ - uid: 25163
components:
- pos: 54.5,35.5
parent: 2
type: Transform
- - uid: 25097
+ - uid: 25164
components:
- rot: 1.5707963267948966 rad
pos: 54.5,18.5
parent: 2
type: Transform
- - uid: 25098
+ - uid: 25165
components:
- rot: 1.5707963267948966 rad
pos: 53.5,18.5
parent: 2
type: Transform
- - uid: 25099
+ - uid: 25166
components:
- rot: 1.5707963267948966 rad
pos: 52.5,18.5
parent: 2
type: Transform
- - uid: 25100
+ - uid: 25167
components:
- pos: 45.5,8.5
parent: 2
type: Transform
- - uid: 25101
+ - uid: 25168
components:
- pos: 62.5,18.5
parent: 2
type: Transform
- - uid: 25102
+ - uid: 25169
components:
- pos: 62.5,15.5
parent: 2
type: Transform
- - uid: 25103
+ - uid: 25170
components:
- pos: 59.5,24.5
parent: 2
type: Transform
- - uid: 25104
+ - uid: 25171
components:
- pos: 47.5,24.5
parent: 2
type: Transform
- - uid: 25105
+ - uid: 25172
components:
- pos: 53.5,24.5
parent: 2
type: Transform
- - uid: 25106
+ - uid: 25173
components:
- pos: 50.5,24.5
parent: 2
type: Transform
- - uid: 25107
+ - uid: 25174
components:
- pos: 56.5,24.5
parent: 2
type: Transform
- - uid: 25108
+ - uid: 25175
components:
- pos: 48.5,18.5
parent: 2
type: Transform
- - uid: 25109
+ - uid: 25176
components:
- pos: 57.5,20.5
parent: 2
type: Transform
- - uid: 25110
+ - uid: 25177
components:
- pos: 57.5,19.5
parent: 2
type: Transform
- - uid: 25111
+ - uid: 25178
components:
- pos: 58.5,19.5
parent: 2
type: Transform
- - uid: 25112
+ - uid: 25179
components:
- pos: 51.5,7.5
parent: 2
type: Transform
- - uid: 25113
+ - uid: 25180
components:
- pos: 52.5,7.5
parent: 2
type: Transform
- - uid: 25114
+ - uid: 25181
components:
- pos: 52.5,6.5
parent: 2
type: Transform
- - uid: 25115
+ - uid: 25182
components:
- pos: 51.5,6.5
parent: 2
type: Transform
- - uid: 25116
+ - uid: 25183
components:
- rot: 3.141592653589793 rad
pos: 52.5,11.5
parent: 2
type: Transform
- - uid: 25117
+ - uid: 25184
components:
- pos: 58.5,20.5
parent: 2
type: Transform
- - uid: 25118
+ - uid: 25185
components:
- rot: -1.5707963267948966 rad
pos: 47.5,4.5
parent: 2
type: Transform
- - uid: 25119
+ - uid: 25186
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-6.5
parent: 2
type: Transform
- - uid: 25120
+ - uid: 25187
components:
- pos: 41.5,-39.5
parent: 2
type: Transform
- - uid: 25121
+ - uid: 25188
components:
- pos: 40.5,-39.5
parent: 2
type: Transform
- - uid: 25122
+ - uid: 25189
components:
- pos: 39.5,-39.5
parent: 2
type: Transform
- - uid: 25123
+ - uid: 25190
components:
- pos: 38.5,-39.5
parent: 2
type: Transform
- - uid: 25124
+ - uid: 25191
components:
- pos: 38.5,-38.5
parent: 2
type: Transform
- - uid: 25125
+ - uid: 25192
components:
- pos: 38.5,-37.5
parent: 2
type: Transform
- - uid: 25126
+ - uid: 25193
components:
- rot: 3.141592653589793 rad
pos: 77.5,-46.5
parent: 2
type: Transform
- - uid: 25127
+ - uid: 25194
components:
- pos: 38.5,-36.5
parent: 2
type: Transform
- - uid: 25128
+ - uid: 25195
components:
- pos: 42.5,-35.5
parent: 2
type: Transform
- - uid: 25129
+ - uid: 25196
components:
- pos: 41.5,-35.5
parent: 2
type: Transform
- - uid: 25130
+ - uid: 25197
components:
- pos: 46.5,-49.5
parent: 2
type: Transform
- - uid: 25131
+ - uid: 25198
components:
- pos: 45.5,-49.5
parent: 2
type: Transform
- - uid: 25132
+ - uid: 25199
components:
- pos: 44.5,-49.5
parent: 2
type: Transform
- - uid: 25133
+ - uid: 25200
components:
- pos: 43.5,-49.5
parent: 2
type: Transform
- - uid: 25134
+ - uid: 25201
components:
- pos: 42.5,-49.5
parent: 2
type: Transform
- - uid: 25135
+ - uid: 25202
components:
- pos: 42.5,-48.5
parent: 2
type: Transform
- - uid: 25136
+ - uid: 25203
components:
- pos: 71.5,-43.5
parent: 2
type: Transform
- - uid: 25137
+ - uid: 25204
components:
- pos: 73.5,-44.5
parent: 2
type: Transform
- - uid: 25138
+ - uid: 25205
components:
- rot: -1.5707963267948966 rad
pos: 73.5,-47.5
parent: 2
type: Transform
- - uid: 25139
+ - uid: 25206
components:
- pos: 69.5,-49.5
parent: 2
type: Transform
- - uid: 25140
+ - uid: 25207
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-47.5
parent: 2
type: Transform
- - uid: 25141
+ - uid: 25208
components:
- pos: 73.5,-43.5
parent: 2
type: Transform
- - uid: 25142
+ - uid: 25209
components:
- pos: 72.5,-43.5
parent: 2
type: Transform
- - uid: 25143
+ - uid: 25210
components:
- pos: -11.5,-48.5
parent: 2
type: Transform
- - uid: 25144
+ - uid: 25211
components:
- pos: -11.5,-49.5
parent: 2
type: Transform
- - uid: 25145
+ - uid: 25212
components:
- pos: -11.5,-50.5
parent: 2
type: Transform
- - uid: 25146
+ - uid: 25213
components:
- pos: -12.5,-50.5
parent: 2
type: Transform
- - uid: 25147
+ - uid: 25214
components:
- pos: 53.5,-51.5
parent: 2
type: Transform
- - uid: 25148
+ - uid: 25215
components:
- pos: 53.5,-52.5
parent: 2
type: Transform
- - uid: 25149
+ - uid: 25216
components:
- pos: 53.5,-53.5
parent: 2
type: Transform
- - uid: 25150
+ - uid: 25217
components:
- rot: 3.141592653589793 rad
pos: -24.5,-19.5
parent: 2
type: Transform
- - uid: 25151
+ - uid: 25218
components:
- rot: 3.141592653589793 rad
pos: -25.5,-19.5
parent: 2
type: Transform
- - uid: 25152
+ - uid: 25219
components:
- pos: -22.5,-20.5
parent: 2
type: Transform
- - uid: 25153
+ - uid: 25220
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-24.5
parent: 2
type: Transform
- - uid: 25154
+ - uid: 25221
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-24.5
parent: 2
type: Transform
- - uid: 25155
+ - uid: 25222
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-24.5
parent: 2
type: Transform
- - uid: 25156
+ - uid: 25223
components:
- pos: -26.5,-19.5
parent: 2
type: Transform
- - uid: 25157
+ - uid: 25224
components:
- pos: 30.5,-61.5
parent: 2
type: Transform
- - uid: 25158
+ - uid: 25225
components:
- pos: 31.5,-61.5
parent: 2
type: Transform
- - uid: 25159
+ - uid: 25226
components:
- pos: 40.5,-53.5
parent: 2
type: Transform
- - uid: 25160
+ - uid: 25227
components:
- pos: 41.5,-53.5
parent: 2
type: Transform
- - uid: 25161
+ - uid: 25228
components:
- pos: 41.5,-54.5
parent: 2
type: Transform
- - uid: 25162
+ - uid: 25229
components:
- pos: 41.5,-55.5
parent: 2
type: Transform
- - uid: 25163
+ - uid: 25230
components:
- rot: 3.141592653589793 rad
pos: 26.5,-68.5
parent: 2
type: Transform
- - uid: 25164
+ - uid: 25231
components:
- pos: -34.5,-13.5
parent: 2
type: Transform
- - uid: 25165
+ - uid: 25232
components:
- pos: -35.5,-13.5
parent: 2
type: Transform
- - uid: 25166
+ - uid: 25233
components:
- pos: -36.5,-8.5
parent: 2
type: Transform
- - uid: 25167
+ - uid: 25234
components:
- pos: -34.5,-12.5
parent: 2
type: Transform
- - uid: 25168
+ - uid: 25235
components:
- pos: -39.5,-16.5
parent: 2
type: Transform
- - uid: 25169
+ - uid: 25236
components:
- pos: -39.5,-17.5
parent: 2
type: Transform
- - uid: 25170
+ - uid: 25237
components:
- pos: -39.5,-18.5
parent: 2
type: Transform
- - uid: 25171
+ - uid: 25238
components:
- pos: -40.5,-18.5
parent: 2
type: Transform
- - uid: 25172
+ - uid: 25239
components:
- pos: -42.5,-18.5
parent: 2
type: Transform
- - uid: 25173
+ - uid: 25240
components:
- pos: -42.5,-17.5
parent: 2
type: Transform
- - uid: 25174
+ - uid: 25241
components:
- pos: -42.5,-16.5
parent: 2
type: Transform
- - uid: 25175
+ - uid: 25242
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-5.5
parent: 2
type: Transform
- - uid: 25176
+ - uid: 25243
components:
- pos: -30.5,-37.5
parent: 2
type: Transform
- - uid: 25177
+ - uid: 25244
components:
- rot: 3.141592653589793 rad
pos: -52.5,-13.5
parent: 2
type: Transform
- - uid: 25178
+ - uid: 25245
components:
- pos: -57.5,-30.5
parent: 2
type: Transform
- - uid: 25179
+ - uid: 25246
components:
- pos: -62.5,-27.5
parent: 2
type: Transform
- - uid: 25180
+ - uid: 25247
components:
- pos: -35.5,-46.5
parent: 2
type: Transform
- - uid: 25181
+ - uid: 25248
components:
- pos: -35.5,-47.5
parent: 2
type: Transform
- - uid: 25182
+ - uid: 25249
components:
- pos: -35.5,-48.5
parent: 2
type: Transform
- - uid: 25183
+ - uid: 25250
components:
- pos: -35.5,-49.5
parent: 2
type: Transform
- - uid: 25184
+ - uid: 25251
components:
- pos: -35.5,-50.5
parent: 2
type: Transform
- - uid: 25185
+ - uid: 25252
components:
- pos: -52.5,-15.5
parent: 2
type: Transform
- - uid: 25186
+ - uid: 25253
components:
- pos: -52.5,-14.5
parent: 2
type: Transform
- - uid: 25187
+ - uid: 25254
components:
- pos: -52.5,-12.5
parent: 2
type: Transform
- - uid: 25188
+ - uid: 25255
components:
- pos: -70.5,-25.5
parent: 2
type: Transform
- - uid: 25189
+ - uid: 25256
components:
- pos: -70.5,-26.5
parent: 2
type: Transform
- - uid: 25190
+ - uid: 25257
components:
- pos: -71.5,-26.5
parent: 2
type: Transform
- - uid: 25191
+ - uid: 25258
components:
- rot: 3.141592653589793 rad
pos: 20.5,-45.5
parent: 2
type: Transform
- - uid: 25192
+ - uid: 25259
components:
- pos: -28.5,-52.5
parent: 2
type: Transform
- - uid: 25193
+ - uid: 25260
components:
- pos: -27.5,-52.5
parent: 2
type: Transform
- - uid: 25194
+ - uid: 25261
components:
- pos: -24.5,-52.5
parent: 2
type: Transform
- - uid: 25195
+ - uid: 25262
components:
- pos: -38.5,-27.5
parent: 2
type: Transform
- - uid: 25196
+ - uid: 25263
components:
- pos: -43.5,-27.5
parent: 2
type: Transform
- - uid: 25197
+ - uid: 25264
components:
- pos: -54.5,-38.5
parent: 2
type: Transform
- - uid: 25198
+ - uid: 25265
components:
- pos: -54.5,-39.5
parent: 2
type: Transform
- - uid: 25199
+ - uid: 25266
components:
- pos: -55.5,-39.5
parent: 2
type: Transform
- - uid: 25200
+ - uid: 25267
components:
- pos: -57.5,-35.5
parent: 2
type: Transform
- - uid: 25201
+ - uid: 25268
components:
- pos: -56.5,-35.5
parent: 2
type: Transform
- - uid: 25202
+ - uid: 25269
components:
- pos: -22.5,-33.5
parent: 2
type: Transform
- - uid: 25203
+ - uid: 25270
components:
- pos: 38.5,-55.5
parent: 2
type: Transform
- - uid: 25204
+ - uid: 25271
components:
- pos: 38.5,-56.5
parent: 2
type: Transform
- - uid: 25205
+ - uid: 25272
components:
- pos: -34.5,17.5
parent: 2
type: Transform
- - uid: 25206
+ - uid: 25273
components:
- pos: -27.5,24.5
parent: 2
type: Transform
- - uid: 25207
+ - uid: 25274
components:
- pos: -22.5,17.5
parent: 2
type: Transform
- - uid: 25208
+ - uid: 25275
components:
- pos: -39.5,25.5
parent: 2
type: Transform
- - uid: 25209
+ - uid: 25276
components:
- pos: -40.5,25.5
parent: 2
type: Transform
- - uid: 25210
+ - uid: 25277
components:
- pos: -43.5,25.5
parent: 2
type: Transform
- - uid: 25211
+ - uid: 25278
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-14.5
parent: 2
type: Transform
- - uid: 25212
+ - uid: 25279
components:
- pos: -3.5,31.5
parent: 2
type: Transform
- - uid: 25213
+ - uid: 25280
components:
- pos: -3.5,30.5
parent: 2
type: Transform
- - uid: 25214
+ - uid: 25281
components:
- pos: 2.5,23.5
parent: 2
type: Transform
- - uid: 25215
+ - uid: 25282
components:
- pos: 1.5,23.5
parent: 2
type: Transform
- - uid: 25216
+ - uid: 25283
components:
- pos: -33.5,17.5
parent: 2
type: Transform
- - uid: 25217
+ - uid: 25284
components:
- pos: -32.5,17.5
parent: 2
type: Transform
- - uid: 25218
+ - uid: 25285
components:
- pos: -34.5,26.5
parent: 2
type: Transform
- - uid: 25219
+ - uid: 25286
components:
- pos: -33.5,29.5
parent: 2
type: Transform
- - uid: 25220
+ - uid: 25287
components:
- rot: -1.5707963267948966 rad
pos: -38.5,18.5
parent: 2
type: Transform
- - uid: 25221
+ - uid: 25288
components:
- pos: -32.5,29.5
parent: 2
type: Transform
- - uid: 25222
+ - uid: 25289
components:
- pos: -31.5,29.5
parent: 2
type: Transform
- - uid: 25223
+ - uid: 25290
components:
- rot: -1.5707963267948966 rad
pos: -37.5,18.5
parent: 2
type: Transform
- - uid: 25224
+ - uid: 25291
components:
- pos: -41.5,35.5
parent: 2
type: Transform
- - uid: 25225
+ - uid: 25292
components:
- pos: -40.5,35.5
parent: 2
type: Transform
- - uid: 25226
+ - uid: 25293
components:
- pos: -40.5,34.5
parent: 2
type: Transform
- - uid: 25227
+ - uid: 25294
components:
- pos: -40.5,33.5
parent: 2
type: Transform
- - uid: 25228
+ - uid: 25295
components:
- pos: -40.5,32.5
parent: 2
type: Transform
- - uid: 25229
+ - uid: 25296
components:
- pos: -38.5,28.5
parent: 2
type: Transform
- - uid: 25230
+ - uid: 25297
components:
- pos: -38.5,27.5
parent: 2
type: Transform
- - uid: 25231
+ - uid: 25298
components:
- pos: -37.5,27.5
parent: 2
type: Transform
- - uid: 25232
+ - uid: 25299
components:
- pos: -36.5,27.5
parent: 2
type: Transform
- - uid: 25233
+ - uid: 25300
components:
- rot: 3.141592653589793 rad
pos: -22.5,11.5
parent: 2
type: Transform
- - uid: 25234
+ - uid: 25301
components:
- rot: 3.141592653589793 rad
pos: -23.5,11.5
parent: 2
type: Transform
- - uid: 25235
+ - uid: 25302
components:
- rot: 3.141592653589793 rad
pos: -24.5,11.5
parent: 2
type: Transform
- - uid: 25236
+ - uid: 25303
components:
- pos: -15.5,23.5
parent: 2
type: Transform
- - uid: 25237
+ - uid: 25304
components:
- pos: -16.5,21.5
parent: 2
type: Transform
- - uid: 25238
+ - uid: 25305
components:
- pos: -16.5,20.5
parent: 2
type: Transform
- - uid: 25239
+ - uid: 25306
components:
- pos: -15.5,21.5
parent: 2
type: Transform
- - uid: 25240
+ - uid: 25307
components:
- pos: -48.5,26.5
parent: 2
type: Transform
- - uid: 25241
+ - uid: 25308
components:
- pos: -47.5,26.5
parent: 2
type: Transform
- - uid: 25242
+ - uid: 25309
components:
- pos: -28.5,8.5
parent: 2
type: Transform
- - uid: 25243
+ - uid: 25310
components:
- pos: -29.5,8.5
parent: 2
type: Transform
- - uid: 25244
+ - uid: 25311
components:
- pos: -54.5,0.5
parent: 2
type: Transform
- - uid: 25245
+ - uid: 25312
components:
- pos: 54.5,12.5
parent: 2
type: Transform
- - uid: 25246
+ - uid: 25313
components:
- pos: -25.5,-67.5
parent: 2
type: Transform
- - uid: 25247
+ - uid: 25314
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-6.5
parent: 2
type: Transform
- - uid: 25248
+ - uid: 25315
components:
- pos: -34.5,20.5
parent: 2
type: Transform
- - uid: 25249
+ - uid: 25316
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-65.5
parent: 2
type: Transform
- - uid: 25250
+ - uid: 25317
components:
- pos: -58.5,-27.5
parent: 2
type: Transform
- - uid: 25251
+ - uid: 25318
components:
- pos: -57.5,-27.5
parent: 2
type: Transform
- - uid: 25252
+ - uid: 25319
components:
- pos: -56.5,-27.5
parent: 2
type: Transform
- - uid: 25253
+ - uid: 25320
components:
- rot: 3.141592653589793 rad
pos: 34.5,-35.5
parent: 2
type: Transform
- - uid: 25254
+ - uid: 25321
components:
- pos: 41.5,-58.5
parent: 2
type: Transform
- - uid: 25255
+ - uid: 25322
components:
- pos: 77.5,-47.5
parent: 2
type: Transform
- - uid: 25256
+ - uid: 25323
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-65.5
parent: 2
type: Transform
- - uid: 25257
+ - uid: 25324
components:
- pos: -2.5,-33.5
parent: 2
type: Transform
- - uid: 25258
+ - uid: 25325
components:
- pos: 11.5,-66.5
parent: 2
type: Transform
- - uid: 25259
+ - uid: 25326
components:
- pos: 12.5,-66.5
parent: 2
type: Transform
- - uid: 25260
+ - uid: 25327
components:
- pos: 7.5,-16.5
parent: 2
type: Transform
- - uid: 25261
+ - uid: 25328
components:
- pos: -7.5,-30.5
parent: 2
type: Transform
- - uid: 25262
+ - uid: 25329
components:
- rot: 3.141592653589793 rad
pos: -29.5,-69.5
parent: 2
type: Transform
- - uid: 25263
+ - uid: 25330
components:
- pos: 57.5,42.5
parent: 2
type: Transform
- - uid: 25264
+ - uid: 25331
components:
- pos: 56.5,42.5
parent: 2
type: Transform
- - uid: 25265
+ - uid: 25332
components:
- pos: 55.5,42.5
parent: 2
type: Transform
- - uid: 25266
+ - uid: 25333
components:
- pos: 50.5,42.5
parent: 2
type: Transform
- - uid: 25267
+ - uid: 25334
components:
- pos: 58.5,52.5
parent: 2
type: Transform
- - uid: 25268
+ - uid: 25335
components:
- pos: 58.5,51.5
parent: 2
type: Transform
- - uid: 25269
+ - uid: 25336
components:
- pos: -8.5,39.5
parent: 2
type: Transform
- - uid: 25270
+ - uid: 25337
components:
- pos: -8.5,38.5
parent: 2
type: Transform
- - uid: 25271
+ - uid: 25338
components:
- pos: -8.5,37.5
parent: 2
type: Transform
- - uid: 25272
+ - uid: 25339
components:
- pos: -9.5,39.5
parent: 2
type: Transform
- - uid: 25273
+ - uid: 25340
components:
- pos: -9.5,37.5
parent: 2
type: Transform
- - uid: 25274
+ - uid: 25341
components:
- rot: 3.141592653589793 rad
pos: 67.5,8.5
parent: 2
type: Transform
- - uid: 25275
+ - uid: 25342
components:
- pos: -22.5,45.5
parent: 2
type: Transform
- - uid: 25276
+ - uid: 25343
components:
- pos: -22.5,44.5
parent: 2
type: Transform
- - uid: 25277
+ - uid: 25344
components:
- pos: -22.5,43.5
parent: 2
type: Transform
- - uid: 25278
+ - uid: 25345
components:
- pos: 64.5,29.5
parent: 2
type: Transform
- - uid: 25279
+ - uid: 25346
components:
- pos: 64.5,28.5
parent: 2
type: Transform
- - uid: 25280
+ - uid: 25347
components:
- pos: -0.5,-77.5
parent: 2
type: Transform
- - uid: 25281
+ - uid: 25348
components:
- pos: 72.5,36.5
parent: 2
type: Transform
- - uid: 25282
+ - uid: 25349
components:
- pos: 73.5,36.5
parent: 2
type: Transform
- - uid: 25283
+ - uid: 25350
components:
- pos: 71.5,36.5
parent: 2
type: Transform
- - uid: 25284
+ - uid: 25351
components:
- rot: -1.5707963267948966 rad
pos: -11.5,37.5
parent: 2
type: Transform
- - uid: 25285
+ - uid: 25352
components:
- rot: -1.5707963267948966 rad
pos: -12.5,37.5
parent: 2
type: Transform
- - uid: 25286
+ - uid: 25353
components:
- rot: 3.141592653589793 rad
pos: 37.5,51.5
parent: 2
type: Transform
- - uid: 25287
+ - uid: 25354
components:
- rot: 3.141592653589793 rad
pos: 38.5,51.5
parent: 2
type: Transform
- - uid: 25288
+ - uid: 25355
components:
- pos: -2.5,43.5
parent: 2
type: Transform
- - uid: 25289
+ - uid: 25356
components:
- rot: 1.5707963267948966 rad
pos: -9.5,41.5
parent: 2
type: Transform
- - uid: 25290
+ - uid: 25357
components:
- rot: 1.5707963267948966 rad
pos: -8.5,41.5
parent: 2
type: Transform
- - uid: 25291
+ - uid: 25358
components:
- pos: -10.5,41.5
parent: 2
type: Transform
- - uid: 25292
+ - uid: 25359
components:
- pos: -20.5,47.5
parent: 2
type: Transform
- - uid: 25293
+ - uid: 25360
components:
- pos: -21.5,47.5
parent: 2
type: Transform
- - uid: 25294
+ - uid: 25361
components:
- pos: -16.5,24.5
parent: 2
type: Transform
- - uid: 25295
+ - uid: 25362
components:
- pos: -16.5,23.5
parent: 2
type: Transform
- - uid: 25296
+ - uid: 25363
components:
- pos: 30.5,47.5
parent: 2
type: Transform
- - uid: 25297
+ - uid: 25364
components:
- pos: 30.5,46.5
parent: 2
type: Transform
- - uid: 25298
+ - uid: 25365
components:
- rot: 3.141592653589793 rad
pos: -55.5,-48.5
parent: 2
type: Transform
- - uid: 25299
+ - uid: 25366
components:
- rot: 3.141592653589793 rad
pos: -55.5,-49.5
parent: 2
type: Transform
- - uid: 25300
+ - uid: 25367
components:
- pos: -22.5,-100.5
parent: 2
type: Transform
- - uid: 25301
+ - uid: 25368
components:
- pos: -14.5,-96.5
parent: 2
type: Transform
- - uid: 25302
+ - uid: 25369
components:
- pos: -15.5,-96.5
parent: 2
type: Transform
- - uid: 25303
+ - uid: 25370
components:
- pos: -30.5,-98.5
parent: 2
type: Transform
- - uid: 25304
+ - uid: 25371
components:
- pos: -29.5,-98.5
parent: 2
type: Transform
- - uid: 25305
+ - uid: 25372
components:
- pos: -21.5,-100.5
parent: 2
type: Transform
- - uid: 25306
+ - uid: 25373
components:
- pos: -23.5,-100.5
parent: 2
type: Transform
- - uid: 25307
+ - uid: 25374
components:
- pos: -10.5,-83.5
parent: 2
type: Transform
- - uid: 25308
+ - uid: 25375
components:
- pos: -4.5,-85.5
parent: 2
type: Transform
- - uid: 25309
+ - uid: 25376
components:
- pos: -12.5,-84.5
parent: 2
type: Transform
- - uid: 25310
+ - uid: 25377
components:
- pos: -13.5,-88.5
parent: 2
type: Transform
- - uid: 25311
+ - uid: 25378
components:
- pos: -38.5,-97.5
parent: 2
type: Transform
- - uid: 25312
+ - uid: 25379
components:
- pos: -38.5,-98.5
parent: 2
type: Transform
- - uid: 25313
+ - uid: 25380
components:
- rot: 3.141592653589793 rad
pos: -70.5,-28.5
parent: 2
type: Transform
- - uid: 25314
+ - uid: 25381
components:
- rot: 3.141592653589793 rad
pos: -71.5,-28.5
parent: 2
type: Transform
- - uid: 25315
+ - uid: 25382
components:
- pos: 69.5,-48.5
parent: 2
type: Transform
- - uid: 25316
+ - uid: 25383
components:
- pos: 77.5,-44.5
parent: 2
type: Transform
- - uid: 25317
+ - uid: 25384
components:
- pos: 77.5,-43.5
parent: 2
type: Transform
- - uid: 25318
+ - uid: 25385
components:
- pos: 76.5,-43.5
parent: 2
type: Transform
- - uid: 25319
+ - uid: 25386
components:
- pos: 73.5,-49.5
parent: 2
type: Transform
- - uid: 25320
+ - uid: 25387
components:
- pos: 73.5,-48.5
parent: 2
type: Transform
- - uid: 25321
+ - uid: 25388
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-47.5
parent: 2
type: Transform
- - uid: 25322
+ - uid: 25389
components:
- rot: 3.141592653589793 rad
pos: 6.5,-57.5
parent: 2
type: Transform
- - uid: 25323
+ - uid: 25390
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-21.5
parent: 2
type: Transform
- - uid: 25324
+ - uid: 25391
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-23.5
parent: 2
type: Transform
- - uid: 25325
+ - uid: 25392
components:
- pos: 53.5,-67.5
parent: 2
type: Transform
- - uid: 25326
+ - uid: 25393
components:
- rot: 3.141592653589793 rad
pos: 63.5,-36.5
parent: 2
type: Transform
- - uid: 25327
+ - uid: 25394
components:
- pos: 59.5,-29.5
parent: 2
type: Transform
- - uid: 25328
+ - uid: 25395
components:
- pos: 53.5,-65.5
parent: 2
type: Transform
- - uid: 25329
+ - uid: 25396
components:
- rot: 3.141592653589793 rad
pos: 58.5,-37.5
parent: 2
type: Transform
- - uid: 25330
+ - uid: 25397
components:
- rot: 3.141592653589793 rad
pos: 57.5,-37.5
parent: 2
type: Transform
- - uid: 25331
+ - uid: 25398
components:
- rot: 3.141592653589793 rad
pos: 53.5,-28.5
parent: 2
type: Transform
- - uid: 25332
+ - uid: 25399
components:
- rot: 3.141592653589793 rad
pos: 54.5,-28.5
parent: 2
type: Transform
- - uid: 25333
+ - uid: 25400
components:
- rot: 3.141592653589793 rad
pos: 70.5,-65.5
parent: 2
type: Transform
- - uid: 25334
+ - uid: 25401
components:
- rot: 3.141592653589793 rad
pos: 70.5,-66.5
parent: 2
type: Transform
- - uid: 25335
+ - uid: 25402
components:
- rot: 3.141592653589793 rad
pos: 69.5,-66.5
parent: 2
type: Transform
- - uid: 25336
+ - uid: 25403
components:
- rot: 3.141592653589793 rad
pos: 43.5,-62.5
parent: 2
type: Transform
- - uid: 25337
+ - uid: 25404
components:
- pos: 67.5,-64.5
parent: 2
type: Transform
- - uid: 25338
+ - uid: 25405
components:
- pos: 67.5,-65.5
parent: 2
type: Transform
- - uid: 25339
+ - uid: 25406
components:
- pos: 45.5,-63.5
parent: 2
type: Transform
- - uid: 25340
+ - uid: 25407
components:
- pos: 46.5,-63.5
parent: 2
type: Transform
- - uid: 25341
+ - uid: 25408
components:
- pos: 39.5,-35.5
parent: 2
type: Transform
- - uid: 25342
+ - uid: 25409
components:
- pos: 38.5,-35.5
parent: 2
type: Transform
- - uid: 25343
+ - uid: 25410
components:
- pos: -37.5,-8.5
parent: 2
type: Transform
- - uid: 25344
+ - uid: 25411
components:
- rot: 3.141592653589793 rad
pos: -25.5,-6.5
parent: 2
type: Transform
- - uid: 25345
+ - uid: 25412
components:
- rot: -1.5707963267948966 rad
pos: -36.5,18.5
parent: 2
type: Transform
- - uid: 25346
+ - uid: 25413
components:
- pos: -12.5,-18.5
parent: 2
type: Transform
- - uid: 25347
+ - uid: 25414
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-6.5
parent: 2
type: Transform
- - uid: 25348
+ - uid: 25415
components:
- pos: -26.5,-61.5
parent: 2
type: Transform
- - uid: 25349
+ - uid: 25416
components:
- pos: -22.5,-57.5
parent: 2
type: Transform
- - uid: 25350
+ - uid: 25417
components:
- pos: -22.5,-58.5
parent: 2
type: Transform
- - uid: 25351
+ - uid: 25418
components:
- pos: -26.5,-59.5
parent: 2
type: Transform
- - uid: 25352
+ - uid: 25419
components:
- pos: 9.5,-45.5
parent: 2
type: Transform
- - uid: 25353
+ - uid: 25420
components:
- rot: 3.141592653589793 rad
pos: 25.5,-68.5
parent: 2
type: Transform
- - uid: 25354
+ - uid: 25421
components:
- rot: 3.141592653589793 rad
pos: 50.5,-72.5
parent: 2
type: Transform
- - uid: 25355
+ - uid: 25422
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-75.5
parent: 2
type: Transform
- - uid: 25356
+ - uid: 25423
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-75.5
parent: 2
type: Transform
- - uid: 25357
+ - uid: 25424
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-75.5
parent: 2
type: Transform
- - uid: 25358
+ - uid: 25425
components:
- rot: 1.5707963267948966 rad
pos: -47.5,38.5
parent: 2
type: Transform
- - uid: 25359
+ - uid: 25426
components:
- rot: 1.5707963267948966 rad
pos: -47.5,39.5
parent: 2
type: Transform
- - uid: 25360
+ - uid: 25427
components:
- rot: 1.5707963267948966 rad
pos: -47.5,40.5
parent: 2
type: Transform
- - uid: 25361
+ - uid: 25428
components:
- pos: -2.5,10.5
parent: 2
type: Transform
- - uid: 25362
+ - uid: 25429
components:
- pos: -72.5,-39.5
parent: 2
type: Transform
- - uid: 25363
+ - uid: 25430
components:
- pos: -73.5,-39.5
parent: 2
type: Transform
- - uid: 25364
+ - uid: 25431
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-43.5
parent: 2
type: Transform
- - uid: 25365
+ - uid: 25432
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-34.5
parent: 2
type: Transform
- - uid: 25366
+ - uid: 25433
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-34.5
parent: 2
type: Transform
- - uid: 25367
+ - uid: 25434
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-34.5
parent: 2
type: Transform
- - uid: 25368
+ - uid: 25435
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-35.5
parent: 2
type: Transform
- - uid: 25369
+ - uid: 25436
components:
- pos: -0.5,-8.5
parent: 2
type: Transform
- - uid: 25370
+ - uid: 25437
components:
- pos: 5.5,-13.5
parent: 2
type: Transform
- - uid: 25371
+ - uid: 25438
components:
- pos: 4.5,15.5
parent: 2
type: Transform
- - uid: 25372
+ - uid: 25439
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 56.5,-40.5
+ parent: 2
+ type: Transform
+ - uid: 25440
components:
- - rot: -1.5707963267948966 rad
- pos: 56.5,-40.5
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-17.5
parent: 2
type: Transform
- proto: TableCarpet
entities:
- - uid: 25373
+ - uid: 25441
components:
- pos: 23.5,-35.5
parent: 2
type: Transform
- - uid: 25374
+ - uid: 25442
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-7.5
parent: 2
type: Transform
- - uid: 25375
+ - uid: 25443
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-6.5
parent: 2
type: Transform
- - uid: 25376
+ - uid: 25444
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-7.5
parent: 2
type: Transform
- - uid: 25377
+ - uid: 25445
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-6.5
parent: 2
type: Transform
- - uid: 25378
+ - uid: 25446
components:
- pos: -24.5,34.5
parent: 2
type: Transform
- - uid: 25379
+ - uid: 25447
components:
- rot: 3.141592653589793 rad
pos: -1.5,31.5
parent: 2
type: Transform
- - uid: 25380
+ - uid: 25448
components:
- rot: 3.141592653589793 rad
pos: -0.5,31.5
parent: 2
type: Transform
- - uid: 25381
+ - uid: 25449
components:
- rot: 3.141592653589793 rad
pos: -0.5,30.5
parent: 2
type: Transform
- - uid: 25382
+ - uid: 25450
components:
- rot: 3.141592653589793 rad
pos: -1.5,30.5
parent: 2
type: Transform
- - uid: 25383
+ - uid: 25451
components:
- pos: 53.5,29.5
parent: 2
type: Transform
- - uid: 25384
+ - uid: 25452
components:
- pos: 53.5,28.5
parent: 2
type: Transform
- - uid: 25385
+ - uid: 25453
components:
- pos: 54.5,29.5
parent: 2
type: Transform
- - uid: 25386
+ - uid: 25454
components:
- pos: 54.5,28.5
parent: 2
type: Transform
- - uid: 25387
+ - uid: 25455
components:
- pos: 8.5,32.5
parent: 2
type: Transform
- - uid: 25388
+ - uid: 25456
components:
- rot: 3.141592653589793 rad
pos: -18.5,62.5
parent: 2
type: Transform
- - uid: 25389
+ - uid: 25457
components:
- rot: 3.141592653589793 rad
pos: -18.5,61.5
parent: 2
type: Transform
- - uid: 25390
+ - uid: 25458
components:
- rot: 3.141592653589793 rad
pos: -17.5,62.5
parent: 2
type: Transform
- - uid: 25391
+ - uid: 25459
components:
- rot: 3.141592653589793 rad
pos: -17.5,61.5
parent: 2
type: Transform
- - uid: 25392
+ - uid: 25460
components:
- rot: 3.141592653589793 rad
pos: -16.5,62.5
parent: 2
type: Transform
- - uid: 25393
+ - uid: 25461
components:
- rot: 3.141592653589793 rad
pos: -16.5,61.5
parent: 2
type: Transform
- - uid: 25394
+ - uid: 25462
components:
- pos: 37.5,45.5
parent: 2
type: Transform
- - uid: 25395
+ - uid: 25463
components:
- pos: 38.5,45.5
parent: 2
type: Transform
- - uid: 25396
+ - uid: 25464
components:
- pos: 38.5,46.5
parent: 2
type: Transform
- - uid: 25397
+ - uid: 25465
components:
- pos: 37.5,46.5
parent: 2
type: Transform
- proto: TableCounterMetal
entities:
- - uid: 25398
+ - uid: 25466
components:
- pos: 32.5,30.5
parent: 2
type: Transform
- - uid: 25399
+ - uid: 25467
components:
- pos: 32.5,29.5
parent: 2
type: Transform
- - uid: 25400
+ - uid: 25468
components:
- pos: 0.5,-67.5
parent: 2
type: Transform
- - uid: 25401
+ - uid: 25469
components:
- pos: -3.5,5.5
parent: 2
type: Transform
- - uid: 25402
+ - uid: 25470
components:
- pos: 0.5,-64.5
parent: 2
type: Transform
- - uid: 25403
+ - uid: 25471
components:
- pos: 0.5,-65.5
parent: 2
type: Transform
- - uid: 25404
+ - uid: 25472
components:
- pos: 0.5,-66.5
parent: 2
type: Transform
- - uid: 25405
+ - uid: 25473
components:
- pos: -3.5,-64.5
parent: 2
type: Transform
- - uid: 25406
+ - uid: 25474
components:
- pos: -3.5,-65.5
parent: 2
type: Transform
- - uid: 25407
+ - uid: 25475
components:
- pos: -3.5,-66.5
parent: 2
type: Transform
- - uid: 25408
+ - uid: 25476
components:
- pos: -16.5,-77.5
parent: 2
type: Transform
- - uid: 25409
+ - uid: 25477
components:
- pos: -4.5,5.5
parent: 2
type: Transform
- - uid: 25410
+ - uid: 25478
components:
- pos: 4.5,11.5
parent: 2
type: Transform
- - uid: 25411
+ - uid: 25479
components:
- pos: 5.5,11.5
parent: 2
type: Transform
- - uid: 25412
+ - uid: 25480
components:
- pos: 0.5,-63.5
parent: 2
type: Transform
- - uid: 25413
+ - uid: 25481
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-34.5
@@ -166660,69 +167387,69 @@ entities:
type: Transform
- proto: TableCounterWood
entities:
- - uid: 25414
+ - uid: 25482
components:
- pos: 3.5,-35.5
parent: 2
type: Transform
- - uid: 25415
+ - uid: 25483
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-5.5
parent: 2
type: Transform
- - uid: 25416
+ - uid: 25484
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 25417
+ - uid: 25485
components:
- pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 25418
+ - uid: 25486
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-4.5
parent: 2
type: Transform
- - uid: 25419
+ - uid: 25487
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-3.5
parent: 2
type: Transform
- - uid: 25420
+ - uid: 25488
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-2.5
parent: 2
type: Transform
- - uid: 25421
+ - uid: 25489
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-2.5
parent: 2
type: Transform
- - uid: 25422
+ - uid: 25490
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-2.5
parent: 2
type: Transform
- - uid: 25423
+ - uid: 25491
components:
- pos: 57.5,32.5
parent: 2
type: Transform
- - uid: 25424
+ - uid: 25492
components:
- rot: 3.141592653589793 rad
pos: -10.5,-95.5
parent: 2
type: Transform
- - uid: 25425
+ - uid: 25493
components:
- rot: 3.141592653589793 rad
pos: -9.5,-95.5
@@ -166730,100 +167457,100 @@ entities:
type: Transform
- proto: TableFrame
entities:
- - uid: 25426
+ - uid: 25494
components:
- pos: -25.5,-99.5
parent: 2
type: Transform
- - uid: 25427
+ - uid: 25495
components:
- pos: -33.5,-98.5
parent: 2
type: Transform
- - uid: 25428
+ - uid: 25496
components:
- pos: -34.5,-98.5
parent: 2
type: Transform
- proto: TableGlass
entities:
- - uid: 25429
+ - uid: 25497
components:
- rot: -1.5707963267948966 rad
pos: 30.5,4.5
parent: 2
type: Transform
- - uid: 25430
+ - uid: 25498
components:
- rot: -1.5707963267948966 rad
pos: 29.5,4.5
parent: 2
type: Transform
- - uid: 25431
+ - uid: 25499
components:
- pos: -25.5,55.5
parent: 2
type: Transform
- - uid: 25432
+ - uid: 25500
components:
- rot: 1.5707963267948966 rad
pos: 63.5,-33.5
parent: 2
type: Transform
- - uid: 25433
+ - uid: 25501
components:
- rot: 1.5707963267948966 rad
pos: 62.5,-33.5
parent: 2
type: Transform
- - uid: 25434
+ - uid: 25502
components:
- pos: 15.5,-79.5
parent: 2
type: Transform
- - uid: 25435
+ - uid: 25503
components:
- rot: -1.5707963267948966 rad
pos: 15.5,-87.5
parent: 2
type: Transform
- - uid: 25436
+ - uid: 25504
components:
- rot: 3.141592653589793 rad
pos: 26.5,-81.5
parent: 2
type: Transform
- - uid: 25437
+ - uid: 25505
components:
- rot: 1.5707963267948966 rad
pos: 38.5,63.5
parent: 2
type: Transform
- - uid: 25438
+ - uid: 25506
components:
- rot: 1.5707963267948966 rad
pos: 39.5,63.5
parent: 2
type: Transform
- - uid: 25439
+ - uid: 25507
components:
- rot: 1.5707963267948966 rad
pos: 40.5,63.5
parent: 2
type: Transform
- - uid: 25440
+ - uid: 25508
components:
- rot: 1.5707963267948966 rad
pos: 39.5,63.5
parent: 2
type: Transform
- - uid: 25441
+ - uid: 25509
components:
- rot: 1.5707963267948966 rad
pos: 39.5,64.5
parent: 2
type: Transform
- - uid: 25442
+ - uid: 25510
components:
- rot: 1.5707963267948966 rad
pos: 39.5,62.5
@@ -166831,1850 +167558,1850 @@ entities:
type: Transform
- proto: TableReinforced
entities:
- - uid: 25443
+ - uid: 25511
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-18.5
+ parent: 2
+ type: Transform
+ - uid: 25512
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-86.5
parent: 2
type: Transform
- - uid: 25444
+ - uid: 25513
components:
- pos: 53.5,-43.5
parent: 2
type: Transform
- - uid: 25445
+ - uid: 25514
components:
- pos: 51.5,-41.5
parent: 2
type: Transform
- - uid: 25446
+ - uid: 25515
components:
- pos: 51.5,-43.5
parent: 2
type: Transform
- - uid: 25447
+ - uid: 25516
components:
- pos: 24.5,23.5
parent: 2
type: Transform
- - uid: 25448
+ - uid: 25517
components:
- rot: 3.141592653589793 rad
pos: -14.5,-35.5
parent: 2
type: Transform
- - uid: 25449
+ - uid: 25518
components:
- rot: 3.141592653589793 rad
pos: 48.5,-30.5
parent: 2
type: Transform
- - uid: 25450
+ - uid: 25519
components:
- pos: 2.5,4.5
parent: 2
type: Transform
- - uid: 25451
+ - uid: 25520
components:
- pos: -8.5,4.5
parent: 2
type: Transform
- - uid: 25452
+ - uid: 25521
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-26.5
parent: 2
type: Transform
- - uid: 25453
+ - uid: 25522
components:
- pos: 26.5,32.5
parent: 2
type: Transform
- - uid: 25454
+ - uid: 25523
components:
- pos: -6.5,4.5
parent: 2
type: Transform
- - uid: 25455
+ - uid: 25524
components:
- pos: -28.5,-9.5
parent: 2
type: Transform
- - uid: 25456
+ - uid: 25525
components:
- pos: 1.5,-48.5
parent: 2
type: Transform
- - uid: 25457
+ - uid: 25526
components:
- rot: 1.5707963267948966 rad
pos: 25.5,19.5
parent: 2
type: Transform
- - uid: 25458
+ - uid: 25527
components:
- rot: 3.141592653589793 rad
pos: 26.5,-21.5
parent: 2
type: Transform
- - uid: 25459
+ - uid: 25528
components:
- pos: 37.5,49.5
parent: 2
type: Transform
- - uid: 25460
+ - uid: 25529
components:
- rot: 3.141592653589793 rad
pos: 48.5,-21.5
parent: 2
type: Transform
- - uid: 25461
+ - uid: 25530
components:
- pos: 27.5,32.5
parent: 2
type: Transform
- - uid: 25462
+ - uid: 25531
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-22.5
parent: 2
type: Transform
- - uid: 25463
+ - uid: 25532
components:
- rot: 3.141592653589793 rad
pos: 47.5,-30.5
parent: 2
type: Transform
- - uid: 25464
+ - uid: 25533
components:
- rot: -1.5707963267948966 rad
pos: 36.5,19.5
parent: 2
type: Transform
- - uid: 25465
+ - uid: 25534
components:
- pos: -23.5,-87.5
parent: 2
type: Transform
- - uid: 25466
+ - uid: 25535
components:
- pos: -7.5,4.5
parent: 2
type: Transform
- - uid: 25467
+ - uid: 25536
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-44.5
parent: 2
type: Transform
- - uid: 25468
+ - uid: 25537
components:
- pos: 0.5,4.5
parent: 2
type: Transform
- - uid: 25469
+ - uid: 25538
components:
- rot: 1.5707963267948966 rad
pos: 24.5,19.5
parent: 2
type: Transform
- - uid: 25470
+ - uid: 25539
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-20.5
parent: 2
type: Transform
- - uid: 25471
+ - uid: 25540
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-20.5
parent: 2
type: Transform
- - uid: 25472
+ - uid: 25541
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-21.5
parent: 2
type: Transform
- - uid: 25473
+ - uid: 25542
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-22.5
parent: 2
type: Transform
- - uid: 25474
+ - uid: 25543
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-20.5
parent: 2
type: Transform
- - uid: 25475
+ - uid: 25544
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-20.5
parent: 2
type: Transform
- - uid: 25476
+ - uid: 25545
components:
- rot: -1.5707963267948966 rad
pos: 18.5,-21.5
parent: 2
type: Transform
- - uid: 25477
+ - uid: 25546
components:
- pos: 7.5,7.5
parent: 2
type: Transform
- - uid: 25478
+ - uid: 25547
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 25479
+ - uid: 25548
components:
- pos: 1.5,-46.5
parent: 2
type: Transform
- - uid: 25480
+ - uid: 25549
components:
- pos: 28.5,32.5
parent: 2
type: Transform
- - uid: 25481
+ - uid: 25550
components:
- pos: 30.5,32.5
parent: 2
type: Transform
- - uid: 25482
+ - uid: 25551
components:
- pos: 31.5,32.5
parent: 2
type: Transform
- - uid: 25483
+ - uid: 25552
components:
- pos: 18.5,-22.5
parent: 2
type: Transform
- - uid: 25484
+ - uid: 25553
components:
- pos: 1.5,4.5
parent: 2
type: Transform
- - uid: 25485
+ - uid: 25554
components:
- rot: 3.141592653589793 rad
pos: 48.5,-28.5
parent: 2
type: Transform
- - uid: 25486
+ - uid: 25555
components:
- rot: 1.5707963267948966 rad
pos: 26.5,19.5
parent: 2
type: Transform
- - uid: 25487
+ - uid: 25556
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-12.5
parent: 2
type: Transform
- - uid: 25488
+ - uid: 25557
components:
- pos: 47.5,49.5
parent: 2
type: Transform
- - uid: 25489
+ - uid: 25558
components:
- pos: 7.5,8.5
parent: 2
type: Transform
- - uid: 25490
+ - uid: 25559
components:
- pos: 39.5,49.5
parent: 2
type: Transform
- - uid: 25491
+ - uid: 25560
components:
- pos: 38.5,49.5
parent: 2
type: Transform
- - uid: 25492
+ - uid: 25561
components:
- rot: 3.141592653589793 rad
pos: 48.5,-22.5
parent: 2
type: Transform
- - uid: 25493
+ - uid: 25562
components:
- rot: 3.141592653589793 rad
pos: 48.5,-24.5
parent: 2
type: Transform
- - uid: 25494
+ - uid: 25563
components:
- pos: 36.5,49.5
parent: 2
type: Transform
- - uid: 25495
+ - uid: 25564
components:
- rot: 3.141592653589793 rad
pos: 48.5,-29.5
parent: 2
type: Transform
- - uid: 25496
+ - uid: 25565
components:
- rot: 3.141592653589793 rad
pos: 47.5,-27.5
parent: 2
type: Transform
- - uid: 25497
+ - uid: 25566
components:
- rot: 3.141592653589793 rad
pos: 47.5,-21.5
parent: 2
type: Transform
- - uid: 25498
+ - uid: 25567
components:
- pos: 32.5,32.5
parent: 2
type: Transform
- - uid: 25499
+ - uid: 25568
components:
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
parent: 2
type: Transform
- - uid: 25500
+ - uid: 25569
components:
- rot: 3.141592653589793 rad
pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 25501
+ - uid: 25570
components:
- pos: 7.5,9.5
parent: 2
type: Transform
- - uid: 25502
+ - uid: 25571
components:
- rot: 3.141592653589793 rad
pos: 48.5,-23.5
parent: 2
type: Transform
- - uid: 25503
+ - uid: 25572
components:
- rot: 3.141592653589793 rad
pos: 48.5,-27.5
parent: 2
type: Transform
- - uid: 25504
+ - uid: 25573
components:
- pos: -34.5,23.5
parent: 2
type: Transform
- - uid: 25505
+ - uid: 25574
components:
- rot: 3.141592653589793 rad
pos: 24.5,-21.5
parent: 2
type: Transform
- - uid: 25506
+ - uid: 25575
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-26.5
parent: 2
type: Transform
- - uid: 25507
+ - uid: 25576
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-25.5
parent: 2
type: Transform
- - uid: 25508
+ - uid: 25577
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-25.5
parent: 2
type: Transform
- - uid: 25509
+ - uid: 25578
components:
- pos: -22.5,-87.5
parent: 2
type: Transform
- - uid: 25510
+ - uid: 25579
components:
- pos: 22.5,23.5
parent: 2
type: Transform
- - uid: 25511
+ - uid: 25580
components:
- pos: 25.5,23.5
parent: 2
type: Transform
- - uid: 25512
+ - uid: 25581
components:
- pos: -11.5,43.5
parent: 2
type: Transform
- - uid: 25513
+ - uid: 25582
components:
- rot: 1.5707963267948966 rad
pos: -9.5,43.5
parent: 2
type: Transform
- - uid: 25514
+ - uid: 25583
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- - uid: 25515
+ - uid: 25584
components:
- rot: -1.5707963267948966 rad
pos: 36.5,17.5
parent: 2
type: Transform
- - uid: 25516
+ - uid: 25585
components:
- pos: -17.5,-22.5
parent: 2
type: Transform
- - uid: 25517
+ - uid: 25586
components:
- pos: -17.5,-23.5
parent: 2
type: Transform
- - uid: 25518
+ - uid: 25587
components:
- pos: 42.5,-40.5
parent: 2
type: Transform
- - uid: 25519
+ - uid: 25588
components:
- pos: 43.5,-40.5
parent: 2
type: Transform
- - uid: 25520
+ - uid: 25589
components:
- pos: -27.5,-9.5
parent: 2
type: Transform
- - uid: 25521
+ - uid: 25590
components:
- pos: -22.5,-8.5
parent: 2
type: Transform
- - uid: 25522
+ - uid: 25591
components:
- pos: -23.5,-8.5
parent: 2
type: Transform
- - uid: 25523
+ - uid: 25592
components:
- pos: -27.5,-10.5
parent: 2
type: Transform
- - uid: 25524
+ - uid: 25593
components:
- pos: -27.5,-11.5
parent: 2
type: Transform
- - uid: 25525
+ - uid: 25594
components:
- pos: 57.5,-47.5
parent: 2
type: Transform
- - uid: 25526
+ - uid: 25595
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-44.5
parent: 2
type: Transform
- - uid: 25527
+ - uid: 25596
components:
- pos: -25.5,-35.5
parent: 2
type: Transform
- - uid: 25528
+ - uid: 25597
components:
- pos: -25.5,-36.5
parent: 2
type: Transform
- - uid: 25529
+ - uid: 25598
components:
- pos: -24.5,-36.5
parent: 2
type: Transform
- - uid: 25530
+ - uid: 25599
components:
- pos: -23.5,-36.5
parent: 2
type: Transform
- - uid: 25531
+ - uid: 25600
components:
- pos: -36.5,-33.5
parent: 2
type: Transform
- - uid: 25532
+ - uid: 25601
components:
- pos: -36.5,-32.5
parent: 2
type: Transform
- - uid: 25533
+ - uid: 25602
components:
- pos: -37.5,-32.5
parent: 2
type: Transform
- - uid: 25534
+ - uid: 25603
components:
- pos: -38.5,-32.5
parent: 2
type: Transform
- - uid: 25535
+ - uid: 25604
components:
- pos: -39.5,-32.5
parent: 2
type: Transform
- - uid: 25536
+ - uid: 25605
components:
- pos: -58.5,-25.5
parent: 2
type: Transform
- - uid: 25537
+ - uid: 25606
components:
- pos: -57.5,-25.5
parent: 2
type: Transform
- - uid: 25538
+ - uid: 25607
components:
- pos: -56.5,-25.5
parent: 2
type: Transform
- - uid: 25539
+ - uid: 25608
components:
- pos: -55.5,-25.5
parent: 2
type: Transform
- - uid: 25540
+ - uid: 25609
components:
- pos: -54.5,-25.5
parent: 2
type: Transform
- - uid: 25541
+ - uid: 25610
components:
- pos: -15.5,12.5
parent: 2
type: Transform
- - uid: 25542
+ - uid: 25611
components:
- rot: -1.5707963267948966 rad
pos: -17.5,25.5
parent: 2
type: Transform
- - uid: 25543
+ - uid: 25612
components:
- rot: 3.141592653589793 rad
pos: -26.5,22.5
parent: 2
type: Transform
- - uid: 25544
+ - uid: 25613
components:
- pos: 17.5,32.5
parent: 2
type: Transform
- - uid: 25545
+ - uid: 25614
components:
- pos: 17.5,31.5
parent: 2
type: Transform
- - uid: 25546
+ - uid: 25615
components:
- pos: -34.5,24.5
parent: 2
type: Transform
- - uid: 25547
+ - uid: 25616
components:
- pos: -14.5,12.5
parent: 2
type: Transform
- - uid: 25548
+ - uid: 25617
components:
- pos: -13.5,12.5
parent: 2
type: Transform
- - uid: 25549
+ - uid: 25618
components:
- pos: -16.5,12.5
parent: 2
type: Transform
- - uid: 25550
+ - uid: 25619
components:
- pos: -10.5,-61.5
parent: 2
type: Transform
- - uid: 25551
+ - uid: 25620
components:
- pos: 0.5,-61.5
parent: 2
type: Transform
- - uid: 25552
+ - uid: 25621
components:
- pos: -0.5,-61.5
parent: 2
type: Transform
- - uid: 25553
+ - uid: 25622
components:
- pos: -11.5,-61.5
parent: 2
type: Transform
- - uid: 25554
+ - uid: 25623
components:
- pos: -16.5,-61.5
parent: 2
type: Transform
- - uid: 25555
+ - uid: 25624
components:
- pos: -17.5,-61.5
parent: 2
type: Transform
- - uid: 25556
+ - uid: 25625
components:
- rot: 3.141592653589793 rad
pos: -15.5,-35.5
parent: 2
type: Transform
- - uid: 25557
+ - uid: 25626
components:
- rot: 3.141592653589793 rad
pos: -16.5,-35.5
parent: 2
type: Transform
- - uid: 25558
+ - uid: 25627
components:
- rot: 1.5707963267948966 rad
pos: -10.5,43.5
parent: 2
type: Transform
- - uid: 25559
+ - uid: 25628
components:
- pos: -20.5,49.5
parent: 2
type: Transform
- - uid: 25560
+ - uid: 25629
components:
- rot: 3.141592653589793 rad
pos: -15.5,65.5
parent: 2
type: Transform
- - uid: 25561
+ - uid: 25630
components:
- rot: 3.141592653589793 rad
pos: -16.5,65.5
parent: 2
type: Transform
- - uid: 25562
+ - uid: 25631
components:
- pos: -21.5,49.5
parent: 2
type: Transform
- - uid: 25563
+ - uid: 25632
components:
- rot: 3.141592653589793 rad
pos: -19.5,43.5
parent: 2
type: Transform
- - uid: 25564
+ - uid: 25633
components:
- rot: 3.141592653589793 rad
pos: -19.5,41.5
parent: 2
type: Transform
- - uid: 25565
+ - uid: 25634
components:
- rot: 3.141592653589793 rad
pos: -19.5,42.5
parent: 2
type: Transform
- - uid: 25566
+ - uid: 25635
components:
- pos: 48.5,50.5
parent: 2
type: Transform
- - uid: 25567
+ - uid: 25636
components:
- pos: 47.5,50.5
parent: 2
type: Transform
- - uid: 25568
+ - uid: 25637
components:
- pos: 46.5,49.5
parent: 2
type: Transform
- - uid: 25569
+ - uid: 25638
components:
- pos: 45.5,49.5
parent: 2
type: Transform
- - uid: 25570
+ - uid: 25639
components:
- rot: 3.141592653589793 rad
pos: -9.5,-100.5
parent: 2
type: Transform
- - uid: 25571
+ - uid: 25640
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-67.5
parent: 2
type: Transform
- - uid: 25572
+ - uid: 25641
components:
- pos: 29.5,32.5
parent: 2
type: Transform
- - uid: 25573
+ - uid: 25642
components:
- pos: 65.5,-28.5
parent: 2
type: Transform
- - uid: 25574
+ - uid: 25643
components:
- pos: 65.5,-29.5
parent: 2
type: Transform
- - uid: 25575
+ - uid: 25644
components:
- pos: -7.5,14.5
parent: 2
type: Transform
- - uid: 25576
+ - uid: 25645
components:
- pos: -8.5,14.5
parent: 2
type: Transform
- - uid: 25577
+ - uid: 25646
components:
- rot: 3.141592653589793 rad
pos: 4.5,-3.5
parent: 2
type: Transform
- - uid: 25578
+ - uid: 25647
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-88.5
parent: 2
type: Transform
- - uid: 25579
+ - uid: 25648
components:
- pos: 51.5,-40.5
parent: 2
type: Transform
- - uid: 25580
+ - uid: 25649
components:
- pos: 52.5,-43.5
parent: 2
type: Transform
- - uid: 25581
+ - uid: 25650
components:
- pos: 53.5,-39.5
parent: 2
type: Transform
- - uid: 25582
+ - uid: 25651
components:
- pos: 51.5,-42.5
parent: 2
type: Transform
- - uid: 25583
+ - uid: 25652
components:
- pos: 51.5,-39.5
parent: 2
type: Transform
- - uid: 25584
+ - uid: 25653
components:
- pos: 52.5,-39.5
parent: 2
type: Transform
- proto: TableReinforcedGlass
entities:
- - uid: 25585
+ - uid: 25654
components:
- pos: -30.5,-77.5
parent: 2
type: Transform
- - uid: 25586
+ - uid: 25655
components:
- pos: -30.5,-79.5
parent: 2
type: Transform
- proto: TableWood
entities:
- - uid: 25587
+ - uid: 25656
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,21.5
+ parent: 2
+ type: Transform
+ - uid: 25657
components:
- pos: -1.5,-6.5
parent: 2
type: Transform
- - uid: 25588
+ - uid: 25658
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-9.5
parent: 2
type: Transform
- - uid: 25589
+ - uid: 25659
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-10.5
parent: 2
type: Transform
- - uid: 25590
+ - uid: 25660
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-19.5
parent: 2
type: Transform
- - uid: 25591
+ - uid: 25661
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-21.5
parent: 2
type: Transform
- - uid: 25592
+ - uid: 25662
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-20.5
parent: 2
type: Transform
- - uid: 25593
+ - uid: 25663
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-37.5
parent: 2
type: Transform
- - uid: 25594
+ - uid: 25664
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-35.5
parent: 2
type: Transform
- - uid: 25595
+ - uid: 25665
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-29.5
parent: 2
type: Transform
- - uid: 25596
+ - uid: 25666
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-7.5
parent: 2
type: Transform
- - uid: 25597
+ - uid: 25667
components:
- pos: -22.5,-54.5
parent: 2
type: Transform
- - uid: 25599
+ - uid: 25668
components:
- rot: 3.141592653589793 rad
pos: 5.5,20.5
parent: 2
type: Transform
- - uid: 25600
+ - uid: 25669
components:
- pos: 22.5,10.5
parent: 2
type: Transform
- - uid: 25601
+ - uid: 25670
components:
- pos: -19.5,-56.5
parent: 2
type: Transform
- - uid: 25602
+ - uid: 25671
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-12.5
parent: 2
type: Transform
- - uid: 25603
+ - uid: 25672
components:
- pos: 59.5,-1.5
parent: 2
type: Transform
- - uid: 25604
+ - uid: 25673
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-29.5
parent: 2
type: Transform
- - uid: 25605
+ - uid: 25674
components:
- pos: -4.5,-48.5
parent: 2
type: Transform
- - uid: 25606
+ - uid: 25675
components:
- rot: -1.5707963267948966 rad
pos: 2.5,21.5
parent: 2
type: Transform
- - uid: 25607
+ - uid: 25676
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-29.5
parent: 2
type: Transform
- - uid: 25608
+ - uid: 25677
components:
- pos: 15.5,13.5
parent: 2
type: Transform
- - uid: 25609
+ - uid: 25678
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-34.5
parent: 2
type: Transform
- - uid: 25610
+ - uid: 25679
components:
- pos: -28.5,46.5
parent: 2
type: Transform
- - uid: 25611
+ - uid: 25680
components:
- pos: -20.5,-56.5
parent: 2
type: Transform
- - uid: 25612
+ - uid: 25681
components:
- pos: -18.5,-56.5
parent: 2
type: Transform
- - uid: 25613
+ - uid: 25682
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-28.5
parent: 2
type: Transform
- - uid: 25614
+ - uid: 25683
components:
- pos: 15.5,10.5
parent: 2
type: Transform
- - uid: 25615
+ - uid: 25684
components:
- pos: 15.5,9.5
parent: 2
type: Transform
- - uid: 25616
+ - uid: 25685
components:
- pos: 15.5,12.5
parent: 2
type: Transform
- - uid: 25617
+ - uid: 25686
components:
- pos: 20.5,-12.5
parent: 2
type: Transform
- - uid: 25618
+ - uid: 25687
components:
- pos: 19.5,-12.5
parent: 2
type: Transform
- - uid: 25619
+ - uid: 25688
components:
- rot: 3.141592653589793 rad
pos: -3.5,52.5
parent: 2
type: Transform
- - uid: 25620
+ - uid: 25689
components:
- rot: -1.5707963267948966 rad
pos: 2.5,20.5
parent: 2
type: Transform
- - uid: 25621
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,21.5
- parent: 2
- type: Transform
- - uid: 25622
+ - uid: 25690
components:
- pos: 6.5,20.5
parent: 2
type: Transform
- - uid: 25623
+ - uid: 25691
components:
- pos: -2.5,-48.5
parent: 2
type: Transform
- - uid: 25624
+ - uid: 25692
components:
- pos: -2.5,-49.5
parent: 2
type: Transform
- - uid: 25625
+ - uid: 25693
components:
- pos: -5.5,-48.5
parent: 2
type: Transform
- - uid: 25626
+ - uid: 25694
components:
- pos: -6.5,-48.5
parent: 2
type: Transform
- - uid: 25627
+ - uid: 25695
components:
- pos: 7.5,20.5
parent: 2
type: Transform
- - uid: 25628
+ - uid: 25696
components:
- rot: 1.5707963267948966 rad
pos: 13.5,-32.5
parent: 2
type: Transform
- - uid: 25629
+ - uid: 25697
components:
- pos: -6.5,-49.5
parent: 2
type: Transform
- - uid: 25630
+ - uid: 25698
components:
- pos: 21.5,-12.5
parent: 2
type: Transform
- - uid: 25631
+ - uid: 25699
components:
- pos: 22.5,-14.5
parent: 2
type: Transform
- - uid: 25632
+ - uid: 25700
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-12.5
parent: 2
type: Transform
- - uid: 25633
+ - uid: 25701
components:
- rot: 1.5707963267948966 rad
pos: 2.5,0.5
parent: 2
type: Transform
- - uid: 25634
+ - uid: 25702
components:
- rot: 1.5707963267948966 rad
pos: 2.5,1.5
parent: 2
type: Transform
- - uid: 25635
+ - uid: 25703
components:
- rot: 1.5707963267948966 rad
pos: 12.5,-4.5
parent: 2
type: Transform
- - uid: 25636
+ - uid: 25704
components:
- pos: -3.5,-48.5
parent: 2
type: Transform
- - uid: 25637
+ - uid: 25705
components:
- pos: 15.5,11.5
parent: 2
type: Transform
- - uid: 25638
+ - uid: 25706
components:
- pos: -1.5,17.5
parent: 2
type: Transform
- - uid: 25639
+ - uid: 25707
components:
- pos: -28.5,44.5
parent: 2
type: Transform
- - uid: 25640
+ - uid: 25708
components:
- rot: -1.5707963267948966 rad
pos: 11.5,8.5
parent: 2
type: Transform
- - uid: 25641
+ - uid: 25709
components:
- pos: -10.5,-5.5
parent: 2
type: Transform
- - uid: 25642
+ - uid: 25710
components:
- pos: -28.5,45.5
parent: 2
type: Transform
- - uid: 25643
+ - uid: 25711
components:
- pos: -10.5,-3.5
parent: 2
type: Transform
- - uid: 25644
+ - uid: 25712
components:
- pos: -10.5,-4.5
parent: 2
type: Transform
- - uid: 25645
+ - uid: 25713
components:
- pos: -10.5,-6.5
parent: 2
type: Transform
- - uid: 25646
+ - uid: 25714
components:
- pos: 22.5,11.5
parent: 2
type: Transform
- - uid: 25647
+ - uid: 25715
components:
- rot: -1.5707963267948966 rad
pos: 11.5,7.5
parent: 2
type: Transform
- - uid: 25648
+ - uid: 25716
components:
- rot: 3.141592653589793 rad
pos: 12.5,11.5
parent: 2
type: Transform
- - uid: 25649
+ - uid: 25717
components:
- rot: 3.141592653589793 rad
pos: 11.5,11.5
parent: 2
type: Transform
- - uid: 25650
+ - uid: 25718
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-37.5
parent: 2
type: Transform
- - uid: 25651
+ - uid: 25719
components:
- rot: 3.141592653589793 rad
pos: -9.5,-35.5
parent: 2
type: Transform
- - uid: 25652
+ - uid: 25720
components:
- rot: 3.141592653589793 rad
pos: -9.5,-36.5
parent: 2
type: Transform
- - uid: 25653
+ - uid: 25721
components:
- rot: 3.141592653589793 rad
pos: -9.5,-37.5
parent: 2
type: Transform
- - uid: 25654
+ - uid: 25722
components:
- rot: 3.141592653589793 rad
pos: -10.5,-37.5
parent: 2
type: Transform
- - uid: 25655
+ - uid: 25723
components:
- rot: 3.141592653589793 rad
pos: -11.5,-37.5
parent: 2
type: Transform
- - uid: 25656
+ - uid: 25724
components:
- pos: -14.5,-39.5
parent: 2
type: Transform
- - uid: 25657
+ - uid: 25725
components:
- pos: -12.5,-35.5
parent: 2
type: Transform
- - uid: 25658
+ - uid: 25726
components:
- rot: 3.141592653589793 rad
pos: 20.5,12.5
parent: 2
type: Transform
- - uid: 25659
+ - uid: 25727
components:
- pos: 22.5,13.5
parent: 2
type: Transform
- - uid: 25660
+ - uid: 25728
components:
- rot: 3.141592653589793 rad
pos: -4.5,1.5
parent: 2
type: Transform
- - uid: 25661
+ - uid: 25729
components:
- rot: 3.141592653589793 rad
pos: -8.5,0.5
parent: 2
type: Transform
- - uid: 25662
+ - uid: 25730
components:
- rot: 3.141592653589793 rad
pos: -8.5,1.5
parent: 2
type: Transform
- - uid: 25663
+ - uid: 25731
components:
- pos: -1.5,19.5
parent: 2
type: Transform
- - uid: 25664
+ - uid: 25732
components:
- rot: -1.5707963267948966 rad
pos: 2.5,19.5
parent: 2
type: Transform
- - uid: 25665
+ - uid: 25733
components:
- pos: -17.5,41.5
parent: 2
type: Transform
- - uid: 25666
+ - uid: 25734
components:
- pos: 40.5,21.5
parent: 2
type: Transform
- - uid: 25667
+ - uid: 25735
components:
- pos: 38.5,21.5
parent: 2
type: Transform
- - uid: 25668
+ - uid: 25736
components:
- pos: 38.5,18.5
parent: 2
type: Transform
- - uid: 25669
+ - uid: 25737
components:
- pos: 40.5,18.5
parent: 2
type: Transform
- - uid: 25670
+ - uid: 25738
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-4.5
parent: 2
type: Transform
- - uid: 25671
+ - uid: 25739
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-3.5
parent: 2
type: Transform
- - uid: 25672
+ - uid: 25740
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-2.5
parent: 2
type: Transform
- - uid: 25673
+ - uid: 25741
components:
- rot: -1.5707963267948966 rad
pos: 6.5,22.5
parent: 2
type: Transform
- - uid: 25674
+ - uid: 25742
components:
- pos: 61.5,-53.5
parent: 2
type: Transform
- - uid: 25675
+ - uid: 25743
components:
- pos: 62.5,-53.5
parent: 2
type: Transform
- - uid: 25676
+ - uid: 25744
components:
- pos: 63.5,-53.5
parent: 2
type: Transform
- - uid: 25677
+ - uid: 25745
components:
- pos: -16.5,-45.5
parent: 2
type: Transform
- - uid: 25678
+ - uid: 25746
components:
- pos: -16.5,-47.5
parent: 2
type: Transform
- - uid: 25679
+ - uid: 25747
components:
- pos: -16.5,-49.5
parent: 2
type: Transform
- - uid: 25680
+ - uid: 25748
components:
- rot: 3.141592653589793 rad
pos: 34.5,-50.5
parent: 2
type: Transform
- - uid: 25681
+ - uid: 25749
components:
- rot: 3.141592653589793 rad
pos: 33.5,-50.5
parent: 2
type: Transform
- - uid: 25682
+ - uid: 25750
components:
- rot: 3.141592653589793 rad
pos: 32.5,-50.5
parent: 2
type: Transform
- - uid: 25683
+ - uid: 25751
components:
- rot: 3.141592653589793 rad
pos: 30.5,-50.5
parent: 2
type: Transform
- - uid: 25684
+ - uid: 25752
components:
- rot: 3.141592653589793 rad
pos: 29.5,-50.5
parent: 2
type: Transform
- - uid: 25685
+ - uid: 25753
components:
- rot: 3.141592653589793 rad
pos: 28.5,-50.5
parent: 2
type: Transform
- - uid: 25686
+ - uid: 25754
components:
- rot: 3.141592653589793 rad
pos: 30.5,-48.5
parent: 2
type: Transform
- - uid: 25687
+ - uid: 25755
components:
- rot: 3.141592653589793 rad
pos: 31.5,-48.5
parent: 2
type: Transform
- - uid: 25688
+ - uid: 25756
components:
- rot: 3.141592653589793 rad
pos: 32.5,-48.5
parent: 2
type: Transform
- - uid: 25689
+ - uid: 25757
components:
- pos: 60.5,-1.5
parent: 2
type: Transform
- - uid: 25690
+ - uid: 25758
components:
- pos: 62.5,-1.5
parent: 2
type: Transform
- - uid: 25691
+ - uid: 25759
components:
- pos: 61.5,-1.5
parent: 2
type: Transform
- - uid: 25692
+ - uid: 25760
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-17.5
parent: 2
type: Transform
- - uid: 25693
+ - uid: 25761
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-16.5
parent: 2
type: Transform
- - uid: 25694
+ - uid: 25762
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-15.5
parent: 2
type: Transform
- - uid: 25695
+ - uid: 25763
components:
- pos: 65.5,-51.5
parent: 2
type: Transform
- - uid: 25696
+ - uid: 25764
components:
- pos: 59.5,-51.5
parent: 2
type: Transform
- - uid: 25697
+ - uid: 25765
components:
- pos: 59.5,-52.5
parent: 2
type: Transform
- - uid: 25698
+ - uid: 25766
components:
- pos: -39.5,-76.5
parent: 2
type: Transform
- - uid: 25699
+ - uid: 25767
components:
- pos: -39.5,-77.5
parent: 2
type: Transform
- - uid: 25700
+ - uid: 25768
components:
- pos: -40.5,-77.5
parent: 2
type: Transform
- - uid: 25701
+ - uid: 25769
components:
- pos: -40.5,-78.5
parent: 2
type: Transform
- - uid: 25702
+ - uid: 25770
components:
- pos: -41.5,-78.5
parent: 2
type: Transform
- - uid: 25703
+ - uid: 25771
components:
- pos: -42.5,-78.5
parent: 2
type: Transform
- - uid: 25704
+ - uid: 25772
components:
- pos: -43.5,-78.5
parent: 2
type: Transform
- - uid: 25705
+ - uid: 25773
components:
- pos: -43.5,-77.5
parent: 2
type: Transform
- - uid: 25706
+ - uid: 25774
components:
- pos: -44.5,-77.5
parent: 2
type: Transform
- - uid: 25707
+ - uid: 25775
components:
- pos: -44.5,-76.5
parent: 2
type: Transform
- - uid: 25708
+ - uid: 25776
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-74.5
parent: 2
type: Transform
- - uid: 25709
+ - uid: 25777
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-74.5
parent: 2
type: Transform
- - uid: 25710
+ - uid: 25778
components:
- pos: 23.5,-28.5
parent: 2
type: Transform
- - uid: 25711
+ - uid: 25779
components:
- pos: 30.5,-28.5
parent: 2
type: Transform
- - uid: 25712
+ - uid: 25780
components:
- pos: 30.5,-29.5
parent: 2
type: Transform
- - uid: 25713
+ - uid: 25781
components:
- pos: 59.5,-3.5
parent: 2
type: Transform
- - uid: 25714
+ - uid: 25782
components:
- rot: 3.141592653589793 rad
pos: -27.5,14.5
parent: 2
type: Transform
- - uid: 25715
+ - uid: 25783
components:
- rot: 3.141592653589793 rad
pos: -26.5,14.5
parent: 2
type: Transform
- - uid: 25716
+ - uid: 25784
components:
- rot: 3.141592653589793 rad
pos: -36.5,16.5
parent: 2
type: Transform
- - uid: 25717
+ - uid: 25785
components:
- rot: 3.141592653589793 rad
pos: -37.5,16.5
parent: 2
type: Transform
- - uid: 25718
+ - uid: 25786
components:
- rot: 3.141592653589793 rad
pos: -38.5,16.5
parent: 2
type: Transform
- - uid: 25719
+ - uid: 25787
components:
- rot: 3.141592653589793 rad
pos: -39.5,16.5
parent: 2
type: Transform
- - uid: 25720
+ - uid: 25788
components:
- rot: 3.141592653589793 rad
pos: -31.5,15.5
parent: 2
type: Transform
- - uid: 25721
+ - uid: 25789
components:
- rot: 3.141592653589793 rad
pos: -30.5,15.5
parent: 2
type: Transform
- - uid: 25722
+ - uid: 25790
components:
- rot: 3.141592653589793 rad
pos: -29.5,15.5
parent: 2
type: Transform
- - uid: 25723
+ - uid: 25791
components:
- rot: 1.5707963267948966 rad
pos: -48.5,6.5
parent: 2
type: Transform
- - uid: 25724
+ - uid: 25792
components:
- rot: 1.5707963267948966 rad
pos: -48.5,5.5
parent: 2
type: Transform
- - uid: 25725
+ - uid: 25793
components:
- rot: 1.5707963267948966 rad
pos: -47.5,5.5
parent: 2
type: Transform
- - uid: 25726
+ - uid: 25794
components:
- rot: 1.5707963267948966 rad
pos: -47.5,6.5
parent: 2
type: Transform
- - uid: 25727
+ - uid: 25795
components:
- pos: -52.5,13.5
parent: 2
type: Transform
- - uid: 25728
+ - uid: 25796
components:
- pos: -42.5,8.5
parent: 2
type: Transform
- - uid: 25729
+ - uid: 25797
components:
- pos: -51.5,8.5
parent: 2
type: Transform
- - uid: 25730
+ - uid: 25798
components:
- pos: -17.5,42.5
parent: 2
type: Transform
- - uid: 25731
+ - uid: 25799
components:
- pos: -14.5,47.5
parent: 2
type: Transform
- - uid: 25732
+ - uid: 25800
components:
- pos: -16.5,42.5
parent: 2
type: Transform
- - uid: 25733
+ - uid: 25801
components:
- pos: -16.5,41.5
parent: 2
type: Transform
- - uid: 25734
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-15.5
- parent: 2
- type: Transform
- - uid: 25735
+ - uid: 25802
components:
- pos: -33.5,-67.5
parent: 2
type: Transform
- - uid: 25736
+ - uid: 25803
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-27.5
parent: 2
type: Transform
- - uid: 25737
+ - uid: 25804
components:
- pos: -31.5,-73.5
parent: 2
type: Transform
- - uid: 25738
+ - uid: 25805
components:
- rot: 3.141592653589793 rad
pos: 67.5,10.5
parent: 2
type: Transform
- - uid: 25739
+ - uid: 25806
components:
- pos: -23.5,29.5
parent: 2
type: Transform
- - uid: 25740
+ - uid: 25807
components:
- rot: 1.5707963267948966 rad
pos: -24.5,29.5
parent: 2
type: Transform
- - uid: 25741
+ - uid: 25808
components:
- pos: -18.5,33.5
parent: 2
type: Transform
- - uid: 25742
+ - uid: 25809
components:
- pos: -21.5,35.5
parent: 2
type: Transform
- - uid: 25743
+ - uid: 25810
components:
- pos: -12.5,35.5
parent: 2
type: Transform
- - uid: 25744
+ - uid: 25811
components:
- pos: -12.5,32.5
parent: 2
type: Transform
- - uid: 25745
+ - uid: 25812
components:
- pos: -12.5,31.5
parent: 2
type: Transform
- - uid: 25746
+ - uid: 25813
components:
- pos: 65.5,-0.5
parent: 2
type: Transform
- - uid: 25747
+ - uid: 25814
components:
- pos: 65.5,-1.5
parent: 2
type: Transform
- - uid: 25748
+ - uid: 25815
components:
- rot: 1.5707963267948966 rad
pos: 42.5,48.5
parent: 2
type: Transform
- - uid: 25749
+ - uid: 25816
components:
- rot: 1.5707963267948966 rad
pos: 43.5,48.5
parent: 2
type: Transform
- - uid: 25750
+ - uid: 25817
components:
- rot: 1.5707963267948966 rad
pos: 33.5,44.5
parent: 2
type: Transform
- - uid: 25751
+ - uid: 25818
components:
- rot: 1.5707963267948966 rad
pos: 32.5,47.5
parent: 2
type: Transform
- - uid: 25752
+ - uid: 25819
components:
- rot: 1.5707963267948966 rad
pos: 32.5,46.5
parent: 2
type: Transform
- - uid: 25753
+ - uid: 25820
components:
- rot: 1.5707963267948966 rad
pos: 40.5,43.5
parent: 2
type: Transform
- - uid: 25754
+ - uid: 25821
components:
- rot: 3.141592653589793 rad
pos: -21.5,37.5
parent: 2
type: Transform
- - uid: 25755
+ - uid: 25822
components:
- rot: 3.141592653589793 rad
pos: -22.5,37.5
parent: 2
type: Transform
- - uid: 25756
+ - uid: 25823
components:
- pos: -19.5,37.5
parent: 2
type: Transform
- - uid: 25757
+ - uid: 25824
components:
- pos: -22.5,-97.5
parent: 2
type: Transform
- - uid: 25758
+ - uid: 25825
components:
- pos: -22.5,-98.5
parent: 2
type: Transform
- - uid: 25759
+ - uid: 25826
components:
- rot: 3.141592653589793 rad
pos: -7.5,-100.5
parent: 2
type: Transform
- - uid: 25760
+ - uid: 25827
components:
- rot: 3.141592653589793 rad
pos: -6.5,-100.5
parent: 2
type: Transform
- - uid: 25761
+ - uid: 25828
components:
- pos: -22.5,-96.5
parent: 2
type: Transform
- - uid: 25762
+ - uid: 25829
components:
- pos: -33.5,8.5
parent: 2
type: Transform
- - uid: 25763
+ - uid: 25830
components:
- pos: -32.5,8.5
parent: 2
type: Transform
- - uid: 25764
+ - uid: 25831
components:
- pos: 54.5,-35.5
parent: 2
type: Transform
- - uid: 25765
+ - uid: 25832
components:
- pos: 58.5,-30.5
parent: 2
type: Transform
- - uid: 25766
+ - uid: 25833
components:
- rot: 3.141592653589793 rad
pos: 49.5,-66.5
parent: 2
type: Transform
- - uid: 25767
+ - uid: 25834
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-30.5
parent: 2
type: Transform
- - uid: 25768
+ - uid: 25835
components:
- pos: 12.5,-5.5
parent: 2
type: Transform
- - uid: 25769
+ - uid: 25836
components:
- pos: 18.5,-14.5
parent: 2
type: Transform
- - uid: 25770
+ - uid: 25837
components:
- rot: 1.5707963267948966 rad
pos: -4.5,0.5
parent: 2
type: Transform
- - uid: 25771
+ - uid: 25838
components:
- pos: -31.5,-74.5
parent: 2
type: Transform
- - uid: 25772
+ - uid: 25839
components:
- pos: 12.5,-6.5
parent: 2
type: Transform
- - uid: 25773
+ - uid: 25840
components:
- rot: 3.141592653589793 rad
pos: 2.5,-7.5
parent: 2
type: Transform
- - uid: 25774
+ - uid: 25841
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-28.5
parent: 2
type: Transform
- - uid: 25775
+ - uid: 25842
components:
- pos: -0.5,-23.5
parent: 2
type: Transform
- - uid: 25776
+ - uid: 25843
components:
- pos: 0.5,-23.5
parent: 2
type: Transform
- - uid: 25777
+ - uid: 25844
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-36.5
parent: 2
type: Transform
- - uid: 25778
+ - uid: 25845
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-34.5
parent: 2
type: Transform
- - uid: 25779
+ - uid: 25846
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-38.5
parent: 2
type: Transform
- - uid: 25780
+ - uid: 25847
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-39.5
parent: 2
type: Transform
- - uid: 25781
+ - uid: 25848
components:
- pos: 28.5,-39.5
parent: 2
type: Transform
- proto: TegCenter
entities:
- - uid: 25782
+ - uid: 25849
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-44.5
@@ -168682,7 +169409,7 @@ entities:
type: Transform
- proto: TegCirculator
entities:
- - uid: 25783
+ - uid: 25850
components:
- rot: 3.141592653589793 rad
pos: -70.5,-44.5
@@ -168690,7 +169417,7 @@ entities:
type: Transform
- color: '#FF3300FF'
type: PointLight
- - uid: 25784
+ - uid: 25851
components:
- pos: -68.5,-44.5
parent: 2
@@ -168699,7 +169426,7 @@ entities:
type: PointLight
- proto: TelecomServer
entities:
- - uid: 14548
+ - uid: 14567
components:
- pos: 8.5,-20.5
parent: 2
@@ -168709,7 +169436,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14549
+ - 14568
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168719,7 +169446,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14550
+ - uid: 14569
components:
- pos: 9.5,-20.5
parent: 2
@@ -168729,7 +169456,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14551
+ - 14570
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168739,7 +169466,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14552
+ - uid: 14571
components:
- pos: 10.5,-20.5
parent: 2
@@ -168749,7 +169476,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14553
+ - 14572
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168759,7 +169486,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14554
+ - uid: 14573
components:
- pos: 11.5,-20.5
parent: 2
@@ -168769,7 +169496,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14555
+ - 14574
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168779,7 +169506,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14556
+ - uid: 14575
components:
- pos: 9.5,-22.5
parent: 2
@@ -168789,7 +169516,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14557
+ - 14576
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168799,7 +169526,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14558
+ - uid: 14577
components:
- pos: 8.5,-22.5
parent: 2
@@ -168809,8 +169536,8 @@ entities:
showEnts: False
occludes: True
ents:
- - 14560
- - 14559
+ - 14579
+ - 14578
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168820,7 +169547,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14561
+ - uid: 14580
components:
- pos: 10.5,-22.5
parent: 2
@@ -168830,7 +169557,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14562
+ - 14581
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168840,7 +169567,7 @@ entities:
occludes: True
ents: []
type: ContainerContainer
- - uid: 14563
+ - uid: 14582
components:
- pos: 11.5,-22.5
parent: 2
@@ -168850,7 +169577,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 14564
+ - 14583
machine_board: !type:Container
showEnts: False
occludes: True
@@ -168862,32 +169589,32 @@ entities:
type: ContainerContainer
- proto: ThermomachineFreezerMachineCircuitBoard
entities:
- - uid: 25785
+ - uid: 25852
components:
- pos: -36.51641,35.415855
parent: 2
type: Transform
- proto: Thruster
entities:
- - uid: 25786
+ - uid: 25853
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-88.5
parent: 2
type: Transform
- - uid: 25787
+ - uid: 25854
components:
- rot: 3.141592653589793 rad
pos: -56.5,-90.5
parent: 2
type: Transform
- - uid: 25788
+ - uid: 25855
components:
- rot: -1.5707963267948966 rad
pos: -52.5,-90.5
parent: 2
type: Transform
- - uid: 25789
+ - uid: 25856
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-86.5
@@ -168895,20 +169622,20 @@ entities:
type: Transform
- proto: TimerTrigger
entities:
- - uid: 25790
+ - uid: 25857
components:
- pos: 65.507225,-28.362265
parent: 2
type: Transform
- proto: TintedWindow
entities:
- - uid: 25791
+ - uid: 25858
components:
- rot: 1.5707963267948966 rad
pos: -37.5,17.5
parent: 2
type: Transform
- - uid: 25792
+ - uid: 25859
components:
- rot: 1.5707963267948966 rad
pos: -38.5,17.5
@@ -168916,32 +169643,32 @@ entities:
type: Transform
- proto: TobaccoSeeds
entities:
- - uid: 25793
+ - uid: 25860
components:
- pos: -32.36416,6.3223424
parent: 2
type: Transform
- proto: ToiletDirtyWater
entities:
- - uid: 25794
+ - uid: 25861
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-5.5
parent: 2
type: Transform
- - uid: 25795
+ - uid: 25862
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-7.5
parent: 2
type: Transform
- - uid: 25796
+ - uid: 25863
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-5.5
parent: 2
type: Transform
- - uid: 25797
+ - uid: 25864
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-7.5
@@ -168949,12 +169676,12 @@ entities:
type: Transform
- proto: ToiletEmpty
entities:
- - uid: 25798
+ - uid: 25865
components:
- pos: 61.5,24.5
parent: 2
type: Transform
- - uid: 25799
+ - uid: 25866
components:
- pos: 63.5,24.5
parent: 2
@@ -168963,357 +169690,357 @@ entities:
type: Construction
- proto: TomatoSeeds
entities:
- - uid: 25800
+ - uid: 25867
components:
- pos: -32.45791,6.4317174
parent: 2
type: Transform
- proto: ToolboxElectrical
entities:
- - uid: 25801
+ - uid: 25868
components:
- pos: 46.470684,-5.411702
parent: 2
type: Transform
- proto: ToolboxElectricalFilled
entities:
- - uid: 25802
+ - uid: 25869
components:
- pos: -36.493176,-7.9722276
parent: 2
type: Transform
- - uid: 25803
+ - uid: 25870
components:
- pos: 32.521046,-20.990738
parent: 2
type: Transform
- - uid: 25804
+ - uid: 25871
components:
- pos: -24.509478,-19.362955
parent: 2
type: Transform
- - uid: 25805
+ - uid: 25872
components:
- pos: -12.493107,-98.55707
parent: 2
type: Transform
- - uid: 25806
+ - uid: 25873
components:
- pos: 67.55947,-64.54127
parent: 2
type: Transform
- proto: ToolboxEmergencyFilled
entities:
- - uid: 25807
+ - uid: 25874
components:
- pos: 32.521046,-22.058308
parent: 2
type: Transform
- - uid: 25808
+ - uid: 25875
components:
- pos: 4.5177064,-69.50256
parent: 2
type: Transform
- - uid: 25809
+ - uid: 25876
components:
- pos: -22.596659,-20.233759
parent: 2
type: Transform
- - uid: 25810
+ - uid: 25877
components:
- pos: -28.343418,-52.353195
parent: 2
type: Transform
- - uid: 25811
+ - uid: 25878
components:
- pos: -38.44295,-67.482124
parent: 2
type: Transform
- - uid: 25812
+ - uid: 25879
components:
- pos: -35.451088,-50.209225
parent: 2
type: Transform
- - uid: 25813
+ - uid: 25880
components:
- pos: 54.54983,-30.496807
parent: 2
type: Transform
- - uid: 25814
+ - uid: 25881
components:
- pos: 65.53578,-10.518121
parent: 2
type: Transform
- - uid: 25815
+ - uid: 25882
components:
- pos: -12.486199,-5.5686293
parent: 2
type: Transform
- - uid: 25816
+ - uid: 25883
components:
- pos: -36.5088,-7.6284776
parent: 2
type: Transform
- proto: ToolboxGoldFilled
entities:
- - uid: 25817
+ - uid: 25884
components:
- pos: 32.512478,-22.558695
parent: 2
type: Transform
- proto: ToolboxMechanical
entities:
- - uid: 25818
+ - uid: 25885
components:
- pos: -22.637089,-8.36341
parent: 2
type: Transform
- proto: ToolboxMechanicalFilled
entities:
- - uid: 25819
+ - uid: 25886
components:
- pos: -36.493176,-7.2222276
parent: 2
type: Transform
- - uid: 25820
+ - uid: 25887
components:
- pos: -15.996035,12.5348
parent: 2
type: Transform
- - uid: 25821
+ - uid: 25888
components:
- pos: 32.521046,-21.537613
parent: 2
type: Transform
- - uid: 25822
+ - uid: 25889
components:
- pos: -22.52499,-67.50294
parent: 2
type: Transform
- - uid: 25823
+ - uid: 25890
components:
- pos: 41.46839,-54.726734
parent: 2
type: Transform
- - uid: 25824
+ - uid: 25891
components:
- pos: -36.497368,-32.593475
parent: 2
type: Transform
- - uid: 25825
+ - uid: 25892
components:
- pos: -26.431704,-19.50094
parent: 2
type: Transform
- proto: ToyAi
entities:
- - uid: 25826
+ - uid: 25893
components:
- pos: 48.41234,-27.902035
parent: 2
type: Transform
- - uid: 25827
+ - uid: 25894
components:
- pos: -1.529743,69.62148
parent: 2
type: Transform
- proto: ToyAmongPequeno
entities:
- - uid: 25828
+ - uid: 25895
components:
- pos: 64.471924,-66.472046
parent: 2
type: Transform
- proto: ToyDurand
entities:
- - uid: 25829
+ - uid: 25896
components:
- pos: -18.14669,61.77462
parent: 2
type: Transform
- proto: ToyFigurineClown
entities:
- - uid: 25830
+ - uid: 25897
components:
- pos: 2.672367,-19.349606
parent: 2
type: Transform
- proto: ToyFigurineHamlet
entities:
- - uid: 25831
+ - uid: 25898
components:
- pos: 19.529411,-12.229433
parent: 2
type: Transform
- proto: ToyFigurineMime
entities:
- - uid: 25832
+ - uid: 25899
components:
- pos: 2.266117,-19.537106
parent: 2
type: Transform
- proto: ToyFigurinePassenger
entities:
- - uid: 25833
+ - uid: 25900
components:
- pos: -17.943565,62.415245
parent: 2
type: Transform
- proto: ToyGygax
entities:
- - uid: 25834
+ - uid: 25901
components:
- pos: -17.318565,61.89962
parent: 2
type: Transform
- proto: ToyHonk
entities:
- - uid: 25835
+ - uid: 25902
components:
- pos: 62.0246,-1.3985255
parent: 2
type: Transform
- - uid: 25836
+ - uid: 25903
components:
- pos: -17.287315,62.508995
parent: 2
type: Transform
- proto: ToyIan
entities:
- - uid: 25837
+ - uid: 25904
components:
- pos: 48.44359,-22.433285
parent: 2
type: Transform
- proto: ToyNuke
entities:
- - uid: 25838
+ - uid: 25905
components:
- pos: 48.50609,-28.933285
parent: 2
type: Transform
- proto: ToyRubberDuck
entities:
- - uid: 25839
+ - uid: 25906
components:
- pos: 48.59984,-28.457928
parent: 2
type: Transform
- - uid: 25840
+ - uid: 25907
components:
- pos: 48.396713,-28.473553
parent: 2
type: Transform
- - uid: 25841
+ - uid: 25908
components:
- pos: 48.50609,-28.286053
parent: 2
type: Transform
- proto: ToySpawner
entities:
- - uid: 25842
+ - uid: 25909
components:
- pos: 53.5,-65.5
parent: 2
type: Transform
- - uid: 25843
+ - uid: 25910
components:
- pos: 54.5,-35.5
parent: 2
type: Transform
- proto: TrainingBomb
entities:
- - uid: 25844
+ - uid: 25911
components:
- pos: 11.5,23.5
parent: 2
type: Transform
- - uid: 25845
+ - uid: 25912
components:
- pos: 10.5,23.5
parent: 2
type: Transform
- proto: TrashBananaPeel
entities:
- - uid: 25846
+ - uid: 25913
components:
- pos: 46.551132,46.620934
parent: 2
type: Transform
- - uid: 25847
+ - uid: 25914
components:
- pos: 48.49847,33.344906
parent: 2
type: Transform
- - uid: 25848
+ - uid: 25915
components:
- pos: 50.451595,31.673027
parent: 2
type: Transform
- - uid: 25849
+ - uid: 25916
components:
- pos: 5.4959826,24.50416
parent: 2
type: Transform
- - uid: 25850
+ - uid: 25917
components:
- pos: 0.5065335,-21.863766
parent: 2
type: Transform
- proto: trayScanner
entities:
- - uid: 25851
+ - uid: 25918
components:
- pos: -36.91505,-7.9878526
parent: 2
type: Transform
- - uid: 25852
+ - uid: 25919
components:
- pos: -47.457436,-19.479069
parent: 2
type: Transform
- - uid: 25853
+ - uid: 25920
components:
- pos: -42.463882,-20.49279
parent: 2
type: Transform
- - uid: 25854
+ - uid: 25921
components:
- pos: 39.581177,-30.49341
parent: 2
type: Transform
- - uid: 25855
+ - uid: 25922
components:
- pos: 73.06597,36.576
parent: 2
type: Transform
- - uid: 25856
+ - uid: 25923
components:
- pos: 77.48675,-44.195305
parent: 2
type: Transform
- - uid: 25857
+ - uid: 25924
components:
- pos: -26.403507,-59.437252
parent: 2
type: Transform
- proto: TromboneInstrument
entities:
- - uid: 25858
+ - uid: 25925
components:
- pos: 68.56264,48.54323
parent: 2
type: Transform
- proto: TrumpetInstrument
entities:
- - uid: 25859
+ - uid: 25926
components:
- pos: -10.547552,-5.035685
parent: 2
type: Transform
- proto: TwoWayLever
entities:
- - uid: 25860
+ - uid: 25927
components:
- pos: 16.5,-53.5
parent: 2
@@ -169321,150 +170048,150 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12690:
+ 12712:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12688:
+ 12710:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12689:
+ 12711:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12686:
+ 12708:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12683:
+ 12705:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12680:
+ 12702:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12682:
+ 12704:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12684:
+ 12706:
- Left: Forward
- Right: Reverse
- Middle: Off
- 23270:
+ 23293:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12681:
+ 12703:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12687:
+ 12709:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25861
+ - uid: 25928
components:
- pos: -28.5,24.5
parent: 2
type: Transform
- linkedPorts:
- 12698:
+ 12720:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12699:
+ 12721:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12697:
+ 12719:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12696:
+ 12718:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12695:
+ 12717:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12694:
+ 12716:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 25862
+ - uid: 25929
components:
- pos: -41.5,17.5
parent: 2
type: Transform
- linkedPorts:
- 12740:
+ 12762:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12780:
+ 12802:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12739:
+ 12761:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12721:
+ 12743:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12741:
+ 12763:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25863
+ - uid: 25930
components:
- pos: -48.5,24.5
parent: 2
type: Transform
- linkedPorts:
- 12712:
+ 12734:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12711:
+ 12733:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12710:
+ 12732:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12709:
+ 12731:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12717:
+ 12739:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12718:
+ 12740:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12719:
+ 12741:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12720:
+ 12742:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25864
+ - uid: 25931
components:
- pos: -48.5,18.5
parent: 2
@@ -169472,40 +170199,40 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12708:
+ 12730:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12707:
+ 12729:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12706:
+ 12728:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12705:
+ 12727:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12715:
+ 12737:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12716:
+ 12738:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12714:
+ 12736:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12713:
+ 12735:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25865
+ - uid: 25932
components:
- pos: -36.5,24.5
parent: 2
@@ -169513,99 +170240,99 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12704:
+ 12726:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12703:
+ 12725:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12702:
+ 12724:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12700:
+ 12722:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12701:
+ 12723:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25866
+ - uid: 25933
components:
- pos: -11.5,28.5
parent: 2
type: Transform
- linkedPorts:
- 12757:
+ 12779:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12758:
+ 12780:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12759:
+ 12781:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12760:
+ 12782:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12761:
+ 12783:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12756:
+ 12778:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12745:
+ 12767:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12746:
+ 12768:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12747:
+ 12769:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12763:
+ 12785:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12762:
+ 12784:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12738:
+ 12760:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12737:
+ 12759:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12764:
+ 12786:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12765:
+ 12787:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12736:
+ 12758:
- Left: Reverse
- Right: Forward
- Middle: Off
type: DeviceLinkSource
- - uid: 25867
+ - uid: 25934
components:
- pos: -48.5,29.5
parent: 2
@@ -169613,36 +170340,36 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12733:
+ 12755:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12723:
+ 12745:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12722:
+ 12744:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12724:
+ 12746:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12725:
+ 12747:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12726:
+ 12748:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12735:
+ 12757:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25868
+ - uid: 25935
components:
- pos: -48.5,35.5
parent: 2
@@ -169650,36 +170377,36 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12732:
+ 12754:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12727:
+ 12749:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12728:
+ 12750:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12729:
+ 12751:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12730:
+ 12752:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12731:
+ 12753:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12734:
+ 12756:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25869
+ - uid: 25936
components:
- pos: -46.5,14.5
parent: 2
@@ -169687,21 +170414,21 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12743:
+ 12765:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12742:
+ 12764:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12744:
+ 12766:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- type: ItemCooldown
- - uid: 25870
+ - uid: 25937
components:
- pos: 47.5,39.5
parent: 2
@@ -169709,177 +170436,177 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12748:
+ 12770:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12749:
+ 12771:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12750:
+ 12772:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12751:
+ 12773:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12752:
+ 12774:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12753:
+ 12775:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12754:
+ 12776:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12755:
+ 12777:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12766:
+ 12788:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25871
+ - uid: 25938
components:
- pos: -36.5,-98.5
parent: 2
type: Transform
- linkedPorts:
- 12768:
+ 12790:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12767:
+ 12789:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12769:
+ 12791:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12770:
+ 12792:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12771:
+ 12793:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12772:
+ 12794:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12773:
+ 12795:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12777:
+ 12799:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12776:
+ 12798:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12774:
+ 12796:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12775:
+ 12797:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25872
+ - uid: 25939
components:
- pos: -36.5,-104.5
parent: 2
type: Transform
- linkedPorts:
- 12775:
+ 12797:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12774:
+ 12796:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12776:
+ 12798:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12777:
+ 12799:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12773:
+ 12795:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12772:
+ 12794:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12771:
+ 12793:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12770:
+ 12792:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12769:
+ 12791:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12767:
+ 12789:
- Left: Forward
- Right: Reverse
- Middle: Off
- 12768:
+ 12790:
- Left: Forward
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25873
+ - uid: 25940
components:
- pos: -9.5,-12.5
parent: 2
type: Transform
- linkedPorts:
- 12691:
+ 12713:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12692:
+ 12714:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12685:
+ 12707:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12779:
+ 12801:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12778:
+ 12800:
- Left: Reverse
- Right: Reverse
- Middle: Off
- 12693:
+ 12715:
- Left: Reverse
- Right: Reverse
- Middle: Off
type: DeviceLinkSource
- - uid: 25874
+ - uid: 25941
components:
- pos: -15.5,10.5
parent: 2
@@ -169887,15 +170614,15 @@ entities:
- nextSignalLeft: True
type: TwoWayLever
- linkedPorts:
- 12781:
+ 12803:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12782:
+ 12804:
- Left: Reverse
- Right: Forward
- Middle: Off
- 12783:
+ 12805:
- Left: Reverse
- Right: Forward
- Middle: Off
@@ -169903,44 +170630,44 @@ entities:
- type: ItemCooldown
- proto: UnfinishedMachineFrame
entities:
- - uid: 25875
+ - uid: 25942
components:
- pos: -26.5,-24.5
parent: 2
type: Transform
- - uid: 25876
+ - uid: 25943
components:
- pos: -10.5,39.5
parent: 2
type: Transform
- - uid: 25877
+ - uid: 25944
components:
- pos: 53.5,-30.5
parent: 2
type: Transform
- proto: UniformPrinter
entities:
- - uid: 25878
+ - uid: 25945
components:
- pos: 2.5,-4.5
parent: 2
type: Transform
- proto: UniformShortsRedWithTop
entities:
- - uid: 25879
+ - uid: 25946
components:
- pos: 30.57281,4.627015
parent: 2
type: Transform
- proto: UprightPianoInstrument
entities:
- - uid: 25880
+ - uid: 25947
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-75.5
parent: 2
type: Transform
- - uid: 25881
+ - uid: 25948
components:
- rot: -1.5707963267948966 rad
pos: 8.5,5.5
@@ -169948,43 +170675,43 @@ entities:
type: Transform
- proto: Vaccinator
entities:
- - uid: 25882
+ - uid: 25949
components:
- pos: -22.5,-77.5
parent: 2
type: Transform
- - uid: 25883
+ - uid: 25950
components:
- pos: -20.5,-76.5
parent: 2
type: Transform
- proto: VehicleKeyJanicart
entities:
- - uid: 25884
+ - uid: 25951
components:
- pos: -13.519899,-23.451248
parent: 2
type: Transform
- proto: VehicleKeySecway
entities:
- - uid: 25885
+ - uid: 25952
components:
- pos: 12.469265,19.745214
parent: 2
type: Transform
- - uid: 25886
+ - uid: 25953
components:
- pos: 12.39114,19.557714
parent: 2
type: Transform
- - uid: 25887
+ - uid: 25954
components:
- pos: 12.594265,19.82334
parent: 2
type: Transform
- proto: VendingBarDrobe
entities:
- - uid: 25888
+ - uid: 25955
components:
- flags: SessionSpecific
type: MetaData
@@ -169993,7 +170720,7 @@ entities:
type: Transform
- proto: VendingMachineAtmosDrobe
entities:
- - uid: 25889
+ - uid: 25956
components:
- flags: SessionSpecific
type: MetaData
@@ -170002,28 +170729,28 @@ entities:
type: Transform
- proto: VendingMachineBooze
entities:
- - uid: 25890
+ - uid: 25957
components:
- flags: SessionSpecific
type: MetaData
- pos: -41.5,-74.5
parent: 2
type: Transform
- - uid: 25891
+ - uid: 25958
components:
- flags: SessionSpecific
type: MetaData
- pos: 18.5,10.5
parent: 2
type: Transform
- - uid: 25892
+ - uid: 25959
components:
- flags: SessionSpecific
type: MetaData
- pos: 36.5,51.5
parent: 2
type: Transform
- - uid: 25893
+ - uid: 25960
components:
- flags: SessionSpecific
type: MetaData
@@ -170032,7 +170759,7 @@ entities:
type: Transform
- proto: VendingMachineCargoDrobe
entities:
- - uid: 25894
+ - uid: 25961
components:
- flags: SessionSpecific
type: MetaData
@@ -170041,7 +170768,7 @@ entities:
type: Transform
- proto: VendingMachineCart
entities:
- - uid: 25895
+ - uid: 25962
components:
- flags: SessionSpecific
type: MetaData
@@ -170050,21 +170777,21 @@ entities:
type: Transform
- proto: VendingMachineChang
entities:
- - uid: 25896
+ - uid: 25963
components:
- flags: SessionSpecific
type: MetaData
- pos: 53.5,3.5
parent: 2
type: Transform
- - uid: 25897
+ - uid: 25964
components:
- flags: SessionSpecific
type: MetaData
- pos: -2.5,-31.5
parent: 2
type: Transform
- - uid: 25898
+ - uid: 25965
components:
- flags: SessionSpecific
type: MetaData
@@ -170073,7 +170800,7 @@ entities:
type: Transform
- proto: VendingMachineChapel
entities:
- - uid: 25899
+ - uid: 25966
components:
- flags: SessionSpecific
type: MetaData
@@ -170082,16 +170809,14 @@ entities:
type: Transform
- proto: VendingMachineChefDrobe
entities:
- - uid: 25900
+ - uid: 25967
components:
- - flags: SessionSpecific
- type: MetaData
- pos: 0.5,14.5
parent: 2
type: Transform
- proto: VendingMachineChefvend
entities:
- - uid: 25901
+ - uid: 25968
components:
- flags: SessionSpecific
type: MetaData
@@ -170100,7 +170825,7 @@ entities:
type: Transform
- proto: VendingMachineChemDrobe
entities:
- - uid: 25902
+ - uid: 25969
components:
- flags: SessionSpecific
type: MetaData
@@ -170109,49 +170834,49 @@ entities:
type: Transform
- proto: VendingMachineChemicals
entities:
- - uid: 25903
+ - uid: 25970
components:
- pos: 5.5,-45.5
parent: 2
type: Transform
- proto: VendingMachineCigs
entities:
- - uid: 25904
+ - uid: 25971
components:
- flags: SessionSpecific
type: MetaData
- pos: 2.5,58.5
parent: 2
type: Transform
- - uid: 25905
+ - uid: 25972
components:
- flags: SessionSpecific
type: MetaData
- pos: -6.5,-34.5
parent: 2
type: Transform
- - uid: 25906
+ - uid: 25973
components:
- flags: SessionSpecific
type: MetaData
- pos: 7.5,-2.5
parent: 2
type: Transform
- - uid: 25907
+ - uid: 25974
components:
- flags: SessionSpecific
type: MetaData
- pos: 61.5,-13.5
parent: 2
type: Transform
- - uid: 25908
+ - uid: 25975
components:
- flags: SessionSpecific
type: MetaData
- pos: -13.5,8.5
parent: 2
type: Transform
- - uid: 25909
+ - uid: 25976
components:
- flags: SessionSpecific
type: MetaData
@@ -170160,7 +170885,7 @@ entities:
type: Transform
- proto: VendingMachineClothing
entities:
- - uid: 25910
+ - uid: 25977
components:
- flags: SessionSpecific
type: MetaData
@@ -170169,77 +170894,77 @@ entities:
type: Transform
- proto: VendingMachineCoffee
entities:
- - uid: 25911
+ - uid: 25978
components:
- flags: SessionSpecific
type: MetaData
- pos: -10.5,-52.5
parent: 2
type: Transform
- - uid: 25912
+ - uid: 25979
components:
- flags: SessionSpecific
type: MetaData
- pos: 37.5,-17.5
parent: 2
type: Transform
- - uid: 25913
+ - uid: 25980
components:
- flags: SessionSpecific
type: MetaData
- pos: 45.5,17.5
parent: 2
type: Transform
- - uid: 25914
+ - uid: 25981
components:
- flags: SessionSpecific
type: MetaData
- pos: 51.5,3.5
parent: 2
type: Transform
- - uid: 25915
+ - uid: 25982
components:
- flags: SessionSpecific
type: MetaData
- pos: 60.5,-13.5
parent: 2
type: Transform
- - uid: 25916
+ - uid: 25983
components:
- flags: SessionSpecific
type: MetaData
- pos: -33.5,-22.5
parent: 2
type: Transform
- - uid: 25917
+ - uid: 25984
components:
- flags: SessionSpecific
type: MetaData
- pos: -43.5,4.5
parent: 2
type: Transform
- - uid: 25918
+ - uid: 25985
components:
- flags: SessionSpecific
type: MetaData
- pos: -0.5,43.5
parent: 2
type: Transform
- - uid: 25919
+ - uid: 25986
components:
- flags: SessionSpecific
type: MetaData
- pos: -14.5,49.5
parent: 2
type: Transform
- - uid: 25920
+ - uid: 25987
components:
- flags: SessionSpecific
type: MetaData
- pos: 51.5,-37.5
parent: 2
type: Transform
- - uid: 25921
+ - uid: 25988
components:
- flags: SessionSpecific
type: MetaData
@@ -170248,21 +170973,21 @@ entities:
type: Transform
- proto: VendingMachineCola
entities:
- - uid: 25922
+ - uid: 25989
components:
- flags: SessionSpecific
type: MetaData
- pos: 8.5,-2.5
parent: 2
type: Transform
- - uid: 25923
+ - uid: 25990
components:
- flags: SessionSpecific
type: MetaData
- pos: 27.5,-11.5
parent: 2
type: Transform
- - uid: 25924
+ - uid: 25991
components:
- flags: SessionSpecific
type: MetaData
@@ -170271,14 +170996,14 @@ entities:
type: Transform
- proto: VendingMachineCondiments
entities:
- - uid: 25925
+ - uid: 25992
components:
- flags: SessionSpecific
type: MetaData
- pos: 8.5,10.5
parent: 2
type: Transform
- - uid: 25926
+ - uid: 25993
components:
- flags: SessionSpecific
type: MetaData
@@ -170287,7 +171012,7 @@ entities:
type: Transform
- proto: VendingMachineDetDrobe
entities:
- - uid: 25927
+ - uid: 25994
components:
- flags: SessionSpecific
type: MetaData
@@ -170296,14 +171021,14 @@ entities:
type: Transform
- proto: VendingMachineDinnerware
entities:
- - uid: 25928
+ - uid: 25995
components:
- flags: SessionSpecific
type: MetaData
- pos: -0.5,5.5
parent: 2
type: Transform
- - uid: 25929
+ - uid: 25996
components:
- flags: SessionSpecific
type: MetaData
@@ -170312,28 +171037,28 @@ entities:
type: Transform
- proto: VendingMachineDiscount
entities:
- - uid: 25930
+ - uid: 25997
components:
- flags: SessionSpecific
type: MetaData
- pos: -6.5,-32.5
parent: 2
type: Transform
- - uid: 25931
+ - uid: 25998
components:
- flags: SessionSpecific
type: MetaData
- pos: -33.5,-23.5
parent: 2
type: Transform
- - uid: 25932
+ - uid: 25999
components:
- flags: SessionSpecific
type: MetaData
- pos: -43.5,3.5
parent: 2
type: Transform
- - uid: 25933
+ - uid: 26000
components:
- flags: SessionSpecific
type: MetaData
@@ -170342,7 +171067,7 @@ entities:
type: Transform
- proto: VendingMachineEngiDrobe
entities:
- - uid: 25934
+ - uid: 26001
components:
- flags: SessionSpecific
type: MetaData
@@ -170351,7 +171076,7 @@ entities:
type: Transform
- proto: VendingMachineEngivend
entities:
- - uid: 25935
+ - uid: 26002
components:
- flags: SessionSpecific
type: MetaData
@@ -170360,7 +171085,7 @@ entities:
type: Transform
- proto: VendingMachineGames
entities:
- - uid: 25936
+ - uid: 26003
components:
- flags: SessionSpecific
type: MetaData
@@ -170369,7 +171094,7 @@ entities:
type: Transform
- proto: VendingMachineGeneDrobe
entities:
- - uid: 25937
+ - uid: 26004
components:
- flags: SessionSpecific
type: MetaData
@@ -170378,7 +171103,7 @@ entities:
type: Transform
- proto: VendingMachineHappyHonk
entities:
- - uid: 25938
+ - uid: 26005
components:
- flags: SessionSpecific
type: MetaData
@@ -170387,7 +171112,7 @@ entities:
type: Transform
- proto: VendingMachineHydrobe
entities:
- - uid: 25939
+ - uid: 26006
components:
- flags: SessionSpecific
type: MetaData
@@ -170396,16 +171121,14 @@ entities:
type: Transform
- proto: VendingMachineJaniDrobe
entities:
- - uid: 25940
+ - uid: 26007
components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -10.5,-19.5
+ - pos: -9.5,-19.5
parent: 2
type: Transform
- proto: VendingMachineLawDrobe
entities:
- - uid: 25941
+ - uid: 26008
components:
- flags: SessionSpecific
type: MetaData
@@ -170414,14 +171137,14 @@ entities:
type: Transform
- proto: VendingMachineMedical
entities:
- - uid: 25942
+ - uid: 26009
components:
- flags: SessionSpecific
type: MetaData
- pos: -28.5,-75.5
parent: 2
type: Transform
- - uid: 25943
+ - uid: 26010
components:
- flags: SessionSpecific
type: MetaData
@@ -170430,7 +171153,7 @@ entities:
type: Transform
- proto: VendingMachineMediDrobe
entities:
- - uid: 25944
+ - uid: 26011
components:
- flags: SessionSpecific
type: MetaData
@@ -170439,7 +171162,7 @@ entities:
type: Transform
- proto: VendingMachineNutri
entities:
- - uid: 25945
+ - uid: 26012
components:
- flags: SessionSpecific
type: MetaData
@@ -170448,14 +171171,14 @@ entities:
type: Transform
- proto: VendingMachineRestockSmokes
entities:
- - uid: 25946
+ - uid: 26013
components:
- pos: -26.439571,39.52594
parent: 2
type: Transform
- proto: VendingMachineRoboDrobe
entities:
- - uid: 25947
+ - uid: 26014
components:
- flags: SessionSpecific
type: MetaData
@@ -170464,7 +171187,7 @@ entities:
type: Transform
- proto: VendingMachineRobotics
entities:
- - uid: 25948
+ - uid: 26015
components:
- flags: SessionSpecific
type: MetaData
@@ -170473,7 +171196,7 @@ entities:
type: Transform
- proto: VendingMachineSalvage
entities:
- - uid: 25949
+ - uid: 26016
components:
- flags: SessionSpecific
type: MetaData
@@ -170482,7 +171205,7 @@ entities:
type: Transform
- proto: VendingMachineSciDrobe
entities:
- - uid: 25950
+ - uid: 26017
components:
- flags: SessionSpecific
type: MetaData
@@ -170491,7 +171214,7 @@ entities:
type: Transform
- proto: VendingMachineSec
entities:
- - uid: 25951
+ - uid: 26018
components:
- flags: SessionSpecific
type: MetaData
@@ -170500,7 +171223,7 @@ entities:
type: Transform
- proto: VendingMachineSecDrobe
entities:
- - uid: 25952
+ - uid: 26019
components:
- flags: SessionSpecific
type: MetaData
@@ -170509,14 +171232,14 @@ entities:
type: Transform
- proto: VendingMachineSeeds
entities:
- - uid: 25953
+ - uid: 26020
components:
- flags: SessionSpecific
type: MetaData
- pos: -8.5,12.5
parent: 2
type: Transform
- - uid: 25954
+ - uid: 26021
components:
- flags: SessionSpecific
type: MetaData
@@ -170525,7 +171248,7 @@ entities:
type: Transform
- proto: VendingMachineSeedsUnlocked
entities:
- - uid: 25955
+ - uid: 26022
components:
- flags: SessionSpecific
type: MetaData
@@ -170534,14 +171257,14 @@ entities:
type: Transform
- proto: VendingMachineSnack
entities:
- - uid: 25956
+ - uid: 26023
components:
- flags: SessionSpecific
type: MetaData
- pos: 2.5,57.5
parent: 2
type: Transform
- - uid: 25957
+ - uid: 26024
components:
- flags: SessionSpecific
type: MetaData
@@ -170550,42 +171273,42 @@ entities:
type: Transform
- proto: VendingMachineSovietSoda
entities:
- - uid: 25958
+ - uid: 26025
components:
- flags: SessionSpecific
type: MetaData
- pos: -1.5,-8.5
parent: 2
type: Transform
- - uid: 25959
+ - uid: 26026
components:
- flags: SessionSpecific
type: MetaData
- pos: 61.5,-15.5
parent: 2
type: Transform
- - uid: 25960
+ - uid: 26027
components:
- flags: SessionSpecific
type: MetaData
- pos: -37.5,-72.5
parent: 2
type: Transform
- - uid: 25961
+ - uid: 26028
components:
- flags: SessionSpecific
type: MetaData
- pos: -40.5,27.5
parent: 2
type: Transform
- - uid: 25962
+ - uid: 26029
components:
- flags: SessionSpecific
type: MetaData
- pos: 44.5,-15.5
parent: 2
type: Transform
- - uid: 25963
+ - uid: 26030
components:
- flags: SessionSpecific
type: MetaData
@@ -170594,7 +171317,7 @@ entities:
type: Transform
- proto: VendingMachineTankDispenserEngineering
entities:
- - uid: 25964
+ - uid: 26031
components:
- flags: SessionSpecific
type: MetaData
@@ -170603,42 +171326,42 @@ entities:
type: Transform
- proto: VendingMachineTankDispenserEVA
entities:
- - uid: 25965
+ - uid: 26032
components:
- flags: SessionSpecific
type: MetaData
- pos: 28.5,-14.5
parent: 2
type: Transform
- - uid: 25966
+ - uid: 26033
components:
- flags: SessionSpecific
type: MetaData
- pos: -22.5,-36.5
parent: 2
type: Transform
- - uid: 25967
+ - uid: 26034
components:
- flags: SessionSpecific
type: MetaData
- pos: -35.5,-51.5
parent: 2
type: Transform
- - uid: 25968
+ - uid: 26035
components:
- flags: SessionSpecific
type: MetaData
- pos: -48.5,36.5
parent: 2
type: Transform
- - uid: 25969
+ - uid: 26036
components:
- flags: SessionSpecific
type: MetaData
- pos: 28.5,47.5
parent: 2
type: Transform
- - uid: 25970
+ - uid: 26037
components:
- flags: SessionSpecific
type: MetaData
@@ -170647,21 +171370,21 @@ entities:
type: Transform
- proto: VendingMachineTheater
entities:
- - uid: 25971
+ - uid: 26038
components:
- flags: SessionSpecific
type: MetaData
- pos: -8.5,-4.5
parent: 2
type: Transform
- - uid: 25972
+ - uid: 26039
components:
- flags: SessionSpecific
type: MetaData
- pos: -20.5,31.5
parent: 2
type: Transform
- - uid: 25973
+ - uid: 26040
components:
- flags: SessionSpecific
type: MetaData
@@ -170670,28 +171393,28 @@ entities:
type: Transform
- proto: VendingMachineVendomat
entities:
- - uid: 25974
+ - uid: 26041
components:
- flags: SessionSpecific
type: MetaData
- pos: 27.5,-12.5
parent: 2
type: Transform
- - uid: 25975
+ - uid: 26042
components:
- flags: SessionSpecific
type: MetaData
- pos: -27.5,-70.5
parent: 2
type: Transform
- - uid: 25976
+ - uid: 26043
components:
- flags: SessionSpecific
type: MetaData
- pos: -43.5,6.5
parent: 2
type: Transform
- - uid: 25977
+ - uid: 26044
components:
- flags: SessionSpecific
type: MetaData
@@ -170700,7 +171423,7 @@ entities:
type: Transform
- proto: VendingMachineViroDrobe
entities:
- - uid: 25978
+ - uid: 26045
components:
- flags: SessionSpecific
type: MetaData
@@ -170709,12 +171432,12 @@ entities:
type: Transform
- proto: VendingMachineWinter
entities:
- - uid: 25979
+ - uid: 26046
components:
- pos: 11.5,-82.5
parent: 2
type: Transform
- - uid: 25980
+ - uid: 26047
components:
- flags: SessionSpecific
type: MetaData
@@ -170723,28 +171446,28 @@ entities:
type: Transform
- proto: VendingMachineYouTool
entities:
- - uid: 25981
+ - uid: 26048
components:
- flags: SessionSpecific
type: MetaData
- pos: 39.5,-53.5
parent: 2
type: Transform
- - uid: 25982
+ - uid: 26049
components:
- flags: SessionSpecific
type: MetaData
- pos: -37.5,-4.5
parent: 2
type: Transform
- - uid: 25983
+ - uid: 26050
components:
- flags: SessionSpecific
type: MetaData
- pos: -23.5,-19.5
parent: 2
type: Transform
- - uid: 25984
+ - uid: 26051
components:
- flags: SessionSpecific
type: MetaData
@@ -170753,103 +171476,103 @@ entities:
type: Transform
- proto: VoiceTrigger
entities:
- - uid: 25985
+ - uid: 26052
components:
- pos: 65.475975,-28.50289
parent: 2
type: Transform
- proto: WallmountTelevision
entities:
- - uid: 25986
+ - uid: 26053
components:
- pos: 17.5,8.5
parent: 2
type: Transform
- proto: WallPlastitanium
entities:
- - uid: 25987
+ - uid: 26054
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-90.5
parent: 2
type: Transform
- - uid: 25988
+ - uid: 26055
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-88.5
parent: 2
type: Transform
- - uid: 25989
+ - uid: 26056
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-86.5
parent: 2
type: Transform
- - uid: 25990
+ - uid: 26057
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-85.5
parent: 2
type: Transform
- - uid: 25991
+ - uid: 26058
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-89.5
parent: 2
type: Transform
- - uid: 25992
+ - uid: 26059
components:
- pos: 62.5,-46.5
parent: 2
type: Transform
- - uid: 25993
+ - uid: 26060
components:
- pos: -55.5,-84.5
parent: 2
type: Transform
- - uid: 25994
+ - uid: 26061
components:
- pos: -53.5,-85.5
parent: 2
type: Transform
- - uid: 25995
+ - uid: 26062
components:
- pos: -56.5,-89.5
parent: 2
type: Transform
- - uid: 25996
+ - uid: 26063
components:
- pos: -57.5,-89.5
parent: 2
type: Transform
- - uid: 25997
+ - uid: 26064
components:
- pos: -53.5,-89.5
parent: 2
type: Transform
- - uid: 25998
+ - uid: 26065
components:
- rot: 3.141592653589793 rad
pos: -57.5,-86.5
parent: 2
type: Transform
- - uid: 25999
+ - uid: 26066
components:
- rot: 3.141592653589793 rad
pos: -57.5,-88.5
parent: 2
type: Transform
- - uid: 26000
+ - uid: 26067
components:
- pos: -57.5,-85.5
parent: 2
type: Transform
- - uid: 26001
+ - uid: 26068
components:
- pos: -56.5,-85.5
parent: 2
type: Transform
- - uid: 26002
+ - uid: 26069
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-90.5
@@ -170857,30 +171580,30 @@ entities:
type: Transform
- proto: WallPlastitaniumDiagonal
entities:
- - uid: 26003
+ - uid: 26070
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-89.5
parent: 2
type: Transform
- - uid: 26004
+ - uid: 26071
components:
- pos: -58.5,-85.5
parent: 2
type: Transform
- - uid: 26005
+ - uid: 26072
components:
- rot: 3.141592653589793 rad
pos: -55.5,-85.5
parent: 2
type: Transform
- - uid: 26006
+ - uid: 26073
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-89.5
parent: 2
type: Transform
- - uid: 26007
+ - uid: 26074
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-84.5
@@ -170888,13883 +171611,13887 @@ entities:
type: Transform
- proto: WallReinforced
entities:
- - uid: 26008
+ - uid: 26075
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,25.5
+ parent: 2
+ type: Transform
+ - uid: 26076
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 2
+ type: Transform
+ - uid: 26077
components:
- rot: 3.141592653589793 rad
pos: -20.5,-91.5
parent: 2
type: Transform
- - uid: 26009
+ - uid: 26078
components:
- rot: 3.141592653589793 rad
pos: -25.5,-91.5
parent: 2
type: Transform
- - uid: 26010
+ - uid: 26079
components:
- pos: 12.5,26.5
parent: 2
type: Transform
- - uid: 26011
+ - uid: 26080
components:
- pos: 11.5,27.5
parent: 2
type: Transform
- - uid: 26012
+ - uid: 26081
components:
- pos: 7.5,26.5
parent: 2
type: Transform
- - uid: 26013
+ - uid: 26082
components:
- rot: 3.141592653589793 rad
pos: 24.5,-31.5
parent: 2
type: Transform
- - uid: 26014
+ - uid: 26083
components:
- rot: 3.141592653589793 rad
pos: 23.5,-31.5
parent: 2
type: Transform
- - uid: 26015
+ - uid: 26084
components:
- rot: 3.141592653589793 rad
pos: 23.5,-33.5
parent: 2
type: Transform
- - uid: 26016
+ - uid: 26085
components:
- pos: 29.5,-33.5
parent: 2
type: Transform
- - uid: 26017
+ - uid: 26086
components:
- pos: 6.5,-6.5
parent: 2
type: Transform
- - uid: 26018
+ - uid: 26087
components:
- pos: -0.5,-7.5
parent: 2
type: Transform
- - uid: 26019
+ - uid: 26088
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-31.5
parent: 2
type: Transform
- - uid: 26020
+ - uid: 26089
components:
- pos: 0.5,-2.5
parent: 2
type: Transform
- - uid: 26021
+ - uid: 26090
components:
- pos: 0.5,-3.5
parent: 2
type: Transform
- - uid: 26022
+ - uid: 26091
components:
- pos: 0.5,-6.5
parent: 2
type: Transform
- - uid: 26023
+ - uid: 26092
components:
- rot: 1.5707963267948966 rad
pos: 0.5,-4.5
parent: 2
type: Transform
- - uid: 26024
+ - uid: 26093
components:
- pos: -2.5,-6.5
parent: 2
type: Transform
- - uid: 26025
+ - uid: 26094
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-30.5
parent: 2
type: Transform
- - uid: 26026
+ - uid: 26095
components:
- pos: -0.5,-2.5
parent: 2
type: Transform
- - uid: 26027
+ - uid: 26096
components:
- pos: 0.5,-7.5
parent: 2
type: Transform
- - uid: 26028
+ - uid: 26097
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-29.5
parent: 2
type: Transform
- - uid: 26029
+ - uid: 26098
components:
- pos: 4.5,-8.5
parent: 2
type: Transform
- - uid: 26030
+ - uid: 26099
components:
- pos: -2.5,-4.5
parent: 2
type: Transform
- - uid: 26031
+ - uid: 26100
components:
- pos: -1.5,-7.5
parent: 2
type: Transform
- - uid: 26032
+ - uid: 26101
components:
- pos: -16.5,-56.5
parent: 2
type: Transform
- - uid: 26033
+ - uid: 26102
components:
- pos: -23.5,-53.5
parent: 2
type: Transform
- - uid: 26034
+ - uid: 26103
components:
- pos: 28.5,-40.5
parent: 2
type: Transform
- - uid: 26035
+ - uid: 26104
components:
- pos: 2.5,-8.5
parent: 2
type: Transform
- - uid: 26036
+ - uid: 26105
components:
- rot: 3.141592653589793 rad
pos: 3.5,-8.5
parent: 2
type: Transform
- - uid: 26037
+ - uid: 26106
components:
- pos: 5.5,-8.5
parent: 2
type: Transform
- - uid: 26038
+ - uid: 26107
components:
- pos: 22.5,-40.5
parent: 2
type: Transform
- - uid: 26039
+ - uid: 26108
components:
- pos: 0.5,-8.5
parent: 2
type: Transform
- - uid: 26040
+ - uid: 26109
components:
- pos: -1.5,-2.5
parent: 2
type: Transform
- - uid: 26041
+ - uid: 26110
components:
- pos: -38.5,-20.5
parent: 2
type: Transform
- - uid: 26042
+ - uid: 26111
components:
- pos: 6.5,-4.5
parent: 2
type: Transform
- - uid: 26043
+ - uid: 26112
components:
- pos: -2.5,-3.5
parent: 2
type: Transform
- - uid: 26044
+ - uid: 26113
components:
- pos: 6.5,-5.5
parent: 2
type: Transform
- - uid: 26045
+ - uid: 26114
components:
- pos: -2.5,-2.5
parent: 2
type: Transform
- - uid: 26046
+ - uid: 26115
components:
- pos: -2.5,-7.5
parent: 2
type: Transform
- - uid: 26047
+ - uid: 26116
components:
- pos: -38.5,-21.5
parent: 2
type: Transform
- - uid: 26048
+ - uid: 26117
components:
- pos: -37.5,-21.5
parent: 2
type: Transform
- - uid: 26049
+ - uid: 26118
components:
- pos: -36.5,-21.5
parent: 2
type: Transform
- - uid: 26050
+ - uid: 26119
components:
- pos: -35.5,-21.5
parent: 2
type: Transform
- - uid: 26051
+ - uid: 26120
components:
- pos: -35.5,-20.5
parent: 2
type: Transform
- - uid: 26052
+ - uid: 26121
components:
- pos: -22.5,-53.5
parent: 2
type: Transform
- - uid: 26053
+ - uid: 26122
components:
- pos: -23.5,-54.5
parent: 2
type: Transform
- - uid: 26054
+ - uid: 26123
components:
- pos: -22.5,-56.5
parent: 2
type: Transform
- - uid: 26055
+ - uid: 26124
components:
- pos: -23.5,-55.5
parent: 2
type: Transform
- - uid: 26056
+ - uid: 26125
components:
- pos: -23.5,-56.5
parent: 2
type: Transform
- - uid: 26057
+ - uid: 26126
components:
- rot: -1.5707963267948966 rad
pos: -51.5,-33.5
parent: 2
type: Transform
- - uid: 26058
+ - uid: 26127
components:
- rot: -1.5707963267948966 rad
pos: -50.5,-33.5
parent: 2
type: Transform
- - uid: 26059
+ - uid: 26128
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-33.5
parent: 2
type: Transform
- - uid: 26060
+ - uid: 26129
components:
- rot: -1.5707963267948966 rad
pos: -49.5,-24.5
parent: 2
type: Transform
- - uid: 26061
+ - uid: 26130
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-25.5
parent: 2
type: Transform
- - uid: 26062
+ - uid: 26131
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-24.5
parent: 2
type: Transform
- - uid: 26063
+ - uid: 26132
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-24.5
parent: 2
type: Transform
- - uid: 26064
+ - uid: 26133
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-33.5
parent: 2
type: Transform
- - uid: 26065
+ - uid: 26134
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-35.5
parent: 2
type: Transform
- - uid: 26066
+ - uid: 26135
components:
- pos: -42.5,-33.5
parent: 2
type: Transform
- - uid: 26067
+ - uid: 26136
components:
- pos: -43.5,-33.5
parent: 2
type: Transform
- - uid: 26068
+ - uid: 26137
components:
- pos: -45.5,-33.5
parent: 2
type: Transform
- - uid: 26069
+ - uid: 26138
components:
- pos: -46.5,-24.5
parent: 2
type: Transform
- - uid: 26070
+ - uid: 26139
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-33.5
parent: 2
type: Transform
- - uid: 26071
+ - uid: 26140
components:
- rot: 3.141592653589793 rad
pos: -41.5,-33.5
parent: 2
type: Transform
- - uid: 26072
+ - uid: 26141
components:
- rot: 3.141592653589793 rad
pos: -58.5,-43.5
parent: 2
type: Transform
- - uid: 26073
+ - uid: 26142
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-38.5
parent: 2
type: Transform
- - uid: 26074
+ - uid: 26143
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-35.5
parent: 2
type: Transform
- - uid: 26075
+ - uid: 26144
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-35.5
parent: 2
type: Transform
- - uid: 26076
+ - uid: 26145
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-38.5
parent: 2
type: Transform
- - uid: 26077
+ - uid: 26146
components:
- pos: -44.5,-33.5
parent: 2
type: Transform
- - uid: 26078
+ - uid: 26147
components:
- rot: 3.141592653589793 rad
pos: -59.5,-44.5
parent: 2
type: Transform
- - uid: 26079
+ - uid: 26148
components:
- pos: -61.5,-38.5
parent: 2
type: Transform
- - uid: 26080
+ - uid: 26149
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-35.5
parent: 2
type: Transform
- - uid: 26081
+ - uid: 26150
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-35.5
parent: 2
type: Transform
- - uid: 26082
+ - uid: 26151
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-35.5
parent: 2
type: Transform
- - uid: 26083
+ - uid: 26152
components:
- rot: 3.141592653589793 rad
pos: -58.5,-44.5
parent: 2
type: Transform
- - uid: 26084
+ - uid: 26153
components:
- pos: -64.5,-44.5
parent: 2
type: Transform
- - uid: 26085
+ - uid: 26154
components:
- pos: -78.5,-44.5
parent: 2
type: Transform
- - uid: 26086
+ - uid: 26155
components:
- pos: -76.5,-39.5
parent: 2
type: Transform
- - uid: 26087
+ - uid: 26156
components:
- rot: 3.141592653589793 rad
pos: -61.5,-26.5
parent: 2
type: Transform
- - uid: 26088
+ - uid: 26157
components:
- pos: -71.5,-36.5
parent: 2
type: Transform
- - uid: 26089
+ - uid: 26158
components:
- pos: -70.5,-36.5
parent: 2
type: Transform
- - uid: 26090
+ - uid: 26159
components:
- pos: -69.5,-36.5
parent: 2
type: Transform
- - uid: 26091
+ - uid: 26160
components:
- pos: -68.5,-36.5
parent: 2
type: Transform
- - uid: 26092
+ - uid: 26161
components:
- pos: -74.5,-36.5
parent: 2
type: Transform
- - uid: 26093
+ - uid: 26162
components:
- pos: -68.5,-35.5
parent: 2
type: Transform
- - uid: 26094
+ - uid: 26163
components:
- pos: -68.5,-34.5
parent: 2
type: Transform
- - uid: 26095
+ - uid: 26164
components:
- pos: -71.5,-34.5
parent: 2
type: Transform
- - uid: 26096
+ - uid: 26165
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-43.5
parent: 2
type: Transform
- - uid: 26097
+ - uid: 26166
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-39.5
parent: 2
type: Transform
- - uid: 26098
+ - uid: 26167
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-38.5
parent: 2
type: Transform
- - uid: 26099
+ - uid: 26168
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-37.5
parent: 2
type: Transform
- - uid: 26100
+ - uid: 26169
components:
- pos: -76.5,-30.5
parent: 2
type: Transform
- - uid: 26101
+ - uid: 26170
components:
- pos: -77.5,-30.5
parent: 2
type: Transform
- - uid: 26102
+ - uid: 26171
components:
- pos: -64.5,-46.5
parent: 2
type: Transform
- - uid: 26103
+ - uid: 26172
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-38.5
parent: 2
type: Transform
- - uid: 26104
+ - uid: 26173
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-43.5
parent: 2
type: Transform
- - uid: 26105
+ - uid: 26174
components:
- rot: -1.5707963267948966 rad
pos: -78.5,-39.5
parent: 2
type: Transform
- - uid: 26106
+ - uid: 26175
components:
- pos: -2.5,16.5
parent: 2
type: Transform
- - uid: 26107
+ - uid: 26176
components:
- pos: 52.5,-88.5
parent: 2
type: Transform
- - uid: 26108
+ - uid: 26177
components:
- pos: 51.5,-88.5
parent: 2
type: Transform
- - uid: 26109
+ - uid: 26178
components:
- pos: 50.5,-88.5
parent: 2
type: Transform
- - uid: 26110
+ - uid: 26179
components:
- pos: 50.5,-90.5
parent: 2
type: Transform
- - uid: 26111
+ - uid: 26180
components:
- pos: 51.5,-90.5
parent: 2
type: Transform
- - uid: 26112
+ - uid: 26181
components:
- pos: 52.5,-90.5
parent: 2
type: Transform
- - uid: 26113
+ - uid: 26182
components:
- pos: 50.5,-83.5
parent: 2
type: Transform
- - uid: 26114
+ - uid: 26183
components:
- pos: 52.5,-81.5
parent: 2
type: Transform
- - uid: 26115
+ - uid: 26184
components:
- pos: 50.5,-81.5
parent: 2
type: Transform
- - uid: 26116
+ - uid: 26185
components:
- pos: 51.5,-83.5
parent: 2
type: Transform
- - uid: 26117
+ - uid: 26186
components:
- pos: 51.5,-81.5
parent: 2
type: Transform
- - uid: 26118
+ - uid: 26187
components:
- pos: 52.5,-83.5
parent: 2
type: Transform
- - uid: 26119
+ - uid: 26188
components:
- pos: 70.5,-26.5
parent: 2
type: Transform
- - uid: 26120
+ - uid: 26189
components:
- pos: 64.5,-29.5
parent: 2
type: Transform
- - uid: 26121
+ - uid: 26190
components:
- pos: 64.5,-28.5
parent: 2
type: Transform
- - uid: 26122
+ - uid: 26191
components:
- pos: 66.5,-26.5
parent: 2
type: Transform
- - uid: 26123
+ - uid: 26192
components:
- pos: 67.5,-26.5
parent: 2
type: Transform
- - uid: 26124
+ - uid: 26193
components:
- rot: -1.5707963267948966 rad
pos: -48.5,41.5
parent: 2
type: Transform
- - uid: 26125
+ - uid: 26194
components:
- rot: -1.5707963267948966 rad
pos: -49.5,41.5
parent: 2
type: Transform
- - uid: 26126
+ - uid: 26195
components:
- rot: -1.5707963267948966 rad
pos: -50.5,41.5
parent: 2
type: Transform
- - uid: 26127
+ - uid: 26196
components:
- rot: -1.5707963267948966 rad
pos: -50.5,45.5
parent: 2
type: Transform
- - uid: 26128
+ - uid: 26197
components:
- rot: -1.5707963267948966 rad
pos: -50.5,46.5
parent: 2
type: Transform
- - uid: 26129
+ - uid: 26198
components:
- rot: -1.5707963267948966 rad
pos: -53.5,41.5
parent: 2
type: Transform
- - uid: 26130
+ - uid: 26199
components:
- rot: -1.5707963267948966 rad
pos: -52.5,41.5
parent: 2
type: Transform
- - uid: 26131
+ - uid: 26200
components:
- rot: -1.5707963267948966 rad
pos: -51.5,41.5
parent: 2
type: Transform
- - uid: 26132
+ - uid: 26201
components:
- rot: -1.5707963267948966 rad
pos: -51.5,44.5
parent: 2
type: Transform
- - uid: 26133
+ - uid: 26202
components:
- rot: -1.5707963267948966 rad
pos: -52.5,44.5
parent: 2
type: Transform
- - uid: 26134
+ - uid: 26203
components:
- rot: -1.5707963267948966 rad
pos: -53.5,44.5
parent: 2
type: Transform
- - uid: 26135
+ - uid: 26204
components:
- rot: -1.5707963267948966 rad
pos: -48.5,45.5
parent: 2
type: Transform
- - uid: 26136
+ - uid: 26205
components:
- rot: -1.5707963267948966 rad
pos: -43.5,40.5
parent: 2
type: Transform
- - uid: 26137
+ - uid: 26206
components:
- rot: -1.5707963267948966 rad
pos: -44.5,40.5
parent: 2
type: Transform
- - uid: 26138
+ - uid: 26207
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-64.5
parent: 2
type: Transform
- - uid: 26139
+ - uid: 26208
components:
- rot: 3.141592653589793 rad
pos: 34.5,-10.5
parent: 2
type: Transform
- - uid: 26140
+ - uid: 26209
components:
- rot: 3.141592653589793 rad
pos: 23.5,-57.5
parent: 2
type: Transform
- - uid: 26141
+ - uid: 26210
components:
- pos: 11.5,-30.5
parent: 2
type: Transform
- - uid: 26142
+ - uid: 26211
components:
- rot: -1.5707963267948966 rad
pos: 37.5,3.5
parent: 2
type: Transform
- - uid: 26143
+ - uid: 26212
components:
- pos: 72.5,-42.5
parent: 2
type: Transform
- - uid: 26144
+ - uid: 26213
components:
- pos: 71.5,-42.5
parent: 2
type: Transform
- - uid: 26145
+ - uid: 26214
components:
- rot: -1.5707963267948966 rad
pos: 36.5,9.5
parent: 2
type: Transform
- - uid: 26146
+ - uid: 26215
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-79.5
parent: 2
type: Transform
- - uid: 26147
+ - uid: 26216
components:
- rot: 3.141592653589793 rad
pos: 26.5,-61.5
parent: 2
type: Transform
- - uid: 26148
+ - uid: 26217
components:
- rot: 3.141592653589793 rad
pos: 30.5,-9.5
parent: 2
type: Transform
- - uid: 26149
+ - uid: 26218
components:
- rot: 3.141592653589793 rad
pos: 33.5,-61.5
parent: 2
type: Transform
- - uid: 26150
+ - uid: 26219
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-38.5
parent: 2
type: Transform
- - uid: 26151
+ - uid: 26220
components:
- rot: -1.5707963267948966 rad
pos: 37.5,6.5
parent: 2
type: Transform
- - uid: 26152
+ - uid: 26221
components:
- pos: 66.5,-42.5
parent: 2
type: Transform
- - uid: 26153
+ - uid: 26222
components:
- rot: 3.141592653589793 rad
pos: 24.5,-61.5
parent: 2
type: Transform
- - uid: 26154
+ - uid: 26223
components:
- pos: 67.5,-42.5
parent: 2
type: Transform
- - uid: 26155
+ - uid: 26224
components:
- rot: -1.5707963267948966 rad
pos: 33.5,12.5
parent: 2
type: Transform
- - uid: 26156
+ - uid: 26225
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-83.5
parent: 2
type: Transform
- - uid: 26157
+ - uid: 26226
components:
- pos: 30.5,-26.5
parent: 2
type: Transform
- - uid: 26158
+ - uid: 26227
components:
- pos: 19.5,-26.5
parent: 2
type: Transform
- - uid: 26159
+ - uid: 26228
components:
- pos: 18.5,-67.5
parent: 2
type: Transform
- - uid: 26160
+ - uid: 26229
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-83.5
parent: 2
type: Transform
- - uid: 26161
+ - uid: 26230
components:
- rot: 3.141592653589793 rad
pos: 26.5,24.5
parent: 2
type: Transform
- - uid: 26162
+ - uid: 26231
components:
- pos: -16.5,-80.5
parent: 2
type: Transform
- - uid: 26163
+ - uid: 26232
components:
- pos: -13.5,-80.5
parent: 2
type: Transform
- - uid: 26164
+ - uid: 26233
components:
- rot: 3.141592653589793 rad
pos: 31.5,-19.5
parent: 2
type: Transform
- - uid: 26165
+ - uid: 26234
components:
- pos: 38.5,17.5
parent: 2
type: Transform
- - uid: 26166
+ - uid: 26235
components:
- pos: 30.5,9.5
parent: 2
type: Transform
- - uid: 26167
+ - uid: 26236
components:
- pos: -14.5,-80.5
parent: 2
type: Transform
- - uid: 26168
+ - uid: 26237
components:
- pos: -16.5,-74.5
parent: 2
type: Transform
- - uid: 26169
+ - uid: 26238
components:
- pos: -13.5,-75.5
parent: 2
type: Transform
- - uid: 26170
+ - uid: 26239
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-80.5
parent: 2
type: Transform
- - uid: 26171
+ - uid: 26240
components:
- pos: -27.5,-84.5
parent: 2
type: Transform
- - uid: 26172
+ - uid: 26241
components:
- pos: -27.5,-85.5
parent: 2
type: Transform
- - uid: 26173
+ - uid: 26242
components:
- rot: -1.5707963267948966 rad
pos: -18.5,-83.5
parent: 2
type: Transform
- - uid: 26174
+ - uid: 26243
components:
- rot: -1.5707963267948966 rad
pos: 43.5,49.5
parent: 2
type: Transform
- - uid: 26175
+ - uid: 26244
components:
- rot: 3.141592653589793 rad
pos: 24.5,24.5
parent: 2
type: Transform
- - uid: 26176
+ - uid: 26245
components:
- rot: 1.5707963267948966 rad
pos: 27.5,19.5
parent: 2
type: Transform
- - uid: 26177
+ - uid: 26246
components:
- rot: 1.5707963267948966 rad
pos: 33.5,32.5
parent: 2
type: Transform
- - uid: 26178
+ - uid: 26247
components:
- rot: 1.5707963267948966 rad
pos: 16.5,15.5
parent: 2
type: Transform
- - uid: 26179
+ - uid: 26248
components:
- rot: 3.141592653589793 rad
pos: 39.5,12.5
parent: 2
type: Transform
- - uid: 26180
+ - uid: 26249
components:
- pos: 42.5,51.5
parent: 2
type: Transform
- - uid: 26181
+ - uid: 26250
components:
- pos: -15.5,-2.5
parent: 2
type: Transform
- - uid: 26182
+ - uid: 26251
components:
- pos: -18.5,-86.5
parent: 2
type: Transform
- - uid: 26183
+ - uid: 26252
components:
- pos: -22.5,-48.5
parent: 2
type: Transform
- - uid: 26184
+ - uid: 26253
components:
- pos: 3.5,15.5
parent: 2
type: Transform
- - uid: 26185
+ - uid: 26254
components:
- pos: 7.5,-71.5
parent: 2
type: Transform
- - uid: 26186
+ - uid: 26255
components:
- pos: -23.5,5.5
parent: 2
type: Transform
- - uid: 26187
+ - uid: 26256
components:
- pos: 44.5,-25.5
parent: 2
type: Transform
- - uid: 26188
+ - uid: 26257
components:
- pos: 49.5,-25.5
parent: 2
type: Transform
- - uid: 26189
+ - uid: 26258
components:
- pos: 49.5,-23.5
parent: 2
type: Transform
- - uid: 26190
+ - uid: 26259
components:
- pos: 39.5,-24.5
parent: 2
type: Transform
- - uid: 26191
+ - uid: 26260
components:
- pos: 27.5,26.5
parent: 2
type: Transform
- - uid: 26192
+ - uid: 26261
components:
- pos: 31.5,26.5
parent: 2
type: Transform
- - uid: 26193
+ - uid: 26262
components:
- pos: 31.5,25.5
parent: 2
type: Transform
- - uid: 26194
+ - uid: 26263
components:
- rot: 3.141592653589793 rad
pos: 30.5,33.5
parent: 2
type: Transform
- - uid: 26195
+ - uid: 26264
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-18.5
parent: 2
type: Transform
- - uid: 26196
+ - uid: 26265
components:
- pos: 19.5,15.5
parent: 2
type: Transform
- - uid: 26197
+ - uid: 26266
components:
- rot: -1.5707963267948966 rad
pos: 20.5,-31.5
parent: 2
type: Transform
- - uid: 26198
+ - uid: 26267
components:
- pos: 3.5,18.5
parent: 2
type: Transform
- - uid: 26199
+ - uid: 26268
components:
- pos: 4.5,18.5
parent: 2
type: Transform
- - uid: 26200
+ - uid: 26269
components:
- pos: -15.5,-0.5
parent: 2
type: Transform
- - uid: 26201
+ - uid: 26270
components:
- pos: 13.5,15.5
parent: 2
type: Transform
- - uid: 26202
+ - uid: 26271
components:
- pos: -23.5,-1.5
parent: 2
type: Transform
- - uid: 26203
+ - uid: 26272
components:
- pos: -23.5,-3.5
parent: 2
type: Transform
- - uid: 26204
+ - uid: 26273
components:
- pos: -20.5,-3.5
parent: 2
type: Transform
- - uid: 26205
+ - uid: 26274
components:
- pos: -20.5,-2.5
parent: 2
type: Transform
- - uid: 26206
+ - uid: 26275
components:
- pos: -18.5,-1.5
parent: 2
type: Transform
- - uid: 26207
+ - uid: 26276
components:
- rot: 3.141592653589793 rad
pos: 29.5,-20.5
parent: 2
type: Transform
- - uid: 26208
+ - uid: 26277
components:
- rot: -1.5707963267948966 rad
pos: 44.5,49.5
parent: 2
type: Transform
- - uid: 26209
+ - uid: 26278
components:
- rot: -1.5707963267948966 rad
pos: 43.5,42.5
parent: 2
type: Transform
- - uid: 26210
+ - uid: 26279
components:
- rot: -1.5707963267948966 rad
pos: 38.5,42.5
parent: 2
type: Transform
- - uid: 26211
+ - uid: 26280
components:
- rot: -1.5707963267948966 rad
pos: 34.5,42.5
parent: 2
type: Transform
- - uid: 26212
+ - uid: 26281
components:
- rot: -1.5707963267948966 rad
pos: 33.5,43.5
parent: 2
type: Transform
- - uid: 26213
+ - uid: 26282
components:
- pos: 35.5,50.5
parent: 2
type: Transform
- - uid: 26214
+ - uid: 26283
components:
- pos: 35.5,52.5
parent: 2
type: Transform
- - uid: 26215
+ - uid: 26284
components:
- pos: 36.5,52.5
parent: 2
type: Transform
- - uid: 26216
+ - uid: 26285
components:
- pos: 34.5,48.5
parent: 2
type: Transform
- - uid: 26217
+ - uid: 26286
components:
- pos: -15.5,-1.5
parent: 2
type: Transform
- - uid: 26218
+ - uid: 26287
components:
- rot: -1.5707963267948966 rad
pos: 36.5,11.5
parent: 2
type: Transform
- - uid: 26219
+ - uid: 26288
components:
- rot: 3.141592653589793 rad
pos: 33.5,-19.5
parent: 2
type: Transform
- - uid: 26220
+ - uid: 26289
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-63.5
parent: 2
type: Transform
- - uid: 26221
+ - uid: 26290
components:
- rot: -1.5707963267948966 rad
pos: 39.5,3.5
parent: 2
type: Transform
- - uid: 26222
+ - uid: 26291
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-76.5
parent: 2
type: Transform
- - uid: 26223
+ - uid: 26292
components:
- rot: 3.141592653589793 rad
pos: -15.5,5.5
parent: 2
type: Transform
- - uid: 26224
+ - uid: 26293
components:
- rot: 3.141592653589793 rad
pos: 17.5,-21.5
parent: 2
type: Transform
- - uid: 26225
+ - uid: 26294
components:
- rot: 3.141592653589793 rad
pos: 17.5,-22.5
parent: 2
type: Transform
- - uid: 26226
+ - uid: 26295
components:
- rot: 3.141592653589793 rad
pos: 30.5,-19.5
parent: 2
type: Transform
- - uid: 26227
+ - uid: 26296
components:
- pos: 28.5,-13.5
parent: 2
type: Transform
- - uid: 26228
+ - uid: 26297
components:
- rot: 3.141592653589793 rad
pos: 20.5,-20.5
parent: 2
type: Transform
- - uid: 26229
+ - uid: 26298
components:
- rot: 3.141592653589793 rad
pos: 17.5,-23.5
parent: 2
type: Transform
- - uid: 26230
+ - uid: 26299
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-84.5
parent: 2
type: Transform
- - uid: 26231
+ - uid: 26300
components:
- rot: 3.141592653589793 rad
pos: 28.5,-61.5
parent: 2
type: Transform
- - uid: 26232
+ - uid: 26301
components:
- pos: -23.5,1.5
parent: 2
type: Transform
- - uid: 26233
+ - uid: 26302
components:
- pos: 8.5,-71.5
parent: 2
type: Transform
- - uid: 26234
+ - uid: 26303
components:
- pos: 5.5,-80.5
parent: 2
type: Transform
- - uid: 26235
+ - uid: 26304
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-77.5
parent: 2
type: Transform
- - uid: 26236
+ - uid: 26305
components:
- pos: -18.5,-2.5
parent: 2
type: Transform
- - uid: 26237
+ - uid: 26306
components:
- rot: -1.5707963267948966 rad
pos: 33.5,10.5
parent: 2
type: Transform
- - uid: 26238
+ - uid: 26307
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-81.5
parent: 2
type: Transform
- - uid: 26239
+ - uid: 26308
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-81.5
parent: 2
type: Transform
- - uid: 26240
+ - uid: 26309
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-81.5
parent: 2
type: Transform
- - uid: 26241
+ - uid: 26310
components:
- pos: -13.5,-78.5
parent: 2
type: Transform
- - uid: 26242
+ - uid: 26311
components:
- pos: -21.5,-57.5
parent: 2
type: Transform
- - uid: 26243
+ - uid: 26312
components:
- pos: 29.5,33.5
parent: 2
type: Transform
- - uid: 26244
+ - uid: 26313
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-17.5
parent: 2
type: Transform
- - uid: 26245
+ - uid: 26314
components:
- rot: 1.5707963267948966 rad
pos: 37.5,-19.5
parent: 2
type: Transform
- - uid: 26246
+ - uid: 26315
components:
- rot: 3.141592653589793 rad
pos: 3.5,-18.5
parent: 2
type: Transform
- - uid: 26247
+ - uid: 26316
components:
- pos: 33.5,-28.5
parent: 2
type: Transform
- - uid: 26248
+ - uid: 26317
components:
- pos: 20.5,-33.5
parent: 2
type: Transform
- - uid: 26249
+ - uid: 26318
components:
- pos: 33.5,-29.5
parent: 2
type: Transform
- - uid: 26250
+ - uid: 26319
components:
- pos: 40.5,-30.5
parent: 2
type: Transform
- - uid: 26251
+ - uid: 26320
components:
- pos: 3.5,22.5
parent: 2
type: Transform
- - uid: 26252
+ - uid: 26321
components:
- pos: 40.5,-31.5
parent: 2
type: Transform
- - uid: 26253
+ - uid: 26322
components:
- pos: 40.5,-29.5
parent: 2
type: Transform
- - uid: 26254
+ - uid: 26323
components:
- pos: 32.5,-26.5
parent: 2
type: Transform
- - uid: 26255
+ - uid: 26324
components:
- rot: 3.141592653589793 rad
pos: 42.5,17.5
parent: 2
type: Transform
- - uid: 26256
+ - uid: 26325
components:
- pos: 43.5,16.5
parent: 2
type: Transform
- - uid: 26257
+ - uid: 26326
components:
- pos: 43.5,9.5
parent: 2
type: Transform
- - uid: 26258
+ - uid: 26327
components:
- rot: 3.141592653589793 rad
pos: 43.5,3.5
parent: 2
type: Transform
- - uid: 26259
+ - uid: 26328
components:
- pos: 28.5,-10.5
parent: 2
type: Transform
- - uid: 26260
+ - uid: 26329
components:
- rot: 3.141592653589793 rad
pos: 13.5,-23.5
parent: 2
type: Transform
- - uid: 26261
+ - uid: 26330
components:
- rot: 3.141592653589793 rad
pos: 13.5,-20.5
parent: 2
type: Transform
- - uid: 26262
+ - uid: 26331
components:
- rot: 3.141592653589793 rad
pos: 13.5,-19.5
parent: 2
type: Transform
- - uid: 26263
+ - uid: 26332
components:
- rot: 3.141592653589793 rad
pos: 13.5,-17.5
parent: 2
type: Transform
- - uid: 26264
+ - uid: 26333
components:
- rot: 3.141592653589793 rad
pos: 13.5,-16.5
parent: 2
type: Transform
- - uid: 26265
+ - uid: 26334
components:
- rot: 3.141592653589793 rad
pos: 13.5,-15.5
parent: 2
type: Transform
- - uid: 26266
+ - uid: 26335
components:
- pos: 25.5,-26.5
parent: 2
type: Transform
- - uid: 26267
+ - uid: 26336
components:
- pos: 21.5,-26.5
parent: 2
type: Transform
- - uid: 26268
+ - uid: 26337
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-33.5
parent: 2
type: Transform
- - uid: 26269
+ - uid: 26338
components:
- rot: -1.5707963267948966 rad
pos: 38.5,6.5
parent: 2
type: Transform
- - uid: 26270
+ - uid: 26339
components:
- rot: -1.5707963267948966 rad
pos: 39.5,6.5
parent: 2
type: Transform
- - uid: 26271
+ - uid: 26340
components:
- rot: -1.5707963267948966 rad
pos: 38.5,3.5
parent: 2
type: Transform
- - uid: 26272
+ - uid: 26341
components:
- pos: 29.5,-9.5
parent: 2
type: Transform
- - uid: 26273
+ - uid: 26342
components:
- rot: 3.141592653589793 rad
pos: -15.5,-3.5
parent: 2
type: Transform
- - uid: 26274
+ - uid: 26343
components:
- rot: 3.141592653589793 rad
pos: -16.5,5.5
parent: 2
type: Transform
- - uid: 26275
+ - uid: 26344
components:
- rot: -1.5707963267948966 rad
pos: 36.5,10.5
parent: 2
type: Transform
- - uid: 26276
+ - uid: 26345
components:
- pos: 38.5,-24.5
parent: 2
type: Transform
- - uid: 26277
+ - uid: 26346
components:
- pos: -15.5,-2.5
parent: 2
type: Transform
- - uid: 26278
+ - uid: 26347
components:
- pos: 41.5,52.5
parent: 2
type: Transform
- - uid: 26279
+ - uid: 26348
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-24.5
parent: 2
type: Transform
- - uid: 26280
+ - uid: 26349
components:
- rot: 3.141592653589793 rad
pos: 27.5,24.5
parent: 2
type: Transform
- - uid: 26281
+ - uid: 26350
components:
- rot: -1.5707963267948966 rad
pos: 9.5,23.5
parent: 2
type: Transform
- - uid: 26282
+ - uid: 26351
components:
- pos: -0.5,15.5
parent: 2
type: Transform
- - uid: 26283
+ - uid: 26352
components:
- rot: -1.5707963267948966 rad
pos: 5.5,23.5
parent: 2
type: Transform
- - uid: 26284
+ - uid: 26353
components:
- rot: -1.5707963267948966 rad
pos: 4.5,23.5
parent: 2
type: Transform
- - uid: 26285
+ - uid: 26354
components:
- rot: -1.5707963267948966 rad
pos: 3.5,23.5
parent: 2
type: Transform
- - uid: 26286
+ - uid: 26355
components:
- pos: 42.5,50.5
parent: 2
type: Transform
- - uid: 26287
+ - uid: 26356
components:
- pos: 27.5,-15.5
parent: 2
type: Transform
- - uid: 26288
+ - uid: 26357
components:
- pos: 2.5,22.5
parent: 2
type: Transform
- - uid: 26289
+ - uid: 26358
components:
- - pos: 1.5,22.5
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,15.5
parent: 2
type: Transform
- - uid: 26290
+ - uid: 26359
components:
- pos: -2.5,-30.5
parent: 2
type: Transform
- - uid: 26291
+ - uid: 26360
components:
- pos: 1.5,-39.5
parent: 2
type: Transform
- - uid: 26292
+ - uid: 26361
components:
- pos: 5.5,-40.5
parent: 2
type: Transform
- - uid: 26293
+ - uid: 26362
components:
- rot: 3.141592653589793 rad
pos: 3.5,12.5
parent: 2
type: Transform
- - uid: 26294
+ - uid: 26363
components:
- rot: -1.5707963267948966 rad
pos: 63.5,18.5
parent: 2
type: Transform
- - uid: 26295
+ - uid: 26364
components:
- rot: -1.5707963267948966 rad
pos: 30.5,11.5
parent: 2
type: Transform
- - uid: 26296
+ - uid: 26365
components:
- pos: 7.5,-24.5
parent: 2
type: Transform
- - uid: 26297
+ - uid: 26366
components:
- pos: 9.5,-24.5
parent: 2
type: Transform
- - uid: 26298
+ - uid: 26367
components:
- rot: 3.141592653589793 rad
pos: 3.5,-24.5
parent: 2
type: Transform
- - uid: 26299
+ - uid: 26368
components:
- pos: 1.5,-29.5
parent: 2
type: Transform
- - uid: 26300
+ - uid: 26369
components:
- pos: 27.5,-14.5
parent: 2
type: Transform
- - uid: 26301
+ - uid: 26370
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-57.5
parent: 2
type: Transform
- - uid: 26302
+ - uid: 26371
components:
- rot: 3.141592653589793 rad
pos: 21.5,-33.5
parent: 2
type: Transform
- - uid: 26303
+ - uid: 26372
components:
- pos: 13.5,-24.5
parent: 2
type: Transform
- - uid: 26304
+ - uid: 26373
components:
- pos: 37.5,-24.5
parent: 2
type: Transform
- - uid: 26305
+ - uid: 26374
components:
- rot: -1.5707963267948966 rad
pos: 36.5,12.5
parent: 2
type: Transform
- - uid: 26306
+ - uid: 26375
components:
- pos: 3.5,19.5
parent: 2
type: Transform
- - uid: 26307
+ - uid: 26376
components:
- pos: 3.5,21.5
parent: 2
type: Transform
- - uid: 26308
+ - uid: 26377
components:
- pos: 13.5,19.5
parent: 2
type: Transform
- - uid: 26309
+ - uid: 26378
components:
- pos: 13.5,20.5
parent: 2
type: Transform
- - uid: 26310
+ - uid: 26379
components:
- pos: 13.5,21.5
parent: 2
type: Transform
- - uid: 26311
+ - uid: 26380
components:
- pos: 20.5,-38.5
parent: 2
type: Transform
- - uid: 26312
+ - uid: 26381
components:
- pos: 6.5,-24.5
parent: 2
type: Transform
- - uid: 26313
+ - uid: 26382
components:
- pos: -13.5,-77.5
parent: 2
type: Transform
- - uid: 26314
+ - uid: 26383
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-83.5
parent: 2
type: Transform
- - uid: 26315
+ - uid: 26384
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-82.5
parent: 2
type: Transform
- - uid: 26316
+ - uid: 26385
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-81.5
parent: 2
type: Transform
- - uid: 26317
+ - uid: 26386
components:
- pos: 1.5,-32.5
parent: 2
type: Transform
- - uid: 26318
+ - uid: 26387
components:
- rot: 1.5707963267948966 rad
pos: 22.5,25.5
parent: 2
type: Transform
- - uid: 26319
+ - uid: 26388
components:
- rot: -1.5707963267948966 rad
pos: 33.5,11.5
parent: 2
type: Transform
- - uid: 26320
+ - uid: 26389
components:
- rot: -1.5707963267948966 rad
pos: 30.5,13.5
parent: 2
type: Transform
- - uid: 26321
+ - uid: 26390
components:
- rot: 3.141592653589793 rad
pos: 23.5,-55.5
parent: 2
type: Transform
- - uid: 26322
+ - uid: 26391
components:
- rot: 3.141592653589793 rad
pos: 23.5,-56.5
parent: 2
type: Transform
- - uid: 26323
+ - uid: 26392
components:
- pos: 18.5,-64.5
parent: 2
type: Transform
- - uid: 26324
+ - uid: 26393
components:
- pos: 15.5,-62.5
parent: 2
type: Transform
- - uid: 26325
+ - uid: 26394
components:
- pos: 15.5,-61.5
parent: 2
type: Transform
- - uid: 26326
+ - uid: 26395
components:
- pos: 17.5,-56.5
parent: 2
type: Transform
- - uid: 26327
+ - uid: 26396
components:
- pos: 15.5,-60.5
parent: 2
type: Transform
- - uid: 26328
+ - uid: 26397
components:
- pos: 15.5,-59.5
parent: 2
type: Transform
- - uid: 26329
+ - uid: 26398
components:
- pos: 16.5,-59.5
parent: 2
type: Transform
- - uid: 26330
+ - uid: 26399
components:
- pos: 16.5,-58.5
parent: 2
type: Transform
- - uid: 26331
+ - uid: 26400
components:
- pos: 16.5,-57.5
parent: 2
type: Transform
- - uid: 26332
+ - uid: 26401
components:
- pos: 16.5,-56.5
parent: 2
type: Transform
- - uid: 26333
+ - uid: 26402
components:
- pos: 17.5,-67.5
parent: 2
type: Transform
- - uid: 26334
+ - uid: 26403
components:
- rot: 3.141592653589793 rad
pos: 22.5,24.5
parent: 2
type: Transform
- - uid: 26335
+ - uid: 26404
components:
- rot: 3.141592653589793 rad
pos: 27.5,-61.5
parent: 2
type: Transform
- - uid: 26336
+ - uid: 26405
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-64.5
parent: 2
type: Transform
- - uid: 26337
+ - uid: 26406
components:
- rot: 3.141592653589793 rad
pos: 34.5,-14.5
parent: 2
type: Transform
- - uid: 26338
+ - uid: 26407
components:
- pos: 40.5,-23.5
parent: 2
type: Transform
- - uid: 26339
+ - uid: 26408
components:
- pos: 40.5,-24.5
parent: 2
type: Transform
- - uid: 26340
+ - uid: 26409
components:
- pos: 49.5,-24.5
parent: 2
type: Transform
- - uid: 26341
+ - uid: 26410
components:
- pos: 43.5,-26.5
parent: 2
type: Transform
- - uid: 26342
+ - uid: 26411
components:
- pos: 17.5,-63.5
parent: 2
type: Transform
- - uid: 26343
+ - uid: 26412
components:
- rot: 3.141592653589793 rad
pos: 23.5,24.5
parent: 2
type: Transform
- - uid: 26344
+ - uid: 26413
components:
- pos: -2.5,18.5
parent: 2
type: Transform
- - uid: 26345
+ - uid: 26414
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-58.5
parent: 2
type: Transform
- - uid: 26346
+ - uid: 26415
components:
- rot: -1.5707963267948966 rad
pos: 30.5,10.5
parent: 2
type: Transform
- - uid: 26347
+ - uid: 26416
components:
- pos: 39.5,17.5
parent: 2
type: Transform
- - uid: 26348
+ - uid: 26417
components:
- pos: 37.5,17.5
parent: 2
type: Transform
- - uid: 26349
+ - uid: 26418
components:
- rot: -1.5707963267948966 rad
pos: 33.5,18.5
parent: 2
type: Transform
- - uid: 26350
+ - uid: 26419
components:
- rot: -1.5707963267948966 rad
pos: 63.5,15.5
parent: 2
type: Transform
- - uid: 26351
+ - uid: 26420
components:
- rot: 1.5707963267948966 rad
pos: 27.5,16.5
parent: 2
type: Transform
- - uid: 26352
+ - uid: 26421
components:
- rot: -1.5707963267948966 rad
pos: 36.5,3.5
parent: 2
type: Transform
- - uid: 26353
+ - uid: 26422
components:
- rot: 1.5707963267948966 rad
pos: 38.5,9.5
parent: 2
type: Transform
- - uid: 26354
+ - uid: 26423
components:
- rot: -1.5707963267948966 rad
pos: 36.5,6.5
parent: 2
type: Transform
- - uid: 26355
+ - uid: 26424
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-33.5
parent: 2
type: Transform
- - uid: 26356
+ - uid: 26425
components:
- pos: 25.5,-28.5
parent: 2
type: Transform
- - uid: 26357
+ - uid: 26426
components:
- pos: 20.5,-26.5
parent: 2
type: Transform
- - uid: 26358
+ - uid: 26427
components:
- pos: 17.5,-26.5
parent: 2
type: Transform
- - uid: 26359
+ - uid: 26428
components:
- pos: 18.5,-26.5
parent: 2
type: Transform
- - uid: 26360
+ - uid: 26429
components:
- rot: 3.141592653589793 rad
pos: 34.5,-15.5
parent: 2
type: Transform
- - uid: 26361
+ - uid: 26430
components:
- rot: 3.141592653589793 rad
pos: 37.5,-20.5
parent: 2
type: Transform
- - uid: 26362
+ - uid: 26431
components:
- rot: 3.141592653589793 rad
pos: 37.5,-20.5
parent: 2
type: Transform
- - uid: 26363
+ - uid: 26432
components:
- rot: 3.141592653589793 rad
pos: 37.5,-23.5
parent: 2
type: Transform
- - uid: 26364
+ - uid: 26433
components:
- rot: 3.141592653589793 rad
pos: 40.5,3.5
parent: 2
type: Transform
- - uid: 26365
+ - uid: 26434
components:
- rot: 3.141592653589793 rad
pos: 43.5,4.5
parent: 2
type: Transform
- - uid: 26366
+ - uid: 26435
components:
- rot: 3.141592653589793 rad
pos: 43.5,12.5
parent: 2
type: Transform
- - uid: 26367
+ - uid: 26436
components:
- pos: 44.5,16.5
parent: 2
type: Transform
- - uid: 26368
+ - uid: 26437
components:
- pos: 43.5,13.5
parent: 2
type: Transform
- - uid: 26369
+ - uid: 26438
components:
- pos: 45.5,16.5
parent: 2
type: Transform
- - uid: 26370
+ - uid: 26439
components:
- pos: 46.5,16.5
parent: 2
type: Transform
- - uid: 26371
+ - uid: 26440
components:
- pos: 46.5,13.5
parent: 2
type: Transform
- - uid: 26372
+ - uid: 26441
components:
- pos: 45.5,13.5
parent: 2
type: Transform
- - uid: 26373
+ - uid: 26442
components:
- rot: 3.141592653589793 rad
pos: 21.5,-39.5
parent: 2
type: Transform
- - uid: 26374
+ - uid: 26443
components:
- pos: 20.5,-37.5
parent: 2
type: Transform
- - uid: 26375
+ - uid: 26444
components:
- pos: 30.5,-34.5
parent: 2
type: Transform
- - uid: 26376
+ - uid: 26445
components:
- pos: 30.5,-35.5
parent: 2
type: Transform
- - uid: 26377
+ - uid: 26446
components:
- pos: 30.5,-36.5
parent: 2
type: Transform
- - uid: 26378
+ - uid: 26447
components:
- pos: 30.5,-37.5
parent: 2
type: Transform
- - uid: 26379
+ - uid: 26448
components:
- pos: 30.5,-33.5
parent: 2
type: Transform
- - uid: 26380
+ - uid: 26449
components:
- pos: 24.5,-33.5
parent: 2
type: Transform
- - uid: 26381
+ - uid: 26450
components:
- pos: 21.5,-31.5
parent: 2
type: Transform
- - uid: 26382
+ - uid: 26451
components:
- pos: 28.5,9.5
parent: 2
type: Transform
- - uid: 26383
+ - uid: 26452
components:
- pos: 31.5,9.5
parent: 2
type: Transform
- - uid: 26384
+ - uid: 26453
components:
- pos: 35.5,9.5
parent: 2
type: Transform
- - uid: 26385
+ - uid: 26454
components:
- pos: 35.5,8.5
parent: 2
type: Transform
- - uid: 26386
+ - uid: 26455
components:
- pos: 35.5,6.5
parent: 2
type: Transform
- - uid: 26387
+ - uid: 26456
components:
- pos: 23.5,19.5
parent: 2
type: Transform
- - uid: 26388
+ - uid: 26457
components:
- pos: 17.5,-38.5
parent: 2
type: Transform
- - uid: 26389
+ - uid: 26458
components:
- pos: 33.5,-38.5
parent: 2
type: Transform
- - uid: 26390
+ - uid: 26459
components:
- rot: 3.141592653589793 rad
pos: 17.5,-37.5
parent: 2
type: Transform
- - uid: 26391
+ - uid: 26460
components:
- pos: 31.5,22.5
parent: 2
type: Transform
- - uid: 26392
+ - uid: 26461
components:
- pos: 31.5,23.5
parent: 2
type: Transform
- - uid: 26393
+ - uid: 26462
components:
- pos: 31.5,24.5
parent: 2
type: Transform
- - uid: 26394
+ - uid: 26463
components:
- pos: 33.5,26.5
parent: 2
type: Transform
- - uid: 26395
+ - uid: 26464
components:
- pos: 33.5,28.5
parent: 2
type: Transform
- - uid: 26396
+ - uid: 26465
components:
- rot: 3.141592653589793 rad
pos: 25.5,27.5
parent: 2
type: Transform
- - uid: 26397
+ - uid: 26466
components:
- pos: 33.5,30.5
parent: 2
type: Transform
- - uid: 26398
+ - uid: 26467
components:
- pos: -2.5,-29.5
parent: 2
type: Transform
- - uid: 26399
+ - uid: 26468
components:
- pos: -2.5,-44.5
parent: 2
type: Transform
- - uid: 26400
+ - uid: 26469
components:
- pos: 19.5,24.5
parent: 2
type: Transform
- - uid: 26401
+ - uid: 26470
components:
- pos: 19.5,18.5
parent: 2
type: Transform
- - uid: 26402
+ - uid: 26471
components:
- pos: 12.5,-35.5
parent: 2
type: Transform
- - uid: 26403
+ - uid: 26472
components:
- pos: 12.5,-30.5
parent: 2
type: Transform
- - uid: 26404
+ - uid: 26473
components:
- pos: 0.5,-28.5
parent: 2
type: Transform
- - uid: 26405
+ - uid: 26474
components:
- pos: -2.5,-28.5
parent: 2
type: Transform
- - uid: 26406
+ - uid: 26475
components:
- pos: -0.5,-28.5
parent: 2
type: Transform
- - uid: 26407
+ - uid: 26476
components:
- pos: -1.5,-28.5
parent: 2
type: Transform
- - uid: 26408
+ - uid: 26477
components:
- pos: 1.5,-28.5
parent: 2
type: Transform
- - uid: 26409
+ - uid: 26478
components:
- pos: 1.5,-34.5
parent: 2
type: Transform
- - uid: 26410
+ - uid: 26479
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-36.5
parent: 2
type: Transform
- - uid: 26411
+ - uid: 26480
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-38.5
parent: 2
type: Transform
- - uid: 26412
+ - uid: 26481
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-18.5
parent: 2
type: Transform
- - uid: 26413
+ - uid: 26482
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-18.5
parent: 2
type: Transform
- - uid: 26414
+ - uid: 26483
components:
- pos: -2.5,19.5
parent: 2
type: Transform
- - uid: 26415
+ - uid: 26484
components:
- pos: -2.5,17.5
parent: 2
type: Transform
- - uid: 26416
+ - uid: 26485
components:
- rot: 3.141592653589793 rad
pos: 30.5,-20.5
parent: 2
type: Transform
- - uid: 26417
+ - uid: 26486
components:
- pos: -1.5,-40.5
parent: 2
type: Transform
- - uid: 26418
+ - uid: 26487
components:
- pos: 0.5,-40.5
parent: 2
type: Transform
- - uid: 26419
+ - uid: 26488
components:
- pos: -0.5,-40.5
parent: 2
type: Transform
- - uid: 26420
+ - uid: 26489
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-18.5
parent: 2
type: Transform
- - uid: 26421
+ - uid: 26490
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-16.5
parent: 2
type: Transform
- - uid: 26422
+ - uid: 26491
components:
- rot: 1.5707963267948966 rad
pos: 38.5,-19.5
parent: 2
type: Transform
- - uid: 26423
+ - uid: 26492
components:
- rot: 1.5707963267948966 rad
pos: 33.5,31.5
parent: 2
type: Transform
- - uid: 26424
+ - uid: 26493
components:
- rot: 1.5707963267948966 rad
pos: 33.5,33.5
parent: 2
type: Transform
- - uid: 26425
+ - uid: 26494
components:
- rot: 1.5707963267948966 rad
pos: 25.5,31.5
parent: 2
type: Transform
- - uid: 26426
+ - uid: 26495
components:
- rot: 1.5707963267948966 rad
pos: 25.5,32.5
parent: 2
type: Transform
- - uid: 26427
+ - uid: 26496
components:
- rot: 1.5707963267948966 rad
pos: 25.5,33.5
parent: 2
type: Transform
- - uid: 26428
+ - uid: 26497
components:
- rot: 1.5707963267948966 rad
pos: 26.5,33.5
parent: 2
type: Transform
- - uid: 26429
+ - uid: 26498
components:
- rot: 3.141592653589793 rad
pos: 28.5,33.5
parent: 2
type: Transform
- - uid: 26430
+ - uid: 26499
components:
- rot: 1.5707963267948966 rad
pos: 32.5,33.5
parent: 2
type: Transform
- - uid: 26431
+ - uid: 26500
components:
- pos: 13.5,-39.5
parent: 2
type: Transform
- - uid: 26432
+ - uid: 26501
components:
- rot: -1.5707963267948966 rad
pos: 33.5,13.5
parent: 2
type: Transform
- - uid: 26433
+ - uid: 26502
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-53.5
parent: 2
type: Transform
- - uid: 26434
+ - uid: 26503
components:
- rot: 1.5707963267948966 rad
pos: -19.5,-53.5
parent: 2
type: Transform
- - uid: 26435
+ - uid: 26504
components:
- rot: 1.5707963267948966 rad
pos: -20.5,-53.5
parent: 2
type: Transform
- - uid: 26436
+ - uid: 26505
components:
- rot: 1.5707963267948966 rad
pos: -21.5,-53.5
parent: 2
type: Transform
- - uid: 26437
+ - uid: 26506
components:
- pos: -21.5,-58.5
parent: 2
type: Transform
- - uid: 26438
+ - uid: 26507
components:
- pos: 33.5,-26.5
parent: 2
type: Transform
- - uid: 26439
+ - uid: 26508
components:
- pos: 27.5,-28.5
parent: 2
type: Transform
- - uid: 26440
+ - uid: 26509
components:
- pos: -22.5,-49.5
parent: 2
type: Transform
- - uid: 26441
+ - uid: 26510
components:
- rot: 1.5707963267948966 rad
pos: 17.5,-33.5
parent: 2
type: Transform
- - uid: 26442
+ - uid: 26511
components:
- rot: 3.141592653589793 rad
pos: 33.5,-23.5
parent: 2
type: Transform
- - uid: 26443
+ - uid: 26512
components:
- pos: 27.5,-29.5
parent: 2
type: Transform
- - uid: 26444
+ - uid: 26513
components:
- rot: 3.141592653589793 rad
pos: 30.5,-40.5
parent: 2
type: Transform
- - uid: 26445
+ - uid: 26514
components:
- pos: 9.5,12.5
parent: 2
type: Transform
- - uid: 26446
+ - uid: 26515
components:
- pos: 8.5,11.5
parent: 2
type: Transform
- - uid: 26447
+ - uid: 26516
components:
- pos: 25.5,-33.5
parent: 2
type: Transform
- - uid: 26448
+ - uid: 26517
components:
- pos: -17.5,-80.5
parent: 2
type: Transform
- - uid: 26449
+ - uid: 26518
components:
- pos: -15.5,-80.5
parent: 2
type: Transform
- - uid: 26450
+ - uid: 26519
components:
- pos: -14.5,-74.5
parent: 2
type: Transform
- - uid: 26451
+ - uid: 26520
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-78.5
parent: 2
type: Transform
- - uid: 26452
+ - uid: 26521
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-81.5
parent: 2
type: Transform
- - uid: 26453
+ - uid: 26522
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-81.5
parent: 2
type: Transform
- - uid: 26454
+ - uid: 26523
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-82.5
parent: 2
type: Transform
- - uid: 26455
+ - uid: 26524
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-81.5
parent: 2
type: Transform
- - uid: 26456
+ - uid: 26525
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-81.5
parent: 2
type: Transform
- - uid: 26457
+ - uid: 26526
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-81.5
parent: 2
type: Transform
- - uid: 26458
+ - uid: 26527
components:
- pos: -27.5,-86.5
parent: 2
type: Transform
- - uid: 26459
+ - uid: 26528
components:
- rot: -1.5707963267948966 rad
pos: -19.5,-83.5
parent: 2
type: Transform
- - uid: 26460
+ - uid: 26529
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-66.5
parent: 2
type: Transform
- - uid: 26461
+ - uid: 26530
components:
- pos: 57.5,-50.5
parent: 2
type: Transform
- - uid: 26462
+ - uid: 26531
components:
- pos: -51.5,-52.5
parent: 2
type: Transform
- - uid: 26463
+ - uid: 26532
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-58.5
parent: 2
type: Transform
- - uid: 26464
+ - uid: 26533
components:
- rot: 3.141592653589793 rad
pos: 21.5,-20.5
parent: 2
type: Transform
- - uid: 26465
+ - uid: 26534
components:
- pos: 29.5,-26.5
parent: 2
type: Transform
- - uid: 26466
+ - uid: 26535
components:
- rot: 3.141592653589793 rad
pos: 33.5,-21.5
parent: 2
type: Transform
- - uid: 26467
+ - uid: 26536
components:
- rot: 3.141592653589793 rad
pos: 33.5,-27.5
parent: 2
type: Transform
- - uid: 26468
+ - uid: 26537
components:
- rot: 3.141592653589793 rad
pos: 13.5,-18.5
parent: 2
type: Transform
- - uid: 26469
+ - uid: 26538
components:
- rot: 3.141592653589793 rad
pos: 41.5,17.5
parent: 2
type: Transform
- - uid: 26470
+ - uid: 26539
components:
- rot: 3.141592653589793 rad
pos: 43.5,17.5
parent: 2
type: Transform
- - uid: 26471
+ - uid: 26540
components:
- rot: -1.5707963267948966 rad
pos: 27.5,12.5
parent: 2
type: Transform
- - uid: 26472
+ - uid: 26541
components:
- rot: -1.5707963267948966 rad
pos: 27.5,13.5
parent: 2
type: Transform
- - uid: 26473
+ - uid: 26542
components:
- rot: -1.5707963267948966 rad
pos: 27.5,11.5
parent: 2
type: Transform
- - uid: 26474
+ - uid: 26543
components:
- pos: 14.5,15.5
parent: 2
type: Transform
- - uid: 26475
+ - uid: 26544
components:
- pos: 9.5,15.5
parent: 2
type: Transform
- - uid: 26476
+ - uid: 26545
components:
- pos: 9.5,-71.5
parent: 2
type: Transform
- - uid: 26477
+ - uid: 26546
components:
- pos: 5.5,-78.5
parent: 2
type: Transform
- - uid: 26478
+ - uid: 26547
components:
- rot: 3.141592653589793 rad
pos: 30.5,-39.5
parent: 2
type: Transform
- - uid: 26479
+ - uid: 26548
components:
- pos: 28.5,-9.5
parent: 2
type: Transform
- - uid: 26480
+ - uid: 26549
components:
- pos: 31.5,20.5
parent: 2
type: Transform
- - uid: 26481
+ - uid: 26550
components:
- rot: -1.5707963267948966 rad
pos: 30.5,12.5
parent: 2
type: Transform
- - uid: 26482
- components:
- - pos: 0.5,15.5
- parent: 2
- type: Transform
- - uid: 26483
+ - uid: 26551
components:
- rot: -1.5707963267948966 rad
pos: 9.5,11.5
parent: 2
type: Transform
- - uid: 26484
+ - uid: 26552
components:
- rot: 3.141592653589793 rad
pos: 6.5,11.5
parent: 2
type: Transform
- - uid: 26485
+ - uid: 26553
components:
- rot: 1.5707963267948966 rad
pos: 3.5,14.5
parent: 2
type: Transform
- - uid: 26486
+ - uid: 26554
components:
- pos: -1.5,15.5
parent: 2
type: Transform
- - uid: 26487
+ - uid: 26555
components:
- pos: 9.5,-2.5
parent: 2
type: Transform
- - uid: 26488
+ - uid: 26556
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-33.5
parent: 2
type: Transform
- - uid: 26489
+ - uid: 26557
components:
- rot: 1.5707963267948966 rad
pos: 15.5,15.5
parent: 2
type: Transform
- - uid: 26490
+ - uid: 26558
components:
- rot: -1.5707963267948966 rad
pos: 63.5,17.5
parent: 2
type: Transform
- - uid: 26491
+ - uid: 26559
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-84.5
parent: 2
type: Transform
- - uid: 26492
+ - uid: 26560
components:
- pos: 16.5,-63.5
parent: 2
type: Transform
- - uid: 26493
+ - uid: 26561
components:
- pos: 17.5,-68.5
parent: 2
type: Transform
- - uid: 26494
+ - uid: 26562
components:
- pos: -23.5,0.5
parent: 2
type: Transform
- - uid: 26495
+ - uid: 26563
components:
- pos: 25.5,-29.5
parent: 2
type: Transform
- - uid: 26496
+ - uid: 26564
components:
- pos: -23.5,-2.5
parent: 2
type: Transform
- - uid: 26497
+ - uid: 26565
components:
- rot: 3.141592653589793 rad
pos: 33.5,-20.5
parent: 2
type: Transform
- - uid: 26498
+ - uid: 26566
components:
- pos: -23.5,3.5
parent: 2
type: Transform
- - uid: 26499
+ - uid: 26567
components:
- pos: -23.5,4.5
parent: 2
type: Transform
- - uid: 26500
+ - uid: 26568
components:
- pos: -21.5,5.5
parent: 2
type: Transform
- - uid: 26501
+ - uid: 26569
components:
- pos: 49.5,-26.5
parent: 2
type: Transform
- - uid: 26502
+ - uid: 26570
components:
- pos: 47.5,-20.5
parent: 2
type: Transform
- - uid: 26503
+ - uid: 26571
components:
- pos: 44.5,-20.5
parent: 2
type: Transform
- - uid: 26504
+ - uid: 26572
components:
- pos: 43.5,-22.5
parent: 2
type: Transform
- - uid: 26505
+ - uid: 26573
components:
- pos: 43.5,-25.5
parent: 2
type: Transform
- - uid: 26506
+ - uid: 26574
components:
- pos: 43.5,-23.5
parent: 2
type: Transform
- - uid: 26507
+ - uid: 26575
components:
- pos: 43.5,-28.5
parent: 2
type: Transform
- - uid: 26508
- components:
- - pos: 1.5,15.5
- parent: 2
- type: Transform
- - uid: 26509
+ - uid: 26576
components:
- pos: 40.5,-28.5
parent: 2
type: Transform
- - uid: 26510
+ - uid: 26577
components:
- pos: 26.5,26.5
parent: 2
type: Transform
- - uid: 26511
+ - uid: 26578
components:
- pos: 25.5,26.5
parent: 2
type: Transform
- - uid: 26512
+ - uid: 26579
components:
- pos: 25.5,28.5
parent: 2
type: Transform
- - uid: 26513
+ - uid: 26580
components:
- rot: 3.141592653589793 rad
pos: 33.5,29.5
parent: 2
type: Transform
- - uid: 26514
+ - uid: 26581
components:
- pos: 25.5,30.5
parent: 2
type: Transform
- - uid: 26515
+ - uid: 26582
components:
- pos: 32.5,26.5
parent: 2
type: Transform
- - uid: 26516
+ - uid: 26583
components:
- rot: -1.5707963267948966 rad
pos: 13.5,23.5
parent: 2
type: Transform
- - uid: 26517
+ - uid: 26584
components:
- rot: -1.5707963267948966 rad
pos: 8.5,23.5
parent: 2
type: Transform
- - uid: 26518
+ - uid: 26585
components:
- pos: -2.5,-39.5
parent: 2
type: Transform
- - uid: 26519
+ - uid: 26586
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-39.5
parent: 2
type: Transform
- - uid: 26520
+ - uid: 26587
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-24.5
parent: 2
type: Transform
- - uid: 26521
+ - uid: 26588
components:
- pos: 11.5,-24.5
parent: 2
type: Transform
- - uid: 26522
+ - uid: 26589
components:
- pos: 10.5,-24.5
parent: 2
type: Transform
- - uid: 26523
+ - uid: 26590
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-24.5
parent: 2
type: Transform
- - uid: 26524
+ - uid: 26591
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-18.5
parent: 2
type: Transform
- - uid: 26525
+ - uid: 26592
components:
- pos: -2.5,21.5
parent: 2
type: Transform
- - uid: 26526
+ - uid: 26593
components:
- pos: -0.5,22.5
parent: 2
type: Transform
- - uid: 26527
+ - uid: 26594
components:
- pos: 0.5,22.5
parent: 2
type: Transform
- - uid: 26528
+ - uid: 26595
components:
- pos: -2.5,22.5
parent: 2
type: Transform
- - uid: 26529
+ - uid: 26596
components:
- pos: -2.5,20.5
parent: 2
type: Transform
- - uid: 26530
+ - uid: 26597
components:
- pos: 6.5,-40.5
parent: 2
type: Transform
- - uid: 26531
+ - uid: 26598
components:
- pos: 5.5,-39.5
parent: 2
type: Transform
- - uid: 26532
+ - uid: 26599
components:
- pos: 8.5,18.5
parent: 2
type: Transform
- - uid: 26533
+ - uid: 26600
components:
- rot: 3.141592653589793 rad
pos: 27.5,23.5
parent: 2
type: Transform
- - uid: 26534
+ - uid: 26601
components:
- pos: -15.5,4.5
parent: 2
type: Transform
- - uid: 26535
+ - uid: 26602
components:
- pos: -15.5,3.5
parent: 2
type: Transform
- - uid: 26536
+ - uid: 26603
components:
- pos: 9.5,18.5
parent: 2
type: Transform
- - uid: 26537
+ - uid: 26604
components:
- pos: -18.5,-85.5
parent: 2
type: Transform
- - uid: 26538
+ - uid: 26605
components:
- rot: 3.141592653589793 rad
pos: 3.5,11.5
parent: 2
type: Transform
- - uid: 26539
+ - uid: 26606
components:
- rot: -1.5707963267948966 rad
pos: 37.5,42.5
parent: 2
type: Transform
- - uid: 26540
+ - uid: 26607
components:
- rot: 3.141592653589793 rad
pos: 62.5,42.5
parent: 2
type: Transform
- - uid: 26541
+ - uid: 26608
components:
- rot: -1.5707963267948966 rad
pos: 32.5,43.5
parent: 2
type: Transform
- - uid: 26542
+ - uid: 26609
components:
- rot: 3.141592653589793 rad
pos: 18.5,-19.5
parent: 2
type: Transform
- - uid: 26543
+ - uid: 26610
components:
- rot: -1.5707963267948966 rad
pos: 42.5,49.5
parent: 2
type: Transform
- - uid: 26544
+ - uid: 26611
components:
- rot: -1.5707963267948966 rad
pos: 34.5,43.5
parent: 2
type: Transform
- - uid: 26545
+ - uid: 26612
components:
- pos: -23.5,-0.5
parent: 2
type: Transform
- - uid: 26546
+ - uid: 26613
components:
- rot: -1.5707963267948966 rad
pos: 63.5,16.5
parent: 2
type: Transform
- - uid: 26547
+ - uid: 26614
components:
- pos: -20.5,5.5
parent: 2
type: Transform
- - uid: 26548
+ - uid: 26615
components:
- rot: 3.141592653589793 rad
pos: 13.5,18.5
parent: 2
type: Transform
- - uid: 26549
+ - uid: 26616
components:
- rot: -1.5707963267948966 rad
pos: 64.5,14.5
parent: 2
type: Transform
- - uid: 26550
+ - uid: 26617
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-80.5
parent: 2
type: Transform
- - uid: 26551
+ - uid: 26618
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-78.5
parent: 2
type: Transform
- - uid: 26552
+ - uid: 26619
components:
- rot: 3.141592653589793 rad
pos: -17.5,5.5
parent: 2
type: Transform
- - uid: 26553
+ - uid: 26620
components:
- rot: 3.141592653589793 rad
pos: 19.5,-19.5
parent: 2
type: Transform
- - uid: 26554
+ - uid: 26621
components:
- pos: 40.5,52.5
parent: 2
type: Transform
- - uid: 26555
+ - uid: 26622
components:
- pos: -29.5,44.5
parent: 2
type: Transform
- - uid: 26556
+ - uid: 26623
components:
- pos: 40.5,17.5
parent: 2
type: Transform
- - uid: 26557
+ - uid: 26624
components:
- pos: -15.5,-74.5
parent: 2
type: Transform
- - uid: 26558
+ - uid: 26625
components:
- rot: 3.141592653589793 rad
pos: 30.5,-15.5
parent: 2
type: Transform
- - uid: 26559
+ - uid: 26626
components:
- rot: -1.5707963267948966 rad
pos: 27.5,10.5
parent: 2
type: Transform
- - uid: 26560
+ - uid: 26627
components:
- pos: -15.5,1.5
parent: 2
type: Transform
- - uid: 26561
+ - uid: 26628
components:
- pos: -15.5,0.5
parent: 2
type: Transform
- - uid: 26562
+ - uid: 26629
components:
- pos: 38.5,52.5
parent: 2
type: Transform
- - uid: 26563
+ - uid: 26630
components:
- rot: 3.141592653589793 rad
pos: 34.5,-13.5
parent: 2
type: Transform
- - uid: 26564
+ - uid: 26631
components:
- pos: 43.5,-20.5
parent: 2
type: Transform
- - uid: 26565
+ - uid: 26632
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-63.5
parent: 2
type: Transform
- - uid: 26566
+ - uid: 26633
components:
- pos: 0.5,-39.5
parent: 2
type: Transform
- - uid: 26567
+ - uid: 26634
components:
- pos: 4.5,-39.5
parent: 2
type: Transform
- - uid: 26568
+ - uid: 26635
components:
- pos: 2.5,15.5
parent: 2
type: Transform
- - uid: 26569
+ - uid: 26636
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-31.5
parent: 2
type: Transform
- - uid: 26570
+ - uid: 26637
components:
- rot: -1.5707963267948966 rad
pos: 14.5,-68.5
parent: 2
type: Transform
- - uid: 26571
+ - uid: 26638
components:
- pos: 7.5,11.5
parent: 2
type: Transform
- - uid: 26572
+ - uid: 26639
components:
- pos: 10.5,15.5
parent: 2
type: Transform
- - uid: 26573
+ - uid: 26640
components:
- rot: -1.5707963267948966 rad
pos: 36.5,42.5
parent: 2
type: Transform
- - uid: 26574
+ - uid: 26641
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-81.5
parent: 2
type: Transform
- - uid: 26575
+ - uid: 26642
components:
- rot: -1.5707963267948966 rad
pos: 37.5,9.5
parent: 2
type: Transform
- - uid: 26576
+ - uid: 26643
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-83.5
parent: 2
type: Transform
- - uid: 26577
+ - uid: 26644
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-83.5
parent: 2
type: Transform
- - uid: 26578
+ - uid: 26645
components:
- pos: -22.5,5.5
parent: 2
type: Transform
- - uid: 26579
+ - uid: 26646
components:
- rot: -1.5707963267948966 rad
pos: 27.5,14.5
parent: 2
type: Transform
- - uid: 26580
+ - uid: 26647
components:
- pos: -29.5,43.5
parent: 2
type: Transform
- - uid: 26581
+ - uid: 26648
components:
- rot: 3.141592653589793 rad
pos: 33.5,-22.5
parent: 2
type: Transform
- - uid: 26582
+ - uid: 26649
components:
- rot: 3.141592653589793 rad
pos: 20.5,24.5
parent: 2
type: Transform
- - uid: 26583
+ - uid: 26650
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-18.5
parent: 2
type: Transform
- - uid: 26584
+ - uid: 26651
components:
- pos: 7.5,27.5
parent: 2
type: Transform
- - uid: 26585
+ - uid: 26652
components:
- rot: -1.5707963267948966 rad
pos: 27.5,15.5
parent: 2
type: Transform
- - uid: 26586
+ - uid: 26653
components:
- pos: -15.5,3.5
parent: 2
type: Transform
- - uid: 26587
+ - uid: 26654
components:
- rot: -1.5707963267948966 rad
pos: -31.5,-76.5
parent: 2
type: Transform
- - uid: 26588
+ - uid: 26655
components:
- pos: -18.5,-80.5
parent: 2
type: Transform
- - uid: 26589
+ - uid: 26656
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-68.5
parent: 2
type: Transform
- - uid: 26590
+ - uid: 26657
components:
- rot: -1.5707963267948966 rad
pos: 14.5,18.5
parent: 2
type: Transform
- - uid: 26591
+ - uid: 26658
components:
- pos: 27.5,25.5
parent: 2
type: Transform
- - uid: 26592
+ - uid: 26659
components:
- pos: 10.5,24.5
parent: 2
type: Transform
- - uid: 26593
+ - uid: 26660
components:
- pos: 9.5,24.5
parent: 2
type: Transform
- - uid: 26594
+ - uid: 26661
components:
- pos: -13.5,-74.5
parent: 2
type: Transform
- - uid: 26595
+ - uid: 26662
components:
- pos: -13.5,-79.5
parent: 2
type: Transform
- - uid: 26596
+ - uid: 26663
components:
- pos: -19.5,-80.5
parent: 2
type: Transform
- - uid: 26597
+ - uid: 26664
components:
- pos: -13.5,-76.5
parent: 2
type: Transform
- - uid: 26598
+ - uid: 26665
components:
- pos: 9.5,20.5
parent: 2
type: Transform
- - uid: 26599
+ - uid: 26666
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-68.5
parent: 2
type: Transform
- - uid: 26600
+ - uid: 26667
components:
- pos: -18.5,-50.5
parent: 2
type: Transform
- - uid: 26601
+ - uid: 26668
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-53.5
parent: 2
type: Transform
- - uid: 26602
+ - uid: 26669
components:
- rot: 3.141592653589793 rad
pos: 33.5,-37.5
parent: 2
type: Transform
- - uid: 26603
+ - uid: 26670
components:
- rot: 3.141592653589793 rad
pos: 34.5,-11.5
parent: 2
type: Transform
- - uid: 26604
+ - uid: 26671
components:
- rot: 3.141592653589793 rad
pos: 34.5,-12.5
parent: 2
type: Transform
- - uid: 26605
+ - uid: 26672
components:
- pos: -16.5,-54.5
parent: 2
type: Transform
- - uid: 26606
+ - uid: 26673
components:
- rot: 3.141592653589793 rad
pos: 34.5,-9.5
parent: 2
type: Transform
- - uid: 26607
+ - uid: 26674
components:
- rot: 3.141592653589793 rad
pos: 33.5,-9.5
parent: 2
type: Transform
- - uid: 26608
+ - uid: 26675
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-55.5
parent: 2
type: Transform
- - uid: 26609
+ - uid: 26676
components:
- pos: 19.5,-56.5
parent: 2
type: Transform
- - uid: 26610
+ - uid: 26677
components:
- pos: -21.5,-56.5
parent: 2
type: Transform
- - uid: 26611
+ - uid: 26678
components:
- pos: 33.5,48.5
parent: 2
type: Transform
- - uid: 26612
+ - uid: 26679
components:
- pos: 31.5,-26.5
parent: 2
type: Transform
- - uid: 26613
+ - uid: 26680
components:
- pos: 11.5,15.5
parent: 2
type: Transform
- - uid: 26614
+ - uid: 26681
components:
- rot: 3.141592653589793 rad
pos: 17.5,-19.5
parent: 2
type: Transform
- - uid: 26615
+ - uid: 26682
components:
- pos: -2.5,-38.5
parent: 2
type: Transform
- - uid: 26616
+ - uid: 26683
components:
- rot: -1.5707963267948966 rad
pos: 63.5,14.5
parent: 2
type: Transform
- - uid: 26617
+ - uid: 26684
components:
- pos: 12.5,-36.5
parent: 2
type: Transform
- - uid: 26618
+ - uid: 26685
components:
- rot: 3.141592653589793 rad
pos: 27.5,33.5
parent: 2
type: Transform
- - uid: 26619
+ - uid: 26686
components:
- pos: 35.5,51.5
parent: 2
type: Transform
- - uid: 26620
+ - uid: 26687
components:
- pos: 5.5,-79.5
parent: 2
type: Transform
- - uid: 26621
+ - uid: 26688
components:
- pos: 33.5,-30.5
parent: 2
type: Transform
- - uid: 26622
+ - uid: 26689
components:
- pos: 28.5,-12.5
parent: 2
type: Transform
- - uid: 26623
+ - uid: 26690
components:
- rot: 3.141592653589793 rad
pos: 17.5,-20.5
parent: 2
type: Transform
- - uid: 26624
+ - uid: 26691
components:
- pos: 37.5,52.5
parent: 2
type: Transform
- - uid: 26625
+ - uid: 26692
components:
- pos: 29.5,-15.5
parent: 2
type: Transform
- - uid: 26626
+ - uid: 26693
components:
- rot: 3.141592653589793 rad
pos: 32.5,-19.5
parent: 2
type: Transform
- - uid: 26627
+ - uid: 26694
components:
- rot: 3.141592653589793 rad
pos: -18.5,-3.5
parent: 2
type: Transform
- - uid: 26628
+ - uid: 26695
components:
- rot: 3.141592653589793 rad
pos: 19.5,-55.5
parent: 2
type: Transform
- - uid: 26629
+ - uid: 26696
components:
- rot: -1.5707963267948966 rad
pos: 35.5,42.5
parent: 2
type: Transform
- - uid: 26630
+ - uid: 26697
components:
- rot: 3.141592653589793 rad
pos: -18.5,5.5
parent: 2
type: Transform
- - uid: 26631
+ - uid: 26698
components:
- pos: 35.5,5.5
parent: 2
type: Transform
- - uid: 26632
+ - uid: 26699
components:
- pos: 35.5,3.5
parent: 2
type: Transform
- - uid: 26633
+ - uid: 26700
components:
- pos: 33.5,9.5
parent: 2
type: Transform
- - uid: 26634
+ - uid: 26701
components:
- pos: 27.5,9.5
parent: 2
type: Transform
- - uid: 26635
+ - uid: 26702
components:
- rot: 3.141592653589793 rad
pos: 29.5,-40.5
parent: 2
type: Transform
- - uid: 26636
+ - uid: 26703
components:
- pos: 30.5,-38.5
parent: 2
type: Transform
- - uid: 26637
+ - uid: 26704
components:
- rot: 3.141592653589793 rad
pos: 25.5,-61.5
parent: 2
type: Transform
- - uid: 26638
+ - uid: 26705
components:
- rot: -1.5707963267948966 rad
pos: 7.5,23.5
parent: 2
type: Transform
- - uid: 26639
+ - uid: 26706
components:
- rot: -1.5707963267948966 rad
pos: 6.5,23.5
parent: 2
type: Transform
- - uid: 26640
+ - uid: 26707
components:
- pos: 9.5,22.5
parent: 2
type: Transform
- - uid: 26641
+ - uid: 26708
components:
- pos: 9.5,21.5
parent: 2
type: Transform
- - uid: 26642
+ - uid: 26709
components:
- rot: 3.141592653589793 rad
pos: 36.5,13.5
parent: 2
type: Transform
- - uid: 26643
+ - uid: 26710
components:
- pos: 3.5,20.5
parent: 2
type: Transform
- - uid: 26644
+ - uid: 26711
components:
- pos: 8.5,-24.5
parent: 2
type: Transform
- - uid: 26645
+ - uid: 26712
components:
- pos: 12.5,-31.5
parent: 2
type: Transform
- - uid: 26646
+ - uid: 26713
components:
- pos: 1.5,-33.5
parent: 2
type: Transform
- - uid: 26647
+ - uid: 26714
components:
- pos: -18.5,-87.5
parent: 2
type: Transform
- - uid: 26648
+ - uid: 26715
components:
- pos: 28.5,-11.5
parent: 2
type: Transform
- - uid: 26649
+ - uid: 26716
components:
- pos: 13.5,-22.5
parent: 2
type: Transform
- - uid: 26650
+ - uid: 26717
components:
- pos: 12.5,-18.5
parent: 2
type: Transform
- - uid: 26651
+ - uid: 26718
components:
- pos: 5.5,-82.5
parent: 2
type: Transform
- - uid: 26652
+ - uid: 26719
components:
- pos: 12.5,-69.5
parent: 2
type: Transform
- - uid: 26653
+ - uid: 26720
components:
- rot: 3.141592653589793 rad
pos: 26.5,-33.5
parent: 2
type: Transform
- - uid: 26654
+ - uid: 26721
components:
- pos: 27.5,-27.5
parent: 2
type: Transform
- - uid: 26655
+ - uid: 26722
components:
- pos: -6.5,-44.5
parent: 2
type: Transform
- - uid: 26656
+ - uid: 26723
components:
- rot: 1.5707963267948966 rad
pos: -18.5,-53.5
parent: 2
type: Transform
- - uid: 26657
+ - uid: 26724
components:
- pos: -2.5,-37.5
parent: 2
type: Transform
- - uid: 26658
+ - uid: 26725
components:
- pos: 13.5,-40.5
parent: 2
type: Transform
- - uid: 26659
+ - uid: 26726
components:
- pos: 12.5,-40.5
parent: 2
type: Transform
- - uid: 26660
+ - uid: 26727
components:
- pos: 10.5,-40.5
parent: 2
type: Transform
- - uid: 26661
+ - uid: 26728
components:
- pos: 11.5,-40.5
parent: 2
type: Transform
- - uid: 26662
+ - uid: 26729
components:
- pos: 27.5,-13.5
parent: 2
type: Transform
- - uid: 26663
+ - uid: 26730
components:
- rot: 1.5707963267948966 rad
pos: 12.5,15.5
parent: 2
type: Transform
- - uid: 26664
+ - uid: 26731
components:
- rot: 3.141592653589793 rad
pos: 31.5,-9.5
parent: 2
type: Transform
- - uid: 26665
+ - uid: 26732
components:
- pos: 28.5,-15.5
parent: 2
type: Transform
- - uid: 26666
+ - uid: 26733
components:
- pos: 42.5,52.5
parent: 2
type: Transform
- - uid: 26667
+ - uid: 26734
components:
- rot: 3.141592653589793 rad
pos: 20.5,-19.5
parent: 2
type: Transform
- - uid: 26668
+ - uid: 26735
components:
- pos: -18.5,-84.5
parent: 2
type: Transform
- - uid: 26669
+ - uid: 26736
components:
- pos: -20.5,-1.5
parent: 2
type: Transform
- - uid: 26670
+ - uid: 26737
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-76.5
parent: 2
type: Transform
- - uid: 26671
+ - uid: 26738
components:
- rot: 1.5707963267948966 rad
pos: 3.5,13.5
parent: 2
type: Transform
- - uid: 26672
+ - uid: 26739
components:
- pos: 18.5,18.5
parent: 2
type: Transform
- - uid: 26673
+ - uid: 26740
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-83.5
parent: 2
type: Transform
- - uid: 26674
+ - uid: 26741
components:
- rot: -1.5707963267948966 rad
pos: 0.5,-80.5
parent: 2
type: Transform
- - uid: 26675
+ - uid: 26742
components:
- pos: 15.5,-63.5
parent: 2
type: Transform
- - uid: 26676
+ - uid: 26743
components:
- pos: 17.5,-64.5
parent: 2
type: Transform
- - uid: 26677
+ - uid: 26744
components:
- pos: 49.5,-21.5
parent: 2
type: Transform
- - uid: 26678
+ - uid: 26745
components:
- pos: 45.5,-20.5
parent: 2
type: Transform
- - uid: 26679
+ - uid: 26746
components:
- pos: 46.5,-20.5
parent: 2
type: Transform
- - uid: 26680
+ - uid: 26747
components:
- pos: 43.5,-29.5
parent: 2
type: Transform
- - uid: 26681
+ - uid: 26748
components:
- pos: 43.5,-30.5
parent: 2
type: Transform
- - uid: 26682
+ - uid: 26749
components:
- pos: 43.5,-31.5
parent: 2
type: Transform
- - uid: 26683
+ - uid: 26750
components:
- pos: 44.5,-31.5
parent: 2
type: Transform
- - uid: 26684
+ - uid: 26751
components:
- pos: 49.5,-31.5
parent: 2
type: Transform
- - uid: 26685
+ - uid: 26752
components:
- pos: 49.5,-30.5
parent: 2
type: Transform
- - uid: 26686
+ - uid: 26753
components:
- pos: 49.5,-29.5
parent: 2
type: Transform
- - uid: 26687
+ - uid: 26754
components:
- pos: 49.5,-28.5
parent: 2
type: Transform
- - uid: 26688
+ - uid: 26755
components:
- pos: 48.5,-20.5
parent: 2
type: Transform
- - uid: 26689
+ - uid: 26756
components:
- pos: 48.5,-31.5
parent: 2
type: Transform
- - uid: 26690
+ - uid: 26757
components:
- pos: 47.5,-31.5
parent: 2
type: Transform
- - uid: 26691
+ - uid: 26758
components:
- pos: 46.5,-31.5
parent: 2
type: Transform
- - uid: 26692
+ - uid: 26759
components:
- pos: 45.5,-31.5
parent: 2
type: Transform
- - uid: 26693
+ - uid: 26760
components:
- pos: 49.5,-27.5
parent: 2
type: Transform
- - uid: 26694
+ - uid: 26761
components:
- pos: 49.5,-20.5
parent: 2
type: Transform
- - uid: 26695
+ - uid: 26762
components:
- pos: 43.5,-21.5
parent: 2
type: Transform
- - uid: 26696
+ - uid: 26763
components:
- pos: 49.5,-22.5
parent: 2
type: Transform
- - uid: 26697
+ - uid: 26764
components:
- pos: 48.5,-26.5
parent: 2
type: Transform
- - uid: 26698
+ - uid: 26765
components:
- pos: 47.5,-26.5
parent: 2
type: Transform
- - uid: 26699
+ - uid: 26766
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-25.5
parent: 2
type: Transform
- - uid: 26700
+ - uid: 26767
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-25.5
parent: 2
type: Transform
- - uid: 26701
+ - uid: 26768
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-26.5
parent: 2
type: Transform
- - uid: 26702
+ - uid: 26769
components:
- rot: 3.141592653589793 rad
pos: 47.5,3.5
parent: 2
type: Transform
- - uid: 26703
+ - uid: 26770
components:
- pos: -27.5,-87.5
parent: 2
type: Transform
- - uid: 26704
+ - uid: 26771
components:
- pos: 7.5,-37.5
parent: 2
type: Transform
- - uid: 26705
+ - uid: 26772
components:
- rot: 1.5707963267948966 rad
pos: 15.5,28.5
parent: 2
type: Transform
- - uid: 26706
+ - uid: 26773
components:
- pos: 5.5,30.5
parent: 2
type: Transform
- - uid: 26707
+ - uid: 26774
components:
- pos: 18.5,24.5
parent: 2
type: Transform
- - uid: 26708
+ - uid: 26775
components:
- pos: 17.5,24.5
parent: 2
type: Transform
- - uid: 26709
+ - uid: 26776
components:
- pos: 16.5,24.5
parent: 2
type: Transform
- - uid: 26710
+ - uid: 26777
components:
- pos: 15.5,24.5
parent: 2
type: Transform
- - uid: 26711
+ - uid: 26778
components:
- pos: 13.5,24.5
parent: 2
type: Transform
- - uid: 26712
+ - uid: 26779
components:
- rot: 1.5707963267948966 rad
pos: 15.5,29.5
parent: 2
type: Transform
- - uid: 26713
+ - uid: 26780
components:
- pos: 44.5,-32.5
parent: 2
type: Transform
- - uid: 26714
+ - uid: 26781
components:
- pos: 49.5,44.5
parent: 2
type: Transform
- - uid: 26715
+ - uid: 26782
components:
- pos: 19.5,30.5
parent: 2
type: Transform
- - uid: 26716
+ - uid: 26783
components:
- pos: 19.5,29.5
parent: 2
type: Transform
- - uid: 26717
+ - uid: 26784
components:
- pos: 19.5,28.5
parent: 2
type: Transform
- - uid: 26718
+ - uid: 26785
components:
- pos: 19.5,27.5
parent: 2
type: Transform
- - uid: 26719
+ - uid: 26786
components:
- rot: 1.5707963267948966 rad
pos: 20.5,26.5
parent: 2
type: Transform
- - uid: 26720
+ - uid: 26787
components:
- rot: 1.5707963267948966 rad
pos: 19.5,26.5
parent: 2
type: Transform
- - uid: 26721
+ - uid: 26788
components:
- rot: 1.5707963267948966 rad
pos: 21.5,26.5
parent: 2
type: Transform
- - uid: 26722
+ - uid: 26789
components:
- rot: 1.5707963267948966 rad
pos: 22.5,26.5
parent: 2
type: Transform
- - uid: 26723
+ - uid: 26790
components:
- pos: 3.5,31.5
parent: 2
type: Transform
- - uid: 26724
+ - uid: 26791
components:
- pos: 4.5,30.5
parent: 2
type: Transform
- - uid: 26725
+ - uid: 26792
components:
- pos: 3.5,33.5
parent: 2
type: Transform
- - uid: 26726
+ - uid: 26793
components:
- pos: 11.5,29.5
parent: 2
type: Transform
- - uid: 26727
+ - uid: 26794
components:
- pos: 11.5,35.5
parent: 2
type: Transform
- - uid: 26728
+ - uid: 26795
components:
- pos: 4.5,31.5
parent: 2
type: Transform
- - uid: 26729
+ - uid: 26796
components:
- pos: 11.5,33.5
parent: 2
type: Transform
- - uid: 26730
+ - uid: 26797
components:
- pos: 6.5,35.5
parent: 2
type: Transform
- - uid: 26731
+ - uid: 26798
components:
- pos: 66.5,4.5
parent: 2
type: Transform
- - uid: 26732
+ - uid: 26799
components:
- pos: 66.5,5.5
parent: 2
type: Transform
- - uid: 26733
+ - uid: 26800
components:
- pos: 66.5,3.5
parent: 2
type: Transform
- - uid: 26734
+ - uid: 26801
components:
- pos: 66.5,2.5
parent: 2
type: Transform
- - uid: 26735
+ - uid: 26802
components:
- pos: 66.5,1.5
parent: 2
type: Transform
- - uid: 26736
+ - uid: 26803
components:
- rot: 1.5707963267948966 rad
pos: 14.5,26.5
parent: 2
type: Transform
- - uid: 26737
+ - uid: 26804
components:
- rot: 1.5707963267948966 rad
pos: 15.5,26.5
parent: 2
type: Transform
- - uid: 26738
+ - uid: 26805
components:
- rot: 1.5707963267948966 rad
pos: 15.5,27.5
parent: 2
type: Transform
- - uid: 26739
+ - uid: 26806
components:
- rot: 1.5707963267948966 rad
pos: 13.5,26.5
parent: 2
type: Transform
- - uid: 26740
+ - uid: 26807
components:
- pos: 11.5,26.5
parent: 2
type: Transform
- - uid: 26741
+ - uid: 26808
components:
- pos: 12.5,24.5
parent: 2
type: Transform
- - uid: 26742
+ - uid: 26809
components:
- pos: 11.5,24.5
parent: 2
type: Transform
- - uid: 26743
+ - uid: 26810
components:
- rot: 1.5707963267948966 rad
pos: 7.5,25.5
parent: 2
type: Transform
- - uid: 26744
+ - uid: 26811
components:
- rot: 1.5707963267948966 rad
pos: 5.5,25.5
parent: 2
type: Transform
- - uid: 26745
+ - uid: 26812
components:
- rot: 1.5707963267948966 rad
pos: 3.5,25.5
parent: 2
type: Transform
- - uid: 26746
+ - uid: 26813
components:
- rot: 1.5707963267948966 rad
pos: 18.5,30.5
parent: 2
type: Transform
- - uid: 26747
+ - uid: 26814
components:
- rot: 1.5707963267948966 rad
pos: 15.5,30.5
parent: 2
type: Transform
- - uid: 26748
+ - uid: 26815
components:
- rot: 1.5707963267948966 rad
pos: 14.5,30.5
parent: 2
type: Transform
- - uid: 26749
+ - uid: 26816
components:
- rot: 1.5707963267948966 rad
pos: 14.5,31.5
parent: 2
type: Transform
- - uid: 26750
+ - uid: 26817
components:
- rot: 1.5707963267948966 rad
pos: 13.5,31.5
parent: 2
type: Transform
- - uid: 26751
+ - uid: 26818
components:
- pos: 49.5,50.5
parent: 2
type: Transform
- - uid: 26752
+ - uid: 26819
components:
- rot: 1.5707963267948966 rad
pos: 14.5,33.5
parent: 2
type: Transform
- - uid: 26753
+ - uid: 26820
components:
- rot: 1.5707963267948966 rad
pos: 13.5,33.5
parent: 2
type: Transform
- - uid: 26754
+ - uid: 26821
components:
- pos: -1.5,26.5
parent: 2
type: Transform
- - uid: 26755
+ - uid: 26822
components:
- pos: 59.5,41.5
parent: 2
type: Transform
- - uid: 26756
+ - uid: 26823
components:
- rot: 1.5707963267948966 rad
pos: 14.5,34.5
parent: 2
type: Transform
- - uid: 26757
+ - uid: 26824
components:
- rot: 1.5707963267948966 rad
pos: 18.5,31.5
parent: 2
type: Transform
- - uid: 26758
+ - uid: 26825
components:
- pos: 11.5,34.5
parent: 2
type: Transform
- - uid: 26759
+ - uid: 26826
components:
- pos: 5.5,35.5
parent: 2
type: Transform
- - uid: 26760
+ - uid: 26827
components:
- pos: 18.5,34.5
parent: 2
type: Transform
- - uid: 26761
+ - uid: 26828
components:
- pos: 10.5,35.5
parent: 2
type: Transform
- - uid: 26762
+ - uid: 26829
components:
- pos: 11.5,30.5
parent: 2
type: Transform
- - uid: 26763
+ - uid: 26830
components:
- - pos: 1.5,25.5
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,22.5
parent: 2
type: Transform
- - uid: 26764
+ - uid: 26831
components:
- pos: 0.5,25.5
parent: 2
type: Transform
- - uid: 26765
+ - uid: 26832
components:
- pos: -0.5,25.5
parent: 2
type: Transform
- - uid: 26766
+ - uid: 26833
components:
- pos: -1.5,25.5
parent: 2
type: Transform
- - uid: 26767
+ - uid: 26834
components:
- pos: -1.5,28.5
parent: 2
type: Transform
- - uid: 26768
+ - uid: 26835
components:
- pos: -3.5,25.5
parent: 2
type: Transform
- - uid: 26769
+ - uid: 26836
components:
- pos: -3.5,24.5
parent: 2
type: Transform
- - uid: 26770
+ - uid: 26837
components:
- pos: 59.5,48.5
parent: 2
type: Transform
- - uid: 26771
+ - uid: 26838
components:
- pos: 34.5,26.5
parent: 2
type: Transform
- - uid: 26772
+ - uid: 26839
components:
- pos: 34.5,25.5
parent: 2
type: Transform
- - uid: 26773
+ - uid: 26840
components:
- pos: 34.5,24.5
parent: 2
type: Transform
- - uid: 26774
+ - uid: 26841
components:
- rot: -1.5707963267948966 rad
pos: 37.5,21.5
parent: 2
type: Transform
- - uid: 26775
+ - uid: 26842
components:
- pos: 36.5,21.5
parent: 2
type: Transform
- - uid: 26776
+ - uid: 26843
components:
- pos: 33.5,21.5
parent: 2
type: Transform
- - uid: 26777
+ - uid: 26844
components:
- pos: 33.5,20.5
parent: 2
type: Transform
- - uid: 26778
+ - uid: 26845
components:
- rot: -1.5707963267948966 rad
pos: 37.5,22.5
parent: 2
type: Transform
- - uid: 26779
+ - uid: 26846
components:
- rot: -1.5707963267948966 rad
pos: 38.5,22.5
parent: 2
type: Transform
- - uid: 26780
+ - uid: 26847
components:
- pos: 35.5,21.5
parent: 2
type: Transform
- - uid: 26781
+ - uid: 26848
components:
- rot: -1.5707963267948966 rad
pos: 37.5,19.5
parent: 2
type: Transform
- - uid: 26782
+ - uid: 26849
components:
- rot: -1.5707963267948966 rad
pos: 39.5,22.5
parent: 2
type: Transform
- - uid: 26783
+ - uid: 26850
components:
- rot: -1.5707963267948966 rad
pos: 40.5,22.5
parent: 2
type: Transform
- - uid: 26784
+ - uid: 26851
components:
- rot: -1.5707963267948966 rad
pos: 37.5,18.5
parent: 2
type: Transform
- - uid: 26785
+ - uid: 26852
components:
- rot: 3.141592653589793 rad
pos: 35.5,24.5
parent: 2
type: Transform
- - uid: 26786
+ - uid: 26853
components:
- rot: 3.141592653589793 rad
pos: 37.5,24.5
parent: 2
type: Transform
- - uid: 26787
+ - uid: 26854
components:
- rot: -1.5707963267948966 rad
pos: 39.5,24.5
parent: 2
type: Transform
- - uid: 26788
+ - uid: 26855
components:
- rot: -1.5707963267948966 rad
pos: 46.5,25.5
parent: 2
type: Transform
- - uid: 26789
+ - uid: 26856
components:
- rot: -1.5707963267948966 rad
pos: 61.5,25.5
parent: 2
type: Transform
- - uid: 26790
+ - uid: 26857
components:
- rot: -1.5707963267948966 rad
pos: 59.5,25.5
parent: 2
type: Transform
- - uid: 26791
+ - uid: 26858
components:
- rot: -1.5707963267948966 rad
pos: 58.5,25.5
parent: 2
type: Transform
- - uid: 26792
+ - uid: 26859
components:
- rot: -1.5707963267948966 rad
pos: 47.5,25.5
parent: 2
type: Transform
- - uid: 26793
+ - uid: 26860
components:
- rot: -1.5707963267948966 rad
pos: 60.5,25.5
parent: 2
type: Transform
- - uid: 26794
+ - uid: 26861
components:
- rot: -1.5707963267948966 rad
pos: 57.5,25.5
parent: 2
type: Transform
- - uid: 26795
+ - uid: 26862
components:
- rot: -1.5707963267948966 rad
pos: 54.5,25.5
parent: 2
type: Transform
- - uid: 26796
+ - uid: 26863
components:
- rot: -1.5707963267948966 rad
pos: 50.5,25.5
parent: 2
type: Transform
- - uid: 26797
+ - uid: 26864
components:
- rot: -1.5707963267948966 rad
pos: 45.5,25.5
parent: 2
type: Transform
- - uid: 26798
+ - uid: 26865
components:
- rot: -1.5707963267948966 rad
pos: 45.5,24.5
parent: 2
type: Transform
- - uid: 26799
+ - uid: 26866
components:
- rot: -1.5707963267948966 rad
pos: 45.5,23.5
parent: 2
type: Transform
- - uid: 26800
+ - uid: 26867
components:
- rot: -1.5707963267948966 rad
pos: 56.5,25.5
parent: 2
type: Transform
- - uid: 26801
+ - uid: 26868
components:
- rot: -1.5707963267948966 rad
pos: 55.5,25.5
parent: 2
type: Transform
- - uid: 26802
+ - uid: 26869
components:
- rot: -1.5707963267948966 rad
pos: 49.5,25.5
parent: 2
type: Transform
- - uid: 26803
+ - uid: 26870
components:
- rot: -1.5707963267948966 rad
pos: 48.5,25.5
parent: 2
type: Transform
- - uid: 26804
+ - uid: 26871
components:
- rot: -1.5707963267948966 rad
pos: 53.5,25.5
parent: 2
type: Transform
- - uid: 26805
+ - uid: 26872
components:
- rot: -1.5707963267948966 rad
pos: 62.5,25.5
parent: 2
type: Transform
- - uid: 26806
+ - uid: 26873
components:
- rot: -1.5707963267948966 rad
pos: 52.5,25.5
parent: 2
type: Transform
- - uid: 26807
+ - uid: 26874
components:
- rot: -1.5707963267948966 rad
pos: 51.5,25.5
parent: 2
type: Transform
- - uid: 26808
+ - uid: 26875
components:
- rot: -1.5707963267948966 rad
pos: 64.5,25.5
parent: 2
type: Transform
- - uid: 26809
+ - uid: 26876
components:
- rot: -1.5707963267948966 rad
pos: 63.5,25.5
parent: 2
type: Transform
- - uid: 26810
+ - uid: 26877
components:
- rot: -1.5707963267948966 rad
pos: 64.5,24.5
parent: 2
type: Transform
- - uid: 26811
+ - uid: 26878
components:
- rot: -1.5707963267948966 rad
pos: 64.5,23.5
parent: 2
type: Transform
- - uid: 26812
+ - uid: 26879
components:
- rot: -1.5707963267948966 rad
pos: 64.5,22.5
parent: 2
type: Transform
- - uid: 26813
+ - uid: 26880
components:
- pos: 64.5,21.5
parent: 2
type: Transform
- - uid: 26814
+ - uid: 26881
components:
- rot: -1.5707963267948966 rad
pos: 64.5,20.5
parent: 2
type: Transform
- - uid: 26815
+ - uid: 26882
components:
- rot: -1.5707963267948966 rad
pos: 63.5,20.5
parent: 2
type: Transform
- - uid: 26816
+ - uid: 26883
components:
- rot: -1.5707963267948966 rad
pos: 63.5,19.5
parent: 2
type: Transform
- - uid: 26817
+ - uid: 26884
components:
- rot: -1.5707963267948966 rad
pos: 45.5,22.5
parent: 2
type: Transform
- - uid: 26818
+ - uid: 26885
components:
- rot: -1.5707963267948966 rad
pos: 44.5,22.5
parent: 2
type: Transform
- - uid: 26819
+ - uid: 26886
components:
- rot: -1.5707963267948966 rad
pos: 43.5,22.5
parent: 2
type: Transform
- - uid: 26820
+ - uid: 26887
components:
- rot: -1.5707963267948966 rad
pos: 41.5,22.5
parent: 2
type: Transform
- - uid: 26821
+ - uid: 26888
components:
- rot: 3.141592653589793 rad
pos: 31.5,33.5
parent: 2
type: Transform
- - uid: 26822
+ - uid: 26889
components:
- pos: 43.5,24.5
parent: 2
type: Transform
- - uid: 26823
+ - uid: 26890
components:
- pos: 43.5,25.5
parent: 2
type: Transform
- - uid: 26824
+ - uid: 26891
components:
- pos: 43.5,26.5
parent: 2
type: Transform
- - uid: 26825
+ - uid: 26892
components:
- pos: 43.5,27.5
parent: 2
type: Transform
- - uid: 26826
+ - uid: 26893
components:
- pos: 51.5,59.5
parent: 2
type: Transform
- - uid: 26827
+ - uid: 26894
components:
- pos: 50.5,59.5
parent: 2
type: Transform
- - uid: 26828
+ - uid: 26895
components:
- pos: 50.5,55.5
parent: 2
type: Transform
- - uid: 26829
+ - uid: 26896
components:
- pos: 51.5,55.5
parent: 2
type: Transform
- - uid: 26830
+ - uid: 26897
components:
- pos: 51.5,54.5
parent: 2
type: Transform
- - uid: 26831
+ - uid: 26898
components:
- pos: 57.5,54.5
parent: 2
type: Transform
- - uid: 26832
+ - uid: 26899
components:
- pos: 57.5,55.5
parent: 2
type: Transform
- - uid: 26833
+ - uid: 26900
components:
- pos: 57.5,59.5
parent: 2
type: Transform
- - uid: 26834
+ - uid: 26901
components:
- pos: 58.5,59.5
parent: 2
type: Transform
- - uid: 26835
+ - uid: 26902
components:
- pos: 58.5,55.5
parent: 2
type: Transform
- - uid: 26836
+ - uid: 26903
components:
- pos: 51.5,60.5
parent: 2
type: Transform
- - uid: 26837
+ - uid: 26904
components:
- pos: 52.5,60.5
parent: 2
type: Transform
- - uid: 26838
+ - uid: 26905
components:
- pos: 52.5,61.5
parent: 2
type: Transform
- - uid: 26839
+ - uid: 26906
components:
- pos: 56.5,61.5
parent: 2
type: Transform
- - uid: 26840
+ - uid: 26907
components:
- pos: 56.5,60.5
parent: 2
type: Transform
- - uid: 26841
+ - uid: 26908
components:
- pos: 65.5,27.5
parent: 2
type: Transform
- - uid: 26842
+ - uid: 26909
components:
- rot: -1.5707963267948966 rad
pos: 64.5,13.5
parent: 2
type: Transform
- - uid: 26843
+ - uid: 26910
components:
- rot: -1.5707963267948966 rad
pos: 64.5,12.5
parent: 2
type: Transform
- - uid: 26844
+ - uid: 26911
components:
- rot: -1.5707963267948966 rad
pos: 64.5,11.5
parent: 2
type: Transform
- - uid: 26845
+ - uid: 26912
components:
- rot: -1.5707963267948966 rad
pos: 64.5,10.5
parent: 2
type: Transform
- - uid: 26846
+ - uid: 26913
components:
- rot: -1.5707963267948966 rad
pos: 64.5,8.5
parent: 2
type: Transform
- - uid: 26847
+ - uid: 26914
components:
- rot: -1.5707963267948966 rad
pos: 64.5,9.5
parent: 2
type: Transform
- - uid: 26848
+ - uid: 26915
components:
- rot: -1.5707963267948966 rad
pos: 64.5,7.5
parent: 2
type: Transform
- - uid: 26849
+ - uid: 26916
components:
- rot: -1.5707963267948966 rad
pos: 64.5,6.5
parent: 2
type: Transform
- - uid: 26850
+ - uid: 26917
components:
- pos: 66.5,27.5
parent: 2
type: Transform
- - uid: 26851
+ - uid: 26918
components:
- pos: 66.5,27.5
parent: 2
type: Transform
- - uid: 26852
+ - uid: 26919
components:
- pos: 66.5,26.5
parent: 2
type: Transform
- - uid: 26853
+ - uid: 26920
components:
- pos: 66.5,24.5
parent: 2
type: Transform
- - uid: 26854
+ - uid: 26921
components:
- pos: 66.5,22.5
parent: 2
type: Transform
- - uid: 26855
+ - uid: 26922
components:
- pos: 66.5,21.5
parent: 2
type: Transform
- - uid: 26856
+ - uid: 26923
components:
- pos: 66.5,20.5
parent: 2
type: Transform
- - uid: 26857
+ - uid: 26924
components:
- pos: 66.5,19.5
parent: 2
type: Transform
- - uid: 26858
+ - uid: 26925
components:
- pos: 66.5,18.5
parent: 2
type: Transform
- - uid: 26859
+ - uid: 26926
components:
- pos: 65.5,18.5
parent: 2
type: Transform
- - uid: 26860
+ - uid: 26927
components:
- pos: 65.5,17.5
parent: 2
type: Transform
- - uid: 26861
+ - uid: 26928
components:
- pos: 65.5,16.5
parent: 2
type: Transform
- - uid: 26862
+ - uid: 26929
components:
- pos: 66.5,16.5
parent: 2
type: Transform
- - uid: 26863
+ - uid: 26930
components:
- pos: 66.5,15.5
parent: 2
type: Transform
- - uid: 26864
+ - uid: 26931
components:
- pos: 66.5,14.5
parent: 2
type: Transform
- - uid: 26865
+ - uid: 26932
components:
- pos: 66.5,13.5
parent: 2
type: Transform
- - uid: 26866
+ - uid: 26933
components:
- pos: 67.5,5.5
parent: 2
type: Transform
- - uid: 26867
+ - uid: 26934
components:
- pos: 68.5,9.5
parent: 2
type: Transform
- - uid: 26868
+ - uid: 26935
components:
- pos: 67.5,13.5
parent: 2
type: Transform
- - uid: 26869
+ - uid: 26936
components:
- pos: 67.5,12.5
parent: 2
type: Transform
- - uid: 26870
+ - uid: 26937
components:
- pos: 67.5,6.5
parent: 2
type: Transform
- - uid: 26871
+ - uid: 26938
components:
- pos: 43.5,8.5
parent: 2
type: Transform
- - uid: 26872
+ - uid: 26939
components:
- pos: 48.5,4.5
parent: 2
type: Transform
- - uid: 26873
+ - uid: 26940
components:
- pos: 48.5,5.5
parent: 2
type: Transform
- - uid: 26874
+ - uid: 26941
components:
- pos: 49.5,3.5
parent: 2
type: Transform
- - uid: 26875
+ - uid: 26942
components:
- pos: 50.5,3.5
parent: 2
type: Transform
- - uid: 26876
+ - uid: 26943
components:
- pos: 50.5,4.5
parent: 2
type: Transform
- - uid: 26877
+ - uid: 26944
components:
- pos: 51.5,4.5
parent: 2
type: Transform
- - uid: 26878
+ - uid: 26945
components:
- pos: 52.5,4.5
parent: 2
type: Transform
- - uid: 26879
+ - uid: 26946
components:
- pos: 53.5,4.5
parent: 2
type: Transform
- - uid: 26880
+ - uid: 26947
components:
- pos: 54.5,4.5
parent: 2
type: Transform
- - uid: 26881
+ - uid: 26948
components:
- pos: 54.5,3.5
parent: 2
type: Transform
- - uid: 26882
+ - uid: 26949
components:
- pos: 55.5,3.5
parent: 2
type: Transform
- - uid: 26883
+ - uid: 26950
components:
- pos: 56.5,3.5
parent: 2
type: Transform
- - uid: 26884
+ - uid: 26951
components:
- pos: 57.5,3.5
parent: 2
type: Transform
- - uid: 26885
+ - uid: 26952
components:
- pos: 58.5,3.5
parent: 2
type: Transform
- - uid: 26886
+ - uid: 26953
components:
- pos: 64.5,5.5
parent: 2
type: Transform
- - uid: 26887
+ - uid: 26954
components:
- pos: 64.5,4.5
parent: 2
type: Transform
- - uid: 26888
+ - uid: 26955
components:
- pos: 64.5,3.5
parent: 2
type: Transform
- - uid: 26889
+ - uid: 26956
components:
- pos: 63.5,3.5
parent: 2
type: Transform
- - uid: 26890
+ - uid: 26957
components:
- pos: 62.5,3.5
parent: 2
type: Transform
- - uid: 26891
+ - uid: 26958
components:
- pos: 61.5,3.5
parent: 2
type: Transform
- - uid: 26892
+ - uid: 26959
components:
- pos: 60.5,3.5
parent: 2
type: Transform
- - uid: 26893
+ - uid: 26960
components:
- pos: 59.5,3.5
parent: 2
type: Transform
- - uid: 26894
+ - uid: 26961
components:
- rot: -1.5707963267948966 rad
pos: 59.5,46.5
parent: 2
type: Transform
- - uid: 26895
+ - uid: 26962
components:
- pos: 68.5,6.5
parent: 2
type: Transform
- - uid: 26896
+ - uid: 26963
components:
- pos: 47.5,-17.5
parent: 2
type: Transform
- - uid: 26897
+ - uid: 26964
components:
- pos: 44.5,13.5
parent: 2
type: Transform
- - uid: 26898
+ - uid: 26965
components:
- pos: 47.5,9.5
parent: 2
type: Transform
- - uid: 26899
+ - uid: 26966
components:
- pos: 44.5,3.5
parent: 2
type: Transform
- - uid: 26900
+ - uid: 26967
components:
- rot: 3.141592653589793 rad
pos: 39.5,10.5
parent: 2
type: Transform
- - uid: 26901
+ - uid: 26968
components:
- pos: 48.5,8.5
parent: 2
type: Transform
- - uid: 26902
+ - uid: 26969
components:
- pos: 33.5,19.5
parent: 2
type: Transform
- - uid: 26903
+ - uid: 26970
components:
- rot: -1.5707963267948966 rad
pos: 41.5,24.5
parent: 2
type: Transform
- - uid: 26904
+ - uid: 26971
components:
- rot: 3.141592653589793 rad
pos: 33.5,27.5
parent: 2
type: Transform
- - uid: 26905
+ - uid: 26972
components:
- rot: 3.141592653589793 rad
pos: 25.5,29.5
parent: 2
type: Transform
- - uid: 26906
+ - uid: 26973
components:
- pos: 42.5,22.5
parent: 2
type: Transform
- - uid: 26907
+ - uid: 26974
components:
- pos: 47.5,-16.5
parent: 2
type: Transform
- - uid: 26908
+ - uid: 26975
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-16.5
parent: 2
type: Transform
- - uid: 26909
+ - uid: 26976
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-16.5
parent: 2
type: Transform
- - uid: 26910
+ - uid: 26977
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-15.5
parent: 2
type: Transform
- - uid: 26911
+ - uid: 26978
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-15.5
parent: 2
type: Transform
- - uid: 26912
+ - uid: 26979
components:
- pos: 48.5,-15.5
parent: 2
type: Transform
- - uid: 26913
+ - uid: 26980
components:
- pos: 44.5,-17.5
parent: 2
type: Transform
- - uid: 26914
+ - uid: 26981
components:
- pos: 44.5,-16.5
parent: 2
type: Transform
- - uid: 26915
+ - uid: 26982
components:
- pos: 11.5,-18.5
parent: 2
type: Transform
- - uid: 26916
+ - uid: 26983
components:
- pos: 44.5,9.5
parent: 2
type: Transform
- - uid: 26917
+ - uid: 26984
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-12.5
parent: 2
type: Transform
- - uid: 26918
+ - uid: 26985
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-10.5
parent: 2
type: Transform
- - uid: 26919
+ - uid: 26986
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-14.5
parent: 2
type: Transform
- - uid: 26920
+ - uid: 26987
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-14.5
parent: 2
type: Transform
- - uid: 26921
+ - uid: 26988
components:
- pos: 48.5,-14.5
parent: 2
type: Transform
- - uid: 26922
+ - uid: 26989
components:
- pos: 48.5,-16.5
parent: 2
type: Transform
- - uid: 26923
+ - uid: 26990
components:
- pos: 43.5,-16.5
parent: 2
type: Transform
- - uid: 26924
+ - uid: 26991
components:
- pos: 49.5,-14.5
parent: 2
type: Transform
- - uid: 26925
+ - uid: 26992
components:
- pos: 50.5,-14.5
parent: 2
type: Transform
- - uid: 26926
+ - uid: 26993
components:
- pos: 51.5,-14.5
parent: 2
type: Transform
- - uid: 26927
+ - uid: 26994
components:
- rot: 3.141592653589793 rad
pos: 54.5,-15.5
parent: 2
type: Transform
- - uid: 26928
+ - uid: 26995
components:
- rot: 3.141592653589793 rad
pos: 60.5,-15.5
parent: 2
type: Transform
- - uid: 26929
+ - uid: 26996
components:
- rot: 3.141592653589793 rad
pos: 57.5,-15.5
parent: 2
type: Transform
- - uid: 26930
+ - uid: 26997
components:
- rot: 3.141592653589793 rad
pos: 53.5,-15.5
parent: 2
type: Transform
- - uid: 26931
+ - uid: 26998
components:
- rot: 3.141592653589793 rad
pos: 53.5,-16.5
parent: 2
type: Transform
- - uid: 26932
+ - uid: 26999
components:
- rot: 3.141592653589793 rad
pos: 51.5,-15.5
parent: 2
type: Transform
- - uid: 26933
+ - uid: 27000
components:
- pos: 63.5,-14.5
parent: 2
type: Transform
- - uid: 26934
+ - uid: 27001
components:
- pos: 64.5,-14.5
parent: 2
type: Transform
- - uid: 26935
+ - uid: 27002
components:
- pos: 65.5,-14.5
parent: 2
type: Transform
- - uid: 26936
+ - uid: 27003
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-4.5
parent: 2
type: Transform
- - uid: 26937
+ - uid: 27004
components:
- rot: 3.141592653589793 rad
pos: 66.5,-2.5
parent: 2
type: Transform
- - uid: 26938
+ - uid: 27005
components:
- pos: 68.5,-14.5
parent: 2
type: Transform
- - uid: 26939
+ - uid: 27006
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-2.5
parent: 2
type: Transform
- - uid: 26940
+ - uid: 27007
components:
- pos: 63.5,-15.5
parent: 2
type: Transform
- - uid: 26941
+ - uid: 27008
components:
- rot: 3.141592653589793 rad
pos: 51.5,-16.5
parent: 2
type: Transform
- - uid: 26942
+ - uid: 27009
components:
- pos: 63.5,-16.5
parent: 2
type: Transform
- - uid: 26943
+ - uid: 27010
components:
- pos: 63.5,-17.5
parent: 2
type: Transform
- - uid: 26944
+ - uid: 27011
components:
- pos: 63.5,-19.5
parent: 2
type: Transform
- - uid: 26945
+ - uid: 27012
components:
- pos: 63.5,-21.5
parent: 2
type: Transform
- - uid: 26946
+ - uid: 27013
components:
- pos: 63.5,-23.5
parent: 2
type: Transform
- - uid: 26947
+ - uid: 27014
components:
- pos: 63.5,-25.5
parent: 2
type: Transform
- - uid: 26948
+ - uid: 27015
components:
- pos: 63.5,-27.5
parent: 2
type: Transform
- - uid: 26949
+ - uid: 27016
components:
- pos: 64.5,-27.5
parent: 2
type: Transform
- - uid: 26950
+ - uid: 27017
components:
- pos: 69.5,-31.5
parent: 2
type: Transform
- - uid: 26951
+ - uid: 27018
components:
- pos: 61.5,-16.5
parent: 2
type: Transform
- - uid: 26952
+ - uid: 27019
components:
- pos: 61.5,-17.5
parent: 2
type: Transform
- - uid: 26953
+ - uid: 27020
components:
- pos: 61.5,-19.5
parent: 2
type: Transform
- - uid: 26954
+ - uid: 27021
components:
- pos: 61.5,-21.5
parent: 2
type: Transform
- - uid: 26955
+ - uid: 27022
components:
- pos: 61.5,-23.5
parent: 2
type: Transform
- - uid: 26956
+ - uid: 27023
components:
- pos: 61.5,-25.5
parent: 2
type: Transform
- - uid: 26957
+ - uid: 27024
components:
- pos: 69.5,-32.5
parent: 2
type: Transform
- - uid: 26958
+ - uid: 27025
components:
- pos: 60.5,-16.5
parent: 2
type: Transform
- - uid: 26959
+ - uid: 27026
components:
- pos: -2.5,-36.5
parent: 2
type: Transform
- - uid: 26960
+ - uid: 27027
components:
- pos: 43.5,-15.5
parent: 2
type: Transform
- - uid: 26961
+ - uid: 27028
components:
- pos: 42.5,-15.5
parent: 2
type: Transform
- - uid: 26962
+ - uid: 27029
components:
- pos: 68.5,-15.5
parent: 2
type: Transform
- - uid: 26963
+ - uid: 27030
components:
- rot: 1.5707963267948966 rad
pos: 69.5,-6.5
parent: 2
type: Transform
- - uid: 26964
+ - uid: 27031
components:
- rot: -1.5707963267948966 rad
pos: 57.5,37.5
parent: 2
type: Transform
- - uid: 26965
+ - uid: 27032
components:
- pos: 70.5,-30.5
parent: 2
type: Transform
- - uid: 26966
+ - uid: 27033
components:
- pos: 72.5,-39.5
parent: 2
type: Transform
- - uid: 26967
+ - uid: 27034
components:
- pos: 76.5,-32.5
parent: 2
type: Transform
- - uid: 26968
+ - uid: 27035
components:
- pos: 65.5,-37.5
parent: 2
type: Transform
- - uid: 26969
+ - uid: 27036
components:
- pos: 63.5,-40.5
parent: 2
type: Transform
- - uid: 26970
+ - uid: 27037
components:
- pos: 63.5,-38.5
parent: 2
type: Transform
- - uid: 26971
+ - uid: 27038
components:
- pos: 76.5,-31.5
parent: 2
type: Transform
- - uid: 26972
+ - uid: 27039
components:
- rot: -1.5707963267948966 rad
pos: 60.5,-25.5
parent: 2
type: Transform
- - uid: 26973
+ - uid: 27040
components:
- pos: 52.5,-48.5
parent: 2
type: Transform
- - uid: 26974
+ - uid: 27041
components:
- pos: 52.5,-47.5
parent: 2
type: Transform
- - uid: 26975
+ - uid: 27042
components:
- pos: 52.5,-46.5
parent: 2
type: Transform
- - uid: 26976
+ - uid: 27043
components:
- pos: 53.5,-46.5
parent: 2
type: Transform
- - uid: 26977
+ - uid: 27044
components:
- pos: 54.5,-46.5
parent: 2
type: Transform
- - uid: 26978
+ - uid: 27045
components:
- pos: 71.5,-66.5
parent: 2
type: Transform
- - uid: 26979
+ - uid: 27046
components:
- pos: 75.5,-31.5
parent: 2
type: Transform
- - uid: 26980
+ - uid: 27047
components:
- pos: 75.5,-30.5
parent: 2
type: Transform
- - uid: 26981
+ - uid: 27048
components:
- pos: 74.5,-30.5
parent: 2
type: Transform
- - uid: 26982
+ - uid: 27049
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-29.5
parent: 2
type: Transform
- - uid: 26983
+ - uid: 27050
components:
- pos: 64.5,-42.5
parent: 2
type: Transform
- - uid: 26984
+ - uid: 27051
components:
- pos: 55.5,-46.5
parent: 2
type: Transform
- - uid: 26985
+ - uid: 27052
components:
- pos: 57.5,-46.5
parent: 2
type: Transform
- - uid: 26986
+ - uid: 27053
components:
- pos: 58.5,-46.5
parent: 2
type: Transform
- - uid: 26987
+ - uid: 27054
components:
- pos: 58.5,-47.5
parent: 2
type: Transform
- - uid: 26988
+ - uid: 27055
components:
- pos: 58.5,-49.5
parent: 2
type: Transform
- - uid: 26989
+ - uid: 27056
components:
- pos: 59.5,-50.5
parent: 2
type: Transform
- - uid: 26990
+ - uid: 27057
components:
- pos: 60.5,-50.5
parent: 2
type: Transform
- - uid: 26991
+ - uid: 27058
components:
- pos: 64.5,-50.5
parent: 2
type: Transform
- - uid: 26992
+ - uid: 27059
components:
- pos: 65.5,-50.5
parent: 2
type: Transform
- - uid: 26993
+ - uid: 27060
components:
- pos: 63.5,-37.5
parent: 2
type: Transform
- - uid: 26994
+ - uid: 27061
components:
- pos: 7.5,-39.5
parent: 2
type: Transform
- - uid: 26995
+ - uid: 27062
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-64.5
parent: 2
type: Transform
- - uid: 26996
+ - uid: 27063
components:
- pos: 63.5,-39.5
parent: 2
type: Transform
- - uid: 26997
+ - uid: 27064
components:
- pos: 63.5,-41.5
parent: 2
type: Transform
- - uid: 26998
+ - uid: 27065
components:
- pos: 52.5,-49.5
parent: 2
type: Transform
- - uid: 26999
+ - uid: 27066
components:
- pos: 53.5,-49.5
parent: 2
type: Transform
- - uid: 27000
+ - uid: 27067
components:
- pos: 53.5,-50.5
parent: 2
type: Transform
- - uid: 27001
+ - uid: 27068
components:
- pos: 54.5,-50.5
parent: 2
type: Transform
- - uid: 27002
+ - uid: 27069
components:
- pos: 55.5,-54.5
parent: 2
type: Transform
- - uid: 27003
+ - uid: 27070
components:
- pos: 65.5,-53.5
parent: 2
type: Transform
- - uid: 27004
+ - uid: 27071
components:
- pos: 54.5,-54.5
parent: 2
type: Transform
- - uid: 27005
+ - uid: 27072
components:
- pos: 59.5,-53.5
parent: 2
type: Transform
- - uid: 27006
+ - uid: 27073
components:
- pos: 56.5,-54.5
parent: 2
type: Transform
- - uid: 27007
+ - uid: 27074
components:
- pos: 64.5,-56.5
parent: 2
type: Transform
- - uid: 27008
+ - uid: 27075
components:
- pos: 64.5,-55.5
parent: 2
type: Transform
- - uid: 27009
+ - uid: 27076
components:
- pos: 60.5,-56.5
parent: 2
type: Transform
- - uid: 27010
+ - uid: 27077
components:
- pos: 60.5,-55.5
parent: 2
type: Transform
- - uid: 27011
+ - uid: 27078
components:
- pos: 66.5,-50.5
parent: 2
type: Transform
- - uid: 27012
+ - uid: 27079
components:
- pos: 66.5,-53.5
parent: 2
type: Transform
- - uid: 27013
+ - uid: 27080
components:
- pos: 65.5,-55.5
parent: 2
type: Transform
- - uid: 27014
+ - uid: 27081
components:
- pos: 59.5,-55.5
parent: 2
type: Transform
- - uid: 27015
+ - uid: 27082
components:
- pos: 58.5,-53.5
parent: 2
type: Transform
- - uid: 27016
+ - uid: 27083
components:
- pos: 58.5,-50.5
parent: 2
type: Transform
- - uid: 27017
+ - uid: 27084
components:
- pos: 76.5,-42.5
parent: 2
type: Transform
- - uid: 27018
+ - uid: 27085
components:
- pos: 44.5,-65.5
parent: 2
type: Transform
- - uid: 27019
+ - uid: 27086
components:
- pos: 70.5,-31.5
parent: 2
type: Transform
- - uid: 27020
+ - uid: 27087
components:
- pos: 64.5,-30.5
parent: 2
type: Transform
- - uid: 27021
+ - uid: 27088
components:
- pos: 73.5,-39.5
parent: 2
type: Transform
- - uid: 27022
+ - uid: 27089
components:
- pos: 73.5,-42.5
parent: 2
type: Transform
- - uid: 27023
+ - uid: 27090
components:
- pos: 73.5,-41.5
parent: 2
type: Transform
- - uid: 27024
+ - uid: 27091
components:
- pos: 68.5,-50.5
parent: 2
type: Transform
- - uid: 27025
+ - uid: 27092
components:
- pos: 67.5,-50.5
parent: 2
type: Transform
- - uid: 27026
+ - uid: 27093
components:
- pos: 65.5,-27.5
parent: 2
type: Transform
- - uid: 27027
+ - uid: 27094
components:
- pos: 65.5,-30.5
parent: 2
type: Transform
- - uid: 27028
+ - uid: 27095
components:
- pos: 76.5,-39.5
parent: 2
type: Transform
- - uid: 27029
+ - uid: 27096
components:
- pos: 76.5,-38.5
parent: 2
type: Transform
- - uid: 27030
+ - uid: 27097
components:
- pos: 79.5,-32.5
parent: 2
type: Transform
- - uid: 27031
+ - uid: 27098
components:
- pos: 79.5,-38.5
parent: 2
type: Transform
- - uid: 27032
+ - uid: 27099
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-27.5
parent: 2
type: Transform
- - uid: 27033
+ - uid: 27100
components:
- pos: 76.5,-41.5
parent: 2
type: Transform
- - uid: 27034
+ - uid: 27101
components:
- pos: 76.5,-40.5
parent: 2
type: Transform
- - uid: 27035
+ - uid: 27102
components:
- pos: 24.5,-57.5
parent: 2
type: Transform
- - uid: 27036
+ - uid: 27103
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-80.5
parent: 2
type: Transform
- - uid: 27037
+ - uid: 27104
components:
- pos: -45.5,-38.5
parent: 2
type: Transform
- - uid: 27038
+ - uid: 27105
components:
- pos: 53.5,-54.5
parent: 2
type: Transform
- - uid: 27039
+ - uid: 27106
components:
- pos: 53.5,-55.5
parent: 2
type: Transform
- - uid: 27040
+ - uid: 27107
components:
- pos: 53.5,-56.5
parent: 2
type: Transform
- - uid: 27041
+ - uid: 27108
components:
- rot: 3.141592653589793 rad
pos: 52.5,-62.5
parent: 2
type: Transform
- - uid: 27042
+ - uid: 27109
components:
- rot: 3.141592653589793 rad
pos: 48.5,-62.5
parent: 2
type: Transform
- - uid: 27043
+ - uid: 27110
components:
- rot: 3.141592653589793 rad
pos: 47.5,-62.5
parent: 2
type: Transform
- - uid: 27044
+ - uid: 27111
components:
- pos: 34.5,-61.5
parent: 2
type: Transform
- - uid: 27045
+ - uid: 27112
components:
- pos: 35.5,-61.5
parent: 2
type: Transform
- - uid: 27046
+ - uid: 27113
components:
- pos: 36.5,-61.5
parent: 2
type: Transform
- - uid: 27047
+ - uid: 27114
components:
- pos: 37.5,-61.5
parent: 2
type: Transform
- - uid: 27048
+ - uid: 27115
components:
- pos: 37.5,-62.5
parent: 2
type: Transform
- - uid: 27049
+ - uid: 27116
components:
- pos: 37.5,-63.5
parent: 2
type: Transform
- - uid: 27050
+ - uid: 27117
components:
- pos: 37.5,-65.5
parent: 2
type: Transform
- - uid: 27051
+ - uid: 27118
components:
- pos: 37.5,-67.5
parent: 2
type: Transform
- - uid: 27052
+ - uid: 27119
components:
- pos: 37.5,-68.5
parent: 2
type: Transform
- - uid: 27053
+ - uid: 27120
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-66.5
parent: 2
type: Transform
- - uid: 27054
+ - uid: 27121
components:
- pos: 41.5,-67.5
parent: 2
type: Transform
- - uid: 27055
+ - uid: 27122
components:
- pos: 41.5,-68.5
parent: 2
type: Transform
- - uid: 27056
+ - uid: 27123
components:
- pos: -33.5,-14.5
parent: 2
type: Transform
- - uid: 27057
+ - uid: 27124
components:
- pos: -33.5,-18.5
parent: 2
type: Transform
- - uid: 27058
+ - uid: 27125
components:
- pos: -33.5,-19.5
parent: 2
type: Transform
- - uid: 27059
+ - uid: 27126
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-81.5
parent: 2
type: Transform
- - uid: 27060
+ - uid: 27127
components:
- rot: -1.5707963267948966 rad
pos: 57.5,41.5
parent: 2
type: Transform
- - uid: 27061
+ - uid: 27128
components:
- pos: -17.5,-47.5
parent: 2
type: Transform
- - uid: 27062
+ - uid: 27129
components:
- pos: -22.5,-44.5
parent: 2
type: Transform
- - uid: 27063
+ - uid: 27130
components:
- rot: 3.141592653589793 rad
pos: 24.5,26.5
parent: 2
type: Transform
- - uid: 27064
+ - uid: 27131
components:
- pos: 56.5,-56.5
parent: 2
type: Transform
- - uid: 27065
+ - uid: 27132
components:
- pos: 56.5,-57.5
parent: 2
type: Transform
- - uid: 27066
+ - uid: 27133
components:
- pos: 57.5,-57.5
parent: 2
type: Transform
- - uid: 27067
+ - uid: 27134
components:
- pos: 57.5,-58.5
parent: 2
type: Transform
- - uid: 27068
+ - uid: 27135
components:
- pos: 58.5,-58.5
parent: 2
type: Transform
- - uid: 27069
+ - uid: 27136
components:
- pos: 58.5,-61.5
parent: 2
type: Transform
- - uid: 27070
+ - uid: 27137
components:
- pos: 53.5,-62.5
parent: 2
type: Transform
- - uid: 27071
+ - uid: 27138
components:
- pos: 53.5,-25.5
parent: 2
type: Transform
- - uid: 27072
+ - uid: 27139
components:
- pos: 52.5,-26.5
parent: 2
type: Transform
- - uid: 27073
+ - uid: 27140
components:
- pos: -17.5,-49.5
parent: 2
type: Transform
- - uid: 27074
+ - uid: 27141
components:
- pos: -17.5,-48.5
parent: 2
type: Transform
- - uid: 27075
+ - uid: 27142
components:
- pos: -22.5,-45.5
parent: 2
type: Transform
- - uid: 27076
+ - uid: 27143
components:
- pos: -22.5,-46.5
parent: 2
type: Transform
- - uid: 27077
+ - uid: 27144
components:
- pos: -22.5,-47.5
parent: 2
type: Transform
- - uid: 27078
+ - uid: 27145
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-88.5
parent: 2
type: Transform
- - uid: 27079
+ - uid: 27146
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-74.5
parent: 2
type: Transform
- - uid: 27080
+ - uid: 27147
components:
- rot: -1.5707963267948966 rad
pos: 36.5,-75.5
parent: 2
type: Transform
- - uid: 27081
+ - uid: 27148
components:
- pos: 42.5,-74.5
parent: 2
type: Transform
- - uid: 27082
+ - uid: 27149
components:
- rot: 3.141592653589793 rad
pos: 45.5,-74.5
parent: 2
type: Transform
- - uid: 27083
+ - uid: 27150
components:
- rot: 3.141592653589793 rad
pos: 46.5,-74.5
parent: 2
type: Transform
- - uid: 27084
+ - uid: 27151
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-90.5
parent: 2
type: Transform
- - uid: 27085
+ - uid: 27152
components:
- rot: 3.141592653589793 rad
pos: 46.5,-70.5
parent: 2
type: Transform
- - uid: 27086
+ - uid: 27153
components:
- pos: 33.5,-70.5
parent: 2
type: Transform
- - uid: 27087
+ - uid: 27154
components:
- pos: 32.5,-70.5
parent: 2
type: Transform
- - uid: 27088
+ - uid: 27155
components:
- pos: 12.5,-70.5
parent: 2
type: Transform
- - uid: 27089
+ - uid: 27156
components:
- pos: 45.5,-70.5
parent: 2
type: Transform
- - uid: 27090
+ - uid: 27157
components:
- pos: 41.5,-69.5
parent: 2
type: Transform
- - uid: 27091
+ - uid: 27158
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-65.5
parent: 2
type: Transform
- - uid: 27092
+ - uid: 27159
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-65.5
parent: 2
type: Transform
- - uid: 27093
+ - uid: 27160
components:
- pos: 45.5,-69.5
parent: 2
type: Transform
- - uid: 27094
+ - uid: 27161
components:
- pos: 37.5,-69.5
parent: 2
type: Transform
- - uid: 27095
+ - uid: 27162
components:
- pos: 33.5,-69.5
parent: 2
type: Transform
- - uid: 27096
+ - uid: 27163
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-75.5
parent: 2
type: Transform
- - uid: 27097
+ - uid: 27164
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-94.5
parent: 2
type: Transform
- - uid: 27098
+ - uid: 27165
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-75.5
parent: 2
type: Transform
- - uid: 27099
+ - uid: 27166
components:
- pos: 7.5,-77.5
parent: 2
type: Transform
- - uid: 27100
+ - uid: 27167
components:
- rot: 3.141592653589793 rad
pos: 20.5,-84.5
parent: 2
type: Transform
- - uid: 27101
+ - uid: 27168
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-93.5
parent: 2
type: Transform
- - uid: 27102
+ - uid: 27169
components:
- rot: 3.141592653589793 rad
pos: 10.5,-86.5
parent: 2
type: Transform
- - uid: 27103
+ - uid: 27170
components:
- rot: 3.141592653589793 rad
pos: 11.5,-87.5
parent: 2
type: Transform
- - uid: 27104
+ - uid: 27171
components:
- rot: 3.141592653589793 rad
pos: 12.5,-87.5
parent: 2
type: Transform
- - uid: 27105
+ - uid: 27172
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-85.5
parent: 2
type: Transform
- - uid: 27106
+ - uid: 27173
components:
- rot: 3.141592653589793 rad
pos: 21.5,-82.5
parent: 2
type: Transform
- - uid: 27107
+ - uid: 27174
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-76.5
parent: 2
type: Transform
- - uid: 27108
+ - uid: 27175
components:
- rot: 3.141592653589793 rad
pos: 20.5,-82.5
parent: 2
type: Transform
- - uid: 27109
+ - uid: 27176
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-83.5
parent: 2
type: Transform
- - uid: 27110
+ - uid: 27177
components:
- rot: 3.141592653589793 rad
pos: 15.5,-78.5
parent: 2
type: Transform
- - uid: 27111
+ - uid: 27178
components:
- rot: 3.141592653589793 rad
pos: 18.5,-87.5
parent: 2
type: Transform
- - uid: 27112
+ - uid: 27179
components:
- rot: 3.141592653589793 rad
pos: 19.5,-87.5
parent: 2
type: Transform
- - uid: 27113
+ - uid: 27180
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-87.5
parent: 2
type: Transform
- - uid: 27114
+ - uid: 27181
components:
- rot: 3.141592653589793 rad
pos: 19.5,-86.5
parent: 2
type: Transform
- - uid: 27115
+ - uid: 27182
components:
- rot: 3.141592653589793 rad
pos: 20.5,-86.5
parent: 2
type: Transform
- - uid: 27116
+ - uid: 27183
components:
- rot: 3.141592653589793 rad
pos: 20.5,-85.5
parent: 2
type: Transform
- - uid: 27117
+ - uid: 27184
components:
- rot: 3.141592653589793 rad
pos: 22.5,-84.5
parent: 2
type: Transform
- - uid: 27118
+ - uid: 27185
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-75.5
parent: 2
type: Transform
- - uid: 27119
+ - uid: 27186
components:
- rot: 3.141592653589793 rad
pos: 20.5,-81.5
parent: 2
type: Transform
- - uid: 27120
+ - uid: 27187
components:
- rot: 3.141592653589793 rad
pos: 19.5,-80.5
parent: 2
type: Transform
- - uid: 27121
+ - uid: 27188
components:
- pos: 7.5,-75.5
parent: 2
type: Transform
- - uid: 27122
+ - uid: 27189
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-93.5
parent: 2
type: Transform
- - uid: 27123
+ - uid: 27190
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-95.5
parent: 2
type: Transform
- - uid: 27124
+ - uid: 27191
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-95.5
parent: 2
type: Transform
- - uid: 27125
+ - uid: 27192
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-94.5
parent: 2
type: Transform
- - uid: 27126
+ - uid: 27193
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-80.5
parent: 2
type: Transform
- - uid: 27127
+ - uid: 27194
components:
- pos: 8.5,-77.5
parent: 2
type: Transform
- - uid: 27128
+ - uid: 27195
components:
- rot: 3.141592653589793 rad
pos: 19.5,-79.5
parent: 2
type: Transform
- - uid: 27129
+ - uid: 27196
components:
- rot: 3.141592653589793 rad
pos: 18.5,-79.5
parent: 2
type: Transform
- - uid: 27130
+ - uid: 27197
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-88.5
parent: 2
type: Transform
- - uid: 27131
+ - uid: 27198
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-74.5
parent: 2
type: Transform
- - uid: 27132
+ - uid: 27199
components:
- pos: 12.5,-71.5
parent: 2
type: Transform
- - uid: 27133
+ - uid: 27200
components:
- pos: 9.5,-72.5
parent: 2
type: Transform
- - uid: 27134
+ - uid: 27201
components:
- pos: 9.5,-73.5
parent: 2
type: Transform
- - uid: 27135
+ - uid: 27202
components:
- pos: 9.5,-74.5
parent: 2
type: Transform
- - uid: 27136
+ - uid: 27203
components:
- pos: 10.5,-74.5
parent: 2
type: Transform
- - uid: 27137
+ - uid: 27204
components:
- pos: 11.5,-74.5
parent: 2
type: Transform
- - uid: 27138
+ - uid: 27205
components:
- pos: 12.5,-74.5
parent: 2
type: Transform
- - uid: 27139
+ - uid: 27206
components:
- pos: 13.5,-74.5
parent: 2
type: Transform
- - uid: 27140
+ - uid: 27207
components:
- pos: 16.5,-74.5
parent: 2
type: Transform
- - uid: 27141
+ - uid: 27208
components:
- pos: 19.5,-74.5
parent: 2
type: Transform
- - uid: 27142
+ - uid: 27209
components:
- pos: 21.5,-74.5
parent: 2
type: Transform
- - uid: 27143
+ - uid: 27210
components:
- pos: 21.5,-72.5
parent: 2
type: Transform
- - uid: 27144
+ - uid: 27211
components:
- pos: 20.5,-72.5
parent: 2
type: Transform
- - uid: 27145
+ - uid: 27212
components:
- pos: 19.5,-72.5
parent: 2
type: Transform
- - uid: 27146
+ - uid: 27213
components:
- pos: 31.5,-70.5
parent: 2
type: Transform
- - uid: 27147
+ - uid: 27214
components:
- pos: 42.5,-75.5
parent: 2
type: Transform
- - uid: 27148
+ - uid: 27215
components:
- pos: 44.5,-75.5
parent: 2
type: Transform
- - uid: 27149
+ - uid: 27216
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-87.5
parent: 2
type: Transform
- - uid: 27150
+ - uid: 27217
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-83.5
parent: 2
type: Transform
- - uid: 27151
+ - uid: 27218
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-81.5
parent: 2
type: Transform
- - uid: 27152
+ - uid: 27219
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-87.5
parent: 2
type: Transform
- - uid: 27153
+ - uid: 27220
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-75.5
parent: 2
type: Transform
- - uid: 27154
+ - uid: 27221
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-83.5
parent: 2
type: Transform
- - uid: 27155
+ - uid: 27222
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-79.5
parent: 2
type: Transform
- - uid: 27156
+ - uid: 27223
components:
- pos: 16.5,-71.5
parent: 2
type: Transform
- - uid: 27157
+ - uid: 27224
components:
- pos: 29.5,-69.5
parent: 2
type: Transform
- - uid: 27158
+ - uid: 27225
components:
- pos: 29.5,-70.5
parent: 2
type: Transform
- - uid: 27159
+ - uid: 27226
components:
- pos: 28.5,-68.5
parent: 2
type: Transform
- - uid: 27160
+ - uid: 27227
components:
- pos: 30.5,-70.5
parent: 2
type: Transform
- - uid: 27161
+ - uid: 27228
components:
- pos: 20.5,-74.5
parent: 2
type: Transform
- - uid: 27162
+ - uid: 27229
components:
- pos: 19.5,-71.5
parent: 2
type: Transform
- - uid: 27163
+ - uid: 27230
components:
- pos: 22.5,-70.5
parent: 2
type: Transform
- - uid: 27164
+ - uid: 27231
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-93.5
parent: 2
type: Transform
- - uid: 27165
+ - uid: 27232
components:
- pos: 23.5,-82.5
parent: 2
type: Transform
- - uid: 27166
+ - uid: 27233
components:
- rot: 3.141592653589793 rad
pos: 22.5,-82.5
parent: 2
type: Transform
- - uid: 27167
+ - uid: 27234
components:
- pos: 23.5,-84.5
parent: 2
type: Transform
- - uid: 27168
+ - uid: 27235
components:
- pos: 21.5,-70.5
parent: 2
type: Transform
- - uid: 27169
+ - uid: 27236
components:
- pos: 22.5,-74.5
parent: 2
type: Transform
- - uid: 27170
+ - uid: 27237
components:
- pos: 23.5,-74.5
parent: 2
type: Transform
- - uid: 27171
+ - uid: 27238
components:
- pos: 23.5,-75.5
parent: 2
type: Transform
- - uid: 27172
+ - uid: 27239
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-78.5
parent: 2
type: Transform
- - uid: 27173
+ - uid: 27240
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-86.5
parent: 2
type: Transform
- - uid: 27174
+ - uid: 27241
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-88.5
parent: 2
type: Transform
- - uid: 27175
+ - uid: 27242
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-86.5
parent: 2
type: Transform
- - uid: 27176
+ - uid: 27243
components:
- rot: 3.141592653589793 rad
pos: 11.5,-80.5
parent: 2
type: Transform
- - uid: 27177
+ - uid: 27244
components:
- rot: 3.141592653589793 rad
pos: 11.5,-86.5
parent: 2
type: Transform
- - uid: 27178
+ - uid: 27245
components:
- pos: 7.5,-73.5
parent: 2
type: Transform
- - uid: 27179
+ - uid: 27246
components:
- rot: 3.141592653589793 rad
pos: 21.5,-84.5
parent: 2
type: Transform
- - uid: 27180
+ - uid: 27247
components:
- rot: 3.141592653589793 rad
pos: 15.5,-88.5
parent: 2
type: Transform
- - uid: 27181
+ - uid: 27248
components:
- rot: 3.141592653589793 rad
pos: 20.5,-80.5
parent: 2
type: Transform
- - uid: 27182
+ - uid: 27249
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-76.5
parent: 2
type: Transform
- - uid: 27183
+ - uid: 27250
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-90.5
parent: 2
type: Transform
- - uid: 27184
+ - uid: 27251
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-88.5
parent: 2
type: Transform
- - uid: 27185
+ - uid: 27252
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-66.5
parent: 2
type: Transform
- - uid: 27186
+ - uid: 27253
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-90.5
parent: 2
type: Transform
- - uid: 27187
+ - uid: 27254
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-81.5
parent: 2
type: Transform
- - uid: 27188
+ - uid: 27255
components:
- pos: 21.5,-71.5
parent: 2
type: Transform
- - uid: 27189
+ - uid: 27256
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-63.5
parent: 2
type: Transform
- - uid: 27190
+ - uid: 27257
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-70.5
parent: 2
type: Transform
- - uid: 27191
+ - uid: 27258
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-85.5
parent: 2
type: Transform
- - uid: 27192
+ - uid: 27259
components:
- pos: 23.5,-68.5
parent: 2
type: Transform
- - uid: 27193
+ - uid: 27260
components:
- pos: -34.5,-14.5
parent: 2
type: Transform
- - uid: 27194
+ - uid: 27261
components:
- pos: -35.5,-14.5
parent: 2
type: Transform
- - uid: 27195
+ - uid: 27262
components:
- pos: -38.5,-14.5
parent: 2
type: Transform
- - uid: 27196
+ - uid: 27263
components:
- pos: -39.5,-14.5
parent: 2
type: Transform
- - uid: 27197
+ - uid: 27264
components:
- pos: -40.5,-14.5
parent: 2
type: Transform
- - uid: 27198
+ - uid: 27265
components:
- pos: -17.5,-46.5
parent: 2
type: Transform
- - uid: 27199
+ - uid: 27266
components:
- pos: -17.5,-45.5
parent: 2
type: Transform
- - uid: 27200
+ - uid: 27267
components:
- pos: -17.5,-44.5
parent: 2
type: Transform
- - uid: 27201
+ - uid: 27268
components:
- pos: -18.5,-44.5
parent: 2
type: Transform
- - uid: 27202
+ - uid: 27269
components:
- pos: -20.5,-44.5
parent: 2
type: Transform
- - uid: 27203
+ - uid: 27270
components:
- pos: -21.5,-44.5
parent: 2
type: Transform
- - uid: 27204
+ - uid: 27271
components:
- pos: -38.5,-19.5
parent: 2
type: Transform
- - uid: 27205
+ - uid: 27272
components:
- pos: -38.5,-18.5
parent: 2
type: Transform
- - uid: 27206
+ - uid: 27273
components:
- pos: -38.5,-17.5
parent: 2
type: Transform
- - uid: 27207
+ - uid: 27274
components:
- pos: -38.5,-16.5
parent: 2
type: Transform
- - uid: 27208
+ - uid: 27275
components:
- pos: -38.5,-15.5
parent: 2
type: Transform
- - uid: 27209
+ - uid: 27276
components:
- pos: 77.5,-49.5
parent: 2
type: Transform
- - uid: 27210
+ - uid: 27277
components:
- pos: 73.5,-50.5
parent: 2
type: Transform
- - uid: 27211
+ - uid: 27278
components:
- pos: 73.5,-52.5
parent: 2
type: Transform
- - uid: 27212
+ - uid: 27279
components:
- pos: 73.5,-54.5
parent: 2
type: Transform
- - uid: 27213
+ - uid: 27280
components:
- pos: 72.5,-54.5
parent: 2
type: Transform
- - uid: 27214
+ - uid: 27281
components:
- pos: 69.5,-54.5
parent: 2
type: Transform
- - uid: 27215
+ - uid: 27282
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-55.5
parent: 2
type: Transform
- - uid: 27216
+ - uid: 27283
components:
- rot: 3.141592653589793 rad
pos: -40.5,-21.5
parent: 2
type: Transform
- - uid: 27217
+ - uid: 27284
components:
- rot: 3.141592653589793 rad
pos: -40.5,-22.5
parent: 2
type: Transform
- - uid: 27218
+ - uid: 27285
components:
- pos: -44.5,-24.5
parent: 2
type: Transform
- - uid: 27219
+ - uid: 27286
components:
- pos: -42.5,-14.5
parent: 2
type: Transform
- - uid: 27220
+ - uid: 27287
components:
- pos: -43.5,-14.5
parent: 2
type: Transform
- - uid: 27221
+ - uid: 27288
components:
- pos: -43.5,-12.5
parent: 2
type: Transform
- - uid: 27222
+ - uid: 27289
components:
- pos: -43.5,-9.5
parent: 2
type: Transform
- - uid: 27223
+ - uid: 27290
components:
- pos: -43.5,-8.5
parent: 2
type: Transform
- - uid: 27224
+ - uid: 27291
components:
- pos: -43.5,-7.5
parent: 2
type: Transform
- - uid: 27225
+ - uid: 27292
components:
- pos: -43.5,-19.5
parent: 2
type: Transform
- - uid: 27226
+ - uid: 27293
components:
- pos: -42.5,-19.5
parent: 2
type: Transform
- - uid: 27227
+ - uid: 27294
components:
- pos: -40.5,-19.5
parent: 2
type: Transform
- - uid: 27228
+ - uid: 27295
components:
- pos: -39.5,-19.5
parent: 2
type: Transform
- - uid: 27229
+ - uid: 27296
components:
- pos: -43.5,-15.5
parent: 2
type: Transform
- - uid: 27230
+ - uid: 27297
components:
- pos: -43.5,-16.5
parent: 2
type: Transform
- - uid: 27231
+ - uid: 27298
components:
- pos: -43.5,-17.5
parent: 2
type: Transform
- - uid: 27232
+ - uid: 27299
components:
- pos: -43.5,-18.5
parent: 2
type: Transform
- - uid: 27233
+ - uid: 27300
components:
- pos: 59.5,-61.5
parent: 2
type: Transform
- - uid: 27234
+ - uid: 27301
components:
- pos: 67.5,-58.5
parent: 2
type: Transform
- - uid: 27235
+ - uid: 27302
components:
- rot: -1.5707963267948966 rad
pos: 67.5,-60.5
parent: 2
type: Transform
- - uid: 27236
+ - uid: 27303
components:
- pos: 68.5,-58.5
parent: 2
type: Transform
- - uid: 27237
+ - uid: 27304
components:
- pos: 65.5,-61.5
parent: 2
type: Transform
- - uid: 27238
+ - uid: 27305
components:
- pos: 60.5,-61.5
parent: 2
type: Transform
- - uid: 27239
+ - uid: 27306
components:
- pos: 65.5,-60.5
parent: 2
type: Transform
- - uid: 27240
+ - uid: 27307
components:
- pos: 67.5,-59.5
parent: 2
type: Transform
- - uid: 27241
+ - uid: 27308
components:
- pos: 52.5,-29.5
parent: 2
type: Transform
- - uid: 27242
+ - uid: 27309
components:
- pos: 52.5,-28.5
parent: 2
type: Transform
- - uid: 27243
+ - uid: 27310
components:
- pos: 52.5,-27.5
parent: 2
type: Transform
- - uid: 27244
+ - uid: 27311
components:
- pos: 52.5,-30.5
parent: 2
type: Transform
- - uid: 27245
+ - uid: 27312
components:
- pos: 52.5,-31.5
parent: 2
type: Transform
- - uid: 27246
+ - uid: 27313
components:
- pos: 43.5,-32.5
parent: 2
type: Transform
- - uid: 27247
+ - uid: 27314
components:
- pos: 58.5,-68.5
parent: 2
type: Transform
- - uid: 27248
+ - uid: 27315
components:
- pos: 49.5,-32.5
parent: 2
type: Transform
- - uid: 27249
+ - uid: 27316
components:
- pos: 48.5,-32.5
parent: 2
type: Transform
- - uid: 27250
+ - uid: 27317
components:
- pos: 46.5,-32.5
parent: 2
type: Transform
- - uid: 27251
+ - uid: 27318
components:
- pos: 57.5,-68.5
parent: 2
type: Transform
- - uid: 27252
+ - uid: 27319
components:
- pos: 45.5,-32.5
parent: 2
type: Transform
- - uid: 27253
+ - uid: 27320
components:
- pos: 69.5,-67.5
parent: 2
type: Transform
- - uid: 27254
+ - uid: 27321
components:
- pos: 70.5,-67.5
parent: 2
type: Transform
- - uid: 27255
+ - uid: 27322
components:
- pos: 71.5,-67.5
parent: 2
type: Transform
- - uid: 27256
+ - uid: 27323
components:
- pos: 71.5,-63.5
parent: 2
type: Transform
- - uid: 27257
+ - uid: 27324
components:
- pos: 72.5,-63.5
parent: 2
type: Transform
- - uid: 27258
+ - uid: 27325
components:
- pos: 72.5,-60.5
parent: 2
type: Transform
- - uid: 27259
+ - uid: 27326
components:
- pos: 73.5,-60.5
parent: 2
type: Transform
- - uid: 27260
+ - uid: 27327
components:
- pos: 72.5,-61.5
parent: 2
type: Transform
- - uid: 27261
+ - uid: 27328
components:
- pos: 72.5,-62.5
parent: 2
type: Transform
- - uid: 27262
+ - uid: 27329
components:
- pos: 73.5,-59.5
parent: 2
type: Transform
- - uid: 27263
+ - uid: 27330
components:
- pos: 73.5,-58.5
parent: 2
type: Transform
- - uid: 27264
+ - uid: 27331
components:
- pos: 74.5,-58.5
parent: 2
type: Transform
- - uid: 27265
+ - uid: 27332
components:
- pos: 75.5,-58.5
parent: 2
type: Transform
- - uid: 27266
+ - uid: 27333
components:
- pos: 10.5,-38.5
parent: 2
type: Transform
- - uid: 27267
+ - uid: 27334
components:
- pos: -43.5,-23.5
parent: 2
type: Transform
- - uid: 27268
+ - uid: 27335
components:
- rot: 3.141592653589793 rad
pos: -59.5,-28.5
parent: 2
type: Transform
- - uid: 27269
+ - uid: 27336
components:
- pos: -43.5,-24.5
parent: 2
type: Transform
- - uid: 27270
+ - uid: 27337
components:
- rot: 3.141592653589793 rad
pos: -40.5,-20.5
parent: 2
type: Transform
- - uid: 27271
+ - uid: 27338
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-38.5
parent: 2
type: Transform
- - uid: 27272
+ - uid: 27339
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-37.5
parent: 2
type: Transform
- - uid: 27273
+ - uid: 27340
components:
- pos: 28.5,-69.5
parent: 2
type: Transform
- - uid: 27274
+ - uid: 27341
components:
- pos: 22.5,-69.5
parent: 2
type: Transform
- - uid: 27275
+ - uid: 27342
components:
- pos: 23.5,-69.5
parent: 2
type: Transform
- - uid: 27276
+ - uid: 27343
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-39.5
parent: 2
type: Transform
- - uid: 27277
+ - uid: 27344
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-38.5
parent: 2
type: Transform
- - uid: 27278
+ - uid: 27345
components:
- pos: -41.5,-36.5
parent: 2
type: Transform
- - uid: 27279
+ - uid: 27346
components:
- pos: -41.5,-37.5
parent: 2
type: Transform
- - uid: 27280
+ - uid: 27347
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-37.5
parent: 2
type: Transform
- - uid: 27281
+ - uid: 27348
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-37.5
parent: 2
type: Transform
- - uid: 27282
+ - uid: 27349
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-37.5
parent: 2
type: Transform
- - uid: 27283
+ - uid: 27350
components:
- rot: -1.5707963267948966 rad
pos: -33.5,-42.5
parent: 2
type: Transform
- - uid: 27284
+ - uid: 27351
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-42.5
parent: 2
type: Transform
- - uid: 27285
+ - uid: 27352
components:
- pos: -44.5,-7.5
parent: 2
type: Transform
- - uid: 27286
+ - uid: 27353
components:
- pos: -45.5,-7.5
parent: 2
type: Transform
- - uid: 27287
+ - uid: 27354
components:
- pos: -47.5,-7.5
parent: 2
type: Transform
- - uid: 27288
+ - uid: 27355
components:
- pos: -48.5,-7.5
parent: 2
type: Transform
- - uid: 27289
+ - uid: 27356
components:
- pos: -49.5,-10.5
parent: 2
type: Transform
- - uid: 27290
+ - uid: 27357
components:
- pos: -49.5,-9.5
parent: 2
type: Transform
- - uid: 27291
+ - uid: 27358
components:
- pos: -49.5,-8.5
parent: 2
type: Transform
- - uid: 27292
+ - uid: 27359
components:
- pos: -49.5,-7.5
parent: 2
type: Transform
- - uid: 27293
+ - uid: 27360
components:
- pos: -49.5,-18.5
parent: 2
type: Transform
- - uid: 27294
+ - uid: 27361
components:
- pos: -48.5,-18.5
parent: 2
type: Transform
- - uid: 27295
+ - uid: 27362
components:
- pos: -47.5,-18.5
parent: 2
type: Transform
- - uid: 27296
+ - uid: 27363
components:
- pos: -46.5,-18.5
parent: 2
type: Transform
- - uid: 27297
+ - uid: 27364
components:
- pos: -49.5,-11.5
parent: 2
type: Transform
- - uid: 27298
+ - uid: 27365
components:
- pos: -50.5,-11.5
parent: 2
type: Transform
- - uid: 27299
+ - uid: 27366
components:
- pos: -51.5,-11.5
parent: 2
type: Transform
- - uid: 27300
+ - uid: 27367
components:
- pos: -51.5,-12.5
parent: 2
type: Transform
- - uid: 27301
+ - uid: 27368
components:
- pos: -51.5,-14.5
parent: 2
type: Transform
- - uid: 27302
+ - uid: 27369
components:
- pos: -51.5,-15.5
parent: 2
type: Transform
- - uid: 27303
+ - uid: 27370
components:
- pos: -50.5,-15.5
parent: 2
type: Transform
- - uid: 27304
+ - uid: 27371
components:
- pos: -49.5,-15.5
parent: 2
type: Transform
- - uid: 27305
+ - uid: 27372
components:
- pos: -49.5,-4.5
parent: 2
type: Transform
- - uid: 27306
+ - uid: 27373
components:
- pos: -50.5,-4.5
parent: 2
type: Transform
- - uid: 27307
+ - uid: 27374
components:
- pos: -51.5,-4.5
parent: 2
type: Transform
- - uid: 27308
+ - uid: 27375
components:
- pos: -52.5,-4.5
parent: 2
type: Transform
- - uid: 27309
+ - uid: 27376
components:
- pos: -53.5,-4.5
parent: 2
type: Transform
- - uid: 27310
+ - uid: 27377
components:
- pos: -54.5,-4.5
parent: 2
type: Transform
- - uid: 27311
+ - uid: 27378
components:
- pos: -55.5,-4.5
parent: 2
type: Transform
- - uid: 27312
+ - uid: 27379
components:
- pos: -55.5,-5.5
parent: 2
type: Transform
- - uid: 27313
+ - uid: 27380
components:
- pos: -56.5,-5.5
parent: 2
type: Transform
- - uid: 27314
+ - uid: 27381
components:
- pos: -56.5,-6.5
parent: 2
type: Transform
- - uid: 27315
+ - uid: 27382
components:
- pos: -56.5,-7.5
parent: 2
type: Transform
- - uid: 27316
+ - uid: 27383
components:
- pos: -56.5,-8.5
parent: 2
type: Transform
- - uid: 27317
+ - uid: 27384
components:
- pos: -56.5,-9.5
parent: 2
type: Transform
- - uid: 27318
+ - uid: 27385
components:
- pos: -56.5,-10.5
parent: 2
type: Transform
- - uid: 27319
+ - uid: 27386
components:
- pos: -56.5,-16.5
parent: 2
type: Transform
- - uid: 27320
+ - uid: 27387
components:
- pos: -56.5,-17.5
parent: 2
type: Transform
- - uid: 27321
+ - uid: 27388
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-17.5
parent: 2
type: Transform
- - uid: 27322
+ - uid: 27389
components:
- pos: -56.5,-19.5
parent: 2
type: Transform
- - uid: 27323
+ - uid: 27390
components:
- pos: -56.5,-19.5
parent: 2
type: Transform
- - uid: 27324
+ - uid: 27391
components:
- pos: -52.5,-21.5
parent: 2
type: Transform
- - uid: 27325
+ - uid: 27392
components:
- pos: -50.5,-21.5
parent: 2
type: Transform
- - uid: 27326
+ - uid: 27393
components:
- pos: -49.5,-21.5
parent: 2
type: Transform
- - uid: 27327
+ - uid: 27394
components:
- pos: -44.5,-18.5
parent: 2
type: Transform
- - uid: 27328
+ - uid: 27395
components:
- pos: -44.5,-18.5
parent: 2
type: Transform
- - uid: 27329
+ - uid: 27396
components:
- pos: 55.5,-50.5
parent: 2
type: Transform
- - uid: 27330
+ - uid: 27397
components:
- pos: -49.5,-22.5
parent: 2
type: Transform
- - uid: 27331
+ - uid: 27398
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-24.5
parent: 2
type: Transform
- - uid: 27332
+ - uid: 27399
components:
- pos: 56.5,-50.5
parent: 2
type: Transform
- - uid: 27333
+ - uid: 27400
components:
- pos: -52.5,-26.5
parent: 2
type: Transform
- - uid: 27334
+ - uid: 27401
components:
- pos: -49.5,-20.5
parent: 2
type: Transform
- - uid: 27335
+ - uid: 27402
components:
- rot: 3.141592653589793 rad
pos: -58.5,-22.5
parent: 2
type: Transform
- - uid: 27336
+ - uid: 27403
components:
- rot: 3.141592653589793 rad
pos: -59.5,-22.5
parent: 2
type: Transform
- - uid: 27337
+ - uid: 27404
components:
- rot: 3.141592653589793 rad
pos: -60.5,-22.5
parent: 2
type: Transform
- - uid: 27338
+ - uid: 27405
components:
- rot: 3.141592653589793 rad
pos: -61.5,-22.5
parent: 2
type: Transform
- - uid: 27339
+ - uid: 27406
components:
- rot: 3.141592653589793 rad
pos: -62.5,-22.5
parent: 2
type: Transform
- - uid: 27340
+ - uid: 27407
components:
- rot: 3.141592653589793 rad
pos: -63.5,-22.5
parent: 2
type: Transform
- - uid: 27341
+ - uid: 27408
components:
- rot: 3.141592653589793 rad
pos: -69.5,-22.5
parent: 2
type: Transform
- - uid: 27342
+ - uid: 27409
components:
- rot: 3.141592653589793 rad
pos: -70.5,-22.5
parent: 2
type: Transform
- - uid: 27343
+ - uid: 27410
components:
- rot: 3.141592653589793 rad
pos: -53.5,-26.5
parent: 2
type: Transform
- - uid: 27344
+ - uid: 27411
components:
- rot: 3.141592653589793 rad
pos: -55.5,-26.5
parent: 2
type: Transform
- - uid: 27345
+ - uid: 27412
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-26.5
parent: 2
type: Transform
- - uid: 27346
+ - uid: 27413
components:
- rot: 3.141592653589793 rad
pos: -57.5,-26.5
parent: 2
type: Transform
- - uid: 27347
+ - uid: 27414
components:
- rot: 3.141592653589793 rad
pos: -59.5,-26.5
parent: 2
type: Transform
- - uid: 27348
+ - uid: 27415
components:
- pos: -59.5,-29.5
parent: 2
type: Transform
- - uid: 27349
+ - uid: 27416
components:
- rot: 3.141592653589793 rad
pos: -63.5,-29.5
parent: 2
type: Transform
- - uid: 27350
+ - uid: 27417
components:
- pos: -62.5,-26.5
parent: 2
type: Transform
- - uid: 27351
+ - uid: 27418
components:
- pos: -63.5,-27.5
parent: 2
type: Transform
- - uid: 27352
+ - uid: 27419
components:
- pos: -63.5,-28.5
parent: 2
type: Transform
- - uid: 27353
+ - uid: 27420
components:
- pos: -63.5,-26.5
parent: 2
type: Transform
- - uid: 27354
+ - uid: 27421
components:
- pos: -59.5,-31.5
parent: 2
type: Transform
- - uid: 27355
+ - uid: 27422
components:
- pos: -60.5,-31.5
parent: 2
type: Transform
- - uid: 27356
+ - uid: 27423
components:
- pos: -57.5,-19.5
parent: 2
type: Transform
- - uid: 27357
+ - uid: 27424
components:
- pos: -58.5,-19.5
parent: 2
type: Transform
- - uid: 27358
+ - uid: 27425
components:
- pos: -58.5,-20.5
parent: 2
type: Transform
- - uid: 27359
+ - uid: 27426
components:
- pos: -58.5,-21.5
parent: 2
type: Transform
- - uid: 27360
+ - uid: 27427
components:
- pos: -62.5,-31.5
parent: 2
type: Transform
- - uid: 27361
+ - uid: 27428
components:
- pos: -63.5,-31.5
parent: 2
type: Transform
- - uid: 27362
+ - uid: 27429
components:
- pos: -63.5,-32.5
parent: 2
type: Transform
- - uid: 27363
+ - uid: 27430
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-26.5
parent: 2
type: Transform
- - uid: 27364
+ - uid: 27431
components:
- rot: 1.5707963267948966 rad
pos: -54.5,-26.5
parent: 2
type: Transform
- - uid: 27365
+ - uid: 27432
components:
- rot: 3.141592653589793 rad
pos: -40.5,-23.5
parent: 2
type: Transform
- - uid: 27366
+ - uid: 27433
components:
- rot: 3.141592653589793 rad
pos: -41.5,-23.5
parent: 2
type: Transform
- - uid: 27367
+ - uid: 27434
components:
- rot: 3.141592653589793 rad
pos: -42.5,-23.5
parent: 2
type: Transform
- - uid: 27368
+ - uid: 27435
components:
- pos: -59.5,-27.5
parent: 2
type: Transform
- - uid: 27369
+ - uid: 27436
components:
- pos: -50.5,-55.5
parent: 2
type: Transform
- - uid: 27370
+ - uid: 27437
components:
- pos: -50.5,-53.5
parent: 2
type: Transform
- - uid: 27371
+ - uid: 27438
components:
- pos: -50.5,-51.5
parent: 2
type: Transform
- - uid: 27372
+ - uid: 27439
components:
- pos: -50.5,-49.5
parent: 2
type: Transform
- - uid: 27373
+ - uid: 27440
components:
- pos: -50.5,-47.5
parent: 2
type: Transform
- - uid: 27374
+ - uid: 27441
components:
- pos: -50.5,-45.5
parent: 2
type: Transform
- - uid: 27375
+ - uid: 27442
components:
- pos: -50.5,-43.5
parent: 2
type: Transform
- - uid: 27376
+ - uid: 27443
components:
- pos: -50.5,-41.5
parent: 2
type: Transform
- - uid: 27377
+ - uid: 27444
components:
- pos: -49.5,-41.5
parent: 2
type: Transform
- - uid: 27378
+ - uid: 27445
components:
- pos: -48.5,-41.5
parent: 2
type: Transform
- - uid: 27379
+ - uid: 27446
components:
- pos: -47.5,-41.5
parent: 2
type: Transform
- - uid: 27380
+ - uid: 27447
components:
- pos: -49.5,-43.5
parent: 2
type: Transform
- - uid: 27381
+ - uid: 27448
components:
- pos: -48.5,-43.5
parent: 2
type: Transform
- - uid: 27382
+ - uid: 27449
components:
- pos: -47.5,-43.5
parent: 2
type: Transform
- - uid: 27383
+ - uid: 27450
components:
- pos: -49.5,-45.5
parent: 2
type: Transform
- - uid: 27384
+ - uid: 27451
components:
- pos: -48.5,-45.5
parent: 2
type: Transform
- - uid: 27385
+ - uid: 27452
components:
- pos: -47.5,-45.5
parent: 2
type: Transform
- - uid: 27386
+ - uid: 27453
components:
- pos: -49.5,-47.5
parent: 2
type: Transform
- - uid: 27387
+ - uid: 27454
components:
- pos: -48.5,-47.5
parent: 2
type: Transform
- - uid: 27388
+ - uid: 27455
components:
- pos: -47.5,-47.5
parent: 2
type: Transform
- - uid: 27389
+ - uid: 27456
components:
- pos: -49.5,-49.5
parent: 2
type: Transform
- - uid: 27390
+ - uid: 27457
components:
- pos: -48.5,-49.5
parent: 2
type: Transform
- - uid: 27391
+ - uid: 27458
components:
- pos: -47.5,-49.5
parent: 2
type: Transform
- - uid: 27392
+ - uid: 27459
components:
- pos: -49.5,-51.5
parent: 2
type: Transform
- - uid: 27393
+ - uid: 27460
components:
- pos: -48.5,-51.5
parent: 2
type: Transform
- - uid: 27394
+ - uid: 27461
components:
- pos: -47.5,-51.5
parent: 2
type: Transform
- - uid: 27395
+ - uid: 27462
components:
- pos: -49.5,-53.5
parent: 2
type: Transform
- - uid: 27396
+ - uid: 27463
components:
- pos: -48.5,-53.5
parent: 2
type: Transform
- - uid: 27397
+ - uid: 27464
components:
- pos: -47.5,-53.5
parent: 2
type: Transform
- - uid: 27398
+ - uid: 27465
components:
- pos: -49.5,-55.5
parent: 2
type: Transform
- - uid: 27399
+ - uid: 27466
components:
- pos: -48.5,-55.5
parent: 2
type: Transform
- - uid: 27400
+ - uid: 27467
components:
- pos: -47.5,-55.5
parent: 2
type: Transform
- - uid: 27401
+ - uid: 27468
components:
- pos: -51.5,-55.5
parent: 2
type: Transform
- - uid: 27402
+ - uid: 27469
components:
- pos: -51.5,-54.5
parent: 2
type: Transform
- - uid: 27403
+ - uid: 27470
components:
- pos: -51.5,-53.5
parent: 2
type: Transform
- - uid: 27404
+ - uid: 27471
components:
- pos: -51.5,-51.5
parent: 2
type: Transform
- - uid: 27405
+ - uid: 27472
components:
- pos: -51.5,-50.5
parent: 2
type: Transform
- - uid: 27406
+ - uid: 27473
components:
- pos: -51.5,-49.5
parent: 2
type: Transform
- - uid: 27407
+ - uid: 27474
components:
- pos: -51.5,-48.5
parent: 2
type: Transform
- - uid: 27408
+ - uid: 27475
components:
- pos: -51.5,-47.5
parent: 2
type: Transform
- - uid: 27409
+ - uid: 27476
components:
- pos: -51.5,-46.5
parent: 2
type: Transform
- - uid: 27410
+ - uid: 27477
components:
- pos: -51.5,-45.5
parent: 2
type: Transform
- - uid: 27411
+ - uid: 27478
components:
- pos: -51.5,-44.5
parent: 2
type: Transform
- - uid: 27412
+ - uid: 27479
components:
- pos: -51.5,-43.5
parent: 2
type: Transform
- - uid: 27413
+ - uid: 27480
components:
- pos: -51.5,-42.5
parent: 2
type: Transform
- - uid: 27414
+ - uid: 27481
components:
- pos: -51.5,-41.5
parent: 2
type: Transform
- - uid: 27415
+ - uid: 27482
components:
- pos: -47.5,-38.5
parent: 2
type: Transform
- - uid: 27416
+ - uid: 27483
components:
- pos: -41.5,-39.5
parent: 2
type: Transform
- - uid: 27417
+ - uid: 27484
components:
- pos: -41.5,-38.5
parent: 2
type: Transform
- - uid: 27418
+ - uid: 27485
components:
- rot: 1.5707963267948966 rad
pos: -59.5,-30.5
parent: 2
type: Transform
- - uid: 27419
+ - uid: 27486
components:
- rot: 3.141592653589793 rad
pos: -58.5,-31.5
parent: 2
type: Transform
- - uid: 27420
+ - uid: 27487
components:
- rot: 3.141592653589793 rad
pos: -57.5,-5.5
parent: 2
type: Transform
- - uid: 27421
+ - uid: 27488
components:
- rot: 3.141592653589793 rad
pos: -57.5,-4.5
parent: 2
type: Transform
- - uid: 27422
+ - uid: 27489
components:
- rot: 3.141592653589793 rad
pos: -58.5,-4.5
parent: 2
type: Transform
- - uid: 27423
+ - uid: 27490
components:
- rot: 3.141592653589793 rad
pos: -59.5,-4.5
parent: 2
type: Transform
- - uid: 27424
+ - uid: 27491
components:
- rot: 3.141592653589793 rad
pos: -60.5,-4.5
parent: 2
type: Transform
- - uid: 27425
+ - uid: 27492
components:
- rot: 3.141592653589793 rad
pos: -61.5,-4.5
parent: 2
type: Transform
- - uid: 27426
+ - uid: 27493
components:
- rot: 3.141592653589793 rad
pos: -62.5,-4.5
parent: 2
type: Transform
- - uid: 27427
+ - uid: 27494
components:
- rot: 3.141592653589793 rad
pos: -63.5,-4.5
parent: 2
type: Transform
- - uid: 27428
+ - uid: 27495
components:
- rot: 3.141592653589793 rad
pos: -64.5,-4.5
parent: 2
type: Transform
- - uid: 27429
+ - uid: 27496
components:
- rot: 3.141592653589793 rad
pos: -65.5,-4.5
parent: 2
type: Transform
- - uid: 27430
+ - uid: 27497
components:
- rot: 3.141592653589793 rad
pos: -66.5,-4.5
parent: 2
type: Transform
- - uid: 27431
+ - uid: 27498
components:
- rot: 3.141592653589793 rad
pos: -67.5,-4.5
parent: 2
type: Transform
- - uid: 27432
+ - uid: 27499
components:
- rot: 3.141592653589793 rad
pos: -68.5,-4.5
parent: 2
type: Transform
- - uid: 27433
+ - uid: 27500
components:
- rot: 3.141592653589793 rad
pos: -69.5,-4.5
parent: 2
type: Transform
- - uid: 27434
+ - uid: 27501
components:
- rot: 3.141592653589793 rad
pos: -70.5,-4.5
parent: 2
type: Transform
- - uid: 27435
+ - uid: 27502
components:
- rot: 3.141592653589793 rad
pos: -71.5,-4.5
parent: 2
type: Transform
- - uid: 27436
+ - uid: 27503
components:
- rot: 3.141592653589793 rad
pos: -72.5,-4.5
parent: 2
type: Transform
- - uid: 27437
+ - uid: 27504
components:
- rot: 3.141592653589793 rad
pos: -73.5,-4.5
parent: 2
type: Transform
- - uid: 27438
+ - uid: 27505
components:
- rot: 3.141592653589793 rad
pos: -74.5,-4.5
parent: 2
type: Transform
- - uid: 27439
+ - uid: 27506
components:
- rot: 3.141592653589793 rad
pos: -75.5,-4.5
parent: 2
type: Transform
- - uid: 27440
+ - uid: 27507
components:
- rot: 3.141592653589793 rad
pos: -75.5,-5.5
parent: 2
type: Transform
- - uid: 27441
+ - uid: 27508
components:
- rot: 3.141592653589793 rad
pos: -75.5,-6.5
parent: 2
type: Transform
- - uid: 27442
+ - uid: 27509
components:
- rot: 3.141592653589793 rad
pos: -75.5,-7.5
parent: 2
type: Transform
- - uid: 27443
+ - uid: 27510
components:
- rot: 3.141592653589793 rad
pos: -75.5,-8.5
parent: 2
type: Transform
- - uid: 27444
+ - uid: 27511
components:
- rot: 3.141592653589793 rad
pos: -75.5,-9.5
parent: 2
type: Transform
- - uid: 27445
+ - uid: 27512
components:
- rot: 3.141592653589793 rad
pos: -75.5,-10.5
parent: 2
type: Transform
- - uid: 27446
+ - uid: 27513
components:
- rot: 3.141592653589793 rad
pos: -75.5,-11.5
parent: 2
type: Transform
- - uid: 27447
+ - uid: 27514
components:
- rot: 3.141592653589793 rad
pos: -75.5,-13.5
parent: 2
type: Transform
- - uid: 27448
+ - uid: 27515
components:
- rot: 3.141592653589793 rad
pos: -75.5,-14.5
parent: 2
type: Transform
- - uid: 27449
+ - uid: 27516
components:
- rot: 3.141592653589793 rad
pos: -75.5,-15.5
parent: 2
type: Transform
- - uid: 27450
+ - uid: 27517
components:
- rot: 3.141592653589793 rad
pos: -75.5,-16.5
parent: 2
type: Transform
- - uid: 27451
+ - uid: 27518
components:
- rot: 3.141592653589793 rad
pos: -75.5,-17.5
parent: 2
type: Transform
- - uid: 27452
+ - uid: 27519
components:
- rot: 3.141592653589793 rad
pos: -75.5,-18.5
parent: 2
type: Transform
- - uid: 27453
+ - uid: 27520
components:
- rot: 3.141592653589793 rad
pos: -75.5,-19.5
parent: 2
type: Transform
- - uid: 27454
+ - uid: 27521
components:
- rot: 3.141592653589793 rad
pos: -75.5,-20.5
parent: 2
type: Transform
- - uid: 27455
+ - uid: 27522
components:
- rot: 3.141592653589793 rad
pos: -75.5,-21.5
parent: 2
type: Transform
- - uid: 27456
+ - uid: 27523
components:
- rot: 3.141592653589793 rad
pos: -75.5,-22.5
parent: 2
type: Transform
- - uid: 27457
+ - uid: 27524
components:
- rot: 3.141592653589793 rad
pos: -74.5,-22.5
parent: 2
type: Transform
- - uid: 27458
+ - uid: 27525
components:
- rot: 3.141592653589793 rad
pos: -73.5,-22.5
parent: 2
type: Transform
- - uid: 27459
+ - uid: 27526
components:
- rot: 3.141592653589793 rad
pos: -72.5,-22.5
parent: 2
type: Transform
- - uid: 27460
+ - uid: 27527
components:
- rot: 3.141592653589793 rad
pos: -71.5,-22.5
parent: 2
type: Transform
- - uid: 27461
+ - uid: 27528
components:
- pos: -45.5,-57.5
parent: 2
type: Transform
- - uid: 27462
+ - uid: 27529
components:
- pos: -45.5,-56.5
parent: 2
type: Transform
- - uid: 27463
+ - uid: 27530
components:
- pos: -45.5,-58.5
parent: 2
type: Transform
- - uid: 27464
+ - uid: 27531
components:
- rot: 3.141592653589793 rad
pos: -39.5,-59.5
parent: 2
type: Transform
- - uid: 27465
+ - uid: 27532
components:
- pos: -43.5,-58.5
parent: 2
type: Transform
- - uid: 27466
+ - uid: 27533
components:
- rot: 3.141592653589793 rad
pos: -36.5,-58.5
parent: 2
type: Transform
- - uid: 27467
+ - uid: 27534
components:
- pos: -40.5,-58.5
parent: 2
type: Transform
- - uid: 27468
+ - uid: 27535
components:
- pos: -45.5,-32.5
parent: 2
type: Transform
- - uid: 27469
+ - uid: 27536
components:
- pos: -45.5,-36.5
parent: 2
type: Transform
- - uid: 27470
+ - uid: 27537
components:
- rot: 3.141592653589793 rad
pos: -40.5,-59.5
parent: 2
type: Transform
- - uid: 27471
+ - uid: 27538
components:
- rot: -1.5707963267948966 rad
pos: -32.5,-43.5
parent: 2
type: Transform
- - uid: 27472
+ - uid: 27539
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-38.5
parent: 2
type: Transform
- - uid: 27473
+ - uid: 27540
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-39.5
parent: 2
type: Transform
- - uid: 27474
+ - uid: 27541
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-40.5
parent: 2
type: Transform
- - uid: 27475
+ - uid: 27542
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-40.5
parent: 2
type: Transform
- - uid: 27476
+ - uid: 27543
components:
- pos: -32.5,-44.5
parent: 2
type: Transform
- - uid: 27477
+ - uid: 27544
components:
- pos: -32.5,-45.5
parent: 2
type: Transform
- - uid: 27478
+ - uid: 27545
components:
- pos: -32.5,-46.5
parent: 2
type: Transform
- - uid: 27479
+ - uid: 27546
components:
- pos: -32.5,-47.5
parent: 2
type: Transform
- - uid: 27480
+ - uid: 27547
components:
- pos: -32.5,-48.5
parent: 2
type: Transform
- - uid: 27481
+ - uid: 27548
components:
- pos: -32.5,-49.5
parent: 2
type: Transform
- - uid: 27482
+ - uid: 27549
components:
- pos: -32.5,-51.5
parent: 2
type: Transform
- - uid: 27483
+ - uid: 27550
components:
- pos: -32.5,-52.5
parent: 2
type: Transform
- - uid: 27484
+ - uid: 27551
components:
- pos: -32.5,-53.5
parent: 2
type: Transform
- - uid: 27485
+ - uid: 27552
components:
- pos: -32.5,-54.5
parent: 2
type: Transform
- - uid: 27486
+ - uid: 27553
components:
- pos: -32.5,-55.5
parent: 2
type: Transform
- - uid: 27487
+ - uid: 27554
components:
- pos: -32.5,-56.5
parent: 2
type: Transform
- - uid: 27488
+ - uid: 27555
components:
- pos: -32.5,-57.5
parent: 2
type: Transform
- - uid: 27489
+ - uid: 27556
components:
- pos: -33.5,-57.5
parent: 2
type: Transform
- - uid: 27490
+ - uid: 27557
components:
- pos: -33.5,-58.5
parent: 2
type: Transform
- - uid: 27491
+ - uid: 27558
components:
- pos: -34.5,-58.5
parent: 2
type: Transform
- - uid: 27492
+ - uid: 27559
components:
- pos: 65.5,-31.5
parent: 2
type: Transform
- - uid: 27493
+ - uid: 27560
components:
- pos: -70.5,-3.5
parent: 2
type: Transform
- - uid: 27494
+ - uid: 27561
components:
- pos: -71.5,-3.5
parent: 2
type: Transform
- - uid: 27495
+ - uid: 27562
components:
- pos: -72.5,-3.5
parent: 2
type: Transform
- - uid: 27496
+ - uid: 27563
components:
- pos: -76.5,-4.5
parent: 2
type: Transform
- - uid: 27497
+ - uid: 27564
components:
- pos: -76.5,-5.5
parent: 2
type: Transform
- - uid: 27498
+ - uid: 27565
components:
- pos: -76.5,-6.5
parent: 2
type: Transform
- - uid: 27499
+ - uid: 27566
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-17.5
parent: 2
type: Transform
- - uid: 27500
+ - uid: 27567
components:
- pos: -76.5,-18.5
parent: 2
type: Transform
- - uid: 27501
+ - uid: 27568
components:
- pos: -76.5,-19.5
parent: 2
type: Transform
- - uid: 27502
+ - uid: 27569
components:
- pos: -76.5,-20.5
parent: 2
type: Transform
- - uid: 27503
+ - uid: 27570
components:
- pos: -75.5,-23.5
parent: 2
type: Transform
- - uid: 27504
+ - uid: 27571
components:
- pos: -63.5,-3.5
parent: 2
type: Transform
- - uid: 27505
+ - uid: 27572
components:
- pos: -64.5,-3.5
parent: 2
type: Transform
- - uid: 27506
+ - uid: 27573
components:
- pos: -65.5,-3.5
parent: 2
type: Transform
- - uid: 27507
+ - uid: 27574
components:
- pos: -58.5,-3.5
parent: 2
type: Transform
- - uid: 27508
+ - uid: 27575
components:
- pos: -75.5,-24.5
parent: 2
type: Transform
- - uid: 27509
+ - uid: 27576
components:
- pos: -75.5,-27.5
parent: 2
type: Transform
- - uid: 27510
+ - uid: 27577
components:
- pos: -75.5,-26.5
parent: 2
type: Transform
- - uid: 27511
+ - uid: 27578
components:
- pos: -76.5,-26.5
parent: 2
type: Transform
- - uid: 27512
+ - uid: 27579
components:
- pos: -45.5,-31.5
parent: 2
type: Transform
- - uid: 27513
+ - uid: 27580
components:
- rot: -1.5707963267948966 rad
pos: -46.5,-31.5
parent: 2
type: Transform
- - uid: 27514
+ - uid: 27581
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-31.5
parent: 2
type: Transform
- - uid: 27515
+ - uid: 27582
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-32.5
parent: 2
type: Transform
- - uid: 27516
+ - uid: 27583
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-33.5
parent: 2
type: Transform
- - uid: 27517
+ - uid: 27584
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-35.5
parent: 2
type: Transform
- - uid: 27518
+ - uid: 27585
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-38.5
parent: 2
type: Transform
- - uid: 27519
+ - uid: 27586
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-39.5
parent: 2
type: Transform
- - uid: 27520
+ - uid: 27587
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-40.5
parent: 2
type: Transform
- - uid: 27521
+ - uid: 27588
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-40.5
parent: 2
type: Transform
- - uid: 27522
+ - uid: 27589
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-40.5
parent: 2
type: Transform
- - uid: 27523
+ - uid: 27590
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-41.5
parent: 2
type: Transform
- - uid: 27524
+ - uid: 27591
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-42.5
parent: 2
type: Transform
- - uid: 27525
+ - uid: 27592
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-43.5
parent: 2
type: Transform
- - uid: 27526
+ - uid: 27593
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-44.5
parent: 2
type: Transform
- - uid: 27527
+ - uid: 27594
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-45.5
parent: 2
type: Transform
- - uid: 27528
+ - uid: 27595
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-46.5
parent: 2
type: Transform
- - uid: 27529
+ - uid: 27596
components:
- pos: -53.5,-46.5
parent: 2
type: Transform
- - uid: 27530
+ - uid: 27597
components:
- pos: -53.5,-51.5
parent: 2
type: Transform
- - uid: 27531
+ - uid: 27598
components:
- pos: -54.5,-51.5
parent: 2
type: Transform
- - uid: 27532
+ - uid: 27599
components:
- pos: -54.5,-46.5
parent: 2
type: Transform
- - uid: 27533
+ - uid: 27600
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-51.5
parent: 2
type: Transform
- - uid: 27534
+ - uid: 27601
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-52.5
parent: 2
type: Transform
- - uid: 27535
+ - uid: 27602
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-53.5
parent: 2
type: Transform
- - uid: 27536
+ - uid: 27603
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-54.5
parent: 2
type: Transform
- - uid: 27537
+ - uid: 27604
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-55.5
parent: 2
type: Transform
- - uid: 27538
+ - uid: 27605
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-56.5
parent: 2
type: Transform
- - uid: 27539
+ - uid: 27606
components:
- rot: -1.5707963267948966 rad
pos: -55.5,-57.5
parent: 2
type: Transform
- - uid: 27540
+ - uid: 27607
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-32.5
parent: 2
type: Transform
- - uid: 27541
+ - uid: 27608
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-33.5
parent: 2
type: Transform
- - uid: 27542
+ - uid: 27609
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-34.5
parent: 2
type: Transform
- - uid: 27543
+ - uid: 27610
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-35.5
parent: 2
type: Transform
- - uid: 27544
+ - uid: 27611
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-38.5
parent: 2
type: Transform
- - uid: 27545
+ - uid: 27612
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-39.5
parent: 2
type: Transform
- - uid: 27546
+ - uid: 27613
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-40.5
parent: 2
type: Transform
- - uid: 27547
+ - uid: 27614
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-41.5
parent: 2
type: Transform
- - uid: 27548
+ - uid: 27615
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-42.5
parent: 2
type: Transform
- - uid: 27549
+ - uid: 27616
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-45.5
parent: 2
type: Transform
- - uid: 27550
+ - uid: 27617
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-46.5
parent: 2
type: Transform
- - uid: 27551
+ - uid: 27618
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-49.5
parent: 2
type: Transform
- - uid: 27552
+ - uid: 27619
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-50.5
parent: 2
type: Transform
- - uid: 27553
+ - uid: 27620
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-53.5
parent: 2
type: Transform
- - uid: 27554
+ - uid: 27621
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-55.5
parent: 2
type: Transform
- - uid: 27555
+ - uid: 27622
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-56.5
parent: 2
type: Transform
- - uid: 27556
+ - uid: 27623
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-57.5
parent: 2
type: Transform
- - uid: 27557
+ - uid: 27624
components:
- rot: -1.5707963267948966 rad
pos: -58.5,-58.5
parent: 2
type: Transform
- - uid: 27558
+ - uid: 27625
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-64.5
parent: 2
type: Transform
- - uid: 27559
+ - uid: 27626
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-65.5
parent: 2
type: Transform
- - uid: 27560
+ - uid: 27627
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-66.5
parent: 2
type: Transform
- - uid: 27561
+ - uid: 27628
components:
- rot: 3.141592653589793 rad
pos: -36.5,-59.5
parent: 2
type: Transform
- - uid: 27562
+ - uid: 27629
components:
- rot: 3.141592653589793 rad
pos: -37.5,-59.5
parent: 2
type: Transform
- - uid: 27563
+ - uid: 27630
components:
- pos: -45.5,-41.5
parent: 2
type: Transform
- - uid: 27564
+ - uid: 27631
components:
- pos: -57.5,-70.5
parent: 2
type: Transform
- - uid: 27565
+ - uid: 27632
components:
- pos: -57.5,-72.5
parent: 2
type: Transform
- - uid: 27566
+ - uid: 27633
components:
- pos: -57.5,-74.5
parent: 2
type: Transform
- - uid: 27567
+ - uid: 27634
components:
- pos: -57.5,-78.5
parent: 2
type: Transform
- - uid: 27568
+ - uid: 27635
components:
- pos: -57.5,-80.5
parent: 2
type: Transform
- - uid: 27569
+ - uid: 27636
components:
- pos: -57.5,-82.5
parent: 2
type: Transform
- - uid: 27570
+ - uid: 27637
components:
- pos: -56.5,-67.5
parent: 2
type: Transform
- - uid: 27571
+ - uid: 27638
components:
- pos: -57.5,-67.5
parent: 2
type: Transform
- - uid: 27572
+ - uid: 27639
components:
- pos: -57.5,-68.5
parent: 2
type: Transform
- - uid: 27573
+ - uid: 27640
components:
- pos: -57.5,-69.5
parent: 2
type: Transform
- - uid: 27574
+ - uid: 27641
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-61.5
parent: 2
type: Transform
- - uid: 27575
+ - uid: 27642
components:
- rot: 3.141592653589793 rad
pos: -22.5,-50.5
parent: 2
type: Transform
- - uid: 27576
+ - uid: 27643
components:
- pos: -31.5,-57.5
parent: 2
type: Transform
- - uid: 27577
+ - uid: 27644
components:
- pos: -31.5,-58.5
parent: 2
type: Transform
- - uid: 27578
+ - uid: 27645
components:
- pos: -30.5,-58.5
parent: 2
type: Transform
- - uid: 27579
+ - uid: 27646
components:
- pos: -30.5,-59.5
parent: 2
type: Transform
- - uid: 27580
+ - uid: 27647
components:
- pos: -30.5,-60.5
parent: 2
type: Transform
- - uid: 27581
+ - uid: 27648
components:
- pos: -31.5,-60.5
parent: 2
type: Transform
- - uid: 27582
+ - uid: 27649
components:
- pos: -31.5,-61.5
parent: 2
type: Transform
- - uid: 27583
+ - uid: 27650
components:
- pos: -32.5,-61.5
parent: 2
type: Transform
- - uid: 27584
+ - uid: 27651
components:
- pos: -33.5,-61.5
parent: 2
type: Transform
- - uid: 27585
+ - uid: 27652
components:
- pos: -33.5,-62.5
parent: 2
type: Transform
- - uid: 27586
+ - uid: 27653
components:
- pos: -34.5,-62.5
parent: 2
type: Transform
- - uid: 27587
+ - uid: 27654
components:
- pos: -35.5,-62.5
parent: 2
type: Transform
- - uid: 27588
+ - uid: 27655
components:
- pos: -36.5,-62.5
parent: 2
type: Transform
- - uid: 27589
+ - uid: 27656
components:
- pos: -37.5,-62.5
parent: 2
type: Transform
- - uid: 27590
+ - uid: 27657
components:
- pos: -38.5,-62.5
parent: 2
type: Transform
- - uid: 27591
+ - uid: 27658
components:
- pos: -39.5,-62.5
parent: 2
type: Transform
- - uid: 27592
+ - uid: 27659
components:
- pos: -42.5,-62.5
parent: 2
type: Transform
- - uid: 27593
+ - uid: 27660
components:
- pos: -43.5,-62.5
parent: 2
type: Transform
- - uid: 27594
+ - uid: 27661
components:
- pos: -44.5,-62.5
parent: 2
type: Transform
- - uid: 27595
+ - uid: 27662
components:
- pos: -45.5,-62.5
parent: 2
type: Transform
- - uid: 27596
+ - uid: 27663
components:
- pos: -46.5,-62.5
parent: 2
type: Transform
- - uid: 27597
+ - uid: 27664
components:
- pos: -47.5,-62.5
parent: 2
type: Transform
- - uid: 27598
+ - uid: 27665
components:
- pos: -48.5,-62.5
parent: 2
type: Transform
- - uid: 27599
+ - uid: 27666
components:
- pos: -49.5,-62.5
parent: 2
type: Transform
- - uid: 27600
+ - uid: 27667
components:
- pos: -50.5,-61.5
parent: 2
type: Transform
- - uid: 27601
+ - uid: 27668
components:
- pos: -49.5,-61.5
parent: 2
type: Transform
- - uid: 27602
+ - uid: 27669
components:
- pos: -59.5,-78.5
parent: 2
type: Transform
- - uid: 27603
+ - uid: 27670
components:
- pos: -50.5,-77.5
parent: 2
type: Transform
- - uid: 27604
+ - uid: 27671
components:
- pos: -50.5,-78.5
parent: 2
type: Transform
- - uid: 27605
+ - uid: 27672
components:
- pos: -57.5,-83.5
parent: 2
type: Transform
- - uid: 27606
+ - uid: 27673
components:
- pos: -56.5,-83.5
parent: 2
type: Transform
- - uid: 27607
+ - uid: 27674
components:
- pos: -52.5,-83.5
parent: 2
type: Transform
- - uid: 27608
+ - uid: 27675
components:
- pos: -52.5,-82.5
parent: 2
type: Transform
- - uid: 27609
+ - uid: 27676
components:
- pos: -52.5,-81.5
parent: 2
type: Transform
- - uid: 27610
+ - uid: 27677
components:
- pos: -51.5,-81.5
parent: 2
type: Transform
- - uid: 27611
+ - uid: 27678
components:
- pos: -51.5,-80.5
parent: 2
type: Transform
- - uid: 27612
+ - uid: 27679
components:
- pos: -50.5,-80.5
parent: 2
type: Transform
- - uid: 27613
+ - uid: 27680
components:
- pos: -50.5,-79.5
parent: 2
type: Transform
- - uid: 27614
+ - uid: 27681
components:
- pos: -59.5,-80.5
parent: 2
type: Transform
- - uid: 27615
+ - uid: 27682
components:
- pos: -59.5,-82.5
parent: 2
type: Transform
- - uid: 27616
+ - uid: 27683
components:
- pos: -58.5,-82.5
parent: 2
type: Transform
- - uid: 27617
+ - uid: 27684
components:
- pos: -58.5,-78.5
parent: 2
type: Transform
- - uid: 27618
+ - uid: 27685
components:
- pos: -58.5,-74.5
parent: 2
type: Transform
- - uid: 27619
+ - uid: 27686
components:
- pos: -59.5,-74.5
parent: 2
type: Transform
- - uid: 27620
+ - uid: 27687
components:
- pos: -59.5,-72.5
parent: 2
type: Transform
- - uid: 27621
+ - uid: 27688
components:
- pos: -58.5,-70.5
parent: 2
type: Transform
- - uid: 27622
+ - uid: 27689
components:
- pos: -59.5,-70.5
parent: 2
type: Transform
- - uid: 27623
+ - uid: 27690
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-73.5
parent: 2
type: Transform
- - uid: 27624
+ - uid: 27691
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-80.5
parent: 2
type: Transform
- - uid: 27625
+ - uid: 27692
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-79.5
parent: 2
type: Transform
- - uid: 27626
+ - uid: 27693
components:
- rot: 1.5707963267948966 rad
pos: -49.5,-77.5
parent: 2
type: Transform
- - uid: 27627
+ - uid: 27694
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-85.5
parent: 2
type: Transform
- - uid: 27628
+ - uid: 27695
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-84.5
parent: 2
type: Transform
- - uid: 27629
+ - uid: 27696
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-86.5
parent: 2
type: Transform
- - uid: 27630
+ - uid: 27697
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-86.5
parent: 2
type: Transform
- - uid: 27631
+ - uid: 27698
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-73.5
parent: 2
type: Transform
- - uid: 27632
+ - uid: 27699
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-77.5
parent: 2
type: Transform
- - uid: 27633
+ - uid: 27700
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-80.5
parent: 2
type: Transform
- - uid: 27634
+ - uid: 27701
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-75.5
parent: 2
type: Transform
- - uid: 27635
+ - uid: 27702
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-74.5
parent: 2
type: Transform
- - uid: 27636
+ - uid: 27703
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-78.5
parent: 2
type: Transform
- - uid: 27637
+ - uid: 27704
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-85.5
parent: 2
type: Transform
- - uid: 27638
+ - uid: 27705
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-86.5
parent: 2
type: Transform
- - uid: 27639
+ - uid: 27706
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-85.5
parent: 2
type: Transform
- - uid: 27640
+ - uid: 27707
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-86.5
parent: 2
type: Transform
- - uid: 27641
+ - uid: 27708
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-84.5
parent: 2
type: Transform
- - uid: 27642
+ - uid: 27709
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-79.5
parent: 2
type: Transform
- - uid: 27643
+ - uid: 27710
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-84.5
parent: 2
type: Transform
- - uid: 27644
+ - uid: 27711
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-84.5
parent: 2
type: Transform
- - uid: 27645
+ - uid: 27712
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-85.5
parent: 2
type: Transform
- - uid: 27646
+ - uid: 27713
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-73.5
parent: 2
type: Transform
- - uid: 27647
+ - uid: 27714
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-74.5
parent: 2
type: Transform
- - uid: 27648
+ - uid: 27715
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-75.5
parent: 2
type: Transform
- - uid: 27649
+ - uid: 27716
components:
- rot: 1.5707963267948966 rad
pos: -31.5,-75.5
parent: 2
type: Transform
- - uid: 27650
+ - uid: 27717
components:
- pos: -44.5,-86.5
parent: 2
type: Transform
- - uid: 27651
+ - uid: 27718
components:
- pos: -39.5,-86.5
parent: 2
type: Transform
- - uid: 27652
+ - uid: 27719
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-70.5
parent: 2
type: Transform
- - uid: 27653
+ - uid: 27720
components:
- pos: -17.5,-50.5
parent: 2
type: Transform
- - uid: 27654
+ - uid: 27721
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-62.5
parent: 2
type: Transform
- - uid: 27655
+ - uid: 27722
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-61.5
parent: 2
type: Transform
- - uid: 27656
+ - uid: 27723
components:
- rot: 1.5707963267948966 rad
pos: -58.5,-62.5
parent: 2
type: Transform
- - uid: 27657
+ - uid: 27724
components:
- pos: -19.5,-50.5
parent: 2
type: Transform
- - uid: 27658
+ - uid: 27725
components:
- pos: 25.5,-30.5
parent: 2
type: Transform
- - uid: 27659
+ - uid: 27726
components:
- pos: 27.5,-30.5
parent: 2
type: Transform
- - uid: 27660
+ - uid: 27727
components:
- rot: -1.5707963267948966 rad
pos: 30.5,-31.5
parent: 2
type: Transform
- - uid: 27661
+ - uid: 27728
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-31.5
parent: 2
type: Transform
- - uid: 27662
+ - uid: 27729
components:
- pos: 27.5,-31.5
parent: 2
type: Transform
- - uid: 27663
+ - uid: 27730
components:
- pos: 28.5,-31.5
parent: 2
type: Transform
- - uid: 27664
+ - uid: 27731
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-31.5
parent: 2
type: Transform
- - uid: 27665
+ - uid: 27732
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-31.5
parent: 2
type: Transform
- - uid: 27666
+ - uid: 27733
components:
- pos: -21.5,-50.5
parent: 2
type: Transform
- - uid: 27667
+ - uid: 27734
components:
- pos: -53.5,-50.5
parent: 2
type: Transform
- - uid: 27668
+ - uid: 27735
components:
- pos: -53.5,-47.5
parent: 2
type: Transform
- - uid: 27669
+ - uid: 27736
components:
- pos: -53.5,-48.5
parent: 2
type: Transform
- - uid: 27670
+ - uid: 27737
components:
- pos: -53.5,-49.5
parent: 2
type: Transform
- - uid: 27671
+ - uid: 27738
components:
- pos: -59.5,-53.5
parent: 2
type: Transform
- - uid: 27672
+ - uid: 27739
components:
- pos: -60.5,-53.5
parent: 2
type: Transform
- - uid: 27673
+ - uid: 27740
components:
- pos: -59.5,-55.5
parent: 2
type: Transform
- - uid: 27674
+ - uid: 27741
components:
- pos: -60.5,-55.5
parent: 2
type: Transform
- - uid: 27675
+ - uid: 27742
components:
- pos: 25.5,-27.5
parent: 2
type: Transform
- - uid: 27676
+ - uid: 27743
components:
- pos: 68.5,12.5
parent: 2
type: Transform
- - uid: 27677
+ - uid: 27744
components:
- rot: 1.5707963267948966 rad
pos: 8.5,-18.5
parent: 2
type: Transform
- - uid: 27678
+ - uid: 27745
components:
- pos: 5.5,34.5
parent: 2
type: Transform
- - uid: 27679
+ - uid: 27746
components:
- pos: 9.5,35.5
parent: 2
type: Transform
- - uid: 27680
+ - uid: 27747
components:
- pos: 11.5,31.5
parent: 2
type: Transform
- - uid: 27681
+ - uid: 27748
components:
- pos: -3.5,26.5
parent: 2
type: Transform
- - uid: 27682
+ - uid: 27749
components:
- pos: -7.5,33.5
parent: 2
type: Transform
- - uid: 27683
+ - uid: 27750
components:
- pos: -6.5,33.5
parent: 2
type: Transform
- - uid: 27684
+ - uid: 27751
components:
- pos: -5.5,33.5
parent: 2
type: Transform
- - uid: 27685
+ - uid: 27752
components:
- pos: -16.5,53.5
parent: 2
type: Transform
- - uid: 27686
+ - uid: 27753
components:
- pos: -23.5,72.5
parent: 2
type: Transform
- - uid: 27687
+ - uid: 27754
components:
- pos: -7.5,30.5
parent: 2
type: Transform
- - uid: 27688
+ - uid: 27755
components:
- pos: -7.5,29.5
parent: 2
type: Transform
- - uid: 27689
+ - uid: 27756
components:
- pos: -7.5,26.5
parent: 2
type: Transform
- - uid: 27690
+ - uid: 27757
components:
- pos: -7.5,31.5
parent: 2
type: Transform
- - uid: 27691
+ - uid: 27758
components:
- pos: -6.5,31.5
parent: 2
type: Transform
- - uid: 27692
+ - uid: 27759
components:
- pos: -5.5,31.5
parent: 2
type: Transform
- - uid: 27693
+ - uid: 27760
components:
- pos: -4.5,31.5
parent: 2
type: Transform
- - uid: 27694
+ - uid: 27761
components:
- pos: -4.5,30.5
parent: 2
type: Transform
- - uid: 27695
+ - uid: 27762
components:
- pos: -4.5,29.5
parent: 2
type: Transform
- - uid: 27696
+ - uid: 27763
components:
- pos: -3.5,29.5
parent: 2
type: Transform
- - uid: 27697
+ - uid: 27764
components:
- pos: -1.5,29.5
parent: 2
type: Transform
- - uid: 27698
+ - uid: 27765
components:
- pos: -0.5,29.5
parent: 2
type: Transform
- - uid: 27699
+ - uid: 27766
components:
- pos: 0.5,29.5
parent: 2
type: Transform
- - uid: 27700
+ - uid: 27767
components:
- pos: 1.5,29.5
parent: 2
type: Transform
- - uid: 27701
+ - uid: 27768
components:
- pos: 1.5,30.5
parent: 2
type: Transform
- - uid: 27702
+ - uid: 27769
components:
- pos: 1.5,31.5
parent: 2
type: Transform
- - uid: 27703
+ - uid: 27770
components:
- pos: 2.5,31.5
parent: 2
type: Transform
- - uid: 27704
+ - uid: 27771
components:
- pos: 2.5,33.5
parent: 2
type: Transform
- - uid: 27705
+ - uid: 27772
components:
- pos: 1.5,33.5
parent: 2
type: Transform
- - uid: 27706
+ - uid: 27773
components:
- pos: 1.5,34.5
parent: 2
type: Transform
- - uid: 27707
+ - uid: 27774
components:
- pos: 1.5,35.5
parent: 2
type: Transform
- - uid: 27708
+ - uid: 27775
components:
- pos: 0.5,35.5
parent: 2
type: Transform
- - uid: 27709
+ - uid: 27776
components:
- pos: -3.5,35.5
parent: 2
type: Transform
- - uid: 27710
+ - uid: 27777
components:
- pos: -4.5,35.5
parent: 2
type: Transform
- - uid: 27711
+ - uid: 27778
components:
- pos: -4.5,34.5
parent: 2
type: Transform
- - uid: 27712
+ - uid: 27779
components:
- pos: -4.5,33.5
parent: 2
type: Transform
- - uid: 27713
+ - uid: 27780
components:
- pos: -23.5,58.5
parent: 2
type: Transform
- - uid: 27714
+ - uid: 27781
components:
- pos: -20.5,72.5
parent: 2
type: Transform
- - uid: 27715
+ - uid: 27782
components:
- pos: -23.5,57.5
parent: 2
type: Transform
- - uid: 27716
+ - uid: 27783
components:
- pos: 49.5,41.5
parent: 2
type: Transform
- - uid: 27717
+ - uid: 27784
components:
- pos: 12.5,31.5
parent: 2
type: Transform
- - uid: 27718
+ - uid: 27785
components:
- pos: 6.5,29.5
parent: 2
type: Transform
- - uid: 27719
+ - uid: 27786
components:
- pos: 4.5,33.5
parent: 2
type: Transform
- - uid: 27720
+ - uid: 27787
components:
- pos: -4.5,24.5
parent: 2
type: Transform
- - uid: 27721
+ - uid: 27788
components:
- pos: -5.5,24.5
parent: 2
type: Transform
- - uid: 27722
+ - uid: 27789
components:
- pos: -6.5,24.5
parent: 2
type: Transform
- - uid: 27723
+ - uid: 27790
components:
- pos: -7.5,24.5
parent: 2
type: Transform
- - uid: 27724
+ - uid: 27791
components:
- pos: -7.5,25.5
parent: 2
type: Transform
- - uid: 27725
+ - uid: 27792
components:
- pos: -34.5,27.5
parent: 2
type: Transform
- - uid: 27726
+ - uid: 27793
components:
- pos: -35.5,27.5
parent: 2
type: Transform
- - uid: 27727
+ - uid: 27794
components:
- pos: -35.5,28.5
parent: 2
type: Transform
- - uid: 27728
+ - uid: 27795
components:
- pos: -35.5,26.5
parent: 2
type: Transform
- - uid: 27729
+ - uid: 27796
components:
- pos: -49.5,27.5
parent: 2
type: Transform
- - uid: 27730
+ - uid: 27797
components:
- pos: -49.5,24.5
parent: 2
type: Transform
- - uid: 27731
+ - uid: 27798
components:
- rot: -1.5707963267948966 rad
pos: -49.5,16.5
parent: 2
type: Transform
- - uid: 27732
+ - uid: 27799
components:
- pos: -49.5,25.5
parent: 2
type: Transform
- - uid: 27733
+ - uid: 27800
components:
- pos: -49.5,26.5
parent: 2
type: Transform
- - uid: 27734
+ - uid: 27801
components:
- pos: -49.5,17.5
parent: 2
type: Transform
- - uid: 27735
+ - uid: 27802
components:
- pos: -49.5,18.5
parent: 2
type: Transform
- - uid: 27736
+ - uid: 27803
components:
- pos: -51.5,18.5
parent: 2
type: Transform
- - uid: 27737
+ - uid: 27804
components:
- pos: -51.5,24.5
parent: 2
type: Transform
- - uid: 27738
+ - uid: 27805
components:
- pos: 4.5,34.5
parent: 2
type: Transform
- - uid: 27739
+ - uid: 27806
components:
- pos: 5.5,29.5
parent: 2
type: Transform
- - uid: 27740
+ - uid: 27807
components:
- pos: 12.5,33.5
parent: 2
type: Transform
- - uid: 27741
+ - uid: 27808
components:
- pos: -3.5,28.5
parent: 2
type: Transform
- - uid: 27742
+ - uid: 27809
components:
- pos: 58.5,41.5
parent: 2
type: Transform
- - uid: 27743
+ - uid: 27810
components:
- rot: -1.5707963267948966 rad
pos: 55.5,41.5
parent: 2
type: Transform
- - uid: 27744
+ - uid: 27811
components:
- pos: 54.5,51.5
parent: 2
type: Transform
- - uid: 27745
+ - uid: 27812
components:
- pos: 57.5,60.5
parent: 2
type: Transform
- - uid: 27746
+ - uid: 27813
components:
- rot: -1.5707963267948966 rad
pos: 56.5,41.5
parent: 2
type: Transform
- - uid: 27747
+ - uid: 27814
components:
- rot: -1.5707963267948966 rad
pos: 42.5,38.5
parent: 2
type: Transform
- - uid: 27748
+ - uid: 27815
components:
- pos: -29.5,27.5
parent: 2
type: Transform
- - uid: 27749
+ - uid: 27816
components:
- pos: -35.5,29.5
parent: 2
type: Transform
- - uid: 27750
+ - uid: 27817
components:
- pos: -29.5,29.5
parent: 2
type: Transform
- - uid: 27751
+ - uid: 27818
components:
- pos: -29.5,30.5
parent: 2
type: Transform
- - uid: 27752
+ - uid: 27819
components:
- pos: -29.5,31.5
parent: 2
type: Transform
- - uid: 27753
+ - uid: 27820
components:
- pos: -29.5,32.5
parent: 2
type: Transform
- - uid: 27754
+ - uid: 27821
components:
- pos: -35.5,30.5
parent: 2
type: Transform
- - uid: 27755
+ - uid: 27822
components:
- pos: -35.5,31.5
parent: 2
type: Transform
- - uid: 27756
+ - uid: 27823
components:
- pos: -35.5,32.5
parent: 2
type: Transform
- - uid: 27757
+ - uid: 27824
components:
- pos: -34.5,32.5
parent: 2
type: Transform
- - uid: 27758
+ - uid: 27825
components:
- pos: -30.5,32.5
parent: 2
type: Transform
- - uid: 27759
+ - uid: 27826
components:
- pos: -49.5,32.5
parent: 2
type: Transform
- - uid: 27760
+ - uid: 27827
components:
- pos: -50.5,32.5
parent: 2
type: Transform
- - uid: 27761
+ - uid: 27828
components:
- pos: -51.5,32.5
parent: 2
type: Transform
- - uid: 27762
+ - uid: 27829
components:
- pos: -52.5,32.5
parent: 2
type: Transform
- - uid: 27763
+ - uid: 27830
components:
- pos: -49.5,28.5
parent: 2
type: Transform
- - uid: 27764
+ - uid: 27831
components:
- pos: -50.5,28.5
parent: 2
type: Transform
- - uid: 27765
+ - uid: 27832
components:
- pos: -51.5,28.5
parent: 2
type: Transform
- - uid: 27766
+ - uid: 27833
components:
- pos: -52.5,28.5
parent: 2
type: Transform
- - uid: 27767
+ - uid: 27834
components:
- pos: -49.5,36.5
parent: 2
type: Transform
- - uid: 27768
+ - uid: 27835
components:
- pos: -50.5,36.5
parent: 2
type: Transform
- - uid: 27769
+ - uid: 27836
components:
- pos: -51.5,36.5
parent: 2
type: Transform
- - uid: 27770
+ - uid: 27837
components:
- pos: -52.5,36.5
parent: 2
type: Transform
- - uid: 27771
+ - uid: 27838
components:
- rot: -1.5707963267948966 rad
pos: -53.5,24.5
parent: 2
type: Transform
- - uid: 27772
+ - uid: 27839
components:
- rot: -1.5707963267948966 rad
pos: -53.5,18.5
parent: 2
type: Transform
- - uid: 27773
+ - uid: 27840
components:
- pos: -49.5,37.5
parent: 2
type: Transform
- - uid: 27774
+ - uid: 27841
components:
- pos: -48.5,37.5
parent: 2
type: Transform
- - uid: 27775
+ - uid: 27842
components:
- pos: -35.5,34.5
parent: 2
type: Transform
- - uid: 27776
+ - uid: 27843
components:
- pos: -35.5,33.5
parent: 2
type: Transform
- - uid: 27777
+ - uid: 27844
components:
- pos: 49.5,43.5
parent: 2
type: Transform
- - uid: 27778
+ - uid: 27845
components:
- pos: 49.5,48.5
parent: 2
type: Transform
- - uid: 27779
+ - uid: 27846
components:
- pos: 59.5,49.5
parent: 2
type: Transform
- - uid: 27780
+ - uid: 27847
components:
- pos: 49.5,49.5
parent: 2
type: Transform
- - uid: 27781
+ - uid: 27848
components:
- pos: 59.5,44.5
parent: 2
type: Transform
- - uid: 27782
+ - uid: 27849
components:
- rot: 3.141592653589793 rad
pos: 61.5,42.5
parent: 2
type: Transform
- - uid: 27783
+ - uid: 27850
components:
- pos: 49.5,42.5
parent: 2
type: Transform
- - uid: 27784
+ - uid: 27851
components:
- pos: 59.5,42.5
parent: 2
type: Transform
- - uid: 27785
+ - uid: 27852
components:
- pos: 66.5,-31.5
parent: 2
type: Transform
- - uid: 27786
+ - uid: 27853
components:
- pos: 66.5,-32.5
parent: 2
type: Transform
- - uid: 27787
+ - uid: 27854
components:
- rot: -1.5707963267948966 rad
pos: 59.5,-25.5
parent: 2
type: Transform
- - uid: 27788
+ - uid: 27855
components:
- rot: 3.141592653589793 rad
pos: 10.5,-80.5
parent: 2
type: Transform
- - uid: 27789
+ - uid: 27856
components:
- pos: -57.5,-0.5
parent: 2
type: Transform
- - uid: 27790
+ - uid: 27857
components:
- pos: -56.5,-0.5
parent: 2
type: Transform
- - uid: 27791
+ - uid: 27858
components:
- pos: -55.5,-0.5
parent: 2
type: Transform
- - uid: 27792
+ - uid: 27859
components:
- pos: -57.5,-2.5
parent: 2
type: Transform
- - uid: 27793
+ - uid: 27860
components:
- rot: 3.141592653589793 rad
pos: -53.5,1.5
parent: 2
type: Transform
- - uid: 27794
+ - uid: 27861
components:
- rot: 3.141592653589793 rad
pos: -54.5,1.5
parent: 2
type: Transform
- - uid: 27795
+ - uid: 27862
components:
- pos: -55.5,1.5
parent: 2
type: Transform
- - uid: 27796
+ - uid: 27863
components:
- pos: -55.5,0.5
parent: 2
type: Transform
- - uid: 27797
+ - uid: 27864
components:
- pos: -50.5,16.5
parent: 2
type: Transform
- - uid: 27798
+ - uid: 27865
components:
- pos: 58.5,48.5
parent: 2
type: Transform
- - uid: 27799
+ - uid: 27866
components:
- pos: 56.5,44.5
parent: 2
type: Transform
- - uid: 27800
+ - uid: 27867
components:
- pos: 50.5,48.5
parent: 2
type: Transform
- - uid: 27801
+ - uid: 27868
components:
- pos: 54.5,46.5
parent: 2
type: Transform
- - uid: 27802
+ - uid: 27869
components:
- pos: 54.5,48.5
parent: 2
type: Transform
- - uid: 27803
+ - uid: 27870
components:
- rot: 3.141592653589793 rad
pos: -53.5,2.5
parent: 2
type: Transform
- - uid: 27804
+ - uid: 27871
components:
- rot: 3.141592653589793 rad
pos: -53.5,3.5
parent: 2
type: Transform
- - uid: 27805
+ - uid: 27872
components:
- rot: 3.141592653589793 rad
pos: -53.5,4.5
parent: 2
type: Transform
- - uid: 27806
+ - uid: 27873
components:
- rot: 3.141592653589793 rad
pos: -53.5,5.5
parent: 2
type: Transform
- - uid: 27807
+ - uid: 27874
components:
- rot: 3.141592653589793 rad
pos: -53.5,6.5
parent: 2
type: Transform
- - uid: 27808
+ - uid: 27875
components:
- rot: 3.141592653589793 rad
pos: -53.5,7.5
parent: 2
type: Transform
- - uid: 27809
+ - uid: 27876
components:
- rot: 3.141592653589793 rad
pos: -53.5,8.5
parent: 2
type: Transform
- - uid: 27810
+ - uid: 27877
components:
- rot: 3.141592653589793 rad
pos: -53.5,9.5
parent: 2
type: Transform
- - uid: 27811
+ - uid: 27878
components:
- rot: 3.141592653589793 rad
pos: -53.5,12.5
parent: 2
type: Transform
- - uid: 27812
+ - uid: 27879
components:
- rot: 3.141592653589793 rad
pos: -53.5,13.5
parent: 2
type: Transform
- - uid: 27813
+ - uid: 27880
components:
- rot: 3.141592653589793 rad
pos: -53.5,15.5
parent: 2
type: Transform
- - uid: 27814
+ - uid: 27881
components:
- rot: 3.141592653589793 rad
pos: -53.5,14.5
parent: 2
type: Transform
- - uid: 27815
+ - uid: 27882
components:
- rot: 3.141592653589793 rad
pos: -53.5,16.5
parent: 2
type: Transform
- - uid: 27816
+ - uid: 27883
components:
- rot: 3.141592653589793 rad
pos: -52.5,16.5
parent: 2
type: Transform
- - uid: 27817
+ - uid: 27884
components:
- rot: 3.141592653589793 rad
pos: -51.5,16.5
parent: 2
type: Transform
- - uid: 27818
+ - uid: 27885
components:
- pos: 56.5,46.5
parent: 2
type: Transform
- - uid: 27819
+ - uid: 27886
components:
- rot: -1.5707963267948966 rad
pos: 55.5,40.5
parent: 2
type: Transform
- - uid: 27820
+ - uid: 27887
components:
- pos: -20.5,-50.5
parent: 2
type: Transform
- - uid: 27821
+ - uid: 27888
components:
- pos: 58.5,44.5
parent: 2
type: Transform
- - uid: 27822
+ - uid: 27889
components:
- pos: 58.5,46.5
parent: 2
type: Transform
- - uid: 27823
+ - uid: 27890
components:
- pos: 50.5,44.5
parent: 2
type: Transform
- - uid: 27824
+ - uid: 27891
components:
- pos: 52.5,44.5
parent: 2
type: Transform
- - uid: 27825
+ - uid: 27892
components:
- rot: 1.5707963267948966 rad
pos: 66.5,0.5
parent: 2
type: Transform
- - uid: 27826
+ - uid: 27893
components:
- pos: 52.5,46.5
parent: 2
type: Transform
- - uid: 27827
+ - uid: 27894
components:
- pos: 50.5,46.5
parent: 2
type: Transform
- - uid: 27828
+ - uid: 27895
components:
- pos: 56.5,48.5
parent: 2
type: Transform
- - uid: 27829
+ - uid: 27896
components:
- pos: 54.5,44.5
parent: 2
type: Transform
- - uid: 27830
+ - uid: 27897
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-10.5
parent: 2
type: Transform
- - uid: 27831
+ - uid: 27898
components:
- pos: 68.5,-16.5
parent: 2
type: Transform
- - uid: 27832
+ - uid: 27899
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-6.5
parent: 2
type: Transform
- - uid: 27833
+ - uid: 27900
components:
- rot: 1.5707963267948966 rad
pos: 67.5,-2.5
parent: 2
type: Transform
- - uid: 27834
+ - uid: 27901
components:
- pos: 52.5,48.5
parent: 2
type: Transform
- - uid: 27835
+ - uid: 27902
components:
- rot: -1.5707963267948966 rad
pos: -7.5,37.5
parent: 2
type: Transform
- - uid: 27836
+ - uid: 27903
components:
- rot: -1.5707963267948966 rad
pos: -7.5,39.5
parent: 2
type: Transform
- - uid: 27837
+ - uid: 27904
components:
- rot: 3.141592653589793 rad
pos: 21.5,-40.5
parent: 2
type: Transform
- - uid: 27838
+ - uid: 27905
components:
- pos: 13.5,-71.5
parent: 2
type: Transform
- - uid: 27839
+ - uid: 27906
components:
- pos: 24.5,-26.5
parent: 2
type: Transform
- - uid: 27840
+ - uid: 27907
components:
- pos: 22.5,-26.5
parent: 2
type: Transform
- - uid: 27841
+ - uid: 27908
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-25.5
parent: 2
type: Transform
- - uid: 27842
+ - uid: 27909
components:
- rot: 3.141592653589793 rad
pos: 24.5,27.5
parent: 2
type: Transform
- - uid: 27843
+ - uid: 27910
components:
- pos: 64.5,-61.5
parent: 2
type: Transform
- - uid: 27844
+ - uid: 27911
components:
- pos: 27.5,-33.5
parent: 2
type: Transform
- - uid: 27845
+ - uid: 27912
components:
- pos: -47.5,52.5
parent: 2
type: Transform
- - uid: 27846
+ - uid: 27913
components:
- pos: -41.5,52.5
parent: 2
type: Transform
- - uid: 27847
+ - uid: 27914
components:
- pos: 52.5,-25.5
parent: 2
type: Transform
- - uid: 27848
+ - uid: 27915
components:
- pos: 55.5,-25.5
parent: 2
type: Transform
- - uid: 27849
+ - uid: 27916
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-63.5
parent: 2
type: Transform
- - uid: 27850
+ - uid: 27917
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-83.5
parent: 2
type: Transform
- - uid: 27851
+ - uid: 27918
components:
- rot: 3.141592653589793 rad
pos: 24.5,28.5
parent: 2
type: Transform
- - uid: 27852
+ - uid: 27919
components:
- rot: 3.141592653589793 rad
pos: 24.5,29.5
parent: 2
type: Transform
- - uid: 27853
+ - uid: 27920
components:
- rot: 3.141592653589793 rad
pos: 24.5,30.5
parent: 2
type: Transform
- - uid: 27854
+ - uid: 27921
components:
- rot: 3.141592653589793 rad
pos: 24.5,31.5
parent: 2
type: Transform
- - uid: 27855
+ - uid: 27922
components:
- rot: 3.141592653589793 rad
pos: 24.5,32.5
parent: 2
type: Transform
- - uid: 27856
+ - uid: 27923
components:
- rot: 3.141592653589793 rad
pos: 24.5,33.5
parent: 2
type: Transform
- - uid: 27857
+ - uid: 27924
components:
- rot: 3.141592653589793 rad
pos: 24.5,34.5
parent: 2
type: Transform
- - uid: 27858
+ - uid: 27925
components:
- rot: 3.141592653589793 rad
pos: 25.5,34.5
parent: 2
type: Transform
- - uid: 27859
+ - uid: 27926
components:
- rot: 3.141592653589793 rad
pos: 26.5,34.5
parent: 2
type: Transform
- - uid: 27860
+ - uid: 27927
components:
- rot: 3.141592653589793 rad
pos: 27.5,34.5
parent: 2
type: Transform
- - uid: 27861
+ - uid: 27928
components:
- rot: 3.141592653589793 rad
pos: 28.5,34.5
parent: 2
type: Transform
- - uid: 27862
+ - uid: 27929
components:
- rot: 3.141592653589793 rad
pos: 30.5,34.5
parent: 2
type: Transform
- - uid: 27863
+ - uid: 27930
components:
- rot: 3.141592653589793 rad
pos: 31.5,34.5
parent: 2
type: Transform
- - uid: 27864
+ - uid: 27931
components:
- rot: 3.141592653589793 rad
pos: 32.5,34.5
parent: 2
type: Transform
- - uid: 27865
+ - uid: 27932
components:
- rot: 3.141592653589793 rad
pos: 33.5,34.5
parent: 2
type: Transform
- - uid: 27866
+ - uid: 27933
components:
- rot: 3.141592653589793 rad
pos: 34.5,34.5
parent: 2
type: Transform
- - uid: 27867
+ - uid: 27934
components:
- rot: 3.141592653589793 rad
pos: 34.5,33.5
parent: 2
type: Transform
- - uid: 27868
+ - uid: 27935
components:
- rot: 3.141592653589793 rad
pos: 34.5,32.5
parent: 2
type: Transform
- - uid: 27869
+ - uid: 27936
components:
- rot: 3.141592653589793 rad
pos: 34.5,31.5
parent: 2
type: Transform
- - uid: 27870
+ - uid: 27937
components:
- rot: 3.141592653589793 rad
pos: 34.5,30.5
parent: 2
type: Transform
- - uid: 27871
+ - uid: 27938
components:
- rot: 3.141592653589793 rad
pos: 34.5,29.5
parent: 2
type: Transform
- - uid: 27872
+ - uid: 27939
components:
- rot: 3.141592653589793 rad
pos: 34.5,28.5
parent: 2
type: Transform
- - uid: 27873
+ - uid: 27940
components:
- rot: 3.141592653589793 rad
pos: 34.5,27.5
parent: 2
type: Transform
- - uid: 27874
+ - uid: 27941
components:
- rot: 3.141592653589793 rad
pos: 12.5,-79.5
parent: 2
type: Transform
- - uid: 27875
+ - uid: 27942
components:
- rot: 3.141592653589793 rad
pos: 11.5,-79.5
parent: 2
type: Transform
- - uid: 27876
+ - uid: 27943
components:
- rot: -1.5707963267948966 rad
pos: 57.5,-25.5
parent: 2
type: Transform
- - uid: 27877
+ - uid: 27944
components:
- rot: 1.5707963267948966 rad
pos: 39.5,9.5
parent: 2
type: Transform
- - uid: 27878
+ - uid: 27945
components:
- pos: 34.5,21.5
parent: 2
type: Transform
- - uid: 27879
+ - uid: 27946
components:
- pos: 67.5,-67.5
parent: 2
type: Transform
- - uid: 27880
+ - uid: 27947
components:
- pos: 69.5,-69.5
parent: 2
type: Transform
- - uid: 27881
+ - uid: 27948
components:
- pos: -78.5,-19.5
parent: 2
type: Transform
- - uid: 27882
+ - uid: 27949
components:
- pos: -78.5,-5.5
parent: 2
type: Transform
- - uid: 27883
+ - uid: 27950
components:
- pos: -71.5,-2.5
parent: 2
type: Transform
- - uid: 27884
+ - uid: 27951
components:
- pos: -64.5,-2.5
parent: 2
type: Transform
- - uid: 27885
+ - uid: 27952
components:
- pos: -64.5,-47.5
parent: 2
type: Transform
- - uid: 27886
+ - uid: 27953
components:
- pos: 38.5,31.5
parent: 2
type: Transform
- - uid: 27887
+ - uid: 27954
components:
- pos: 32.5,39.5
parent: 2
type: Transform
- - uid: 27888
+ - uid: 27955
components:
- pos: 24.5,39.5
parent: 2
type: Transform
- - uid: 27889
+ - uid: 27956
components:
- pos: 73.5,-40.5
parent: 2
type: Transform
- - uid: 27890
+ - uid: 27957
components:
- pos: 77.5,-42.5
parent: 2
type: Transform
- - uid: 27891
+ - uid: 27958
components:
- pos: 77.5,-48.5
parent: 2
type: Transform
- - uid: 27892
+ - uid: 27959
components:
- pos: 27.5,-26.5
parent: 2
type: Transform
- - uid: 27893
+ - uid: 27960
components:
- pos: 59.5,50.5
parent: 2
type: Transform
- - uid: 27894
+ - uid: 27961
components:
- pos: -32.5,-73.5
parent: 2
type: Transform
- - uid: 27895
+ - uid: 27962
components:
- rot: -1.5707963267948966 rad
pos: 46.5,50.5
parent: 2
type: Transform
- - uid: 27896
+ - uid: 27963
components:
- rot: -1.5707963267948966 rad
pos: 45.5,50.5
parent: 2
type: Transform
- - uid: 27897
+ - uid: 27964
components:
- rot: -1.5707963267948966 rad
pos: 44.5,50.5
parent: 2
type: Transform
- - uid: 27898
+ - uid: 27965
components:
- pos: 48.5,44.5
parent: 2
type: Transform
- - uid: 27899
+ - uid: 27966
components:
- pos: 47.5,44.5
parent: 2
type: Transform
- - uid: 27900
+ - uid: 27967
components:
- pos: 47.5,43.5
parent: 2
type: Transform
- - uid: 27901
+ - uid: 27968
components:
- pos: 45.5,43.5
parent: 2
type: Transform
- - uid: 27902
+ - uid: 27969
components:
- pos: 44.5,43.5
parent: 2
type: Transform
- - uid: 27903
+ - uid: 27970
components:
- pos: 59.5,51.5
parent: 2
type: Transform
- - uid: 27904
+ - uid: 27971
components:
- pos: 59.5,52.5
parent: 2
type: Transform
- - uid: 27905
+ - uid: 27972
components:
- pos: 59.5,53.5
parent: 2
type: Transform
- - uid: 27906
+ - uid: 27973
components:
- pos: 58.5,53.5
parent: 2
type: Transform
- - uid: 27907
+ - uid: 27974
components:
- pos: 57.5,53.5
parent: 2
type: Transform
- - uid: 27908
+ - uid: 27975
components:
- pos: 51.5,53.5
parent: 2
type: Transform
- - uid: 27909
+ - uid: 27976
components:
- pos: 50.5,53.5
parent: 2
type: Transform
- - uid: 27910
+ - uid: 27977
components:
- pos: 49.5,53.5
parent: 2
type: Transform
- - uid: 27911
+ - uid: 27978
components:
- pos: 49.5,52.5
parent: 2
type: Transform
- - uid: 27912
+ - uid: 27979
components:
- pos: 49.5,51.5
parent: 2
type: Transform
- - uid: 27913
+ - uid: 27980
components:
- rot: -1.5707963267948966 rad
pos: 55.5,39.5
parent: 2
type: Transform
- - uid: 27914
+ - uid: 27981
components:
- rot: -1.5707963267948966 rad
pos: 55.5,38.5
parent: 2
type: Transform
- - uid: 27915
+ - uid: 27982
components:
- pos: 61.5,30.5
parent: 2
type: Transform
- - uid: 27916
+ - uid: 27983
components:
- pos: 59.5,31.5
parent: 2
type: Transform
- - uid: 27917
+ - uid: 27984
components:
- pos: 59.5,34.5
parent: 2
type: Transform
- - uid: 27918
+ - uid: 27985
components:
- rot: -1.5707963267948966 rad
pos: 58.5,35.5
parent: 2
type: Transform
- - uid: 27919
+ - uid: 27986
components:
- rot: -1.5707963267948966 rad
pos: 57.5,35.5
parent: 2
type: Transform
- - uid: 27920
+ - uid: 27987
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-65.5
parent: 2
type: Transform
- - uid: 27921
+ - uid: 27988
components:
- pos: 10.5,-36.5
parent: 2
type: Transform
- - uid: 27922
+ - uid: 27989
components:
- rot: -1.5707963267948966 rad
pos: 57.5,38.5
parent: 2
type: Transform
- - uid: 27923
+ - uid: 27990
components:
- rot: 3.141592653589793 rad
pos: 61.5,41.5
parent: 2
type: Transform
- - uid: 27924
+ - uid: 27991
components:
- rot: 3.141592653589793 rad
pos: 60.5,41.5
parent: 2
type: Transform
- - uid: 27925
+ - uid: 27992
components:
- rot: -1.5707963267948966 rad
pos: 42.5,42.5
parent: 2
type: Transform
- - uid: 27926
+ - uid: 27993
components:
- rot: -1.5707963267948966 rad
pos: 43.5,43.5
parent: 2
type: Transform
- - uid: 27927
+ - uid: 27994
components:
- rot: -1.5707963267948966 rad
pos: 49.5,46.5
parent: 2
type: Transform
- - uid: 27928
+ - uid: 27995
components:
- rot: -1.5707963267948966 rad
pos: -7.5,41.5
parent: 2
type: Transform
- - uid: 27929
+ - uid: 27996
components:
- rot: -1.5707963267948966 rad
pos: -7.5,40.5
parent: 2
type: Transform
- - uid: 27930
+ - uid: 27997
components:
- rot: -1.5707963267948966 rad
pos: -7.5,34.5
parent: 2
type: Transform
- - uid: 27931
+ - uid: 27998
components:
- rot: -1.5707963267948966 rad
pos: -7.5,35.5
parent: 2
type: Transform
- - uid: 27932
+ - uid: 27999
components:
- rot: -1.5707963267948966 rad
pos: -7.5,36.5
parent: 2
type: Transform
- - uid: 27933
+ - uid: 28000
components:
- rot: 3.141592653589793 rad
pos: 3.5,60.5
parent: 2
type: Transform
- - uid: 27934
+ - uid: 28001
components:
- rot: -1.5707963267948966 rad
pos: -7.5,42.5
parent: 2
type: Transform
- - uid: 27935
+ - uid: 28002
components:
- pos: -18.5,68.5
parent: 2
type: Transform
- - uid: 27936
+ - uid: 28003
components:
- pos: -16.5,59.5
parent: 2
type: Transform
- - uid: 27937
+ - uid: 28004
components:
- pos: -16.5,58.5
parent: 2
type: Transform
- - uid: 27938
+ - uid: 28005
components:
- pos: -23.5,59.5
parent: 2
type: Transform
- - uid: 27939
+ - uid: 28006
components:
- pos: -23.5,64.5
parent: 2
type: Transform
- - uid: 27940
+ - uid: 28007
components:
- pos: -23.5,65.5
parent: 2
type: Transform
- - uid: 27941
+ - uid: 28008
components:
- pos: -16.5,54.5
parent: 2
type: Transform
- - uid: 27942
+ - uid: 28009
components:
- pos: -14.5,52.5
parent: 2
type: Transform
- - uid: 27943
+ - uid: 28010
components:
- pos: -14.5,53.5
parent: 2
type: Transform
- - uid: 27944
+ - uid: 28011
components:
- pos: -16.5,52.5
parent: 2
type: Transform
- - uid: 27945
+ - uid: 28012
components:
- pos: -15.5,52.5
parent: 2
type: Transform
- - uid: 27946
+ - uid: 28013
components:
- pos: -23.5,71.5
parent: 2
type: Transform
- - uid: 27947
+ - uid: 28014
components:
- pos: -23.5,70.5
parent: 2
type: Transform
- - uid: 27948
+ - uid: 28015
components:
- pos: -23.5,69.5
parent: 2
type: Transform
- - uid: 27949
+ - uid: 28016
components:
- pos: -20.5,71.5
parent: 2
type: Transform
- - uid: 27950
+ - uid: 28017
components:
- pos: -20.5,70.5
parent: 2
type: Transform
- - uid: 27951
+ - uid: 28018
components:
- pos: -16.5,69.5
parent: 2
type: Transform
- - uid: 27952
+ - uid: 28019
components:
- pos: -23.5,60.5
parent: 2
type: Transform
- - uid: 27953
+ - uid: 28020
components:
- pos: -23.5,74.5
parent: 2
type: Transform
- - uid: 27954
+ - uid: 28021
components:
- pos: -23.5,75.5
parent: 2
type: Transform
- - uid: 27955
+ - uid: 28022
components:
- pos: -20.5,75.5
parent: 2
type: Transform
- - uid: 27956
+ - uid: 28023
components:
- pos: -20.5,74.5
parent: 2
type: Transform
- - uid: 27957
+ - uid: 28024
components:
- pos: -15.5,59.5
parent: 2
type: Transform
- - uid: 27958
+ - uid: 28025
components:
- pos: -14.5,59.5
parent: 2
type: Transform
- - uid: 27959
+ - uid: 28026
components:
- pos: -11.5,74.5
parent: 2
type: Transform
- - uid: 27960
+ - uid: 28027
components:
- pos: -11.5,75.5
parent: 2
type: Transform
- - uid: 27961
+ - uid: 28028
components:
- pos: -14.5,75.5
parent: 2
type: Transform
- - uid: 27962
+ - uid: 28029
components:
- pos: -14.5,74.5
parent: 2
type: Transform
- - uid: 27963
+ - uid: 28030
components:
- pos: -14.5,57.5
parent: 2
type: Transform
- - uid: 27964
+ - uid: 28031
components:
- pos: -16.5,57.5
parent: 2
type: Transform
- - uid: 27965
+ - uid: 28032
components:
- pos: -14.5,54.5
parent: 2
type: Transform
- - uid: 27966
+ - uid: 28033
components:
- pos: -23.5,67.5
parent: 2
type: Transform
- - uid: 27967
+ - uid: 28034
components:
- pos: -23.5,68.5
parent: 2
type: Transform
- - uid: 27968
+ - uid: 28035
components:
- pos: -16.5,70.5
parent: 2
type: Transform
- - uid: 27969
+ - uid: 28036
components:
- pos: -11.5,66.5
parent: 2
type: Transform
- - uid: 27970
+ - uid: 28037
components:
- pos: -23.5,66.5
parent: 2
type: Transform
- - uid: 27971
+ - uid: 28038
components:
- pos: -18.5,69.5
parent: 2
type: Transform
- - uid: 27972
+ - uid: 28039
components:
- pos: -11.5,65.5
parent: 2
type: Transform
- - uid: 27973
+ - uid: 28040
components:
- pos: -11.5,64.5
parent: 2
type: Transform
- - uid: 27974
+ - uid: 28041
components:
- pos: -10.5,63.5
parent: 2
type: Transform
- - uid: 27975
+ - uid: 28042
components:
- pos: -14.5,70.5
parent: 2
type: Transform
- - uid: 27976
+ - uid: 28043
components:
- pos: -14.5,72.5
parent: 2
type: Transform
- - uid: 27977
+ - uid: 28044
components:
- pos: -11.5,72.5
parent: 2
type: Transform
- - uid: 27978
+ - uid: 28045
components:
- pos: -11.5,71.5
parent: 2
type: Transform
- - uid: 27979
+ - uid: 28046
components:
- pos: -11.5,70.5
parent: 2
type: Transform
- - uid: 27980
+ - uid: 28047
components:
- pos: -14.5,69.5
parent: 2
type: Transform
- - uid: 27981
+ - uid: 28048
components:
- rot: -1.5707963267948966 rad
pos: -14.5,58.5
parent: 2
type: Transform
- - uid: 27982
+ - uid: 28049
components:
- pos: -14.5,71.5
parent: 2
type: Transform
- - uid: 27983
+ - uid: 28050
components:
- pos: -18.5,70.5
parent: 2
type: Transform
- - uid: 27984
+ - uid: 28051
components:
- pos: -20.5,69.5
parent: 2
type: Transform
- - uid: 27985
+ - uid: 28052
components:
- pos: -20.5,68.5
parent: 2
type: Transform
- - uid: 27986
+ - uid: 28053
components:
- pos: -19.5,68.5
parent: 2
type: Transform
- - uid: 27987
+ - uid: 28054
components:
- pos: -14.5,68.5
parent: 2
type: Transform
- - uid: 27988
+ - uid: 28055
components:
- pos: -15.5,68.5
parent: 2
type: Transform
- - uid: 27989
+ - uid: 28056
components:
- pos: -16.5,68.5
parent: 2
type: Transform
- - uid: 27990
+ - uid: 28057
components:
- rot: -1.5707963267948966 rad
pos: -28.5,33.5
parent: 2
type: Transform
- - uid: 27991
+ - uid: 28058
components:
- rot: -1.5707963267948966 rad
pos: -28.5,34.5
parent: 2
type: Transform
- - uid: 27992
+ - uid: 28059
components:
- rot: -1.5707963267948966 rad
pos: -29.5,35.5
parent: 2
type: Transform
- - uid: 27993
+ - uid: 28060
components:
- rot: -1.5707963267948966 rad
pos: -28.5,35.5
parent: 2
type: Transform
- - uid: 27994
+ - uid: 28061
components:
- rot: -1.5707963267948966 rad
pos: -30.5,35.5
parent: 2
type: Transform
- - uid: 27995
+ - uid: 28062
components:
- rot: -1.5707963267948966 rad
pos: -34.5,35.5
parent: 2
type: Transform
- - uid: 27996
+ - uid: 28063
components:
- rot: -1.5707963267948966 rad
pos: -35.5,35.5
parent: 2
type: Transform
- - uid: 27997
+ - uid: 28064
components:
- rot: -1.5707963267948966 rad
pos: -28.5,32.5
parent: 2
type: Transform
- - uid: 27998
+ - uid: 28065
components:
- pos: 60.5,30.5
parent: 2
type: Transform
- - uid: 27999
+ - uid: 28066
components:
- pos: 9.5,-35.5
parent: 2
type: Transform
- - uid: 28000
+ - uid: 28067
components:
- pos: 3.5,58.5
parent: 2
type: Transform
- - uid: 28001
+ - uid: 28068
components:
- pos: 2.5,45.5
parent: 2
type: Transform
- - uid: 28002
+ - uid: 28069
components:
- pos: 2.5,44.5
parent: 2
type: Transform
- - uid: 28003
+ - uid: 28070
components:
- pos: 2.5,52.5
parent: 2
type: Transform
- - uid: 28004
+ - uid: 28071
components:
- pos: 2.5,53.5
parent: 2
type: Transform
- - uid: 28005
+ - uid: 28072
components:
- pos: 2.5,54.5
parent: 2
type: Transform
- - uid: 28006
+ - uid: 28073
components:
- pos: 2.5,55.5
parent: 2
type: Transform
- - uid: 28007
+ - uid: 28074
components:
- pos: 3.5,56.5
parent: 2
type: Transform
- - uid: 28008
+ - uid: 28075
components:
- pos: -7.5,43.5
parent: 2
type: Transform
- - uid: 28009
+ - uid: 28076
components:
- pos: 3.5,59.5
parent: 2
type: Transform
- - uid: 28010
+ - uid: 28077
components:
- pos: 2.5,56.5
parent: 2
type: Transform
- - uid: 28011
+ - uid: 28078
components:
- pos: -4.5,42.5
parent: 2
type: Transform
- - uid: 28012
+ - uid: 28079
components:
- pos: -5.5,42.5
parent: 2
type: Transform
- - uid: 28013
+ - uid: 28080
components:
- pos: -0.5,42.5
parent: 2
type: Transform
- - uid: 28014
+ - uid: 28081
components:
- pos: 0.5,42.5
parent: 2
type: Transform
- - uid: 28015
+ - uid: 28082
components:
- pos: 2.5,60.5
parent: 2
type: Transform
- - uid: 28016
+ - uid: 28083
components:
- pos: 5.5,49.5
parent: 2
type: Transform
- - uid: 28017
+ - uid: 28084
components:
- pos: 10.5,50.5
parent: 2
type: Transform
- - uid: 28018
+ - uid: 28085
components:
- pos: 10.5,46.5
parent: 2
type: Transform
- - uid: 28019
+ - uid: 28086
components:
- pos: 34.5,49.5
parent: 2
type: Transform
- - uid: 28020
+ - uid: 28087
components:
- pos: 35.5,49.5
parent: 2
type: Transform
- - uid: 28021
+ - uid: 28088
components:
- rot: -1.5707963267948966 rad
pos: 21.5,44.5
parent: 2
type: Transform
- - uid: 28022
+ - uid: 28089
components:
- rot: -1.5707963267948966 rad
pos: 21.5,46.5
parent: 2
type: Transform
- - uid: 28023
+ - uid: 28090
components:
- pos: 59.5,35.5
parent: 2
type: Transform
- - uid: 28024
+ - uid: 28091
components:
- rot: -1.5707963267948966 rad
pos: 42.5,37.5
parent: 2
type: Transform
- - uid: 28025
+ - uid: 28092
components:
- rot: -1.5707963267948966 rad
pos: 44.5,34.5
parent: 2
type: Transform
- - uid: 28026
+ - uid: 28093
components:
- rot: -1.5707963267948966 rad
pos: 44.5,36.5
parent: 2
type: Transform
- - uid: 28027
+ - uid: 28094
components:
- rot: -1.5707963267948966 rad
pos: 44.5,35.5
parent: 2
type: Transform
- - uid: 28028
+ - uid: 28095
components:
- rot: -1.5707963267948966 rad
pos: 43.5,38.5
parent: 2
type: Transform
- - uid: 28029
+ - uid: 28096
components:
- rot: 1.5707963267948966 rad
pos: 44.5,40.5
parent: 2
type: Transform
- - uid: 28030
+ - uid: 28097
components:
- rot: 1.5707963267948966 rad
pos: 44.5,39.5
parent: 2
type: Transform
- - uid: 28031
+ - uid: 28098
components:
- rot: 1.5707963267948966 rad
pos: 44.5,38.5
parent: 2
type: Transform
- - uid: 28032
+ - uid: 28099
components:
- rot: -1.5707963267948966 rad
pos: 42.5,36.5
parent: 2
type: Transform
- - uid: 28033
+ - uid: 28100
components:
- rot: 1.5707963267948966 rad
pos: 46.5,40.5
parent: 2
type: Transform
- - uid: 28034
+ - uid: 28101
components:
- rot: 1.5707963267948966 rad
pos: 48.5,40.5
parent: 2
type: Transform
- - uid: 28035
+ - uid: 28102
components:
- rot: 1.5707963267948966 rad
pos: 48.5,41.5
parent: 2
type: Transform
- - uid: 28036
+ - uid: 28103
components:
- rot: -1.5707963267948966 rad
pos: 43.5,36.5
parent: 2
type: Transform
- - uid: 28037
+ - uid: 28104
components:
- rot: 3.141592653589793 rad
pos: 42.5,34.5
parent: 2
type: Transform
- - uid: 28038
+ - uid: 28105
components:
- rot: 3.141592653589793 rad
pos: 41.5,34.5
parent: 2
type: Transform
- - uid: 28039
+ - uid: 28106
components:
- rot: 3.141592653589793 rad
pos: 41.5,33.5
parent: 2
type: Transform
- - uid: 28040
+ - uid: 28107
components:
- rot: 3.141592653589793 rad
pos: 41.5,29.5
parent: 2
type: Transform
- - uid: 28041
+ - uid: 28108
components:
- rot: 3.141592653589793 rad
pos: 42.5,28.5
parent: 2
type: Transform
- - uid: 28042
+ - uid: 28109
components:
- rot: 3.141592653589793 rad
pos: 42.5,29.5
parent: 2
type: Transform
- - uid: 28043
+ - uid: 28110
components:
- rot: 3.141592653589793 rad
pos: 43.5,28.5
parent: 2
type: Transform
- - uid: 28044
+ - uid: 28111
components:
- rot: -1.5707963267948966 rad
pos: 57.5,36.5
parent: 2
type: Transform
- - uid: 28045
+ - uid: 28112
components:
- rot: -1.5707963267948966 rad
pos: 56.5,38.5
parent: 2
type: Transform
- - uid: 28046
+ - uid: 28113
components:
- pos: 71.5,-65.5
parent: 2
type: Transform
- - uid: 28047
+ - uid: 28114
components:
- rot: 1.5707963267948966 rad
pos: 43.5,34.5
parent: 2
type: Transform
- - uid: 28048
+ - uid: 28115
components:
- rot: -1.5707963267948966 rad
pos: 62.5,30.5
parent: 2
type: Transform
- - uid: 28049
+ - uid: 28116
components:
- rot: -1.5707963267948966 rad
pos: 64.5,30.5
parent: 2
type: Transform
- - uid: 28050
+ - uid: 28117
components:
- rot: -1.5707963267948966 rad
pos: 65.5,30.5
parent: 2
type: Transform
- - uid: 28051
+ - uid: 28118
components:
- rot: -1.5707963267948966 rad
pos: 65.5,28.5
parent: 2
type: Transform
- - uid: 28052
+ - uid: 28119
components:
- rot: -1.5707963267948966 rad
pos: 65.5,29.5
parent: 2
type: Transform
- - uid: 28053
+ - uid: 28120
components:
- pos: 30.5,48.5
parent: 2
type: Transform
- - uid: 28054
+ - uid: 28121
components:
- rot: -1.5707963267948966 rad
pos: 27.5,47.5
parent: 2
type: Transform
- - uid: 28055
+ - uid: 28122
components:
- rot: -1.5707963267948966 rad
pos: 27.5,43.5
parent: 2
type: Transform
- - uid: 28056
+ - uid: 28123
components:
- rot: -1.5707963267948966 rad
pos: 28.5,43.5
parent: 2
type: Transform
- - uid: 28057
+ - uid: 28124
components:
- rot: -1.5707963267948966 rad
pos: 30.5,43.5
parent: 2
type: Transform
- - uid: 28058
+ - uid: 28125
components:
- rot: -1.5707963267948966 rad
pos: 31.5,43.5
parent: 2
type: Transform
- - uid: 28059
+ - uid: 28126
components:
- pos: 2.5,46.5
parent: 2
type: Transform
- - uid: 28060
+ - uid: 28127
components:
- pos: -6.5,43.5
parent: 2
type: Transform
- - uid: 28061
+ - uid: 28128
components:
- pos: -5.5,43.5
parent: 2
type: Transform
- - uid: 28062
+ - uid: 28129
components:
- pos: 2.5,43.5
parent: 2
type: Transform
- - uid: 28063
+ - uid: 28130
components:
- pos: 1.5,43.5
parent: 2
type: Transform
- - uid: 28064
+ - uid: 28131
components:
- pos: 0.5,43.5
parent: 2
type: Transform
- - uid: 28065
+ - uid: 28132
components:
- pos: -8.5,60.5
parent: 2
type: Transform
- - uid: 28066
+ - uid: 28133
components:
- pos: -3.5,60.5
parent: 2
type: Transform
- - uid: 28067
+ - uid: 28134
components:
- pos: -4.5,60.5
parent: 2
type: Transform
- - uid: 28068
+ - uid: 28135
components:
- pos: -5.5,60.5
parent: 2
type: Transform
- - uid: 28069
+ - uid: 28136
components:
- pos: -6.5,60.5
parent: 2
type: Transform
- - uid: 28070
+ - uid: 28137
components:
- pos: -7.5,60.5
parent: 2
type: Transform
- - uid: 28071
+ - uid: 28138
components:
- pos: 1.5,60.5
parent: 2
type: Transform
- - uid: 28072
+ - uid: 28139
components:
- pos: 0.5,60.5
parent: 2
type: Transform
- - uid: 28073
+ - uid: 28140
components:
- rot: -1.5707963267948966 rad
pos: -7.5,38.5
parent: 2
type: Transform
- - uid: 28074
+ - uid: 28141
components:
- pos: 18.5,35.5
parent: 2
type: Transform
- - uid: 28075
+ - uid: 28142
components:
- pos: 19.5,35.5
parent: 2
type: Transform
- - uid: 28076
+ - uid: 28143
components:
- pos: 19.5,36.5
parent: 2
type: Transform
- - uid: 28077
+ - uid: 28144
components:
- pos: 19.5,37.5
parent: 2
type: Transform
- - uid: 28078
+ - uid: 28145
components:
- pos: 19.5,38.5
parent: 2
type: Transform
- - uid: 28079
+ - uid: 28146
components:
- pos: 19.5,39.5
parent: 2
type: Transform
- - uid: 28080
+ - uid: 28147
components:
- pos: 19.5,40.5
parent: 2
type: Transform
- - uid: 28081
+ - uid: 28148
components:
- pos: 18.5,40.5
parent: 2
type: Transform
- - uid: 28082
+ - uid: 28149
components:
- pos: 17.5,40.5
parent: 2
type: Transform
- - uid: 28083
+ - uid: 28150
components:
- pos: 17.5,41.5
parent: 2
type: Transform
- - uid: 28084
+ - uid: 28151
components:
- pos: 15.5,41.5
parent: 2
type: Transform
- - uid: 28085
+ - uid: 28152
components:
- pos: 15.5,40.5
parent: 2
type: Transform
- - uid: 28086
+ - uid: 28153
components:
- pos: 14.5,40.5
parent: 2
type: Transform
- - uid: 28087
+ - uid: 28154
components:
- pos: 13.5,40.5
parent: 2
type: Transform
- - uid: 28088
+ - uid: 28155
components:
- pos: 13.5,39.5
parent: 2
type: Transform
- - uid: 28089
+ - uid: 28156
components:
- pos: 13.5,38.5
parent: 2
type: Transform
- - uid: 28090
+ - uid: 28157
components:
- pos: 13.5,37.5
parent: 2
type: Transform
- - uid: 28091
+ - uid: 28158
components:
- pos: 13.5,36.5
parent: 2
type: Transform
- - uid: 28092
+ - uid: 28159
components:
- pos: 13.5,35.5
parent: 2
type: Transform
- - uid: 28093
+ - uid: 28160
components:
- pos: 14.5,35.5
parent: 2
type: Transform
- - uid: 28094
+ - uid: 28161
components:
- pos: 0.5,61.5
parent: 2
type: Transform
- - uid: 28095
+ - uid: 28162
components:
- pos: 0.5,63.5
parent: 2
type: Transform
- - uid: 28096
+ - uid: 28163
components:
- pos: 0.5,62.5
parent: 2
type: Transform
- - uid: 28097
+ - uid: 28164
components:
- pos: -3.5,63.5
parent: 2
type: Transform
- - uid: 28098
+ - uid: 28165
components:
- pos: -3.5,62.5
parent: 2
type: Transform
- - uid: 28099
+ - uid: 28166
components:
- pos: -3.5,61.5
parent: 2
type: Transform
- - uid: 28100
+ - uid: 28167
components:
- pos: 0.5,64.5
parent: 2
type: Transform
- - uid: 28101
+ - uid: 28168
components:
- pos: -0.5,64.5
parent: 2
type: Transform
- - uid: 28102
+ - uid: 28169
components:
- pos: -2.5,64.5
parent: 2
type: Transform
- - uid: 28103
+ - uid: 28170
components:
- pos: -3.5,64.5
parent: 2
type: Transform
- - uid: 28104
+ - uid: 28171
components:
- pos: -4.5,64.5
parent: 2
type: Transform
- - uid: 28105
+ - uid: 28172
components:
- pos: -5.5,64.5
parent: 2
type: Transform
- - uid: 28106
+ - uid: 28173
components:
- pos: -5.5,65.5
parent: 2
type: Transform
- - uid: 28107
+ - uid: 28174
components:
- pos: -5.5,65.5
parent: 2
type: Transform
- - uid: 28108
+ - uid: 28175
components:
- pos: -6.5,65.5
parent: 2
type: Transform
- - uid: 28109
+ - uid: 28176
components:
- pos: -7.5,65.5
parent: 2
type: Transform
- - uid: 28110
+ - uid: 28177
components:
- pos: -7.5,66.5
parent: 2
type: Transform
- - uid: 28111
+ - uid: 28178
components:
- pos: -8.5,66.5
parent: 2
type: Transform
- - uid: 28112
+ - uid: 28179
components:
- pos: -8.5,67.5
parent: 2
type: Transform
- - uid: 28113
+ - uid: 28180
components:
- pos: -8.5,68.5
parent: 2
type: Transform
- - uid: 28114
+ - uid: 28181
components:
- pos: -8.5,70.5
parent: 2
type: Transform
- - uid: 28115
+ - uid: 28182
components:
- pos: -8.5,71.5
parent: 2
type: Transform
- - uid: 28116
+ - uid: 28183
components:
- pos: -8.5,72.5
parent: 2
type: Transform
- - uid: 28117
+ - uid: 28184
components:
- pos: -7.5,72.5
parent: 2
type: Transform
- - uid: 28118
+ - uid: 28185
components:
- pos: -7.5,73.5
parent: 2
type: Transform
- - uid: 28119
+ - uid: 28186
components:
- pos: -6.5,73.5
parent: 2
type: Transform
- - uid: 28120
+ - uid: 28187
components:
- pos: -6.5,74.5
parent: 2
type: Transform
- - uid: 28121
+ - uid: 28188
components:
- pos: -5.5,74.5
parent: 2
type: Transform
- - uid: 28122
+ - uid: 28189
components:
- pos: -4.5,74.5
parent: 2
type: Transform
- - uid: 28123
+ - uid: 28190
components:
- pos: -3.5,74.5
parent: 2
type: Transform
- - uid: 28124
+ - uid: 28191
components:
- pos: -2.5,74.5
parent: 2
type: Transform
- - uid: 28125
+ - uid: 28192
components:
- pos: -1.5,74.5
parent: 2
type: Transform
- - uid: 28126
+ - uid: 28193
components:
- pos: -0.5,74.5
parent: 2
type: Transform
- - uid: 28127
+ - uid: 28194
components:
- pos: 0.5,74.5
parent: 2
type: Transform
- - uid: 28128
+ - uid: 28195
components:
- pos: 1.5,74.5
parent: 2
type: Transform
- - uid: 28129
+ - uid: 28196
components:
- pos: 2.5,74.5
parent: 2
type: Transform
- - uid: 28130
+ - uid: 28197
components:
- pos: 3.5,74.5
parent: 2
type: Transform
- - uid: 28131
+ - uid: 28198
components:
- pos: 3.5,73.5
parent: 2
type: Transform
- - uid: 28132
+ - uid: 28199
components:
- pos: 4.5,73.5
parent: 2
type: Transform
- - uid: 28133
+ - uid: 28200
components:
- pos: 4.5,72.5
parent: 2
type: Transform
- - uid: 28134
+ - uid: 28201
components:
- pos: 5.5,72.5
parent: 2
type: Transform
- - uid: 28135
+ - uid: 28202
components:
- pos: 5.5,71.5
parent: 2
type: Transform
- - uid: 28136
+ - uid: 28203
components:
- pos: 5.5,70.5
parent: 2
type: Transform
- - uid: 28137
+ - uid: 28204
components:
- pos: 5.5,68.5
parent: 2
type: Transform
- - uid: 28138
+ - uid: 28205
components:
- pos: 5.5,67.5
parent: 2
type: Transform
- - uid: 28139
+ - uid: 28206
components:
- pos: 5.5,66.5
parent: 2
type: Transform
- - uid: 28140
+ - uid: 28207
components:
- pos: 4.5,66.5
parent: 2
type: Transform
- - uid: 28141
+ - uid: 28208
components:
- pos: 4.5,65.5
parent: 2
type: Transform
- - uid: 28142
+ - uid: 28209
components:
- pos: 3.5,65.5
parent: 2
type: Transform
- - uid: 28143
+ - uid: 28210
components:
- pos: 2.5,64.5
parent: 2
type: Transform
- - uid: 28144
+ - uid: 28211
components:
- pos: 2.5,65.5
parent: 2
type: Transform
- - uid: 28145
+ - uid: 28212
components:
- pos: 1.5,64.5
parent: 2
type: Transform
- - uid: 28146
+ - uid: 28213
components:
- rot: 3.141592653589793 rad
pos: 69.5,39.5
parent: 2
type: Transform
- - uid: 28147
+ - uid: 28214
components:
- rot: 3.141592653589793 rad
pos: 69.5,38.5
parent: 2
type: Transform
- - uid: 28148
+ - uid: 28215
components:
- rot: 3.141592653589793 rad
pos: 69.5,37.5
parent: 2
type: Transform
- - uid: 28149
+ - uid: 28216
components:
- rot: 3.141592653589793 rad
pos: 75.5,39.5
parent: 2
type: Transform
- - uid: 28150
+ - uid: 28217
components:
- rot: 3.141592653589793 rad
pos: 75.5,38.5
parent: 2
type: Transform
- - uid: 28151
+ - uid: 28218
components:
- rot: 3.141592653589793 rad
pos: 75.5,37.5
parent: 2
type: Transform
- - uid: 28152
+ - uid: 28219
components:
- rot: 3.141592653589793 rad
pos: 74.5,39.5
parent: 2
type: Transform
- - uid: 28153
+ - uid: 28220
components:
- rot: 3.141592653589793 rad
pos: 72.5,39.5
parent: 2
type: Transform
- - uid: 28154
+ - uid: 28221
components:
- rot: 3.141592653589793 rad
pos: 70.5,39.5
parent: 2
type: Transform
- - uid: 28155
+ - uid: 28222
components:
- rot: 3.141592653589793 rad
pos: 69.5,35.5
parent: 2
type: Transform
- - uid: 28156
+ - uid: 28223
components:
- rot: 3.141592653589793 rad
pos: 69.5,34.5
parent: 2
type: Transform
- - uid: 28157
+ - uid: 28224
components:
- rot: 3.141592653589793 rad
pos: 69.5,33.5
parent: 2
type: Transform
- - uid: 28158
+ - uid: 28225
components:
- rot: 3.141592653589793 rad
pos: 70.5,33.5
parent: 2
type: Transform
- - uid: 28159
+ - uid: 28226
components:
- rot: 3.141592653589793 rad
pos: 72.5,33.5
parent: 2
type: Transform
- - uid: 28160
+ - uid: 28227
components:
- rot: 3.141592653589793 rad
pos: 74.5,33.5
parent: 2
type: Transform
- - uid: 28161
+ - uid: 28228
components:
- rot: 3.141592653589793 rad
pos: 75.5,33.5
parent: 2
type: Transform
- - uid: 28162
+ - uid: 28229
components:
- rot: 3.141592653589793 rad
pos: 75.5,34.5
parent: 2
type: Transform
- - uid: 28163
+ - uid: 28230
components:
- rot: 3.141592653589793 rad
pos: 75.5,35.5
parent: 2
type: Transform
- - uid: 28164
+ - uid: 28231
components:
- pos: 76.5,37.5
parent: 2
type: Transform
- - uid: 28165
+ - uid: 28232
components:
- pos: 77.5,37.5
parent: 2
type: Transform
- - uid: 28166
+ - uid: 28233
components:
- pos: 76.5,35.5
parent: 2
type: Transform
- - uid: 28167
+ - uid: 28234
components:
- pos: 77.5,35.5
parent: 2
type: Transform
- - uid: 28168
+ - uid: 28235
components:
- pos: 68.5,37.5
parent: 2
type: Transform
- - uid: 28169
+ - uid: 28236
components:
- pos: 67.5,37.5
parent: 2
type: Transform
- - uid: 28170
+ - uid: 28237
components:
- pos: 67.5,35.5
parent: 2
type: Transform
- - uid: 28171
+ - uid: 28238
components:
- pos: 68.5,35.5
parent: 2
type: Transform
- - uid: 28172
+ - uid: 28239
components:
- pos: 64.5,32.5
parent: 2
type: Transform
- - uid: 28173
+ - uid: 28240
components:
- pos: 64.5,31.5
parent: 2
type: Transform
- - uid: 28174
+ - uid: 28241
components:
- pos: 62.5,32.5
parent: 2
type: Transform
- - uid: 28175
+ - uid: 28242
components:
- pos: 62.5,31.5
parent: 2
type: Transform
- - uid: 28176
+ - uid: 28243
components:
- pos: -38.5,43.5
parent: 2
type: Transform
- - uid: 28177
+ - uid: 28244
components:
- pos: -38.5,42.5
parent: 2
type: Transform
- - uid: 28178
+ - uid: 28245
components:
- pos: -38.5,41.5
parent: 2
type: Transform
- - uid: 28179
+ - uid: 28246
components:
- pos: -36.5,43.5
parent: 2
type: Transform
- - uid: 28180
+ - uid: 28247
components:
- pos: -36.5,42.5
parent: 2
type: Transform
- - uid: 28181
+ - uid: 28248
components:
- pos: -36.5,41.5
parent: 2
type: Transform
- - uid: 28182
+ - uid: 28249
components:
- pos: -38.5,40.5
parent: 2
type: Transform
- - uid: 28183
+ - uid: 28250
components:
- pos: -39.5,40.5
parent: 2
type: Transform
- - uid: 28184
+ - uid: 28251
components:
- pos: -40.5,40.5
parent: 2
type: Transform
- - uid: 28185
+ - uid: 28252
components:
- pos: -41.5,40.5
parent: 2
type: Transform
- - uid: 28186
+ - uid: 28253
components:
- pos: -42.5,40.5
parent: 2
type: Transform
- - uid: 28187
+ - uid: 28254
components:
- rot: -1.5707963267948966 rad
pos: -48.5,46.5
parent: 2
type: Transform
- - uid: 28188
+ - uid: 28255
components:
- rot: -1.5707963267948966 rad
pos: -48.5,47.5
parent: 2
type: Transform
- - uid: 28189
+ - uid: 28256
components:
- rot: -1.5707963267948966 rad
pos: -50.5,47.5
parent: 2
type: Transform
- - uid: 28190
+ - uid: 28257
components:
- pos: -48.5,40.5
parent: 2
type: Transform
- - uid: 28191
+ - uid: 28258
components:
- pos: -48.5,39.5
parent: 2
type: Transform
- - uid: 28192
+ - uid: 28259
components:
- pos: -48.5,38.5
parent: 2
type: Transform
- - uid: 28193
+ - uid: 28260
components:
- pos: -36.5,40.5
parent: 2
type: Transform
- - uid: 28194
+ - uid: 28261
components:
- pos: -35.5,40.5
parent: 2
type: Transform
- - uid: 28195
+ - uid: 28262
components:
- pos: -34.5,40.5
parent: 2
type: Transform
- - uid: 28196
+ - uid: 28263
components:
- pos: -31.5,40.5
parent: 2
type: Transform
- - uid: 28197
+ - uid: 28264
components:
- pos: -30.5,40.5
parent: 2
type: Transform
- - uid: 28198
+ - uid: 28265
components:
- pos: -30.5,41.5
parent: 2
type: Transform
- - uid: 28199
+ - uid: 28266
components:
- pos: -30.5,42.5
parent: 2
type: Transform
- - uid: 28200
+ - uid: 28267
components:
- pos: -29.5,42.5
parent: 2
type: Transform
- - uid: 28201
+ - uid: 28268
components:
- pos: -26.5,47.5
parent: 2
type: Transform
- - uid: 28202
+ - uid: 28269
components:
- pos: -27.5,47.5
parent: 2
type: Transform
- - uid: 28203
+ - uid: 28270
components:
- pos: -28.5,47.5
parent: 2
type: Transform
- - uid: 28204
+ - uid: 28271
components:
- pos: -29.5,47.5
parent: 2
type: Transform
- - uid: 28205
+ - uid: 28272
components:
- pos: -29.5,46.5
parent: 2
type: Transform
- - uid: 28206
+ - uid: 28273
components:
- pos: -25.5,47.5
parent: 2
type: Transform
- - uid: 28207
+ - uid: 28274
components:
- pos: -25.5,48.5
parent: 2
type: Transform
- - uid: 28208
+ - uid: 28275
components:
- pos: 32.5,48.5
parent: 2
type: Transform
- - uid: 28209
+ - uid: 28276
components:
- pos: 31.5,48.5
parent: 2
type: Transform
- - uid: 28210
+ - uid: 28277
components:
- pos: 31.5,47.5
parent: 2
type: Transform
- - uid: 28211
+ - uid: 28278
components:
- pos: 31.5,46.5
parent: 2
type: Transform
- - uid: 28212
+ - uid: 28279
components:
- pos: 31.5,44.5
parent: 2
type: Transform
- - uid: 28213
+ - uid: 28280
components:
- pos: 27.5,46.5
parent: 2
type: Transform
- - uid: 28214
+ - uid: 28281
components:
- pos: 27.5,44.5
parent: 2
type: Transform
- - uid: 28215
+ - uid: 28282
components:
- pos: 28.5,48.5
parent: 2
type: Transform
- - uid: 28216
+ - uid: 28283
components:
- rot: -1.5707963267948966 rad
pos: -1.5,73.5
parent: 2
type: Transform
- - uid: 28217
+ - uid: 28284
components:
- pos: 46.5,51.5
parent: 2
type: Transform
- - uid: 28218
+ - uid: 28285
components:
- pos: 47.5,51.5
parent: 2
type: Transform
- - uid: 28219
+ - uid: 28286
components:
- pos: 48.5,51.5
parent: 2
type: Transform
- - uid: 28220
+ - uid: 28287
components:
- pos: 30.5,42.5
parent: 2
type: Transform
- - uid: 28221
+ - uid: 28288
components:
- pos: 30.5,41.5
parent: 2
type: Transform
- - uid: 28222
+ - uid: 28289
components:
- pos: 28.5,42.5
parent: 2
type: Transform
- - uid: 28223
+ - uid: 28290
components:
- pos: 28.5,41.5
parent: 2
type: Transform
- - uid: 28224
+ - uid: 28291
components:
- pos: 27.5,48.5
parent: 2
type: Transform
- - uid: 28225
+ - uid: 28292
components:
- pos: -8.5,63.5
parent: 2
type: Transform
- - uid: 28226
+ - uid: 28293
components:
- pos: -9.5,63.5
parent: 2
type: Transform
- - uid: 28227
+ - uid: 28294
components:
- pos: -11.5,63.5
parent: 2
type: Transform
- - uid: 28228
+ - uid: 28295
components:
- pos: -8.5,62.5
parent: 2
type: Transform
- - uid: 28229
+ - uid: 28296
components:
- pos: -8.5,61.5
parent: 2
type: Transform
- - uid: 28230
+ - uid: 28297
components:
- pos: 10.5,-35.5
parent: 2
type: Transform
- - uid: 28231
+ - uid: 28298
components:
- pos: 9.5,-30.5
parent: 2
type: Transform
- - uid: 28232
+ - uid: 28299
components:
- pos: 10.5,-37.5
parent: 2
type: Transform
- - uid: 28233
+ - uid: 28300
components:
- pos: -25.5,49.5
parent: 2
type: Transform
- - uid: 28234
+ - uid: 28301
components:
- pos: -25.5,50.5
parent: 2
type: Transform
- - uid: 28235
+ - uid: 28302
components:
- pos: -26.5,50.5
parent: 2
type: Transform
- - uid: 28236
+ - uid: 28303
components:
- pos: -26.5,51.5
parent: 2
type: Transform
- - uid: 28237
+ - uid: 28304
components:
- pos: -26.5,52.5
parent: 2
type: Transform
- - uid: 28238
+ - uid: 28305
components:
- pos: -26.5,55.5
parent: 2
type: Transform
- - uid: 28239
+ - uid: 28306
components:
- pos: -26.5,56.5
parent: 2
type: Transform
- - uid: 28240
+ - uid: 28307
components:
- pos: -25.5,56.5
parent: 2
type: Transform
- - uid: 28241
+ - uid: 28308
components:
- pos: -25.5,57.5
parent: 2
type: Transform
- - uid: 28242
+ - uid: 28309
components:
- pos: -24.5,57.5
parent: 2
type: Transform
- - uid: 28243
+ - uid: 28310
components:
- pos: 3.5,57.5
parent: 2
type: Transform
- - uid: 28244
+ - uid: 28311
components:
- pos: 10.5,-30.5
parent: 2
type: Transform
- - uid: 28245
+ - uid: 28312
components:
- pos: 9.5,-33.5
parent: 2
type: Transform
- - uid: 28246
+ - uid: 28313
components:
- rot: 3.141592653589793 rad
pos: -16.5,-81.5
parent: 2
type: Transform
- - uid: 28247
+ - uid: 28314
components:
- rot: 3.141592653589793 rad
pos: -16.5,-82.5
parent: 2
type: Transform
- - uid: 28248
+ - uid: 28315
components:
- rot: 3.141592653589793 rad
pos: -16.5,-83.5
parent: 2
type: Transform
- - uid: 28249
+ - uid: 28316
components:
- rot: 3.141592653589793 rad
pos: -16.5,-84.5
parent: 2
type: Transform
- - uid: 28250
+ - uid: 28317
components:
- rot: 3.141592653589793 rad
pos: -16.5,-85.5
parent: 2
type: Transform
- - uid: 28251
+ - uid: 28318
components:
- rot: 3.141592653589793 rad
pos: -16.5,-86.5
parent: 2
type: Transform
- - uid: 28252
+ - uid: 28319
components:
- rot: 3.141592653589793 rad
pos: -16.5,-87.5
parent: 2
type: Transform
- - uid: 28253
+ - uid: 28320
components:
- rot: 3.141592653589793 rad
pos: -16.5,-89.5
parent: 2
type: Transform
- - uid: 28254
+ - uid: 28321
components:
- rot: 3.141592653589793 rad
pos: -15.5,-89.5
parent: 2
type: Transform
- - uid: 28255
+ - uid: 28322
components:
- rot: 3.141592653589793 rad
pos: -14.5,-89.5
parent: 2
type: Transform
- - uid: 28256
+ - uid: 28323
components:
- rot: 3.141592653589793 rad
pos: -13.5,-89.5
parent: 2
type: Transform
- - uid: 28257
+ - uid: 28324
components:
- rot: 3.141592653589793 rad
pos: -12.5,-89.5
parent: 2
type: Transform
- - uid: 28258
+ - uid: 28325
components:
- rot: 3.141592653589793 rad
pos: -11.5,-89.5
parent: 2
type: Transform
- - uid: 28259
+ - uid: 28326
components:
- rot: 3.141592653589793 rad
pos: -10.5,-89.5
parent: 2
type: Transform
- - uid: 28260
+ - uid: 28327
components:
- rot: 3.141592653589793 rad
pos: -9.5,-89.5
parent: 2
type: Transform
- - uid: 28261
+ - uid: 28328
components:
- rot: 3.141592653589793 rad
pos: -8.5,-89.5
parent: 2
type: Transform
- - uid: 28262
+ - uid: 28329
components:
- rot: 3.141592653589793 rad
pos: -9.5,-94.5
parent: 2
type: Transform
- - uid: 28263
+ - uid: 28330
components:
- pos: -5.5,-94.5
parent: 2
type: Transform
- - uid: 28264
+ - uid: 28331
components:
- rot: 3.141592653589793 rad
pos: -6.5,-89.5
parent: 2
type: Transform
- - uid: 28265
+ - uid: 28332
components:
- rot: 3.141592653589793 rad
pos: -5.5,-89.5
parent: 2
type: Transform
- - uid: 28266
+ - uid: 28333
components:
- rot: 3.141592653589793 rad
pos: -4.5,-89.5
parent: 2
type: Transform
- - uid: 28267
+ - uid: 28334
components:
- rot: 3.141592653589793 rad
pos: -3.5,-89.5
parent: 2
type: Transform
- - uid: 28268
+ - uid: 28335
components:
- rot: 3.141592653589793 rad
pos: -3.5,-85.5
parent: 2
type: Transform
- - uid: 28269
+ - uid: 28336
components:
- rot: 3.141592653589793 rad
pos: -3.5,-86.5
parent: 2
type: Transform
- - uid: 28270
+ - uid: 28337
components:
- rot: 3.141592653589793 rad
pos: -3.5,-87.5
parent: 2
type: Transform
- - uid: 28271
+ - uid: 28338
components:
- rot: 3.141592653589793 rad
pos: -3.5,-88.5
parent: 2
type: Transform
- - uid: 28272
+ - uid: 28339
components:
- rot: 3.141592653589793 rad
pos: -3.5,-84.5
parent: 2
type: Transform
- - uid: 28273
+ - uid: 28340
components:
- rot: -1.5707963267948966 rad
pos: 29.5,48.5
parent: 2
type: Transform
- - uid: 28274
+ - uid: 28341
components:
- pos: -18.5,-95.5
parent: 2
type: Transform
- - uid: 28275
+ - uid: 28342
components:
- pos: -18.5,-99.5
parent: 2
type: Transform
- - uid: 28276
+ - uid: 28343
components:
- pos: -26.5,-95.5
parent: 2
type: Transform
- - uid: 28277
+ - uid: 28344
components:
- pos: -26.5,-99.5
parent: 2
type: Transform
- - uid: 28278
+ - uid: 28345
components:
- pos: -18.5,-94.5
parent: 2
type: Transform
- - uid: 28279
+ - uid: 28346
components:
- pos: -19.5,-94.5
parent: 2
type: Transform
- - uid: 28280
+ - uid: 28347
components:
- pos: -20.5,-94.5
parent: 2
type: Transform
- - uid: 28281
+ - uid: 28348
components:
- pos: -24.5,-94.5
parent: 2
type: Transform
- - uid: 28282
+ - uid: 28349
components:
- pos: -25.5,-94.5
parent: 2
type: Transform
- - uid: 28283
+ - uid: 28350
components:
- pos: -26.5,-94.5
parent: 2
type: Transform
- - uid: 28284
+ - uid: 28351
components:
- pos: -18.5,-100.5
parent: 2
type: Transform
- - uid: 28285
+ - uid: 28352
components:
- pos: -19.5,-100.5
parent: 2
type: Transform
- - uid: 28286
+ - uid: 28353
components:
- pos: -20.5,-100.5
parent: 2
type: Transform
- - uid: 28287
+ - uid: 28354
components:
- pos: -26.5,-100.5
parent: 2
type: Transform
- - uid: 28288
+ - uid: 28355
components:
- pos: -25.5,-100.5
parent: 2
type: Transform
- - uid: 28289
+ - uid: 28356
components:
- pos: -24.5,-100.5
parent: 2
type: Transform
- - uid: 28290
+ - uid: 28357
components:
- pos: -17.5,-95.5
parent: 2
type: Transform
- - uid: 28291
+ - uid: 28358
components:
- pos: -16.5,-95.5
parent: 2
type: Transform
- - uid: 28292
+ - uid: 28359
components:
- pos: -15.5,-95.5
parent: 2
type: Transform
- - uid: 28293
+ - uid: 28360
components:
- pos: -14.5,-95.5
parent: 2
type: Transform
- - uid: 28294
+ - uid: 28361
components:
- pos: -17.5,-99.5
parent: 2
type: Transform
- - uid: 28295
+ - uid: 28362
components:
- pos: -16.5,-99.5
parent: 2
type: Transform
- - uid: 28296
+ - uid: 28363
components:
- pos: -15.5,-99.5
parent: 2
type: Transform
- - uid: 28297
+ - uid: 28364
components:
- pos: -14.5,-99.5
parent: 2
type: Transform
- - uid: 28298
+ - uid: 28365
components:
- pos: -27.5,-95.5
parent: 2
type: Transform
- - uid: 28299
+ - uid: 28366
components:
- pos: -28.5,-95.5
parent: 2
type: Transform
- - uid: 28300
+ - uid: 28367
components:
- pos: -29.5,-95.5
parent: 2
type: Transform
- - uid: 28301
+ - uid: 28368
components:
- pos: -30.5,-95.5
parent: 2
type: Transform
- - uid: 28302
+ - uid: 28369
components:
- pos: -27.5,-99.5
parent: 2
type: Transform
- - uid: 28303
+ - uid: 28370
components:
- pos: -28.5,-99.5
parent: 2
type: Transform
- - uid: 28304
+ - uid: 28371
components:
- pos: -29.5,-99.5
parent: 2
type: Transform
- - uid: 28305
+ - uid: 28372
components:
- pos: -30.5,-99.5
parent: 2
type: Transform
- - uid: 28306
+ - uid: 28373
components:
- pos: -13.5,-95.5
parent: 2
type: Transform
- - uid: 28307
+ - uid: 28374
components:
- pos: -13.5,-99.5
parent: 2
type: Transform
- - uid: 28308
+ - uid: 28375
components:
- pos: -31.5,-95.5
parent: 2
type: Transform
- - uid: 28309
+ - uid: 28376
components:
- pos: -31.5,-99.5
parent: 2
type: Transform
- - uid: 28310
+ - uid: 28377
components:
- pos: -10.5,-94.5
parent: 2
type: Transform
- - uid: 28311
+ - uid: 28378
components:
- pos: -11.5,-94.5
parent: 2
type: Transform
- - uid: 28312
+ - uid: 28379
components:
- pos: -11.5,-95.5
parent: 2
type: Transform
- - uid: 28313
+ - uid: 28380
components:
- pos: -12.5,-95.5
parent: 2
type: Transform
- - uid: 28314
+ - uid: 28381
components:
- pos: -4.5,-94.5
parent: 2
type: Transform
- - uid: 28315
+ - uid: 28382
components:
- pos: -4.5,-95.5
parent: 2
type: Transform
- - uid: 28316
+ - uid: 28383
components:
- pos: -3.5,-95.5
parent: 2
type: Transform
- - uid: 28317
+ - uid: 28384
components:
- pos: -7.5,-101.5
parent: 2
type: Transform
- - uid: 28318
+ - uid: 28385
components:
- pos: -4.5,-101.5
parent: 2
type: Transform
- - uid: 28319
+ - uid: 28386
components:
- pos: -4.5,-100.5
parent: 2
type: Transform
- - uid: 28320
+ - uid: 28387
components:
- pos: -3.5,-100.5
parent: 2
type: Transform
- - uid: 28321
+ - uid: 28388
components:
- pos: -10.5,-101.5
parent: 2
type: Transform
- - uid: 28322
+ - uid: 28389
components:
- pos: -10.5,-100.5
parent: 2
type: Transform
- - uid: 28323
+ - uid: 28390
components:
- pos: -11.5,-100.5
parent: 2
type: Transform
- - uid: 28324
+ - uid: 28391
components:
- pos: -11.5,-99.5
parent: 2
type: Transform
- - uid: 28325
+ - uid: 28392
components:
- pos: -12.5,-99.5
parent: 2
type: Transform
- - uid: 28326
+ - uid: 28393
components:
- pos: -3.5,-96.5
parent: 2
type: Transform
- - uid: 28327
+ - uid: 28394
components:
- pos: -3.5,-99.5
parent: 2
type: Transform
- - uid: 28328
+ - uid: 28395
components:
- pos: -39.5,-87.5
parent: 2
type: Transform
- - uid: 28329
+ - uid: 28396
components:
- pos: -39.5,-88.5
parent: 2
type: Transform
- - uid: 28330
+ - uid: 28397
components:
- pos: -44.5,-87.5
parent: 2
type: Transform
- - uid: 28331
+ - uid: 28398
components:
- pos: -44.5,-88.5
parent: 2
type: Transform
- - uid: 28332
+ - uid: 28399
components:
- pos: -32.5,-99.5
parent: 2
type: Transform
- - uid: 28333
+ - uid: 28400
components:
- pos: -33.5,-99.5
parent: 2
type: Transform
- - uid: 28334
+ - uid: 28401
components:
- pos: -34.5,-99.5
parent: 2
type: Transform
- - uid: 28335
+ - uid: 28402
components:
- pos: -36.5,-99.5
parent: 2
type: Transform
- - uid: 28336
+ - uid: 28403
components:
- pos: -38.5,-99.5
parent: 2
type: Transform
- - uid: 28337
+ - uid: 28404
components:
- pos: -39.5,-99.5
parent: 2
type: Transform
- - uid: 28338
+ - uid: 28405
components:
- pos: -34.5,-101.5
parent: 2
type: Transform
- - uid: 28339
+ - uid: 28406
components:
- pos: -36.5,-101.5
parent: 2
type: Transform
- - uid: 28340
+ - uid: 28407
components:
- pos: -6.5,-94.5
parent: 2
type: Transform
- - uid: 28341
+ - uid: 28408
components:
- pos: -8.5,-94.5
parent: 2
type: Transform
- - uid: 28342
+ - uid: 28409
components:
- pos: 66.5,-15.5
parent: 2
type: Transform
- - uid: 28343
+ - uid: 28410
components:
- pos: 66.5,-16.5
parent: 2
type: Transform
- - uid: 28344
+ - uid: 28411
components:
- pos: -39.5,-91.5
parent: 2
type: Transform
- - uid: 28345
+ - uid: 28412
components:
- pos: -44.5,-91.5
parent: 2
type: Transform
- - uid: 28346
+ - uid: 28413
components:
- rot: 1.5707963267948966 rad
pos: -32.5,-95.5
parent: 2
type: Transform
- - uid: 28347
+ - uid: 28414
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-95.5
parent: 2
type: Transform
- - uid: 28348
+ - uid: 28415
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-95.5
parent: 2
type: Transform
- - uid: 28349
+ - uid: 28416
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-94.5
parent: 2
type: Transform
- - uid: 28350
+ - uid: 28417
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-93.5
parent: 2
type: Transform
- - uid: 28351
+ - uid: 28418
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-92.5
parent: 2
type: Transform
- - uid: 28352
+ - uid: 28419
components:
- rot: 1.5707963267948966 rad
pos: -35.5,-92.5
parent: 2
type: Transform
- - uid: 28353
+ - uid: 28420
components:
- rot: 1.5707963267948966 rad
pos: -36.5,-92.5
parent: 2
type: Transform
- - uid: 28354
+ - uid: 28421
components:
- rot: 1.5707963267948966 rad
pos: -37.5,-92.5
parent: 2
type: Transform
- - uid: 28355
+ - uid: 28422
components:
- rot: 1.5707963267948966 rad
pos: -38.5,-92.5
parent: 2
type: Transform
- - uid: 28356
+ - uid: 28423
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-92.5
parent: 2
type: Transform
- - uid: 28357
+ - uid: 28424
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-98.5
parent: 2
type: Transform
- - uid: 28358
+ - uid: 28425
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-98.5
parent: 2
type: Transform
- - uid: 28359
+ - uid: 28426
components:
- rot: 1.5707963267948966 rad
pos: -43.5,-98.5
parent: 2
type: Transform
- - uid: 28360
+ - uid: 28427
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-97.5
parent: 2
type: Transform
- - uid: 28361
+ - uid: 28428
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-98.5
parent: 2
type: Transform
- - uid: 28362
+ - uid: 28429
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-94.5
parent: 2
type: Transform
- - uid: 28363
+ - uid: 28430
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-93.5
parent: 2
type: Transform
- - uid: 28364
+ - uid: 28431
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-92.5
parent: 2
type: Transform
- - uid: 28365
+ - uid: 28432
components:
- pos: -20.5,-101.5
parent: 2
type: Transform
- - uid: 28366
+ - uid: 28433
components:
- pos: -24.5,-101.5
parent: 2
type: Transform
- - uid: 28367
+ - uid: 28434
components:
- pos: -75.5,-28.5
parent: 2
type: Transform
- - uid: 28368
+ - uid: 28435
components:
- pos: -75.5,-29.5
parent: 2
type: Transform
- - uid: 28369
+ - uid: 28436
components:
- pos: -75.5,-30.5
parent: 2
type: Transform
- - uid: 28370
+ - uid: 28437
components:
- pos: -75.5,-32.5
parent: 2
type: Transform
- - uid: 28371
+ - uid: 28438
components:
- pos: -77.5,-32.5
parent: 2
type: Transform
- - uid: 28372
+ - uid: 28439
components:
- pos: -69.5,-33.5
parent: 2
type: Transform
- - uid: 28373
+ - uid: 28440
components:
- pos: -70.5,-33.5
parent: 2
type: Transform
- - uid: 28374
+ - uid: 28441
components:
- pos: -71.5,-33.5
parent: 2
type: Transform
- - uid: 28375
+ - uid: 28442
components:
- pos: -74.5,-33.5
parent: 2
type: Transform
- - uid: 28376
+ - uid: 28443
components:
- pos: -75.5,-33.5
parent: 2
type: Transform
- - uid: 28377
+ - uid: 28444
components:
- pos: 70.5,-39.5
parent: 2
type: Transform
- - uid: 28378
+ - uid: 28445
components:
- pos: 71.5,-39.5
parent: 2
type: Transform
- - uid: 28379
+ - uid: 28446
components:
- rot: -1.5707963267948966 rad
pos: 65.5,-39.5
parent: 2
type: Transform
- - uid: 28380
+ - uid: 28447
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-29.5
parent: 2
type: Transform
- - uid: 28381
+ - uid: 28448
components:
- rot: -1.5707963267948966 rad
pos: 69.5,-39.5
parent: 2
type: Transform
- - uid: 28382
+ - uid: 28449
components:
- pos: 29.5,34.5
parent: 2
type: Transform
- - uid: 28383
+ - uid: 28450
components:
- rot: -1.5707963267948966 rad
pos: 77.5,-50.5
parent: 2
type: Transform
- - uid: 28384
+ - uid: 28451
components:
- rot: -1.5707963267948966 rad
pos: 53.5,-68.5
parent: 2
type: Transform
- - uid: 28385
+ - uid: 28452
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-66.5
parent: 2
type: Transform
- - uid: 28386
+ - uid: 28453
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-64.5
parent: 2
type: Transform
- - uid: 28387
+ - uid: 28454
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-64.5
parent: 2
type: Transform
- - uid: 28388
+ - uid: 28455
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-64.5
parent: 2
type: Transform
- - uid: 28389
+ - uid: 28456
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-66.5
parent: 2
type: Transform
- - uid: 28390
+ - uid: 28457
components:
- pos: 65.5,-67.5
parent: 2
type: Transform
- - uid: 28391
+ - uid: 28458
components:
- pos: 65.5,-68.5
parent: 2
type: Transform
- - uid: 28392
+ - uid: 28459
components:
- pos: 64.5,-68.5
parent: 2
type: Transform
- - uid: 28393
+ - uid: 28460
components:
- pos: 63.5,-69.5
parent: 2
type: Transform
- - uid: 28394
+ - uid: 28461
components:
- pos: 69.5,-50.5
parent: 2
type: Transform
- - uid: 28395
+ - uid: 28462
components:
- rot: -1.5707963267948966 rad
pos: 70.5,-27.5
parent: 2
type: Transform
- - uid: 28396
+ - uid: 28463
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-68.5
parent: 2
type: Transform
- - uid: 28397
+ - uid: 28464
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-66.5
parent: 2
type: Transform
- - uid: 28398
+ - uid: 28465
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-68.5
parent: 2
type: Transform
- - uid: 28399
+ - uid: 28466
components:
- rot: -1.5707963267948966 rad
pos: 76.5,-50.5
parent: 2
type: Transform
- - uid: 28400
+ - uid: 28467
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-67.5
parent: 2
type: Transform
- - uid: 28401
+ - uid: 28468
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-64.5
parent: 2
type: Transform
- - uid: 28402
+ - uid: 28469
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-67.5
parent: 2
type: Transform
- - uid: 28403
+ - uid: 28470
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-64.5
parent: 2
type: Transform
- - uid: 28404
+ - uid: 28471
components:
- pos: 7.5,-38.5
parent: 2
type: Transform
- - uid: 28405
+ - uid: 28472
components:
- rot: 3.141592653589793 rad
pos: 74.5,-28.5
parent: 2
type: Transform
- - uid: 28406
+ - uid: 28473
components:
- rot: 3.141592653589793 rad
pos: 70.5,-28.5
parent: 2
type: Transform
- - uid: 28407
+ - uid: 28474
components:
- pos: 5.5,-36.5
parent: 2
type: Transform
- - uid: 28408
+ - uid: 28475
components:
- pos: 1.5,-36.5
parent: 2
type: Transform
- - uid: 28409
+ - uid: 28476
components:
- pos: 5.5,-37.5
parent: 2
type: Transform
- - uid: 28410
+ - uid: 28477
components:
- pos: 4.5,-36.5
parent: 2
type: Transform
- - uid: 28411
+ - uid: 28478
components:
- pos: 6.5,-37.5
parent: 2
type: Transform
- - uid: 28412
+ - uid: 28479
components:
- pos: 63.5,-70.5
parent: 2
type: Transform
- - uid: 28413
+ - uid: 28480
components:
- pos: 1.5,-35.5
parent: 2
type: Transform
- - uid: 28414
+ - uid: 28481
components:
- pos: 66.5,-60.5
parent: 2
type: Transform
- - uid: 28415
+ - uid: 28482
components:
- pos: 76.5,-52.5
parent: 2
type: Transform
- - uid: 28416
+ - uid: 28483
components:
- pos: 76.5,-51.5
parent: 2
type: Transform
- - uid: 28417
+ - uid: 28484
components:
- pos: 73.5,-51.5
parent: 2
type: Transform
- - uid: 28418
+ - uid: 28485
components:
- pos: 73.5,-53.5
parent: 2
type: Transform
- - uid: 28419
+ - uid: 28486
components:
- pos: 75.5,-57.5
parent: 2
type: Transform
- - uid: 28420
+ - uid: 28487
components:
- pos: 76.5,-57.5
parent: 2
type: Transform
- - uid: 28421
+ - uid: 28488
components:
- pos: 68.5,-55.5
parent: 2
type: Transform
- - uid: 28422
+ - uid: 28489
components:
- rot: 1.5707963267948966 rad
pos: -53.5,-57.5
parent: 2
type: Transform
- - uid: 28423
+ - uid: 28490
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-57.5
parent: 2
type: Transform
- - uid: 28424
+ - uid: 28491
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-57.5
parent: 2
type: Transform
- - uid: 28425
+ - uid: 28492
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-57.5
parent: 2
type: Transform
- - uid: 28426
+ - uid: 28493
components:
- rot: 1.5707963267948966 rad
pos: -50.5,-59.5
parent: 2
type: Transform
- - uid: 28427
+ - uid: 28494
components:
- rot: 1.5707963267948966 rad
pos: -51.5,-59.5
parent: 2
type: Transform
- - uid: 28428
+ - uid: 28495
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-59.5
parent: 2
type: Transform
- - uid: 28429
+ - uid: 28496
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-61.5
parent: 2
type: Transform
- - uid: 28430
+ - uid: 28497
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-63.5
parent: 2
type: Transform
- - uid: 28431
+ - uid: 28498
components:
- rot: 1.5707963267948966 rad
pos: -56.5,-63.5
parent: 2
type: Transform
- - uid: 28432
+ - uid: 28499
components:
- pos: 13.5,-37.5
parent: 2
type: Transform
- - uid: 28433
+ - uid: 28500
components:
- pos: 59.5,-69.5
parent: 2
type: Transform
- - uid: 28434
+ - uid: 28501
components:
- pos: 9.5,-32.5
parent: 2
type: Transform
- - uid: 28435
+ - uid: 28502
components:
- rot: 1.5707963267948966 rad
pos: 65.5,-42.5
parent: 2
type: Transform
- - uid: 28436
+ - uid: 28503
components:
- pos: 10.5,-39.5
parent: 2
type: Transform
- - uid: 28437
+ - uid: 28504
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-40.5
parent: 2
type: Transform
- - uid: 28438
+ - uid: 28505
components:
- pos: 47.5,-32.5
parent: 2
type: Transform
- - uid: 28439
+ - uid: 28506
components:
- pos: 69.5,-68.5
parent: 2
type: Transform
- - uid: 28440
+ - uid: 28507
components:
- pos: 64.5,-69.5
parent: 2
type: Transform
- - uid: 28441
+ - uid: 28508
components:
- pos: 59.5,-70.5
parent: 2
type: Transform
- - uid: 28442
+ - uid: 28509
components:
- pos: 58.5,-69.5
parent: 2
type: Transform
- - uid: 28443
+ - uid: 28510
components:
- pos: 67.5,-68.5
parent: 2
type: Transform
- - uid: 28444
+ - uid: 28511
components:
- pos: 67.5,-69.5
parent: 2
type: Transform
- - uid: 28445
+ - uid: 28512
components:
- pos: 76.5,-56.5
parent: 2
type: Transform
- - uid: 28446
+ - uid: 28513
components:
- pos: 76.5,-55.5
parent: 2
type: Transform
- - uid: 28447
+ - uid: 28514
components:
- pos: 76.5,-54.5
parent: 2
type: Transform
- - uid: 28448
+ - uid: 28515
components:
- pos: 76.5,-53.5
parent: 2
type: Transform
- - uid: 28449
+ - uid: 28516
components:
- rot: 3.141592653589793 rad
pos: 48.5,3.5
parent: 2
type: Transform
- - uid: 28450
+ - uid: 28517
components:
- pos: -45.5,-37.5
parent: 2
type: Transform
- - uid: 28451
+ - uid: 28518
components:
- rot: 1.5707963267948966 rad
pos: 32.5,20.5
parent: 2
type: Transform
- - uid: 28452
+ - uid: 28519
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-88.5
parent: 2
type: Transform
- - uid: 28453
+ - uid: 28520
components:
- pos: 35.5,-75.5
parent: 2
type: Transform
- - uid: 28454
+ - uid: 28521
components:
- pos: 8.5,-84.5
parent: 2
type: Transform
- - uid: 28455
+ - uid: 28522
components:
- pos: 7.5,-84.5
parent: 2
type: Transform
- - uid: 28456
+ - uid: 28523
components:
- pos: 7.5,-85.5
parent: 2
type: Transform
- - uid: 28457
+ - uid: 28524
components:
- pos: 9.5,-84.5
parent: 2
type: Transform
- - uid: 28458
+ - uid: 28525
components:
- pos: 7.5,-86.5
parent: 2
type: Transform
- - uid: 28459
+ - uid: 28526
components:
- pos: 5.5,-84.5
parent: 2
type: Transform
- - uid: 28460
+ - uid: 28527
components:
- pos: 5.5,-85.5
parent: 2
type: Transform
- - uid: 28461
+ - uid: 28528
components:
- pos: 5.5,-86.5
parent: 2
type: Transform
- - uid: 28462
+ - uid: 28529
components:
- pos: 5.5,-81.5
parent: 2
type: Transform
- - uid: 28463
+ - uid: 28530
components:
- pos: 5.5,-83.5
parent: 2
type: Transform
- - uid: 28464
+ - uid: 28531
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-70.5
parent: 2
type: Transform
- - uid: 28465
+ - uid: 28532
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-77.5
parent: 2
type: Transform
- - uid: 28466
+ - uid: 28533
components:
- pos: 27.5,-75.5
parent: 2
type: Transform
- - uid: 28467
+ - uid: 28534
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-75.5
parent: 2
type: Transform
- - uid: 28468
+ - uid: 28535
components:
- pos: 64.5,-41.5
parent: 2
type: Transform
- - uid: 28469
+ - uid: 28536
components:
- pos: -47.5,-37.5
parent: 2
type: Transform
- - uid: 28470
+ - uid: 28537
components:
- pos: -47.5,-36.5
parent: 2
type: Transform
- - uid: 28471
+ - uid: 28538
components:
- pos: -51.5,-34.5
parent: 2
type: Transform
- - uid: 28472
+ - uid: 28539
components:
- pos: -51.5,-35.5
parent: 2
type: Transform
- - uid: 28473
+ - uid: 28540
components:
- pos: -51.5,-38.5
parent: 2
type: Transform
- - uid: 28474
+ - uid: 28541
components:
- pos: -51.5,-39.5
parent: 2
type: Transform
- - uid: 28475
+ - uid: 28542
components:
- pos: -51.5,-40.5
parent: 2
type: Transform
- - uid: 28476
+ - uid: 28543
components:
- rot: -1.5707963267948966 rad
pos: -75.5,-12.5
parent: 2
type: Transform
- - uid: 28477
+ - uid: 28544
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-86.5
parent: 2
type: Transform
- - uid: 28478
+ - uid: 28545
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-93.5
parent: 2
type: Transform
- - uid: 28479
+ - uid: 28546
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-91.5
parent: 2
type: Transform
- - uid: 28480
+ - uid: 28547
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-92.5
parent: 2
type: Transform
- - uid: 28481
+ - uid: 28548
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-91.5
parent: 2
type: Transform
- - uid: 28482
+ - uid: 28549
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-70.5
parent: 2
type: Transform
- - uid: 28483
+ - uid: 28550
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-75.5
parent: 2
type: Transform
- - uid: 28484
+ - uid: 28551
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-75.5
parent: 2
type: Transform
- - uid: 28485
+ - uid: 28552
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-76.5
parent: 2
type: Transform
- - uid: 28486
+ - uid: 28553
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-78.5
parent: 2
type: Transform
- - uid: 28487
+ - uid: 28554
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-79.5
parent: 2
type: Transform
- - uid: 28488
+ - uid: 28555
components:
- pos: 49.5,-94.5
parent: 2
type: Transform
- - uid: 28489
+ - uid: 28556
components:
- pos: 46.5,-91.5
parent: 2
type: Transform
- - uid: 28490
+ - uid: 28557
components:
- pos: 47.5,-93.5
parent: 2
type: Transform
- - uid: 28491
+ - uid: 28558
components:
- pos: 46.5,-93.5
parent: 2
type: Transform
- - uid: 28492
+ - uid: 28559
components:
- pos: 50.5,-91.5
parent: 2
type: Transform
- - uid: 28493
+ - uid: 28560
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-80.5
parent: 2
type: Transform
- - uid: 28494
+ - uid: 28561
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-77.5
parent: 2
type: Transform
- - uid: 28495
+ - uid: 28562
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-84.5
parent: 2
type: Transform
- - uid: 28496
+ - uid: 28563
components:
- pos: 49.5,-95.5
parent: 2
type: Transform
- - uid: 28497
+ - uid: 28564
components:
- pos: 47.5,-95.5
parent: 2
type: Transform
- - uid: 28498
+ - uid: 28565
components:
- pos: 46.5,-92.5
parent: 2
type: Transform
- - uid: 28499
+ - uid: 28566
components:
- pos: 50.5,-93.5
parent: 2
type: Transform
- - uid: 28500
+ - uid: 28567
components:
- pos: 49.5,-93.5
parent: 2
type: Transform
- - uid: 28501
+ - uid: 28568
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-80.5
parent: 2
type: Transform
- - uid: 28502
+ - uid: 28569
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-79.5
parent: 2
type: Transform
- - uid: 28503
+ - uid: 28570
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-74.5
parent: 2
type: Transform
- - uid: 28504
+ - uid: 28571
components:
- rot: 1.5707963267948966 rad
pos: 51.5,-70.5
parent: 2
type: Transform
- - uid: 28505
+ - uid: 28572
components:
- pos: 47.5,-94.5
parent: 2
type: Transform
- - uid: 28506
+ - uid: 28573
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-92.5
parent: 2
type: Transform
- - uid: 28507
+ - uid: 28574
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-76.5
parent: 2
type: Transform
- - uid: 28508
+ - uid: 28575
components:
- pos: 5.5,-76.5
parent: 2
type: Transform
- - uid: 28509
+ - uid: 28576
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-74.5
parent: 2
type: Transform
- - uid: 28510
+ - uid: 28577
components:
- rot: -1.5707963267948966 rad
pos: 34.5,-81.5
parent: 2
type: Transform
- - uid: 28511
+ - uid: 28578
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-90.5
parent: 2
type: Transform
- - uid: 28512
+ - uid: 28579
components:
- rot: 1.5707963267948966 rad
pos: 44.5,-88.5
parent: 2
type: Transform
- - uid: 28513
+ - uid: 28580
components:
- pos: 8.5,-79.5
parent: 2
type: Transform
- - uid: 28514
+ - uid: 28581
components:
- pos: 8.5,-80.5
parent: 2
type: Transform
- - uid: 28515
+ - uid: 28582
components:
- pos: 50.5,-92.5
parent: 2
type: Transform
- - uid: 28516
+ - uid: 28583
components:
- rot: 3.141592653589793 rad
pos: 27.5,-67.5
parent: 2
type: Transform
- - uid: 28517
+ - uid: 28584
components:
- rot: 3.141592653589793 rad
pos: 24.5,-67.5
parent: 2
type: Transform
- - uid: 28518
+ - uid: 28585
components:
- rot: 3.141592653589793 rad
pos: 24.5,-68.5
parent: 2
type: Transform
- - uid: 28519
+ - uid: 28586
components:
- rot: 3.141592653589793 rad
pos: 27.5,-68.5
parent: 2
type: Transform
- - uid: 28520
+ - uid: 28587
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-74.5
parent: 2
type: Transform
- - uid: 28521
+ - uid: 28588
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-79.5
parent: 2
type: Transform
- - uid: 28522
+ - uid: 28589
components:
- rot: -1.5707963267948966 rad
pos: 33.5,-74.5
parent: 2
type: Transform
- - uid: 28523
+ - uid: 28590
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-74.5
parent: 2
type: Transform
- - uid: 28524
+ - uid: 28591
components:
- rot: 1.5707963267948966 rad
pos: 45.5,-88.5
parent: 2
type: Transform
- - uid: 28525
+ - uid: 28592
components:
- pos: 7.5,-74.5
parent: 2
type: Transform
- - uid: 28526
+ - uid: 28593
components:
- pos: 7.5,-76.5
parent: 2
type: Transform
- - uid: 28527
+ - uid: 28594
components:
- pos: 7.5,-72.5
parent: 2
type: Transform
- - uid: 28528
+ - uid: 28595
components:
- pos: 10.5,-81.5
parent: 2
type: Transform
- - uid: 28529
+ - uid: 28596
components:
- pos: 10.5,-82.5
parent: 2
type: Transform
- - uid: 28530
+ - uid: 28597
components:
- pos: 10.5,-84.5
parent: 2
type: Transform
- - uid: 28531
+ - uid: 28598
components:
- pos: 10.5,-85.5
parent: 2
type: Transform
- - uid: 28532
+ - uid: 28599
components:
- pos: 5.5,-77.5
parent: 2
type: Transform
- - uid: 28533
+ - uid: 28600
components:
- pos: 8.5,-78.5
parent: 2
type: Transform
- - uid: 28534
+ - uid: 28601
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-87.5
parent: 2
type: Transform
- - uid: 28535
+ - uid: 28602
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-80.5
parent: 2
type: Transform
- - uid: 28536
+ - uid: 28603
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-81.5
parent: 2
type: Transform
- - uid: 28537
+ - uid: 28604
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-76.5
parent: 2
type: Transform
- - uid: 28538
+ - uid: 28605
components:
- rot: -1.5707963267948966 rad
pos: 32.5,-83.5
parent: 2
type: Transform
- - uid: 28539
+ - uid: 28606
components:
- rot: 3.141592653589793 rad
pos: 3.5,-20.5
parent: 2
type: Transform
- - uid: 28540
+ - uid: 28607
components:
- rot: 3.141592653589793 rad
pos: 3.5,-22.5
parent: 2
type: Transform
- - uid: 28541
+ - uid: 28608
components:
- rot: 3.141592653589793 rad
pos: 3.5,-23.5
parent: 2
type: Transform
- - uid: 28542
+ - uid: 28609
components:
- rot: 3.141592653589793 rad
pos: 3.5,-21.5
parent: 2
type: Transform
- - uid: 28543
+ - uid: 28610
components:
- rot: 3.141592653589793 rad
pos: 3.5,-19.5
parent: 2
type: Transform
- - uid: 28544
+ - uid: 28611
components:
- rot: 3.141592653589793 rad
pos: 39.5,13.5
parent: 2
type: Transform
- - uid: 28545
+ - uid: 28612
components:
- rot: 3.141592653589793 rad
pos: 37.5,13.5
parent: 2
type: Transform
- - uid: 28546
+ - uid: 28613
components:
- rot: 3.141592653589793 rad
pos: 38.5,13.5
parent: 2
type: Transform
- - uid: 28547
+ - uid: 28614
components:
- rot: 3.141592653589793 rad
pos: 47.5,8.5
parent: 2
type: Transform
- - uid: 28548
+ - uid: 28615
components:
- pos: 8.5,-81.5
parent: 2
type: Transform
- - uid: 28549
+ - uid: 28616
components:
- pos: 8.5,-82.5
parent: 2
type: Transform
- - uid: 28550
+ - uid: 28617
components:
- pos: 9.5,-82.5
parent: 2
type: Transform
- - uid: 28551
+ - uid: 28618
components:
- rot: -1.5707963267948966 rad
pos: 3.5,-76.5
parent: 2
type: Transform
- - uid: 28552
+ - uid: 28619
components:
- rot: -1.5707963267948966 rad
pos: 4.5,-76.5
parent: 2
type: Transform
- - uid: 28553
+ - uid: 28620
components:
- rot: -1.5707963267948966 rad
pos: -44.5,45.5
parent: 2
type: Transform
- - uid: 28554
+ - uid: 28621
components:
- rot: -1.5707963267948966 rad
pos: -51.5,45.5
parent: 2
type: Transform
- - uid: 28555
+ - uid: 28622
components:
- rot: -1.5707963267948966 rad
pos: -44.5,44.5
parent: 2
type: Transform
- - uid: 28556
+ - uid: 28623
components:
- rot: -1.5707963267948966 rad
pos: -44.5,43.5
parent: 2
type: Transform
- - uid: 28557
+ - uid: 28624
components:
- rot: -1.5707963267948966 rad
pos: -44.5,42.5
parent: 2
type: Transform
- - uid: 28558
+ - uid: 28625
components:
- rot: -1.5707963267948966 rad
pos: -44.5,41.5
parent: 2
type: Transform
- - uid: 28559
+ - uid: 28626
components:
- pos: 65.5,-26.5
parent: 2
type: Transform
- - uid: 28560
+ - uid: 28627
components:
- pos: 68.5,-26.5
parent: 2
type: Transform
- - uid: 28561
+ - uid: 28628
components:
- pos: 69.5,-26.5
parent: 2
type: Transform
- - uid: 28562
+ - uid: 28629
components:
- pos: -17.5,-83.5
parent: 2
type: Transform
- - uid: 28563
+ - uid: 28630
components:
- rot: -1.5707963267948966 rad
pos: -1.5,16.5
parent: 2
type: Transform
- - uid: 28564
+ - uid: 28631
components:
- pos: -65.5,-47.5
parent: 2
type: Transform
- - uid: 28565
+ - uid: 28632
components:
- pos: -66.5,-47.5
parent: 2
type: Transform
- - uid: 28566
+ - uid: 28633
components:
- pos: -67.5,-47.5
parent: 2
type: Transform
- - uid: 28567
+ - uid: 28634
components:
- pos: -71.5,-47.5
parent: 2
type: Transform
- - uid: 28568
+ - uid: 28635
components:
- pos: -72.5,-47.5
parent: 2
type: Transform
- - uid: 28569
+ - uid: 28636
components:
- pos: -73.5,-47.5
parent: 2
type: Transform
- - uid: 28570
+ - uid: 28637
components:
- pos: -74.5,-47.5
parent: 2
type: Transform
- - uid: 28571
+ - uid: 28638
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-33.5
parent: 2
type: Transform
- - uid: 28572
+ - uid: 28639
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-46.5
parent: 2
type: Transform
- - uid: 28573
+ - uid: 28640
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-46.5
parent: 2
type: Transform
- - uid: 28574
+ - uid: 28641
components:
- rot: -1.5707963267948966 rad
pos: -62.5,-44.5
parent: 2
type: Transform
- - uid: 28575
+ - uid: 28642
components:
- pos: -78.5,-46.5
parent: 2
type: Transform
- - uid: 28576
+ - uid: 28643
components:
- pos: -78.5,-47.5
parent: 2
type: Transform
- - uid: 28577
+ - uid: 28644
components:
- pos: -77.5,-47.5
parent: 2
type: Transform
- - uid: 28578
+ - uid: 28645
components:
- pos: -76.5,-47.5
parent: 2
type: Transform
- - uid: 28579
+ - uid: 28646
components:
- pos: -75.5,-47.5
parent: 2
type: Transform
- - uid: 28580
+ - uid: 28647
components:
- pos: -49.5,-26.5
parent: 2
type: Transform
- - uid: 28581
+ - uid: 28648
components:
- pos: -50.5,-26.5
parent: 2
type: Transform
- - uid: 28582
+ - uid: 28649
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-34.5
parent: 2
type: Transform
- - uid: 28583
+ - uid: 28650
components:
- rot: 1.5707963267948966 rad
pos: -63.5,-35.5
parent: 2
type: Transform
- - uid: 28584
+ - uid: 28651
components:
- rot: 3.141592653589793 rad
pos: -60.5,-44.5
parent: 2
type: Transform
- - uid: 28585
+ - uid: 28652
components:
- pos: 6.5,-3.5
parent: 2
type: Transform
- - uid: 28586
+ - uid: 28653
components:
- pos: 19.5,-27.5
parent: 2
type: Transform
- - uid: 28587
+ - uid: 28654
components:
- pos: 5.5,-3.5
parent: 2
type: Transform
- - uid: 28588
+ - uid: 28655
components:
- rot: 1.5707963267948966 rad
pos: 21.5,-38.5
parent: 2
type: Transform
- - uid: 28589
+ - uid: 28656
components:
- pos: 6.5,-8.5
parent: 2
type: Transform
- - uid: 28590
+ - uid: 28657
components:
- pos: 19.5,-28.5
parent: 2
type: Transform
- - uid: 28591
+ - uid: 28658
components:
- pos: -35.5,-19.5
parent: 2
type: Transform
- - uid: 28592
+ - uid: 28659
components:
- pos: -34.5,-19.5
parent: 2
type: Transform
- - uid: 28593
+ - uid: 28660
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-67.5
@@ -184772,145 +185499,145 @@ entities:
type: Transform
- proto: WallShuttle
entities:
- - uid: 28594
+ - uid: 28661
components:
- rot: -1.5707963267948966 rad
pos: -74.5,-57.5
parent: 2
type: Transform
- - uid: 28595
+ - uid: 28662
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-56.5
parent: 2
type: Transform
- - uid: 28596
+ - uid: 28663
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-57.5
parent: 2
type: Transform
- - uid: 28597
+ - uid: 28664
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-51.5
parent: 2
type: Transform
- - uid: 28598
+ - uid: 28665
components:
- rot: -1.5707963267948966 rad
pos: -65.5,-57.5
parent: 2
type: Transform
- - uid: 28599
+ - uid: 28666
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-57.5
parent: 2
type: Transform
- - uid: 28600
+ - uid: 28667
components:
- rot: -1.5707963267948966 rad
pos: -70.5,-57.5
parent: 2
type: Transform
- - uid: 28601
+ - uid: 28668
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-55.5
parent: 2
type: Transform
- - uid: 28602
+ - uid: 28669
components:
- rot: -1.5707963267948966 rad
pos: -64.5,-51.5
parent: 2
type: Transform
- - uid: 28603
+ - uid: 28670
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-51.5
parent: 2
type: Transform
- - uid: 28604
+ - uid: 28671
components:
- rot: -1.5707963267948966 rad
pos: -63.5,-50.5
parent: 2
type: Transform
- - uid: 28605
+ - uid: 28672
components:
- rot: 1.5707963267948966 rad
pos: -65.5,-50.5
parent: 2
type: Transform
- - uid: 28606
+ - uid: 28673
components:
- rot: 1.5707963267948966 rad
pos: -64.5,-50.5
parent: 2
type: Transform
- - uid: 28607
+ - uid: 28674
components:
- rot: 1.5707963267948966 rad
pos: -74.5,-50.5
parent: 2
type: Transform
- - uid: 28608
+ - uid: 28675
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-55.5
parent: 2
type: Transform
- - uid: 28609
+ - uid: 28676
components:
- rot: 1.5707963267948966 rad
pos: -70.5,-50.5
parent: 2
type: Transform
- - uid: 28610
+ - uid: 28677
components:
- rot: 1.5707963267948966 rad
pos: -68.5,-51.5
parent: 2
type: Transform
- - uid: 28611
+ - uid: 28678
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-51.5
parent: 2
type: Transform
- - uid: 28612
+ - uid: 28679
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-56.5
parent: 2
type: Transform
- - uid: 28613
+ - uid: 28680
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-52.5
parent: 2
type: Transform
- - uid: 28614
+ - uid: 28681
components:
- rot: 1.5707963267948966 rad
pos: -76.5,-56.5
parent: 2
type: Transform
- - uid: 28615
+ - uid: 28682
components:
- rot: 1.5707963267948966 rad
pos: -67.5,-52.5
parent: 2
type: Transform
- - uid: 28616
+ - uid: 28683
components:
- rot: -1.5707963267948966 rad
pos: -68.5,-56.5
parent: 2
type: Transform
- - uid: 28617
+ - uid: 28684
components:
- rot: -1.5707963267948966 rad
pos: -67.5,-56.5
@@ -184918,11693 +185645,11650 @@ entities:
type: Transform
- proto: WallShuttleDiagonal
entities:
- - uid: 28618
+ - uid: 28685
components:
- rot: 1.5707963267948966 rad
pos: -75.5,-57.5
parent: 2
type: Transform
- - uid: 28619
+ - uid: 28686
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-57.5
parent: 2
type: Transform
- - uid: 28620
+ - uid: 28687
components:
- rot: 3.141592653589793 rad
pos: -69.5,-57.5
parent: 2
type: Transform
- - uid: 28621
+ - uid: 28688
components:
- pos: -75.5,-50.5
parent: 2
type: Transform
- - uid: 28622
+ - uid: 28689
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-50.5
parent: 2
type: Transform
- - uid: 28623
+ - uid: 28690
components:
- pos: -66.5,-50.5
parent: 2
type: Transform
- - uid: 28624
+ - uid: 28691
components:
- rot: 1.5707963267948966 rad
pos: -69.5,-51.5
parent: 2
type: Transform
- - uid: 28625
+ - uid: 28692
components:
- rot: -1.5707963267948966 rad
pos: -66.5,-56.5
parent: 2
type: Transform
- - uid: 28626
+ - uid: 28693
components:
- rot: 3.141592653589793 rad
pos: -66.5,-51.5
parent: 2
type: Transform
- - uid: 28627
+ - uid: 28694
components:
- pos: -69.5,-56.5
parent: 2
type: Transform
- proto: WallSolid
entities:
- - uid: 28628
+ - uid: 28695
+ components:
+ - pos: 0.5,-14.5
+ parent: 2
+ type: Transform
+ - uid: 28696
+ components:
+ - pos: -0.5,-13.5
+ parent: 2
+ type: Transform
+ - uid: 28697
+ components:
+ - pos: -1.5,11.5
+ parent: 2
+ type: Transform
+ - uid: 28698
+ components:
+ - pos: -1.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 28699
+ components:
+ - pos: -4.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 28700
+ components:
+ - pos: -2.5,13.5
+ parent: 2
+ type: Transform
+ - uid: 28701
+ components:
+ - pos: -1.5,12.5
+ parent: 2
+ type: Transform
+ - uid: 28702
components:
- rot: -1.5707963267948966 rad
pos: 11.5,-44.5
parent: 2
type: Transform
- - uid: 28629
+ - uid: 28703
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-46.5
parent: 2
type: Transform
- - uid: 28630
+ - uid: 28704
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-47.5
parent: 2
type: Transform
- - uid: 28631
+ - uid: 28705
components:
- rot: -1.5707963267948966 rad
pos: 10.5,-44.5
parent: 2
type: Transform
- - uid: 28632
+ - uid: 28706
components:
- pos: 16.5,-46.5
parent: 2
type: Transform
- - uid: 28633
+ - uid: 28707
components:
- pos: 16.5,-45.5
parent: 2
type: Transform
- - uid: 28634
+ - uid: 28708
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-45.5
parent: 2
type: Transform
- - uid: 28635
+ - uid: 28709
components:
- pos: 15.5,-48.5
parent: 2
type: Transform
- - uid: 28636
+ - uid: 28710
components:
- pos: -34.5,-21.5
parent: 2
type: Transform
- - uid: 28637
+ - uid: 28711
components:
- pos: -33.5,-21.5
parent: 2
type: Transform
- - uid: 28638
+ - uid: 28712
components:
- pos: -33.5,-20.5
parent: 2
type: Transform
- - uid: 28639
+ - uid: 28713
components:
- pos: 55.5,-39.5
parent: 2
type: Transform
- - uid: 28640
+ - uid: 28714
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-10.5
parent: 2
type: Transform
- - uid: 28641
+ - uid: 28715
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-12.5
parent: 2
type: Transform
- - uid: 28642
+ - uid: 28716
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-11.5
parent: 2
type: Transform
- - uid: 28643
+ - uid: 28717
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-15.5
parent: 2
type: Transform
- - uid: 28644
+ - uid: 28718
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-11.5
parent: 2
type: Transform
- - uid: 28645
+ - uid: 28719
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-12.5
parent: 2
type: Transform
- - uid: 28646
+ - uid: 28720
components:
- pos: 0.5,-24.5
parent: 2
type: Transform
- - uid: 28647
+ - uid: 28721
components:
- pos: 1.5,-24.5
parent: 2
type: Transform
- - uid: 28648
+ - uid: 28722
components:
- pos: -1.5,-18.5
parent: 2
type: Transform
- - uid: 28649
+ - uid: 28723
components:
- pos: -0.5,-24.5
parent: 2
type: Transform
- - uid: 28650
+ - uid: 28724
components:
- pos: 2.5,-18.5
parent: 2
type: Transform
- - uid: 28651
+ - uid: 28725
components:
- pos: 1.5,-18.5
parent: 2
type: Transform
- - uid: 28652
+ - uid: 28726
components:
- pos: -2.5,-20.5
parent: 2
type: Transform
- - uid: 28653
+ - uid: 28727
components:
- pos: -0.5,-18.5
parent: 2
type: Transform
- - uid: 28654
+ - uid: 28728
components:
- pos: -2.5,-24.5
parent: 2
type: Transform
- - uid: 28655
+ - uid: 28729
components:
- pos: -2.5,-23.5
parent: 2
type: Transform
- - uid: 28656
+ - uid: 28730
components:
- pos: -2.5,-21.5
parent: 2
type: Transform
- - uid: 28657
+ - uid: 28731
components:
- pos: -2.5,-22.5
parent: 2
type: Transform
- - uid: 28658
+ - uid: 28732
components:
- rot: -1.5707963267948966 rad
pos: -1.5,-10.5
parent: 2
type: Transform
- - uid: 28659
- components:
- - pos: 0.5,-12.5
- parent: 2
- type: Transform
- - uid: 28660
+ - uid: 28733
components:
- pos: 0.5,-11.5
parent: 2
type: Transform
- - uid: 28661
+ - uid: 28734
components:
- pos: -2.5,-8.5
parent: 2
type: Transform
- - uid: 28662
+ - uid: 28735
components:
- pos: 0.5,-13.5
parent: 2
type: Transform
- - uid: 28663
+ - uid: 28736
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-30.5
parent: 2
type: Transform
- - uid: 28664
+ - uid: 28737
components:
- rot: -1.5707963267948966 rad
pos: -37.5,-30.5
parent: 2
type: Transform
- - uid: 28665
+ - uid: 28738
components:
- rot: 1.5707963267948966 rad
pos: -17.5,10.5
parent: 2
type: Transform
- - uid: 28666
+ - uid: 28739
components:
- rot: -1.5707963267948966 rad
pos: -69.5,-32.5
parent: 2
type: Transform
- - uid: 28667
+ - uid: 28740
components:
- rot: 3.141592653589793 rad
pos: -41.5,-32.5
parent: 2
type: Transform
- - uid: 28668
+ - uid: 28741
components:
- rot: 3.141592653589793 rad
pos: -41.5,-31.5
parent: 2
type: Transform
- - uid: 28669
+ - uid: 28742
components:
- pos: -42.5,-31.5
parent: 2
type: Transform
- - uid: 28670
+ - uid: 28743
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-33.5
parent: 2
type: Transform
- - uid: 28671
+ - uid: 28744
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-34.5
parent: 2
type: Transform
- - uid: 28672
+ - uid: 28745
components:
- pos: -10.5,13.5
parent: 2
type: Transform
- - uid: 28673
+ - uid: 28746
components:
- pos: -9.5,16.5
parent: 2
type: Transform
- - uid: 28674
+ - uid: 28747
components:
- rot: 1.5707963267948966 rad
pos: -8.5,20.5
parent: 2
type: Transform
- - uid: 28675
+ - uid: 28748
components:
- pos: -11.5,12.5
parent: 2
type: Transform
- - uid: 28676
+ - uid: 28749
components:
- pos: -9.5,18.5
parent: 2
type: Transform
- - uid: 28677
+ - uid: 28750
components:
- rot: 3.141592653589793 rad
pos: -16.5,-32.5
parent: 2
type: Transform
- - uid: 28678
+ - uid: 28751
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-28.5
parent: 2
type: Transform
- - uid: 28679
+ - uid: 28752
components:
- pos: 37.5,-56.5
parent: 2
type: Transform
- - uid: 28680
+ - uid: 28753
components:
- pos: 17.5,-31.5
parent: 2
type: Transform
- - uid: 28681
+ - uid: 28754
components:
- pos: -11.5,-3.5
parent: 2
type: Transform
- - uid: 28682
+ - uid: 28755
components:
- rot: 3.141592653589793 rad
pos: 15.5,8.5
parent: 2
type: Transform
- - uid: 28683
+ - uid: 28756
components:
- pos: 40.5,-0.5
parent: 2
type: Transform
- - uid: 28684
+ - uid: 28757
components:
- rot: 3.141592653589793 rad
pos: 23.5,9.5
parent: 2
type: Transform
- - uid: 28685
+ - uid: 28758
components:
- pos: -17.5,-34.5
parent: 2
type: Transform
- - uid: 28686
+ - uid: 28759
components:
- rot: 1.5707963267948966 rad
pos: -11.5,8.5
parent: 2
type: Transform
- - uid: 28687
+ - uid: 28760
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-57.5
parent: 2
type: Transform
- - uid: 28688
+ - uid: 28761
components:
- pos: 37.5,-53.5
parent: 2
type: Transform
- - uid: 28689
+ - uid: 28762
components:
- rot: 1.5707963267948966 rad
pos: 19.5,-23.5
parent: 2
type: Transform
- - uid: 28690
+ - uid: 28763
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-2.5
parent: 2
type: Transform
- - uid: 28691
+ - uid: 28764
components:
- rot: 3.141592653589793 rad
pos: 15.5,-51.5
parent: 2
type: Transform
- - uid: 28692
+ - uid: 28765
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-11.5
parent: 2
type: Transform
- - uid: 28693
+ - uid: 28766
components:
- pos: -11.5,-72.5
parent: 2
type: Transform
- - uid: 28694
+ - uid: 28767
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-20.5
parent: 2
type: Transform
- - uid: 28695
+ - uid: 28768
components:
- pos: 11.5,-61.5
parent: 2
type: Transform
- - uid: 28696
+ - uid: 28769
components:
- pos: 11.5,-63.5
parent: 2
type: Transform
- - uid: 28697
+ - uid: 28770
components:
- pos: 9.5,-63.5
parent: 2
type: Transform
- - uid: 28698
+ - uid: 28771
components:
- pos: 7.5,-63.5
parent: 2
type: Transform
- - uid: 28699
+ - uid: 28772
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-70.5
parent: 2
type: Transform
- - uid: 28700
+ - uid: 28773
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-69.5
parent: 2
type: Transform
- - uid: 28701
+ - uid: 28774
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-70.5
parent: 2
type: Transform
- - uid: 28702
+ - uid: 28775
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-68.5
parent: 2
type: Transform
- - uid: 28703
+ - uid: 28776
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-68.5
parent: 2
type: Transform
- - uid: 28704
+ - uid: 28777
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-68.5
parent: 2
type: Transform
- - uid: 28705
+ - uid: 28778
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-67.5
parent: 2
type: Transform
- - uid: 28706
+ - uid: 28779
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-67.5
parent: 2
type: Transform
- - uid: 28707
+ - uid: 28780
components:
- pos: 1.5,-64.5
parent: 2
type: Transform
- - uid: 28708
+ - uid: 28781
components:
- pos: 1.5,-63.5
parent: 2
type: Transform
- - uid: 28709
+ - uid: 28782
components:
- pos: -17.5,-63.5
parent: 2
type: Transform
- - uid: 28710
+ - uid: 28783
components:
- pos: 4.5,-51.5
parent: 2
type: Transform
- - uid: 28711
+ - uid: 28784
components:
- pos: -12.5,-72.5
parent: 2
type: Transform
- - uid: 28712
+ - uid: 28785
components:
- pos: -14.5,-70.5
parent: 2
type: Transform
- - uid: 28713
+ - uid: 28786
components:
- pos: -3.5,-74.5
parent: 2
type: Transform
- - uid: 28714
+ - uid: 28787
components:
- pos: 9.5,-68.5
parent: 2
type: Transform
- - uid: 28715
+ - uid: 28788
components:
- rot: 3.141592653589793 rad
pos: -1.5,9.5
parent: 2
type: Transform
- - uid: 28716
+ - uid: 28789
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-21.5
parent: 2
type: Transform
- - uid: 28717
+ - uid: 28790
components:
- rot: -1.5707963267948966 rad
pos: 12.5,-44.5
parent: 2
type: Transform
- - uid: 28718
+ - uid: 28791
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-44.5
parent: 2
type: Transform
- - uid: 28719
+ - uid: 28792
components:
- pos: 1.5,-67.5
parent: 2
type: Transform
- - uid: 28720
+ - uid: 28793
components:
- pos: 5.5,-63.5
parent: 2
type: Transform
- - uid: 28721
+ - uid: 28794
components:
- pos: 13.5,-59.5
parent: 2
type: Transform
- - uid: 28722
+ - uid: 28795
components:
- rot: 1.5707963267948966 rad
pos: 18.5,-23.5
parent: 2
type: Transform
- - uid: 28723
+ - uid: 28796
components:
- pos: -21.5,-64.5
parent: 2
type: Transform
- - uid: 28724
+ - uid: 28797
components:
- pos: -21.5,-66.5
parent: 2
type: Transform
- - uid: 28725
+ - uid: 28798
components:
- pos: -21.5,-67.5
parent: 2
type: Transform
- - uid: 28726
+ - uid: 28799
components:
- pos: -21.5,-68.5
parent: 2
type: Transform
- - uid: 28727
+ - uid: 28800
components:
- pos: -22.5,-68.5
parent: 2
type: Transform
- - uid: 28728
+ - uid: 28801
components:
- pos: -25.5,-68.5
parent: 2
type: Transform
- - uid: 28729
+ - uid: 28802
components:
- pos: -26.5,-69.5
parent: 2
type: Transform
- - uid: 28730
+ - uid: 28803
components:
- pos: -23.5,-74.5
parent: 2
type: Transform
- - uid: 28731
+ - uid: 28804
components:
- pos: -22.5,-74.5
parent: 2
type: Transform
- - uid: 28732
+ - uid: 28805
components:
- pos: -16.5,-71.5
parent: 2
type: Transform
- - uid: 28733
+ - uid: 28806
components:
- pos: -21.5,-75.5
parent: 2
type: Transform
- - uid: 28734
+ - uid: 28807
components:
- pos: -10.5,-74.5
parent: 2
type: Transform
- - uid: 28735
+ - uid: 28808
components:
- pos: -8.5,-73.5
parent: 2
type: Transform
- - uid: 28736
+ - uid: 28809
components:
- pos: 3.5,-69.5
parent: 2
type: Transform
- - uid: 28737
+ - uid: 28810
components:
- pos: 7.5,-68.5
parent: 2
type: Transform
- - uid: 28738
+ - uid: 28811
components:
- pos: 7.5,-66.5
parent: 2
type: Transform
- - uid: 28739
+ - uid: 28812
components:
- pos: 9.5,-66.5
parent: 2
type: Transform
- - uid: 28740
+ - uid: 28813
components:
- pos: -19.5,-74.5
parent: 2
type: Transform
- - uid: 28741
+ - uid: 28814
components:
- rot: 3.141592653589793 rad
pos: 14.5,-15.5
parent: 2
type: Transform
- - uid: 28742
+ - uid: 28815
components:
- pos: 9.5,-13.5
parent: 2
type: Transform
- - uid: 28743
+ - uid: 28816
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-44.5
parent: 2
type: Transform
- - uid: 28744
+ - uid: 28817
components:
- rot: 1.5707963267948966 rad
pos: 31.5,-23.5
parent: 2
type: Transform
- - uid: 28745
+ - uid: 28818
components:
- rot: -1.5707963267948966 rad
pos: 31.5,3.5
parent: 2
type: Transform
- - uid: 28746
+ - uid: 28819
components:
- pos: 7.5,6.5
parent: 2
type: Transform
- - uid: 28747
+ - uid: 28820
components:
- rot: 3.141592653589793 rad
pos: 62.5,14.5
parent: 2
type: Transform
- - uid: 28748
+ - uid: 28821
components:
- rot: 3.141592653589793 rad
pos: -1.5,8.5
parent: 2
type: Transform
- - uid: 28749
+ - uid: 28822
components:
- pos: 6.5,-68.5
parent: 2
type: Transform
- - uid: 28750
+ - uid: 28823
components:
- pos: 15.5,4.5
parent: 2
type: Transform
- - uid: 28751
+ - uid: 28824
components:
- rot: 3.141592653589793 rad
pos: 61.5,17.5
parent: 2
type: Transform
- - uid: 28752
+ - uid: 28825
components:
- pos: -8.5,-34.5
parent: 2
type: Transform
- - uid: 28753
+ - uid: 28826
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-4.5
parent: 2
type: Transform
- - uid: 28754
+ - uid: 28827
components:
- pos: 2.5,-9.5
parent: 2
type: Transform
- - uid: 28755
+ - uid: 28828
components:
- rot: -1.5707963267948966 rad
pos: -13.5,36.5
parent: 2
type: Transform
- - uid: 28756
+ - uid: 28829
components:
- pos: 7.5,-62.5
parent: 2
type: Transform
- - uid: 28757
+ - uid: 28830
components:
- pos: 13.5,-54.5
parent: 2
type: Transform
- - uid: 28758
+ - uid: 28831
components:
- pos: -17.5,-64.5
parent: 2
type: Transform
- - uid: 28759
+ - uid: 28832
components:
- pos: 7.5,-55.5
parent: 2
type: Transform
- - uid: 28760
+ - uid: 28833
components:
- pos: -10.5,-2.5
parent: 2
type: Transform
- - uid: 28761
+ - uid: 28834
components:
- rot: 3.141592653589793 rad
pos: 22.5,15.5
parent: 2
type: Transform
- - uid: 28762
+ - uid: 28835
components:
- rot: 3.141592653589793 rad
pos: 21.5,15.5
parent: 2
type: Transform
- - uid: 28763
+ - uid: 28836
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-3.5
parent: 2
type: Transform
- - uid: 28764
+ - uid: 28837
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-4.5
parent: 2
type: Transform
- - uid: 28765
+ - uid: 28838
components:
- pos: 37.5,-39.5
parent: 2
type: Transform
- - uid: 28766
+ - uid: 28839
components:
- pos: -6.5,-5.5
parent: 2
type: Transform
- - uid: 28767
+ - uid: 28840
components:
- rot: 3.141592653589793 rad
pos: 6.5,-16.5
parent: 2
type: Transform
- - uid: 28768
+ - uid: 28841
components:
- pos: 43.5,-57.5
parent: 2
type: Transform
- - uid: 28769
+ - uid: 28842
components:
- pos: 37.5,-27.5
parent: 2
type: Transform
- - uid: 28770
+ - uid: 28843
components:
- pos: 13.5,-50.5
parent: 2
type: Transform
- - uid: 28771
+ - uid: 28844
components:
- pos: -17.5,-28.5
parent: 2
type: Transform
- - uid: 28772
+ - uid: 28845
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-78.5
parent: 2
type: Transform
- - uid: 28773
+ - uid: 28846
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-83.5
parent: 2
type: Transform
- - uid: 28774
+ - uid: 28847
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-76.5
parent: 2
type: Transform
- - uid: 28775
+ - uid: 28848
components:
- pos: -9.5,-7.5
parent: 2
type: Transform
- - uid: 28776
+ - uid: 28849
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-1.5
parent: 2
type: Transform
- - uid: 28777
+ - uid: 28850
components:
- pos: -6.5,-16.5
parent: 2
type: Transform
- - uid: 28778
+ - uid: 28851
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-10.5
parent: 2
type: Transform
- - uid: 28779
+ - uid: 28852
components:
- pos: 13.5,-48.5
parent: 2
type: Transform
- - uid: 28780
+ - uid: 28853
components:
- pos: -2.5,-18.5
parent: 2
type: Transform
- - uid: 28781
+ - uid: 28854
components:
- pos: -0.5,-15.5
parent: 2
type: Transform
- - uid: 28782
- components:
- - pos: -2.5,-14.5
- parent: 2
- type: Transform
- - uid: 28783
+ - uid: 28855
components:
- pos: -2.5,-13.5
parent: 2
type: Transform
- - uid: 28784
+ - uid: 28856
components:
- pos: -2.5,-19.5
parent: 2
type: Transform
- - uid: 28785
+ - uid: 28857
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-10.5
parent: 2
type: Transform
- - uid: 28786
+ - uid: 28858
components:
- rot: 3.141592653589793 rad
pos: -10.5,-49.5
parent: 2
type: Transform
- - uid: 28787
+ - uid: 28859
components:
- rot: 3.141592653589793 rad
pos: -11.5,-44.5
parent: 2
type: Transform
- - uid: 28788
+ - uid: 28860
components:
- rot: 3.141592653589793 rad
pos: -10.5,-50.5
parent: 2
type: Transform
- - uid: 28789
+ - uid: 28861
components:
- rot: 3.141592653589793 rad
pos: 23.5,15.5
parent: 2
type: Transform
- - uid: 28790
+ - uid: 28862
components:
- rot: 3.141592653589793 rad
pos: 19.5,10.5
parent: 2
type: Transform
- - uid: 28791
+ - uid: 28863
components:
- pos: 16.5,-13.5
parent: 2
type: Transform
- - uid: 28792
+ - uid: 28864
components:
- pos: 7.5,-12.5
parent: 2
type: Transform
- - uid: 28793
+ - uid: 28865
components:
- pos: -32.5,-69.5
parent: 2
type: Transform
- - uid: 28794
+ - uid: 28866
components:
- pos: -32.5,-72.5
parent: 2
type: Transform
- - uid: 28795
+ - uid: 28867
components:
- pos: 18.5,-44.5
parent: 2
type: Transform
- - uid: 28796
+ - uid: 28868
components:
- pos: 42.5,-52.5
parent: 2
type: Transform
- - uid: 28797
+ - uid: 28869
components:
- rot: -1.5707963267948966 rad
pos: -9.5,57.5
parent: 2
type: Transform
- - uid: 28798
+ - uid: 28870
components:
- pos: 38.5,-27.5
parent: 2
type: Transform
- - uid: 28799
+ - uid: 28871
components:
- pos: 37.5,-28.5
parent: 2
type: Transform
- - uid: 28800
+ - uid: 28872
components:
- pos: 0.5,-72.5
parent: 2
type: Transform
- - uid: 28801
- components:
- - pos: -9.5,-17.5
- parent: 2
- type: Transform
- - uid: 28802
+ - uid: 28873
components:
- rot: 3.141592653589793 rad
pos: 16.5,-51.5
parent: 2
type: Transform
- - uid: 28803
- components:
- - pos: -9.5,-18.5
- parent: 2
- type: Transform
- - uid: 28804
+ - uid: 28874
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-76.5
parent: 2
type: Transform
- - uid: 28805
+ - uid: 28875
components:
- rot: -1.5707963267948966 rad
pos: 19.5,19.5
parent: 2
type: Transform
- - uid: 28806
+ - uid: 28876
components:
- pos: 42.5,-56.5
parent: 2
type: Transform
- - uid: 28807
+ - uid: 28877
components:
- pos: -17.5,-38.5
parent: 2
type: Transform
- - uid: 28808
+ - uid: 28878
components:
- rot: -1.5707963267948966 rad
pos: 20.5,19.5
parent: 2
type: Transform
- - uid: 28809
+ - uid: 28879
components:
- pos: 1.5,-75.5
parent: 2
type: Transform
- - uid: 28810
+ - uid: 28880
components:
- pos: 1.5,-73.5
parent: 2
type: Transform
- - uid: 28811
+ - uid: 28881
components:
- pos: 7.5,-28.5
parent: 2
type: Transform
- - uid: 28812
+ - uid: 28882
components:
- pos: -11.5,9.5
parent: 2
type: Transform
- - uid: 28813
+ - uid: 28883
components:
- pos: -30.5,-76.5
parent: 2
type: Transform
- - uid: 28814
+ - uid: 28884
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-20.5
parent: 2
type: Transform
- - uid: 28815
+ - uid: 28885
components:
- pos: 11.5,-65.5
parent: 2
type: Transform
- - uid: 28816
+ - uid: 28886
components:
- pos: 13.5,-63.5
parent: 2
type: Transform
- - uid: 28817
+ - uid: 28887
components:
- pos: 15.5,-56.5
parent: 2
type: Transform
- - uid: 28818
+ - uid: 28888
components:
- pos: 8.5,-63.5
parent: 2
type: Transform
- - uid: 28819
+ - uid: 28889
components:
- pos: 11.5,-62.5
parent: 2
type: Transform
- - uid: 28820
+ - uid: 28890
components:
- pos: 8.5,-57.5
parent: 2
type: Transform
- - uid: 28821
+ - uid: 28891
components:
- pos: 11.5,-60.5
parent: 2
type: Transform
- - uid: 28822
+ - uid: 28892
components:
- pos: 11.5,-59.5
parent: 2
type: Transform
- - uid: 28823
+ - uid: 28893
components:
- pos: 11.5,-58.5
parent: 2
type: Transform
- - uid: 28824
+ - uid: 28894
components:
- pos: 11.5,-57.5
parent: 2
type: Transform
- - uid: 28825
+ - uid: 28895
components:
- pos: 10.5,-57.5
parent: 2
type: Transform
- - uid: 28826
+ - uid: 28896
components:
- pos: 9.5,-57.5
parent: 2
type: Transform
- - uid: 28827
+ - uid: 28897
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-69.5
parent: 2
type: Transform
- - uid: 28828
+ - uid: 28898
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-70.5
parent: 2
type: Transform
- - uid: 28829
+ - uid: 28899
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-68.5
parent: 2
type: Transform
- - uid: 28830
+ - uid: 28900
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-68.5
parent: 2
type: Transform
- - uid: 28831
+ - uid: 28901
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-68.5
parent: 2
type: Transform
- - uid: 28832
+ - uid: 28902
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-67.5
parent: 2
type: Transform
- - uid: 28833
+ - uid: 28903
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-67.5
parent: 2
type: Transform
- - uid: 28834
+ - uid: 28904
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-67.5
parent: 2
type: Transform
- - uid: 28835
+ - uid: 28905
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-67.5
parent: 2
type: Transform
- - uid: 28836
+ - uid: 28906
components:
- pos: 1.5,-62.5
parent: 2
type: Transform
- - uid: 28837
+ - uid: 28907
components:
- pos: 1.5,-65.5
parent: 2
type: Transform
- - uid: 28838
+ - uid: 28908
components:
- pos: -1.5,-62.5
parent: 2
type: Transform
- - uid: 28839
+ - uid: 28909
components:
- pos: -17.5,-65.5
parent: 2
type: Transform
- - uid: 28840
+ - uid: 28910
components:
- pos: -7.5,-62.5
parent: 2
type: Transform
- - uid: 28841
+ - uid: 28911
components:
- pos: 12.5,-50.5
parent: 2
type: Transform
- - uid: 28842
+ - uid: 28912
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-55.5
parent: 2
type: Transform
- - uid: 28843
+ - uid: 28913
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-44.5
parent: 2
type: Transform
- - uid: 28844
+ - uid: 28914
components:
- pos: -23.5,-7.5
parent: 2
type: Transform
- - uid: 28845
+ - uid: 28915
components:
- pos: -21.5,-7.5
parent: 2
type: Transform
- - uid: 28846
+ - uid: 28916
components:
- pos: -26.5,-7.5
parent: 2
type: Transform
- - uid: 28847
+ - uid: 28917
components:
- pos: -16.5,-7.5
parent: 2
type: Transform
- - uid: 28848
+ - uid: 28918
components:
- pos: -14.5,-7.5
parent: 2
type: Transform
- - uid: 28849
+ - uid: 28919
components:
- pos: -12.5,-7.5
parent: 2
type: Transform
- - uid: 28850
+ - uid: 28920
components:
- pos: -11.5,-5.5
parent: 2
type: Transform
- - uid: 28851
+ - uid: 28921
components:
- pos: -11.5,-7.5
parent: 2
type: Transform
- - uid: 28852
+ - uid: 28922
components:
- rot: 3.141592653589793 rad
pos: -17.5,9.5
parent: 2
type: Transform
- - uid: 28853
+ - uid: 28923
components:
- rot: 3.141592653589793 rad
pos: 23.5,-14.5
parent: 2
type: Transform
- - uid: 28854
+ - uid: 28924
components:
- rot: 3.141592653589793 rad
pos: 23.5,-13.5
parent: 2
type: Transform
- - uid: 28855
+ - uid: 28925
components:
- rot: 3.141592653589793 rad
pos: 17.5,-15.5
parent: 2
type: Transform
- - uid: 28856
+ - uid: 28926
components:
- rot: 3.141592653589793 rad
pos: 16.5,-15.5
parent: 2
type: Transform
- - uid: 28857
+ - uid: 28927
components:
- rot: 3.141592653589793 rad
pos: 22.5,-7.5
parent: 2
type: Transform
- - uid: 28858
+ - uid: 28928
components:
- rot: 3.141592653589793 rad
pos: 23.5,-9.5
parent: 2
type: Transform
- - uid: 28859
+ - uid: 28929
components:
- rot: -1.5707963267948966 rad
pos: 19.5,22.5
parent: 2
type: Transform
- - uid: 28860
+ - uid: 28930
components:
- pos: 37.5,-31.5
parent: 2
type: Transform
- - uid: 28861
+ - uid: 28931
components:
- pos: 28.5,-3.5
parent: 2
type: Transform
- - uid: 28862
+ - uid: 28932
components:
- pos: -7.5,-34.5
parent: 2
type: Transform
- - uid: 28863
+ - uid: 28933
components:
- pos: -20.5,-74.5
parent: 2
type: Transform
- - uid: 28864
+ - uid: 28934
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-51.5
parent: 2
type: Transform
- - uid: 28865
+ - uid: 28935
components:
- pos: 41.5,-52.5
parent: 2
type: Transform
- - uid: 28866
+ - uid: 28936
components:
- pos: 13.5,-52.5
parent: 2
type: Transform
- - uid: 28867
+ - uid: 28937
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-37.5
parent: 2
type: Transform
- - uid: 28868
+ - uid: 28938
components:
- pos: 17.5,-28.5
parent: 2
type: Transform
- - uid: 28869
+ - uid: 28939
components:
- pos: -12.5,-70.5
parent: 2
type: Transform
- - uid: 28870
+ - uid: 28940
components:
- pos: -26.5,-70.5
parent: 2
type: Transform
- - uid: 28871
+ - uid: 28941
components:
- pos: -24.5,-68.5
parent: 2
type: Transform
- - uid: 28872
+ - uid: 28942
components:
- pos: 7.5,-44.5
parent: 2
type: Transform
- - uid: 28873
+ - uid: 28943
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-34.5
parent: 2
type: Transform
- - uid: 28874
+ - uid: 28944
components:
- pos: -6.5,-14.5
parent: 2
type: Transform
- - uid: 28875
+ - uid: 28945
components:
- pos: -6.5,-28.5
parent: 2
type: Transform
- - uid: 28876
+ - uid: 28946
components:
- pos: -22.5,-19.5
parent: 2
type: Transform
- - uid: 28877
+ - uid: 28947
components:
- pos: -21.5,-19.5
parent: 2
type: Transform
- - uid: 28878
+ - uid: 28948
components:
- pos: 37.5,-57.5
parent: 2
type: Transform
- - uid: 28879
+ - uid: 28949
components:
- pos: 5.5,-12.5
parent: 2
type: Transform
- - uid: 28880
+ - uid: 28950
components:
- pos: -1.5,5.5
parent: 2
type: Transform
- - uid: 28881
+ - uid: 28951
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-28.5
parent: 2
type: Transform
- - uid: 28882
+ - uid: 28952
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-3.5
parent: 2
type: Transform
- - uid: 28883
+ - uid: 28953
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-20.5
parent: 2
type: Transform
- - uid: 28884
+ - uid: 28954
components:
- pos: -3.5,-72.5
parent: 2
type: Transform
- - uid: 28885
+ - uid: 28955
components:
- pos: -0.5,-72.5
parent: 2
type: Transform
- - uid: 28886
+ - uid: 28956
components:
- pos: -13.5,-28.5
parent: 2
type: Transform
- - uid: 28887
+ - uid: 28957
components:
- pos: -11.5,-6.5
parent: 2
type: Transform
- - uid: 28888
+ - uid: 28958
components:
- rot: -1.5707963267948966 rad
pos: -13.5,35.5
parent: 2
type: Transform
- - uid: 28889
+ - uid: 28959
components:
- pos: 7.5,-13.5
parent: 2
type: Transform
- - uid: 28890
+ - uid: 28960
components:
- rot: -1.5707963267948966 rad
pos: 19.5,21.5
parent: 2
type: Transform
- - uid: 28891
+ - uid: 28961
components:
- pos: 11.5,-48.5
parent: 2
type: Transform
- - uid: 28892
+ - uid: 28962
components:
- rot: 3.141592653589793 rad
pos: -2.5,9.5
parent: 2
type: Transform
- - uid: 28893
+ - uid: 28963
components:
- pos: 7.5,-56.5
parent: 2
type: Transform
- - uid: 28894
+ - uid: 28964
components:
- pos: 7.5,-57.5
parent: 2
type: Transform
- - uid: 28895
+ - uid: 28965
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-7.5
parent: 2
type: Transform
- - uid: 28896
+ - uid: 28966
components:
- rot: -1.5707963267948966 rad
pos: -9.5,14.5
parent: 2
type: Transform
- - uid: 28897
+ - uid: 28967
components:
- pos: -6.5,-3.5
parent: 2
type: Transform
- - uid: 28898
+ - uid: 28968
components:
- pos: -7.5,-3.5
parent: 2
type: Transform
- - uid: 28899
+ - uid: 28969
components:
- pos: -8.5,-3.5
parent: 2
type: Transform
- - uid: 28900
+ - uid: 28970
components:
- pos: -6.5,-2.5
parent: 2
type: Transform
- - uid: 28901
+ - uid: 28971
components:
- rot: 3.141592653589793 rad
pos: 2.5,-51.5
parent: 2
type: Transform
- - uid: 28902
+ - uid: 28972
components:
- pos: 13.5,-2.5
parent: 2
type: Transform
- - uid: 28903
+ - uid: 28973
components:
- rot: 3.141592653589793 rad
pos: 60.5,14.5
parent: 2
type: Transform
- - uid: 28904
+ - uid: 28974
components:
- rot: 3.141592653589793 rad
pos: 62.5,17.5
parent: 2
type: Transform
- - uid: 28905
+ - uid: 28975
components:
- pos: 15.5,-3.5
parent: 2
type: Transform
- - uid: 28906
+ - uid: 28976
components:
- pos: 12.5,-2.5
parent: 2
type: Transform
- - uid: 28907
+ - uid: 28977
components:
- pos: -11.5,1.5
parent: 2
type: Transform
- - uid: 28908
+ - uid: 28978
components:
- pos: 2.5,-28.5
parent: 2
type: Transform
- - uid: 28909
+ - uid: 28979
components:
- pos: 11.5,-15.5
parent: 2
type: Transform
- - uid: 28910
+ - uid: 28980
components:
- pos: 42.5,-57.5
parent: 2
type: Transform
- - uid: 28911
+ - uid: 28981
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-62.5
parent: 2
type: Transform
- - uid: 28912
+ - uid: 28982
components:
- rot: 3.141592653589793 rad
pos: -12.5,-51.5
parent: 2
type: Transform
- - uid: 28913
+ - uid: 28983
components:
- pos: 40.5,-27.5
parent: 2
type: Transform
- - uid: 28914
+ - uid: 28984
components:
- pos: 13.5,-28.5
parent: 2
type: Transform
- - uid: 28915
+ - uid: 28985
components:
- pos: -21.5,-81.5
parent: 2
type: Transform
- - uid: 28916
- components:
- - pos: -4.5,13.5
- parent: 2
- type: Transform
- - uid: 28917
+ - uid: 28986
components:
- rot: 3.141592653589793 rad
pos: 23.5,10.5
parent: 2
type: Transform
- - uid: 28918
+ - uid: 28987
components:
- rot: 3.141592653589793 rad
pos: 22.5,9.5
parent: 2
type: Transform
- - uid: 28919
+ - uid: 28988
components:
- rot: 3.141592653589793 rad
pos: 60.5,17.5
parent: 2
type: Transform
- - uid: 28920
+ - uid: 28989
components:
- pos: -6.5,-6.5
parent: 2
type: Transform
- - uid: 28921
+ - uid: 28990
components:
- pos: 15.5,-6.5
parent: 2
type: Transform
- - uid: 28922
+ - uid: 28991
components:
- pos: 15.5,-2.5
parent: 2
type: Transform
- - uid: 28923
+ - uid: 28992
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-53.5
parent: 2
type: Transform
- - uid: 28924
+ - uid: 28993
components:
- pos: 27.5,-56.5
parent: 2
type: Transform
- - uid: 28925
+ - uid: 28994
components:
- pos: 27.5,-50.5
parent: 2
type: Transform
- - uid: 28926
+ - uid: 28995
components:
- pos: 23.5,-50.5
parent: 2
type: Transform
- - uid: 28927
+ - uid: 28996
components:
- pos: 23.5,-54.5
parent: 2
type: Transform
- - uid: 28928
+ - uid: 28997
components:
- pos: 23.5,-52.5
parent: 2
type: Transform
- - uid: 28929
+ - uid: 28998
components:
- pos: 23.5,-51.5
parent: 2
type: Transform
- - uid: 28930
+ - uid: 28999
components:
- pos: 23.5,-49.5
parent: 2
type: Transform
- - uid: 28931
+ - uid: 29000
components:
- rot: 3.141592653589793 rad
pos: 22.5,-51.5
parent: 2
type: Transform
- - uid: 28932
+ - uid: 29001
components:
- pos: -17.5,-31.5
parent: 2
type: Transform
- - uid: 28933
+ - uid: 29002
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-3.5
parent: 2
type: Transform
- - uid: 28934
+ - uid: 29003
components:
- pos: 19.5,-2.5
parent: 2
type: Transform
- - uid: 28935
+ - uid: 29004
components:
- pos: 24.5,5.5
parent: 2
type: Transform
- - uid: 28936
+ - uid: 29005
components:
- pos: 16.5,-7.5
parent: 2
type: Transform
- - uid: 28937
+ - uid: 29006
components:
- pos: -9.5,-16.5
parent: 2
type: Transform
- - uid: 28938
+ - uid: 29007
components:
- pos: 2.5,10.5
parent: 2
type: Transform
- - uid: 28939
+ - uid: 29008
components:
- pos: 14.5,-44.5
parent: 2
type: Transform
- - uid: 28940
+ - uid: 29009
components:
- rot: 3.141592653589793 rad
pos: 33.5,-7.5
parent: 2
type: Transform
- - uid: 28941
+ - uid: 29010
components:
- rot: 3.141592653589793 rad
pos: 35.5,-7.5
parent: 2
type: Transform
- - uid: 28942
+ - uid: 29011
components:
- rot: 3.141592653589793 rad
pos: 31.5,-7.5
parent: 2
type: Transform
- - uid: 28943
+ - uid: 29012
components:
- rot: 3.141592653589793 rad
pos: 20.5,-7.5
parent: 2
type: Transform
- - uid: 28944
+ - uid: 29013
components:
- rot: 3.141592653589793 rad
pos: 22.5,-15.5
parent: 2
type: Transform
- - uid: 28945
+ - uid: 29014
components:
- rot: 3.141592653589793 rad
pos: 37.5,-16.5
parent: 2
type: Transform
- - uid: 28946
+ - uid: 29015
components:
- rot: 3.141592653589793 rad
pos: 37.5,-15.5
parent: 2
type: Transform
- - uid: 28947
+ - uid: 29016
components:
- rot: 3.141592653589793 rad
pos: 36.5,-15.5
parent: 2
type: Transform
- - uid: 28948
+ - uid: 29017
components:
- pos: 59.5,0.5
parent: 2
type: Transform
- - uid: 28949
+ - uid: 29018
components:
- rot: 3.141592653589793 rad
pos: -12.5,9.5
parent: 2
type: Transform
- - uid: 28950
+ - uid: 29019
components:
- pos: -27.5,10.5
parent: 2
type: Transform
- - uid: 28951
+ - uid: 29020
components:
- pos: -21.5,9.5
parent: 2
type: Transform
- - uid: 28952
+ - uid: 29021
components:
- pos: -14.5,-32.5
parent: 2
type: Transform
- - uid: 28953
+ - uid: 29022
components:
- pos: -21.5,14.5
parent: 2
type: Transform
- - uid: 28954
+ - uid: 29023
components:
- pos: -10.5,-7.5
parent: 2
type: Transform
- - uid: 28955
+ - uid: 29024
components:
- pos: -11.5,-4.5
parent: 2
type: Transform
- - uid: 28956
+ - uid: 29025
components:
- pos: -15.5,-7.5
parent: 2
type: Transform
- - uid: 28957
+ - uid: 29026
components:
- pos: -17.5,-7.5
parent: 2
type: Transform
- - uid: 28958
+ - uid: 29027
components:
- pos: -21.5,-8.5
parent: 2
type: Transform
- - uid: 28959
+ - uid: 29028
components:
- pos: -22.5,-7.5
parent: 2
type: Transform
- - uid: 28960
+ - uid: 29029
components:
- pos: -24.5,-7.5
parent: 2
type: Transform
- - uid: 28961
+ - uid: 29030
components:
- pos: -17.5,-8.5
parent: 2
type: Transform
- - uid: 28962
+ - uid: 29031
components:
- rot: -1.5707963267948966 rad
pos: -23.5,-18.5
parent: 2
type: Transform
- - uid: 28963
+ - uid: 29032
components:
- rot: 3.141592653589793 rad
pos: 23.5,-15.5
parent: 2
type: Transform
- - uid: 28964
+ - uid: 29033
components:
- rot: 3.141592653589793 rad
pos: 23.5,-10.5
parent: 2
type: Transform
- - uid: 28965
+ - uid: 29034
components:
- pos: 19.5,-3.5
parent: 2
type: Transform
- - uid: 28966
+ - uid: 29035
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-9.5
parent: 2
type: Transform
- - uid: 28967
+ - uid: 29036
components:
- pos: 1.5,10.5
parent: 2
type: Transform
- - uid: 28968
+ - uid: 29037
components:
- pos: -11.5,-2.5
parent: 2
type: Transform
- - uid: 28969
+ - uid: 29038
components:
- pos: -6.5,-7.5
parent: 2
type: Transform
- - uid: 28970
+ - uid: 29039
components:
- pos: -8.5,-2.5
parent: 2
type: Transform
- - uid: 28971
+ - uid: 29040
components:
- pos: -17.5,-9.5
parent: 2
type: Transform
- - uid: 28972
+ - uid: 29041
components:
- pos: -17.5,-10.5
parent: 2
type: Transform
- - uid: 28973
- components:
- - pos: -6.5,-17.5
- parent: 2
- type: Transform
- - uid: 28974
+ - uid: 29042
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-20.5
parent: 2
type: Transform
- - uid: 28975
+ - uid: 29043
components:
- pos: 35.5,-6.5
parent: 2
type: Transform
- - uid: 28976
+ - uid: 29044
components:
- pos: 45.5,-0.5
parent: 2
type: Transform
- - uid: 28977
+ - uid: 29045
components:
- pos: -2.5,-15.5
parent: 2
type: Transform
- - uid: 28978
+ - uid: 29046
components:
- pos: -1.5,-15.5
parent: 2
type: Transform
- - uid: 28979
+ - uid: 29047
components:
- pos: -6.5,-4.5
parent: 2
type: Transform
- - uid: 28980
+ - uid: 29048
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-23.5
parent: 2
type: Transform
- - uid: 28981
+ - uid: 29049
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-24.5
parent: 2
type: Transform
- - uid: 28982
+ - uid: 29050
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-24.5
parent: 2
type: Transform
- - uid: 28983
+ - uid: 29051
components:
- rot: 3.141592653589793 rad
pos: 1.5,-44.5
parent: 2
type: Transform
- - uid: 28984
+ - uid: 29052
components:
- rot: 3.141592653589793 rad
pos: -10.5,-45.5
parent: 2
type: Transform
- - uid: 28985
+ - uid: 29053
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-44.5
parent: 2
type: Transform
- - uid: 28986
+ - uid: 29054
components:
- pos: -26.5,-8.5
parent: 2
type: Transform
- - uid: 28987
+ - uid: 29055
components:
- rot: -1.5707963267948966 rad
pos: 8.5,-44.5
parent: 2
type: Transform
- - uid: 28988
+ - uid: 29056
components:
- pos: -8.5,-28.5
parent: 2
type: Transform
- - uid: 28989
+ - uid: 29057
components:
- rot: 3.141592653589793 rad
pos: 18.5,8.5
parent: 2
type: Transform
- - uid: 28990
+ - uid: 29058
components:
- pos: 16.5,-44.5
parent: 2
type: Transform
- - uid: 28991
+ - uid: 29059
components:
- rot: -1.5707963267948966 rad
pos: 9.5,-44.5
parent: 2
type: Transform
- - uid: 28992
+ - uid: 29060
components:
- pos: 12.5,-28.5
parent: 2
type: Transform
- - uid: 28993
+ - uid: 29061
components:
- pos: 11.5,-28.5
parent: 2
type: Transform
- - uid: 28994
+ - uid: 29062
components:
- pos: 6.5,-28.5
parent: 2
type: Transform
- - uid: 28995
+ - uid: 29063
components:
- pos: -9.5,-28.5
parent: 2
type: Transform
- - uid: 28996
+ - uid: 29064
components:
- pos: 3.5,-12.5
parent: 2
type: Transform
- - uid: 28997
+ - uid: 29065
components:
- pos: 9.5,-48.5
parent: 2
type: Transform
- - uid: 28998
+ - uid: 29066
components:
- pos: 2.5,-44.5
parent: 2
type: Transform
- - uid: 28999
+ - uid: 29067
components:
- pos: 8.5,-48.5
parent: 2
type: Transform
- - uid: 29000
+ - uid: 29068
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-24.5
parent: 2
type: Transform
- - uid: 29001
+ - uid: 29069
components:
- pos: -10.5,-34.5
parent: 2
type: Transform
- - uid: 29002
+ - uid: 29070
components:
- pos: 35.5,-44.5
parent: 2
type: Transform
- - uid: 29003
+ - uid: 29071
components:
- pos: 41.5,-49.5
parent: 2
type: Transform
- - uid: 29004
+ - uid: 29072
components:
- pos: 39.5,-47.5
parent: 2
type: Transform
- - uid: 29005
+ - uid: 29073
components:
- pos: 39.5,-44.5
parent: 2
type: Transform
- - uid: 29006
+ - uid: 29074
components:
- pos: 41.5,-48.5
parent: 2
type: Transform
- - uid: 29007
+ - uid: 29075
components:
- pos: -3.5,-51.5
parent: 2
type: Transform
- - uid: 29008
+ - uid: 29076
components:
- pos: -5.5,-51.5
parent: 2
type: Transform
- - uid: 29009
+ - uid: 29077
components:
- pos: -6.5,-51.5
parent: 2
type: Transform
- - uid: 29010
+ - uid: 29078
components:
- pos: -2.5,-50.5
parent: 2
type: Transform
- - uid: 29011
+ - uid: 29079
components:
- rot: 3.141592653589793 rad
pos: 1.5,-45.5
parent: 2
type: Transform
- - uid: 29012
+ - uid: 29080
components:
- pos: 7.5,-54.5
parent: 2
type: Transform
- - uid: 29013
+ - uid: 29081
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-40.5
parent: 2
type: Transform
- - uid: 29014
+ - uid: 29082
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-40.5
parent: 2
type: Transform
- - uid: 29015
+ - uid: 29083
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-58.5
parent: 2
type: Transform
- - uid: 29016
+ - uid: 29084
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-58.5
parent: 2
type: Transform
- - uid: 29017
+ - uid: 29085
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-58.5
parent: 2
type: Transform
- - uid: 29018
+ - uid: 29086
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-55.5
parent: 2
type: Transform
- - uid: 29019
+ - uid: 29087
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-55.5
parent: 2
type: Transform
- - uid: 29020
+ - uid: 29088
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-58.5
parent: 2
type: Transform
- - uid: 29021
+ - uid: 29089
components:
- rot: 1.5707963267948966 rad
pos: 4.5,-58.5
parent: 2
type: Transform
- - uid: 29022
+ - uid: 29090
components:
- rot: 1.5707963267948966 rad
pos: -1.5,-55.5
parent: 2
type: Transform
- - uid: 29023
+ - uid: 29091
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-55.5
parent: 2
type: Transform
- - uid: 29024
+ - uid: 29092
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-58.5
parent: 2
type: Transform
- - uid: 29025
+ - uid: 29093
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-55.5
parent: 2
type: Transform
- - uid: 29026
+ - uid: 29094
components:
- rot: 3.141592653589793 rad
pos: -11.5,-51.5
parent: 2
type: Transform
- - uid: 29027
+ - uid: 29095
components:
- rot: 3.141592653589793 rad
pos: -14.5,-51.5
parent: 2
type: Transform
- - uid: 29028
+ - uid: 29096
components:
- rot: 3.141592653589793 rad
pos: -15.5,-51.5
parent: 2
type: Transform
- - uid: 29029
+ - uid: 29097
components:
- pos: 9.5,-51.5
parent: 2
type: Transform
- - uid: 29030
+ - uid: 29098
components:
- pos: 7.5,-52.5
parent: 2
type: Transform
- - uid: 29031
+ - uid: 29099
components:
- pos: 9.5,-53.5
parent: 2
type: Transform
- - uid: 29032
+ - uid: 29100
components:
- pos: 11.5,-50.5
parent: 2
type: Transform
- - uid: 29033
+ - uid: 29101
components:
- pos: -17.5,-66.5
parent: 2
type: Transform
- - uid: 29034
+ - uid: 29102
components:
- pos: -17.5,-62.5
parent: 2
type: Transform
- - uid: 29035
+ - uid: 29103
components:
- pos: -16.5,-62.5
parent: 2
type: Transform
- - uid: 29036
+ - uid: 29104
components:
- pos: -15.5,-62.5
parent: 2
type: Transform
- - uid: 29037
+ - uid: 29105
components:
- pos: -14.5,-62.5
parent: 2
type: Transform
- - uid: 29038
+ - uid: 29106
components:
- pos: -12.5,-62.5
parent: 2
type: Transform
- - uid: 29039
+ - uid: 29107
components:
- pos: -11.5,-62.5
parent: 2
type: Transform
- - uid: 29040
+ - uid: 29108
components:
- pos: 1.5,-66.5
parent: 2
type: Transform
- - uid: 29041
+ - uid: 29109
components:
- pos: 1.5,-68.5
parent: 2
type: Transform
- - uid: 29042
+ - uid: 29110
components:
- pos: 0.5,-68.5
parent: 2
type: Transform
- - uid: 29043
+ - uid: 29111
components:
- pos: -0.5,-68.5
parent: 2
type: Transform
- - uid: 29044
+ - uid: 29112
components:
- pos: -2.5,-68.5
parent: 2
type: Transform
- - uid: 29045
+ - uid: 29113
components:
- pos: -3.5,-68.5
parent: 2
type: Transform
- - uid: 29046
+ - uid: 29114
components:
- pos: -4.5,-68.5
parent: 2
type: Transform
- - uid: 29047
+ - uid: 29115
components:
- pos: -4.5,-67.5
parent: 2
type: Transform
- - uid: 29048
+ - uid: 29116
components:
- pos: 5.5,-62.5
parent: 2
type: Transform
- - uid: 29049
+ - uid: 29117
components:
- pos: 5.5,-64.5
parent: 2
type: Transform
- - uid: 29050
+ - uid: 29118
components:
- pos: 5.5,-65.5
parent: 2
type: Transform
- - uid: 29051
+ - uid: 29119
components:
- pos: 5.5,-66.5
parent: 2
type: Transform
- - uid: 29052
+ - uid: 29120
components:
- pos: 4.5,-66.5
parent: 2
type: Transform
- - uid: 29053
+ - uid: 29121
components:
- pos: 3.5,-66.5
parent: 2
type: Transform
- - uid: 29054
+ - uid: 29122
components:
- pos: 2.5,-66.5
parent: 2
type: Transform
- - uid: 29055
+ - uid: 29123
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-68.5
parent: 2
type: Transform
- - uid: 29056
+ - uid: 29124
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-68.5
parent: 2
type: Transform
- - uid: 29057
+ - uid: 29125
components:
- pos: 56.5,-32.5
parent: 2
type: Transform
- - uid: 29058
+ - uid: 29126
components:
- pos: 11.5,-54.5
parent: 2
type: Transform
- - uid: 29059
+ - uid: 29127
components:
- pos: 10.5,-54.5
parent: 2
type: Transform
- - uid: 29060
+ - uid: 29128
components:
- pos: -21.5,-62.5
parent: 2
type: Transform
- - uid: 29061
+ - uid: 29129
components:
- pos: -20.5,-62.5
parent: 2
type: Transform
- - uid: 29062
+ - uid: 29130
components:
- pos: -18.5,-62.5
parent: 2
type: Transform
- - uid: 29063
+ - uid: 29131
components:
- pos: 12.5,-54.5
parent: 2
type: Transform
- - uid: 29064
+ - uid: 29132
components:
- pos: 14.5,-56.5
parent: 2
type: Transform
- - uid: 29065
+ - uid: 29133
components:
- pos: 14.5,-54.5
parent: 2
type: Transform
- - uid: 29066
+ - uid: 29134
components:
- pos: 13.5,-60.5
parent: 2
type: Transform
- - uid: 29067
+ - uid: 29135
components:
- pos: 13.5,-61.5
parent: 2
type: Transform
- - uid: 29068
+ - uid: 29136
components:
- pos: 13.5,-62.5
parent: 2
type: Transform
- - uid: 29069
+ - uid: 29137
components:
- pos: 13.5,-64.5
parent: 2
type: Transform
- - uid: 29070
+ - uid: 29138
components:
- pos: 12.5,-65.5
parent: 2
type: Transform
- - uid: 29071
+ - uid: 29139
components:
- pos: 10.5,-65.5
parent: 2
type: Transform
- - uid: 29072
+ - uid: 29140
components:
- pos: 10.5,-66.5
parent: 2
type: Transform
- - uid: 29073
+ - uid: 29141
components:
- pos: -8.5,-20.5
parent: 2
type: Transform
- - uid: 29074
+ - uid: 29142
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-20.5
parent: 2
type: Transform
- - uid: 29075
+ - uid: 29143
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-20.5
parent: 2
type: Transform
- - uid: 29076
+ - uid: 29144
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-20.5
parent: 2
type: Transform
- - uid: 29077
+ - uid: 29145
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-21.5
parent: 2
type: Transform
- - uid: 29078
+ - uid: 29146
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-23.5
parent: 2
type: Transform
- - uid: 29079
+ - uid: 29147
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-24.5
parent: 2
type: Transform
- - uid: 29080
+ - uid: 29148
components:
- pos: 38.5,-52.5
parent: 2
type: Transform
- - uid: 29081
+ - uid: 29149
components:
- pos: 37.5,-52.5
parent: 2
type: Transform
- - uid: 29082
+ - uid: 29150
components:
- pos: -7.5,-16.5
parent: 2
type: Transform
- - uid: 29083
+ - uid: 29151
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-13.5
parent: 2
type: Transform
- - uid: 29084
+ - uid: 29152
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-44.5
parent: 2
type: Transform
- - uid: 29085
+ - uid: 29153
components:
- pos: 17.5,-30.5
parent: 2
type: Transform
- - uid: 29086
+ - uid: 29154
components:
- pos: -21.5,-63.5
parent: 2
type: Transform
- - uid: 29087
+ - uid: 29155
components:
- pos: -21.5,-65.5
parent: 2
type: Transform
- - uid: 29088
+ - uid: 29156
components:
- pos: -26.5,-68.5
parent: 2
type: Transform
- - uid: 29089
+ - uid: 29157
components:
- pos: -26.5,-74.5
parent: 2
type: Transform
- - uid: 29090
+ - uid: 29158
components:
- pos: -25.5,-74.5
parent: 2
type: Transform
- - uid: 29091
+ - uid: 29159
components:
- pos: -15.5,-70.5
parent: 2
type: Transform
- - uid: 29092
+ - uid: 29160
components:
- pos: -16.5,-70.5
parent: 2
type: Transform
- - uid: 29093
+ - uid: 29161
components:
- pos: -16.5,-73.5
parent: 2
type: Transform
- - uid: 29094
+ - uid: 29162
components:
- pos: -21.5,-76.5
parent: 2
type: Transform
- - uid: 29095
+ - uid: 29163
components:
- pos: -6.5,-72.5
parent: 2
type: Transform
- - uid: 29096
+ - uid: 29164
components:
- pos: 36.5,-49.5
parent: 2
type: Transform
- - uid: 29097
+ - uid: 29165
components:
- pos: -7.5,-72.5
parent: 2
type: Transform
- - uid: 29098
+ - uid: 29166
components:
- pos: -10.5,-72.5
parent: 2
type: Transform
- - uid: 29099
+ - uid: 29167
components:
- pos: -10.5,-73.5
parent: 2
type: Transform
- - uid: 29100
+ - uid: 29168
components:
- pos: -9.5,-73.5
parent: 2
type: Transform
- - uid: 29101
+ - uid: 29169
components:
- pos: -7.5,-73.5
parent: 2
type: Transform
- - uid: 29102
+ - uid: 29170
components:
- pos: 3.5,-70.5
parent: 2
type: Transform
- - uid: 29103
+ - uid: 29171
components:
- pos: 3.5,-68.5
parent: 2
type: Transform
- - uid: 29104
+ - uid: 29172
components:
- pos: 4.5,-68.5
parent: 2
type: Transform
- - uid: 29105
+ - uid: 29173
components:
- pos: 5.5,-68.5
parent: 2
type: Transform
- - uid: 29106
+ - uid: 29174
components:
- pos: 7.5,-67.5
parent: 2
type: Transform
- - uid: 29107
+ - uid: 29175
components:
- pos: 8.5,-66.5
parent: 2
type: Transform
- - uid: 29108
+ - uid: 29176
components:
- pos: -21.5,-74.5
parent: 2
type: Transform
- - uid: 29109
+ - uid: 29177
components:
- pos: -13.5,-69.5
parent: 2
type: Transform
- - uid: 29110
+ - uid: 29178
components:
- pos: -21.5,-82.5
parent: 2
type: Transform
- - uid: 29111
+ - uid: 29179
components:
- pos: -21.5,-83.5
parent: 2
type: Transform
- - uid: 29112
+ - uid: 29180
components:
- pos: 10.5,-13.5
parent: 2
type: Transform
- - uid: 29113
+ - uid: 29181
components:
- pos: -10.5,-63.5
parent: 2
type: Transform
- - uid: 29114
+ - uid: 29182
components:
- pos: -10.5,-65.5
parent: 2
type: Transform
- - uid: 29115
+ - uid: 29183
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-65.5
parent: 2
type: Transform
- - uid: 29116
+ - uid: 29184
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-66.5
parent: 2
type: Transform
- - uid: 29117
+ - uid: 29185
components:
- pos: 40.5,-52.5
parent: 2
type: Transform
- - uid: 29118
+ - uid: 29186
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-64.5
parent: 2
type: Transform
- - uid: 29119
+ - uid: 29187
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-63.5
parent: 2
type: Transform
- - uid: 29120
+ - uid: 29188
components:
- pos: -6.5,-35.5
parent: 2
type: Transform
- - uid: 29121
+ - uid: 29189
components:
- pos: -13.5,-32.5
parent: 2
type: Transform
- - uid: 29122
+ - uid: 29190
components:
- pos: -25.5,-7.5
parent: 2
type: Transform
- - uid: 29123
+ - uid: 29191
components:
- rot: 3.141592653589793 rad
pos: 21.5,-9.5
parent: 2
type: Transform
- - uid: 29124
+ - uid: 29192
components:
- pos: 12.5,-13.5
parent: 2
type: Transform
- - uid: 29125
+ - uid: 29193
components:
- pos: 3.5,-72.5
parent: 2
type: Transform
- - uid: 29126
+ - uid: 29194
components:
- pos: 10.5,-68.5
parent: 2
type: Transform
- - uid: 29127
+ - uid: 29195
components:
- pos: 7.5,-51.5
parent: 2
type: Transform
- - uid: 29128
+ - uid: 29196
components:
- rot: 3.141592653589793 rad
pos: 16.5,-14.5
parent: 2
type: Transform
- - uid: 29129
+ - uid: 29197
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-55.5
parent: 2
type: Transform
- - uid: 29130
+ - uid: 29198
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-58.5
parent: 2
type: Transform
- - uid: 29131
+ - uid: 29199
components:
- pos: -5.5,9.5
parent: 2
type: Transform
- - uid: 29132
+ - uid: 29200
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-6.5
parent: 2
type: Transform
- - uid: 29133
+ - uid: 29201
components:
- pos: 9.5,-28.5
parent: 2
type: Transform
- - uid: 29134
+ - uid: 29202
components:
- pos: 5.5,-2.5
parent: 2
type: Transform
- - uid: 29135
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,13.5
- parent: 2
- type: Transform
- - uid: 29136
+ - uid: 29203
components:
- pos: -5.5,11.5
parent: 2
type: Transform
- - uid: 29137
+ - uid: 29204
components:
- pos: 17.5,-7.5
parent: 2
type: Transform
- - uid: 29138
+ - uid: 29205
components:
- pos: -9.5,13.5
parent: 2
type: Transform
- - uid: 29139
+ - uid: 29206
components:
- pos: -5.5,12.5
parent: 2
type: Transform
- - uid: 29140
+ - uid: 29207
components:
- pos: -11.5,5.5
parent: 2
type: Transform
- - uid: 29141
+ - uid: 29208
components:
- pos: 13.5,-51.5
parent: 2
type: Transform
- - uid: 29142
+ - uid: 29209
components:
- pos: 24.5,-3.5
parent: 2
type: Transform
- - uid: 29143
+ - uid: 29210
components:
- pos: 15.5,-7.5
parent: 2
type: Transform
- - uid: 29144
+ - uid: 29211
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-0.5
parent: 2
type: Transform
- - uid: 29145
+ - uid: 29212
components:
- pos: 20.5,5.5
parent: 2
type: Transform
- - uid: 29146
+ - uid: 29213
components:
- rot: -1.5707963267948966 rad
pos: 31.5,2.5
parent: 2
type: Transform
- - uid: 29147
+ - uid: 29214
components:
- pos: -1.5,0.5
parent: 2
type: Transform
- - uid: 29148
+ - uid: 29215
components:
- pos: -1.5,1.5
parent: 2
type: Transform
- - uid: 29149
+ - uid: 29216
components:
- pos: 15.5,5.5
parent: 2
type: Transform
- - uid: 29150
+ - uid: 29217
components:
- pos: 30.5,-1.5
parent: 2
type: Transform
- - uid: 29151
+ - uid: 29218
components:
- rot: 3.141592653589793 rad
pos: 23.5,11.5
parent: 2
type: Transform
- - uid: 29152
+ - uid: 29219
components:
- pos: 19.5,4.5
parent: 2
type: Transform
- - uid: 29153
+ - uid: 29220
components:
- pos: -1.5,4.5
parent: 2
type: Transform
- - uid: 29154
+ - uid: 29221
components:
- pos: 14.5,4.5
parent: 2
type: Transform
- - uid: 29155
+ - uid: 29222
components:
- pos: -5.5,4.5
parent: 2
type: Transform
- - uid: 29156
+ - uid: 29223
components:
- pos: 13.5,4.5
parent: 2
type: Transform
- - uid: 29157
+ - uid: 29224
components:
- pos: 7.5,-3.5
parent: 2
type: Transform
- - uid: 29158
+ - uid: 29225
components:
- pos: -13.5,-72.5
parent: 2
type: Transform
- - uid: 29159
+ - uid: 29226
components:
- pos: 19.5,5.5
parent: 2
type: Transform
- - uid: 29160
+ - uid: 29227
components:
- rot: 3.141592653589793 rad
pos: 23.5,14.5
parent: 2
type: Transform
- - uid: 29161
+ - uid: 29228
components:
- pos: -12.5,-28.5
parent: 2
type: Transform
- - uid: 29162
+ - uid: 29229
components:
- pos: 15.5,-4.5
parent: 2
type: Transform
- - uid: 29163
+ - uid: 29230
components:
- pos: 15.5,0.5
parent: 2
type: Transform
- - uid: 29164
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,12.5
- parent: 2
- type: Transform
- - uid: 29165
+ - uid: 29231
components:
- pos: 37.5,-38.5
parent: 2
type: Transform
- - uid: 29166
+ - uid: 29232
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-76.5
parent: 2
type: Transform
- - uid: 29167
+ - uid: 29233
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-76.5
parent: 2
type: Transform
- - uid: 29168
+ - uid: 29234
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-79.5
parent: 2
type: Transform
- - uid: 29169
+ - uid: 29235
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-76.5
parent: 2
type: Transform
- - uid: 29170
+ - uid: 29236
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-52.5
parent: 2
type: Transform
- - uid: 29171
+ - uid: 29237
components:
- pos: 8.5,4.5
parent: 2
type: Transform
- - uid: 29172
+ - uid: 29238
components:
- pos: 37.5,-32.5
parent: 2
type: Transform
- - uid: 29173
+ - uid: 29239
components:
- pos: 39.5,-27.5
parent: 2
type: Transform
- - uid: 29174
+ - uid: 29240
components:
- pos: 39.5,-31.5
parent: 2
type: Transform
- - uid: 29175
+ - uid: 29241
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-40.5
parent: 2
type: Transform
- - uid: 29176
+ - uid: 29242
components:
- pos: -17.5,-39.5
parent: 2
type: Transform
- - uid: 29177
+ - uid: 29243
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-77.5
parent: 2
type: Transform
- - uid: 29178
+ - uid: 29244
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-81.5
parent: 2
type: Transform
- - uid: 29179
+ - uid: 29245
components:
- rot: -1.5707963267948966 rad
pos: -2.5,-80.5
parent: 2
type: Transform
- - uid: 29180
+ - uid: 29246
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-80.5
parent: 2
type: Transform
- - uid: 29181
+ - uid: 29247
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-76.5
parent: 2
type: Transform
- - uid: 29182
+ - uid: 29248
components:
- pos: 7.5,4.5
parent: 2
type: Transform
- - uid: 29183
+ - uid: 29249
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-22.5
parent: 2
type: Transform
- - uid: 29184
+ - uid: 29250
components:
- pos: 38.5,-31.5
parent: 2
type: Transform
- - uid: 29185
- components:
- - pos: -6.5,-18.5
- parent: 2
- type: Transform
- - uid: 29186
+ - uid: 29251
components:
- pos: -6.5,-15.5
parent: 2
type: Transform
- - uid: 29187
+ - uid: 29252
components:
- rot: 3.141592653589793 rad
pos: -10.5,-47.5
parent: 2
type: Transform
- - uid: 29188
+ - uid: 29253
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-24.5
parent: 2
type: Transform
- - uid: 29189
+ - uid: 29254
components:
- pos: -4.5,9.5
parent: 2
type: Transform
- - uid: 29190
+ - uid: 29255
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-44.5
parent: 2
type: Transform
- - uid: 29191
+ - uid: 29256
components:
- pos: -21.5,-15.5
parent: 2
type: Transform
- - uid: 29192
+ - uid: 29257
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-18.5
parent: 2
type: Transform
- - uid: 29193
+ - uid: 29258
components:
- pos: -26.5,-15.5
parent: 2
type: Transform
- - uid: 29194
+ - uid: 29259
components:
- pos: 19.5,23.5
parent: 2
type: Transform
- - uid: 29195
+ - uid: 29260
components:
- pos: 27.5,-44.5
parent: 2
type: Transform
- - uid: 29196
+ - uid: 29261
components:
- pos: -6.5,-30.5
parent: 2
type: Transform
- - uid: 29197
+ - uid: 29262
components:
- pos: -6.5,-31.5
parent: 2
type: Transform
- - uid: 29198
+ - uid: 29263
components:
- pos: 12.5,-48.5
parent: 2
type: Transform
- - uid: 29199
+ - uid: 29264
components:
- pos: 9.5,-15.5
parent: 2
type: Transform
- - uid: 29200
+ - uid: 29265
components:
- pos: 7.5,-15.5
parent: 2
type: Transform
- - uid: 29201
+ - uid: 29266
components:
- pos: 6.5,-15.5
parent: 2
type: Transform
- - uid: 29202
+ - uid: 29267
components:
- pos: 5.5,-15.5
parent: 2
type: Transform
- - uid: 29203
+ - uid: 29268
components:
- pos: -10.5,-28.5
parent: 2
type: Transform
- - uid: 29204
+ - uid: 29269
components:
- rot: 1.5707963267948966 rad
pos: 7.5,-9.5
parent: 2
type: Transform
- - uid: 29205
+ - uid: 29270
components:
- pos: 8.5,-40.5
parent: 2
type: Transform
- - uid: 29206
+ - uid: 29271
components:
- rot: 3.141592653589793 rad
pos: -10.5,-48.5
parent: 2
type: Transform
- - uid: 29207
+ - uid: 29272
components:
- rot: 3.141592653589793 rad
pos: 1.5,-49.5
parent: 2
type: Transform
- - uid: 29208
+ - uid: 29273
components:
- rot: 3.141592653589793 rad
pos: 1.5,-50.5
parent: 2
type: Transform
- - uid: 29209
+ - uid: 29274
components:
- pos: -2.5,-51.5
parent: 2
type: Transform
- - uid: 29210
+ - uid: 29275
components:
- rot: -1.5707963267948966 rad
pos: -15.5,-40.5
parent: 2
type: Transform
- - uid: 29211
+ - uid: 29276
components:
- rot: -1.5707963267948966 rad
pos: -13.5,-40.5
parent: 2
type: Transform
- - uid: 29212
+ - uid: 29277
components:
- rot: -1.5707963267948966 rad
pos: 30.5,5.5
parent: 2
type: Transform
- - uid: 29213
+ - uid: 29278
components:
- pos: 3.5,-15.5
parent: 2
type: Transform
- - uid: 29214
+ - uid: 29279
components:
- pos: 14.5,-11.5
parent: 2
type: Transform
- - uid: 29215
+ - uid: 29280
components:
- pos: 8.5,-13.5
parent: 2
type: Transform
- - uid: 29216
+ - uid: 29281
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-5.5
parent: 2
type: Transform
- - uid: 29217
+ - uid: 29282
components:
- pos: 8.5,-28.5
parent: 2
type: Transform
- - uid: 29218
+ - uid: 29283
components:
- pos: 16.5,-12.5
parent: 2
type: Transform
- - uid: 29219
+ - uid: 29284
components:
- pos: 16.5,-11.5
parent: 2
type: Transform
- - uid: 29220
+ - uid: 29285
components:
- pos: 16.5,-10.5
parent: 2
type: Transform
- - uid: 29221
+ - uid: 29286
components:
- pos: 16.5,-9.5
parent: 2
type: Transform
- - uid: 29222
+ - uid: 29287
components:
- pos: 17.5,-9.5
parent: 2
type: Transform
- - uid: 29223
+ - uid: 29288
components:
- pos: 0.5,-15.5
parent: 2
type: Transform
- - uid: 29224
+ - uid: 29289
components:
- pos: 1.5,-15.5
parent: 2
type: Transform
- - uid: 29225
+ - uid: 29290
components:
- pos: 11.5,-13.5
parent: 2
type: Transform
- - uid: 29226
+ - uid: 29291
components:
- pos: 2.5,-15.5
parent: 2
type: Transform
- - uid: 29227
+ - uid: 29292
components:
- pos: 14.5,-10.5
parent: 2
type: Transform
- - uid: 29228
+ - uid: 29293
components:
- pos: 14.5,-9.5
parent: 2
type: Transform
- - uid: 29229
+ - uid: 29294
components:
- pos: 19.5,-9.5
parent: 2
type: Transform
- - uid: 29230
+ - uid: 29295
components:
- rot: 3.141592653589793 rad
pos: 19.5,9.5
parent: 2
type: Transform
- - uid: 29231
+ - uid: 29296
components:
- rot: 3.141592653589793 rad
pos: 19.5,11.5
parent: 2
type: Transform
- - uid: 29232
+ - uid: 29297
components:
- rot: 3.141592653589793 rad
pos: 19.5,13.5
parent: 2
type: Transform
- - uid: 29233
+ - uid: 29298
components:
- pos: -42.5,-29.5
parent: 2
type: Transform
- - uid: 29234
+ - uid: 29299
components:
- pos: -37.5,-29.5
parent: 2
type: Transform
- - uid: 29235
+ - uid: 29300
components:
- pos: 13.5,-13.5
parent: 2
type: Transform
- - uid: 29236
+ - uid: 29301
components:
- pos: 14.5,-13.5
parent: 2
type: Transform
- - uid: 29237
+ - uid: 29302
components:
- rot: 3.141592653589793 rad
pos: 47.5,37.5
parent: 2
type: Transform
- - uid: 29238
+ - uid: 29303
components:
- rot: 3.141592653589793 rad
pos: 19.5,12.5
parent: 2
type: Transform
- - uid: 29239
+ - uid: 29304
components:
- rot: 3.141592653589793 rad
pos: 20.5,9.5
parent: 2
type: Transform
- - uid: 29240
+ - uid: 29305
components:
- pos: 18.5,-9.5
parent: 2
type: Transform
- - uid: 29241
+ - uid: 29306
components:
- rot: -1.5707963267948966 rad
pos: 13.5,-8.5
parent: 2
type: Transform
- - uid: 29242
+ - uid: 29307
components:
- pos: -5.5,10.5
parent: 2
type: Transform
- - uid: 29243
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,11.5
- parent: 2
- type: Transform
- - uid: 29244
+ - uid: 29308
components:
- pos: 4.5,4.5
parent: 2
type: Transform
- - uid: 29245
+ - uid: 29309
components:
- pos: -1.5,6.5
parent: 2
type: Transform
- - uid: 29246
+ - uid: 29310
components:
- rot: 3.141592653589793 rad
pos: -1.5,10.5
parent: 2
type: Transform
- - uid: 29247
+ - uid: 29311
components:
- pos: 7.5,5.5
parent: 2
type: Transform
- - uid: 29248
+ - uid: 29312
components:
- rot: -1.5707963267948966 rad
pos: -8.5,57.5
parent: 2
type: Transform
- - uid: 29249
+ - uid: 29313
components:
- rot: 3.141592653589793 rad
pos: 28.5,-7.5
parent: 2
type: Transform
- - uid: 29250
+ - uid: 29314
components:
- pos: -3.5,-70.5
parent: 2
type: Transform
- - uid: 29251
+ - uid: 29315
components:
- pos: 8.5,-50.5
parent: 2
type: Transform
- - uid: 29252
+ - uid: 29316
components:
- pos: -17.5,-37.5
parent: 2
type: Transform
- - uid: 29253
+ - uid: 29317
components:
- pos: -26.5,34.5
parent: 2
type: Transform
- - uid: 29254
+ - uid: 29318
components:
- pos: -28.5,37.5
parent: 2
type: Transform
- - uid: 29255
+ - uid: 29319
components:
- pos: 3.5,4.5
parent: 2
type: Transform
- - uid: 29256
+ - uid: 29320
components:
- rot: 3.141592653589793 rad
pos: 22.5,-9.5
parent: 2
type: Transform
- - uid: 29257
+ - uid: 29321
components:
- pos: -9.5,4.5
parent: 2
type: Transform
- - uid: 29258
+ - uid: 29322
components:
- pos: -9.5,-34.5
parent: 2
type: Transform
- - uid: 29259
+ - uid: 29323
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-40.5
parent: 2
type: Transform
- - uid: 29260
+ - uid: 29324
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-40.5
parent: 2
type: Transform
- - uid: 29261
+ - uid: 29325
components:
- pos: -7.5,-28.5
parent: 2
type: Transform
- - uid: 29262
+ - uid: 29326
components:
- pos: 15.5,1.5
parent: 2
type: Transform
- - uid: 29263
+ - uid: 29327
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-24.5
parent: 2
type: Transform
- - uid: 29264
+ - uid: 29328
components:
- pos: -17.5,-16.5
parent: 2
type: Transform
- - uid: 29265
+ - uid: 29329
components:
- pos: 42.5,-6.5
parent: 2
type: Transform
- - uid: 29266
+ - uid: 29330
components:
- pos: -17.5,-32.5
parent: 2
type: Transform
- - uid: 29267
+ - uid: 29331
components:
- pos: -25.5,42.5
parent: 2
type: Transform
- - uid: 29268
+ - uid: 29332
components:
- pos: -28.5,36.5
parent: 2
type: Transform
- - uid: 29269
+ - uid: 29333
components:
- pos: -4.5,-70.5
parent: 2
type: Transform
- - uid: 29270
+ - uid: 29334
components:
- pos: -4.5,-71.5
parent: 2
type: Transform
- - uid: 29271
+ - uid: 29335
components:
- pos: 39.5,-52.5
parent: 2
type: Transform
- - uid: 29272
+ - uid: 29336
components:
- pos: -0.5,4.5
parent: 2
type: Transform
- - uid: 29273
+ - uid: 29337
components:
- pos: -4.5,-72.5
parent: 2
type: Transform
- - uid: 29274
+ - uid: 29338
components:
- pos: 16.5,-50.5
parent: 2
type: Transform
- - uid: 29275
+ - uid: 29339
components:
- pos: 14.5,-55.5
parent: 2
type: Transform
- - uid: 29276
+ - uid: 29340
components:
- pos: -17.5,-17.5
parent: 2
type: Transform
- - uid: 29277
+ - uid: 29341
components:
- rot: 3.141592653589793 rad
pos: 32.5,-7.5
parent: 2
type: Transform
- - uid: 29278
+ - uid: 29342
components:
- pos: -21.5,-24.5
parent: 2
type: Transform
- - uid: 29279
+ - uid: 29343
components:
- pos: 41.5,-57.5
parent: 2
type: Transform
- - uid: 29280
+ - uid: 29344
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-24.5
parent: 2
type: Transform
- - uid: 29281
+ - uid: 29345
components:
- pos: 36.5,-0.5
parent: 2
type: Transform
- - uid: 29282
+ - uid: 29346
components:
- pos: 9.5,-54.5
parent: 2
type: Transform
- - uid: 29283
+ - uid: 29347
components:
- pos: -17.5,-15.5
parent: 2
type: Transform
- - uid: 29284
+ - uid: 29348
components:
- pos: 37.5,-40.5
parent: 2
type: Transform
- - uid: 29285
+ - uid: 29349
components:
- pos: 38.5,-40.5
parent: 2
type: Transform
- - uid: 29286
+ - uid: 29350
components:
- pos: 40.5,-40.5
parent: 2
type: Transform
- - uid: 29287
+ - uid: 29351
components:
- pos: 27.5,-46.5
parent: 2
type: Transform
- - uid: 29288
+ - uid: 29352
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-49.5
parent: 2
type: Transform
- - uid: 29289
+ - uid: 29353
components:
- pos: 39.5,-40.5
parent: 2
type: Transform
- - uid: 29290
+ - uid: 29354
components:
- pos: -11.5,4.5
parent: 2
type: Transform
- - uid: 29291
- components:
- - pos: -2.5,13.5
- parent: 2
- type: Transform
- - uid: 29292
+ - uid: 29355
components:
- rot: 3.141592653589793 rad
pos: 23.5,12.5
parent: 2
type: Transform
- - uid: 29293
+ - uid: 29356
components:
- rot: 3.141592653589793 rad
pos: 23.5,13.5
parent: 2
type: Transform
- - uid: 29294
+ - uid: 29357
components:
- pos: 28.5,5.5
parent: 2
type: Transform
- - uid: 29295
+ - uid: 29358
components:
- rot: 3.141592653589793 rad
pos: 3.5,10.5
parent: 2
type: Transform
- - uid: 29296
+ - uid: 29359
components:
- rot: -1.5707963267948966 rad
pos: 31.5,4.5
parent: 2
type: Transform
- - uid: 29297
+ - uid: 29360
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-1.5
parent: 2
type: Transform
- - uid: 29298
+ - uid: 29361
components:
- pos: -29.5,-76.5
parent: 2
type: Transform
- - uid: 29299
+ - uid: 29362
components:
- pos: -11.5,11.5
parent: 2
type: Transform
- - uid: 29300
+ - uid: 29363
components:
- pos: -2.5,4.5
parent: 2
type: Transform
- - uid: 29301
+ - uid: 29364
components:
- rot: 3.141592653589793 rad
pos: 61.5,14.5
parent: 2
type: Transform
- - uid: 29302
+ - uid: 29365
components:
- rot: -1.5707963267948966 rad
pos: 19.5,20.5
parent: 2
type: Transform
- - uid: 29303
+ - uid: 29366
components:
- pos: 6.5,4.5
parent: 2
type: Transform
- - uid: 29304
+ - uid: 29367
components:
- rot: -1.5707963267948966 rad
pos: -18.5,38.5
parent: 2
type: Transform
- - uid: 29305
+ - uid: 29368
components:
- pos: -17.5,-35.5
parent: 2
type: Transform
- - uid: 29306
+ - uid: 29369
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-28.5
parent: 2
type: Transform
- - uid: 29307
+ - uid: 29370
components:
- pos: -10.5,-62.5
parent: 2
type: Transform
- - uid: 29308
+ - uid: 29371
components:
- pos: -10.5,-64.5
parent: 2
type: Transform
- - uid: 29309
+ - uid: 29372
components:
- pos: -2.5,-70.5
parent: 2
type: Transform
- - uid: 29310
+ - uid: 29373
components:
- pos: -1.5,-70.5
parent: 2
type: Transform
- - uid: 29311
+ - uid: 29374
components:
- rot: 3.141592653589793 rad
pos: 29.5,-7.5
parent: 2
type: Transform
- - uid: 29312
+ - uid: 29375
components:
- pos: 13.5,-53.5
parent: 2
type: Transform
- - uid: 29313
+ - uid: 29376
components:
- rot: -1.5707963267948966 rad
pos: -10.5,57.5
parent: 2
type: Transform
- - uid: 29314
+ - uid: 29377
components:
- pos: -5.5,-72.5
parent: 2
type: Transform
- - uid: 29315
+ - uid: 29378
components:
- pos: 0.5,-70.5
parent: 2
type: Transform
- - uid: 29316
+ - uid: 29379
components:
- pos: 1.5,-70.5
parent: 2
type: Transform
- - uid: 29317
+ - uid: 29380
components:
- pos: 42.5,-54.5
parent: 2
type: Transform
- - uid: 29318
+ - uid: 29381
components:
- pos: -1.5,-11.5
parent: 2
type: Transform
- - uid: 29319
+ - uid: 29382
components:
- pos: 13.5,-44.5
parent: 2
type: Transform
- - uid: 29320
+ - uid: 29383
components:
- pos: -28.5,-76.5
parent: 2
type: Transform
- - uid: 29321
+ - uid: 29384
components:
- pos: -21.5,-80.5
parent: 2
type: Transform
- - uid: 29322
+ - uid: 29385
components:
- pos: -11.5,10.5
parent: 2
type: Transform
- - uid: 29323
+ - uid: 29386
components:
- pos: -0.5,-70.5
parent: 2
type: Transform
- - uid: 29324
+ - uid: 29387
components:
- pos: -27.5,-76.5
parent: 2
type: Transform
- - uid: 29325
+ - uid: 29388
components:
- pos: -20.5,-65.5
parent: 2
type: Transform
- - uid: 29326
+ - uid: 29389
components:
- pos: -14.5,-72.5
parent: 2
type: Transform
- - uid: 29327
+ - uid: 29390
components:
- pos: -17.5,-74.5
parent: 2
type: Transform
- - uid: 29328
+ - uid: 29391
components:
- pos: -21.5,-79.5
parent: 2
type: Transform
- - uid: 29329
+ - uid: 29392
components:
- pos: -21.5,-78.5
parent: 2
type: Transform
- - uid: 29330
+ - uid: 29393
components:
- pos: -21.5,-77.5
parent: 2
type: Transform
- - uid: 29331
+ - uid: 29394
components:
- pos: -26.5,-76.5
parent: 2
type: Transform
- - uid: 29332
+ - uid: 29395
components:
- pos: -26.5,-75.5
parent: 2
type: Transform
- - uid: 29333
+ - uid: 29396
components:
- rot: 3.141592653589793 rad
pos: -10.5,-51.5
parent: 2
type: Transform
- - uid: 29334
+ - uid: 29397
components:
- rot: 3.141592653589793 rad
pos: -16.5,-51.5
parent: 2
type: Transform
- - uid: 29335
+ - uid: 29398
components:
- pos: 16.5,-48.5
parent: 2
type: Transform
- - uid: 29336
+ - uid: 29399
components:
- pos: -17.5,-67.5
parent: 2
type: Transform
- - uid: 29337
+ - uid: 29400
components:
- pos: 10.5,-15.5
parent: 2
type: Transform
- - uid: 29338
+ - uid: 29401
components:
- pos: 12.5,4.5
parent: 2
type: Transform
- - uid: 29339
+ - uid: 29402
components:
- rot: 3.141592653589793 rad
pos: 23.5,-7.5
parent: 2
type: Transform
- - uid: 29340
+ - uid: 29403
components:
- pos: -32.5,-70.5
parent: 2
type: Transform
- - uid: 29341
+ - uid: 29404
components:
- rot: 3.141592653589793 rad
pos: 30.5,-7.5
parent: 2
type: Transform
- - uid: 29342
+ - uid: 29405
components:
- pos: -27.5,-72.5
parent: 2
type: Transform
- - uid: 29343
+ - uid: 29406
components:
- pos: 13.5,-65.5
parent: 2
type: Transform
- - uid: 29344
+ - uid: 29407
components:
- pos: 10.5,-63.5
parent: 2
type: Transform
- - uid: 29345
+ - uid: 29408
components:
- rot: 3.141592653589793 rad
pos: 23.5,-8.5
parent: 2
type: Transform
- - uid: 29346
+ - uid: 29409
components:
- pos: -6.5,-50.5
parent: 2
type: Transform
- - uid: 29347
+ - uid: 29410
components:
- pos: -13.5,-70.5
parent: 2
type: Transform
- - uid: 29348
+ - uid: 29411
components:
- pos: 14.5,-12.5
parent: 2
type: Transform
- - uid: 29349
+ - uid: 29412
components:
- pos: 29.5,5.5
parent: 2
type: Transform
- - uid: 29350
+ - uid: 29413
components:
- rot: -1.5707963267948966 rad
pos: 31.5,5.5
parent: 2
type: Transform
- - uid: 29351
+ - uid: 29414
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-48.5
parent: 2
type: Transform
- - uid: 29352
+ - uid: 29415
components:
- pos: 27.5,-45.5
parent: 2
type: Transform
- - uid: 29353
+ - uid: 29416
components:
- rot: 3.141592653589793 rad
pos: 20.5,15.5
parent: 2
type: Transform
- - uid: 29354
+ - uid: 29417
components:
- pos: -17.5,-13.5
parent: 2
type: Transform
- - uid: 29355
+ - uid: 29418
components:
- pos: 43.5,-6.5
parent: 2
type: Transform
- - uid: 29356
+ - uid: 29419
components:
- pos: 37.5,-54.5
parent: 2
type: Transform
- - uid: 29357
+ - uid: 29420
components:
- pos: 17.5,-27.5
parent: 2
type: Transform
- - uid: 29358
+ - uid: 29421
components:
- pos: -25.5,43.5
parent: 2
type: Transform
- - uid: 29359
+ - uid: 29422
components:
- pos: -25.5,44.5
parent: 2
type: Transform
- - uid: 29360
+ - uid: 29423
components:
- pos: -25.5,46.5
parent: 2
type: Transform
- - uid: 29361
+ - uid: 29424
components:
- pos: -27.5,36.5
parent: 2
type: Transform
- - uid: 29362
+ - uid: 29425
components:
- rot: 3.141592653589793 rad
pos: 27.5,-7.5
parent: 2
type: Transform
- - uid: 29363
+ - uid: 29426
components:
- rot: 3.141592653589793 rad
pos: 21.5,-51.5
parent: 2
type: Transform
- - uid: 29364
+ - uid: 29427
components:
- pos: -6.5,-39.5
parent: 2
type: Transform
- - uid: 29365
+ - uid: 29428
components:
- rot: 1.5707963267948966 rad
pos: -16.5,-24.5
parent: 2
type: Transform
- - uid: 29366
+ - uid: 29429
components:
- pos: -17.5,-24.5
parent: 2
type: Transform
- - uid: 29367
+ - uid: 29430
components:
- pos: 42.5,-55.5
parent: 2
type: Transform
- - uid: 29368
+ - uid: 29431
components:
- pos: -26.5,32.5
parent: 2
type: Transform
- - uid: 29369
+ - uid: 29432
components:
- pos: 37.5,-55.5
parent: 2
type: Transform
- - uid: 29370
+ - uid: 29433
components:
- rot: 3.141592653589793 rad
pos: 20.5,-51.5
parent: 2
type: Transform
- - uid: 29371
+ - uid: 29434
components:
- pos: 15.5,-5.5
parent: 2
type: Transform
- - uid: 29372
+ - uid: 29435
components:
- rot: 3.141592653589793 rad
pos: 27.5,-9.5
parent: 2
type: Transform
- - uid: 29373
+ - uid: 29436
components:
- rot: 3.141592653589793 rad
pos: 21.5,-7.5
parent: 2
type: Transform
- - uid: 29374
+ - uid: 29437
components:
- rot: -1.5707963267948966 rad
pos: 6.5,-44.5
parent: 2
type: Transform
- - uid: 29375
+ - uid: 29438
components:
- pos: 1.5,-72.5
parent: 2
type: Transform
- - uid: 29376
+ - uid: 29439
components:
- rot: -1.5707963267948966 rad
pos: 29.5,-2.5
parent: 2
type: Transform
- - uid: 29377
+ - uid: 29440
components:
- rot: 3.141592653589793 rad
pos: 34.5,-7.5
parent: 2
type: Transform
- - uid: 29378
+ - uid: 29441
components:
- pos: 42.5,-53.5
parent: 2
type: Transform
- - uid: 29379
+ - uid: 29442
components:
- rot: 3.141592653589793 rad
pos: -10.5,-44.5
parent: 2
type: Transform
- - uid: 29380
+ - uid: 29443
components:
- rot: 3.141592653589793 rad
pos: 7.5,10.5
parent: 2
type: Transform
- - uid: 29381
+ - uid: 29444
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-76.5
parent: 2
type: Transform
- - uid: 29382
+ - uid: 29445
components:
- rot: 3.141592653589793 rad
pos: 60.5,12.5
parent: 2
type: Transform
- - uid: 29383
+ - uid: 29446
components:
- pos: 20.5,-3.5
parent: 2
type: Transform
- - uid: 29384
+ - uid: 29447
components:
- pos: 2.5,-72.5
parent: 2
type: Transform
- - uid: 29385
+ - uid: 29448
components:
- pos: 11.5,-68.5
parent: 2
type: Transform
- - uid: 29386
+ - uid: 29449
components:
- pos: -18.5,-65.5
parent: 2
type: Transform
- - uid: 29387
+ - uid: 29450
components:
- pos: 7.5,-58.5
parent: 2
type: Transform
- - uid: 29388
+ - uid: 29451
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-44.5
parent: 2
type: Transform
- - uid: 29389
+ - uid: 29452
components:
- rot: 1.5707963267948966 rad
pos: 33.5,-44.5
parent: 2
type: Transform
- - uid: 29390
+ - uid: 29453
components:
- pos: -2.5,-16.5
parent: 2
type: Transform
- - uid: 29391
+ - uid: 29454
components:
- pos: -11.5,-28.5
parent: 2
type: Transform
- - uid: 29392
+ - uid: 29455
components:
- pos: -7.5,-35.5
parent: 2
type: Transform
- - uid: 29393
+ - uid: 29456
components:
- rot: 3.141592653589793 rad
pos: 19.5,-7.5
parent: 2
type: Transform
- - uid: 29394
+ - uid: 29457
components:
- pos: 29.5,-3.5
parent: 2
type: Transform
- - uid: 29395
+ - uid: 29458
components:
- rot: -1.5707963267948966 rad
pos: 31.5,-3.5
parent: 2
type: Transform
- - uid: 29396
+ - uid: 29459
components:
- rot: 1.5707963267948966 rad
pos: 27.5,-57.5
parent: 2
type: Transform
- - uid: 29397
+ - uid: 29460
components:
- pos: -17.5,-33.5
parent: 2
type: Transform
- - uid: 29398
+ - uid: 29461
components:
- pos: 35.5,-0.5
parent: 2
type: Transform
- - uid: 29399
+ - uid: 29462
components:
- rot: -1.5707963267948966 rad
pos: -11.5,14.5
parent: 2
type: Transform
- - uid: 29400
+ - uid: 29463
components:
- pos: -23.5,36.5
parent: 2
type: Transform
- - uid: 29401
+ - uid: 29464
components:
- pos: -23.5,37.5
parent: 2
type: Transform
- - uid: 29402
+ - uid: 29465
components:
- pos: -23.5,39.5
parent: 2
type: Transform
- - uid: 29403
+ - uid: 29466
components:
- pos: -5.5,13.5
parent: 2
type: Transform
- - uid: 29404
+ - uid: 29467
components:
- pos: -10.5,-66.5
parent: 2
type: Transform
- - uid: 29405
+ - uid: 29468
components:
- rot: -1.5707963267948966 rad
pos: 21.5,19.5
parent: 2
type: Transform
- - uid: 29406
+ - uid: 29469
components:
- pos: 20.5,-48.5
parent: 2
type: Transform
- - uid: 29407
+ - uid: 29470
components:
- rot: -1.5707963267948966 rad
pos: -3.5,-76.5
parent: 2
type: Transform
- - uid: 29408
+ - uid: 29471
components:
- pos: -3.5,-73.5
parent: 2
type: Transform
- - uid: 29409
+ - uid: 29472
components:
- pos: -2.5,-72.5
parent: 2
type: Transform
- - uid: 29410
+ - uid: 29473
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-23.5
parent: 2
type: Transform
- - uid: 29411
+ - uid: 29474
components:
- pos: 57.5,-64.5
parent: 2
type: Transform
- - uid: 29412
+ - uid: 29475
components:
- pos: -14.5,-16.5
parent: 2
type: Transform
- - uid: 29413
+ - uid: 29476
components:
- pos: -14.5,-19.5
parent: 2
type: Transform
- - uid: 29414
+ - uid: 29477
components:
- pos: -17.5,-19.5
parent: 2
type: Transform
- - uid: 29415
+ - uid: 29478
components:
- pos: -17.5,-18.5
parent: 2
type: Transform
- - uid: 29416
+ - uid: 29479
components:
- pos: -17.5,-36.5
parent: 2
type: Transform
- - uid: 29417
+ - uid: 29480
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-39.5
parent: 2
type: Transform
- - uid: 29418
+ - uid: 29481
components:
- pos: 13.5,-30.5
parent: 2
type: Transform
- - uid: 29419
+ - uid: 29482
components:
- pos: 16.5,-47.5
parent: 2
type: Transform
- - uid: 29420
+ - uid: 29483
components:
- rot: 3.141592653589793 rad
pos: 17.5,-51.5
parent: 2
type: Transform
- - uid: 29421
+ - uid: 29484
components:
- pos: -14.5,-17.5
parent: 2
type: Transform
- - uid: 29422
+ - uid: 29485
components:
- pos: 9.5,4.5
parent: 2
type: Transform
- - uid: 29423
+ - uid: 29486
components:
- pos: 37.5,-29.5
parent: 2
type: Transform
- - uid: 29424
+ - uid: 29487
components:
- pos: -23.5,-68.5
parent: 2
type: Transform
- - uid: 29425
+ - uid: 29488
components:
- pos: 11.5,-56.5
parent: 2
type: Transform
- - uid: 29426
+ - uid: 29489
components:
- pos: -7.5,-33.5
parent: 2
type: Transform
- - uid: 29427
+ - uid: 29490
components:
- rot: 3.141592653589793 rad
pos: -12.5,-32.5
parent: 2
type: Transform
- - uid: 29428
+ - uid: 29491
components:
- pos: -12.5,-31.5
parent: 2
type: Transform
- - uid: 29429
+ - uid: 29492
components:
- pos: -13.5,-34.5
parent: 2
type: Transform
- - uid: 29430
+ - uid: 29493
components:
- pos: -13.5,-35.5
parent: 2
type: Transform
- - uid: 29431
+ - uid: 29494
components:
- pos: -13.5,-36.5
parent: 2
type: Transform
- - uid: 29432
+ - uid: 29495
components:
- pos: -13.5,-37.5
parent: 2
type: Transform
- - uid: 29433
+ - uid: 29496
components:
- pos: -13.5,-39.5
parent: 2
type: Transform
- - uid: 29434
+ - uid: 29497
components:
- pos: -16.5,-36.5
parent: 2
type: Transform
- - uid: 29435
+ - uid: 29498
components:
- pos: -15.5,-36.5
parent: 2
type: Transform
- - uid: 29436
+ - uid: 29499
components:
- pos: -14.5,-36.5
parent: 2
type: Transform
- - uid: 29437
+ - uid: 29500
components:
- pos: -7.5,-32.5
parent: 2
type: Transform
- - uid: 29438
+ - uid: 29501
components:
- pos: -7.5,-31.5
parent: 2
type: Transform
- - uid: 29439
+ - uid: 29502
components:
- pos: -10.5,-31.5
parent: 2
type: Transform
- - uid: 29440
+ - uid: 29503
components:
- pos: -9.5,-31.5
parent: 2
type: Transform
- - uid: 29441
+ - uid: 29504
components:
- pos: -8.5,-31.5
parent: 2
type: Transform
- - uid: 29442
+ - uid: 29505
components:
- pos: 10.5,-28.5
parent: 2
type: Transform
- - uid: 29443
+ - uid: 29506
components:
- rot: 3.141592653589793 rad
pos: 17.5,8.5
parent: 2
type: Transform
- - uid: 29444
+ - uid: 29507
components:
- pos: 23.5,-47.5
parent: 2
type: Transform
- - uid: 29445
+ - uid: 29508
components:
- rot: -1.5707963267948966 rad
pos: 49.5,-36.5
parent: 2
type: Transform
- - uid: 29446
+ - uid: 29509
components:
- rot: -1.5707963267948966 rad
pos: 43.5,-34.5
parent: 2
type: Transform
- - uid: 29447
+ - uid: 29510
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-9.5
parent: 2
type: Transform
- - uid: 29448
+ - uid: 29511
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-10.5
parent: 2
type: Transform
- - uid: 29449
+ - uid: 29512
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-11.5
parent: 2
type: Transform
- - uid: 29450
+ - uid: 29513
components:
- rot: 1.5707963267948966 rad
pos: 36.5,-7.5
parent: 2
type: Transform
- - uid: 29451
+ - uid: 29514
components:
- pos: -6.5,-8.5
parent: 2
type: Transform
- - uid: 29452
+ - uid: 29515
components:
- pos: -6.5,-10.5
parent: 2
type: Transform
- - uid: 29453
+ - uid: 29516
components:
- pos: -17.5,-11.5
parent: 2
type: Transform
- - uid: 29454
+ - uid: 29517
components:
- pos: -17.5,-12.5
parent: 2
type: Transform
- - uid: 29455
+ - uid: 29518
components:
- pos: -11.5,0.5
parent: 2
type: Transform
- - uid: 29456
+ - uid: 29519
components:
- pos: -13.5,14.5
parent: 2
type: Transform
- - uid: 29457
+ - uid: 29520
components:
- pos: -15.5,14.5
parent: 2
type: Transform
- - uid: 29458
+ - uid: 29521
components:
- pos: -21.5,13.5
parent: 2
type: Transform
- - uid: 29459
+ - uid: 29522
components:
- pos: -21.5,10.5
parent: 2
type: Transform
- - uid: 29460
+ - uid: 29523
components:
- pos: -17.5,13.5
parent: 2
type: Transform
- - uid: 29461
+ - uid: 29524
components:
- pos: -17.5,12.5
parent: 2
type: Transform
- - uid: 29462
+ - uid: 29525
components:
- pos: -17.5,14.5
parent: 2
type: Transform
- - uid: 29463
+ - uid: 29526
components:
- pos: -16.5,14.5
parent: 2
type: Transform
- - uid: 29464
+ - uid: 29527
components:
- pos: -15.5,-32.5
parent: 2
type: Transform
- - uid: 29465
+ - uid: 29528
components:
- pos: -9.5,-30.5
parent: 2
type: Transform
- - uid: 29466
+ - uid: 29529
components:
- pos: -15.5,-30.5
parent: 2
type: Transform
- - uid: 29467
+ - uid: 29530
components:
- pos: -14.5,-30.5
parent: 2
type: Transform
- - uid: 29468
+ - uid: 29531
components:
- pos: -14.5,-29.5
parent: 2
type: Transform
- - uid: 29469
+ - uid: 29532
components:
- rot: -1.5707963267948966 rad
pos: -15.5,16.5
parent: 2
type: Transform
- - uid: 29470
+ - uid: 29533
components:
- rot: -1.5707963267948966 rad
pos: -14.5,16.5
parent: 2
type: Transform
- - uid: 29471
+ - uid: 29534
components:
- rot: -1.5707963267948966 rad
pos: -13.5,16.5
parent: 2
type: Transform
- - uid: 29472
+ - uid: 29535
components:
- rot: -1.5707963267948966 rad
pos: -12.5,16.5
parent: 2
type: Transform
- - uid: 29473
+ - uid: 29536
components:
- rot: -1.5707963267948966 rad
pos: -11.5,16.5
parent: 2
type: Transform
- - uid: 29474
+ - uid: 29537
components:
- rot: -1.5707963267948966 rad
pos: -11.5,17.5
parent: 2
type: Transform
- - uid: 29475
+ - uid: 29538
components:
- rot: -1.5707963267948966 rad
pos: -9.5,17.5
parent: 2
type: Transform
- - uid: 29476
+ - uid: 29539
components:
- pos: -15.5,-11.5
parent: 2
type: Transform
- - uid: 29477
+ - uid: 29540
components:
- pos: -8.5,-16.5
parent: 2
type: Transform
- - uid: 29478
+ - uid: 29541
components:
- pos: 23.5,-45.5
parent: 2
type: Transform
- - uid: 29479
+ - uid: 29542
components:
- pos: 23.5,-44.5
parent: 2
type: Transform
- - uid: 29480
+ - uid: 29543
components:
- pos: 23.5,-48.5
parent: 2
type: Transform
- - uid: 29481
+ - uid: 29544
components:
- pos: 18.5,-45.5
parent: 2
type: Transform
- - uid: 29482
+ - uid: 29545
components:
- pos: 18.5,-46.5
parent: 2
type: Transform
- - uid: 29483
+ - uid: 29546
components:
- pos: 18.5,-47.5
parent: 2
type: Transform
- - uid: 29484
+ - uid: 29547
components:
- rot: -1.5707963267948966 rad
pos: 31.5,0.5
parent: 2
type: Transform
- - uid: 29485
+ - uid: 29548
components:
- pos: 61.5,7.5
parent: 2
type: Transform
- - uid: 29486
+ - uid: 29549
components:
- pos: 61.5,5.5
parent: 2
type: Transform
- - uid: 29487
+ - uid: 29550
components:
- pos: 64.5,1.5
parent: 2
type: Transform
- - uid: 29488
+ - uid: 29551
components:
- pos: 65.5,0.5
parent: 2
type: Transform
- - uid: 29489
+ - uid: 29552
components:
- pos: 60.5,0.5
parent: 2
type: Transform
- - uid: 29490
+ - uid: 29553
components:
- pos: 17.5,30.5
parent: 2
type: Transform
- - uid: 29491
+ - uid: 29554
components:
- rot: 1.5707963267948966 rad
pos: 55.5,54.5
parent: 2
type: Transform
- - uid: 29492
+ - uid: 29555
components:
- rot: 1.5707963267948966 rad
pos: 56.5,54.5
parent: 2
type: Transform
- - uid: 29493
+ - uid: 29556
components:
- rot: -1.5707963267948966 rad
pos: -13.5,47.5
parent: 2
type: Transform
- - uid: 29494
+ - uid: 29557
components:
- rot: -1.5707963267948966 rad
pos: -13.5,48.5
parent: 2
type: Transform
- - uid: 29495
+ - uid: 29558
components:
- pos: 47.5,34.5
parent: 2
type: Transform
- - uid: 29496
+ - uid: 29559
components:
- pos: 47.5,33.5
parent: 2
type: Transform
- - uid: 29497
+ - uid: 29560
components:
- pos: 47.5,31.5
parent: 2
type: Transform
- - uid: 29498
+ - uid: 29561
components:
- pos: -9.5,47.5
parent: 2
type: Transform
- - uid: 29499
+ - uid: 29562
components:
- pos: -10.5,47.5
parent: 2
type: Transform
- - uid: 29500
+ - uid: 29563
components:
- rot: -1.5707963267948966 rad
pos: -10.5,48.5
parent: 2
type: Transform
- - uid: 29501
+ - uid: 29564
components:
- pos: -3.5,20.5
parent: 2
type: Transform
- - uid: 29502
+ - uid: 29565
components:
- pos: -6.5,20.5
parent: 2
type: Transform
- - uid: 29503
+ - uid: 29566
components:
- pos: -7.5,20.5
parent: 2
type: Transform
- - uid: 29504
+ - uid: 29567
components:
- pos: -9.5,19.5
parent: 2
type: Transform
- - uid: 29505
+ - uid: 29568
components:
- pos: -9.5,20.5
parent: 2
type: Transform
- - uid: 29506
+ - uid: 29569
components:
- pos: -11.5,20.5
parent: 2
type: Transform
- - uid: 29507
+ - uid: 29570
components:
- pos: -11.5,19.5
parent: 2
type: Transform
- - uid: 29508
+ - uid: 29571
components:
- pos: 33.5,23.5
parent: 2
type: Transform
- - uid: 29509
+ - uid: 29572
components:
- pos: 34.5,23.5
parent: 2
type: Transform
- - uid: 29510
+ - uid: 29573
components:
- pos: 33.5,17.5
parent: 2
type: Transform
- - uid: 29511
+ - uid: 29574
components:
- rot: 3.141592653589793 rad
pos: 51.5,14.5
parent: 2
type: Transform
- - uid: 29512
+ - uid: 29575
components:
- rot: 3.141592653589793 rad
pos: 55.5,14.5
parent: 2
type: Transform
- - uid: 29513
+ - uid: 29576
components:
- rot: 3.141592653589793 rad
pos: 55.5,10.5
parent: 2
type: Transform
- - uid: 29514
+ - uid: 29577
components:
- rot: 3.141592653589793 rad
pos: 51.5,10.5
parent: 2
type: Transform
- - uid: 29515
+ - uid: 29578
components:
- pos: 61.5,6.5
parent: 2
type: Transform
- - uid: 29516
+ - uid: 29579
components:
- pos: 43.5,18.5
parent: 2
type: Transform
- - uid: 29517
+ - uid: 29580
components:
- pos: 43.5,21.5
parent: 2
type: Transform
- - uid: 29518
+ - uid: 29581
components:
- pos: 44.5,-0.5
parent: 2
type: Transform
- - uid: 29519
+ - uid: 29582
components:
- pos: 47.5,-0.5
parent: 2
type: Transform
- - uid: 29520
+ - uid: 29583
components:
- pos: 48.5,24.5
parent: 2
type: Transform
- - uid: 29521
+ - uid: 29584
components:
- pos: 48.5,23.5
parent: 2
type: Transform
- - uid: 29522
+ - uid: 29585
components:
- pos: 48.5,22.5
parent: 2
type: Transform
- - uid: 29523
+ - uid: 29586
components:
- pos: 51.5,24.5
parent: 2
type: Transform
- - uid: 29524
+ - uid: 29587
components:
- pos: 51.5,23.5
parent: 2
type: Transform
- - uid: 29525
+ - uid: 29588
components:
- pos: 51.5,22.5
parent: 2
type: Transform
- - uid: 29526
+ - uid: 29589
components:
- pos: 54.5,24.5
parent: 2
type: Transform
- - uid: 29527
+ - uid: 29590
components:
- pos: 54.5,23.5
parent: 2
type: Transform
- - uid: 29528
+ - uid: 29591
components:
- pos: 54.5,22.5
parent: 2
type: Transform
- - uid: 29529
+ - uid: 29592
components:
- pos: 57.5,24.5
parent: 2
type: Transform
- - uid: 29530
+ - uid: 29593
components:
- pos: 57.5,23.5
parent: 2
type: Transform
- - uid: 29531
+ - uid: 29594
components:
- pos: 57.5,22.5
parent: 2
type: Transform
- - uid: 29532
+ - uid: 29595
components:
- pos: 60.5,24.5
parent: 2
type: Transform
- - uid: 29533
+ - uid: 29596
components:
- pos: 60.5,23.5
parent: 2
type: Transform
- - uid: 29534
+ - uid: 29597
components:
- pos: 60.5,22.5
parent: 2
type: Transform
- - uid: 29535
+ - uid: 29598
components:
- pos: 62.5,20.5
parent: 2
type: Transform
- - uid: 29536
+ - uid: 29599
components:
- pos: 61.5,20.5
parent: 2
type: Transform
- - uid: 29537
+ - uid: 29600
components:
- pos: 60.5,20.5
parent: 2
type: Transform
- - uid: 29538
+ - uid: 29601
components:
- rot: 1.5707963267948966 rad
pos: 46.5,27.5
parent: 2
type: Transform
- - uid: 29539
+ - uid: 29602
components:
- rot: 1.5707963267948966 rad
pos: 45.5,27.5
parent: 2
type: Transform
- - uid: 29540
+ - uid: 29603
components:
- rot: 1.5707963267948966 rad
pos: 44.5,27.5
parent: 2
type: Transform
- - uid: 29541
+ - uid: 29604
components:
- rot: 1.5707963267948966 rad
pos: 53.5,54.5
parent: 2
type: Transform
- - uid: 29542
+ - uid: 29605
components:
- pos: 62.5,24.5
parent: 2
type: Transform
- - uid: 29543
+ - uid: 29606
components:
- pos: 62.5,23.5
parent: 2
type: Transform
- - uid: 29544
+ - uid: 29607
components:
- rot: 1.5707963267948966 rad
pos: 48.5,11.5
parent: 2
type: Transform
- - uid: 29545
+ - uid: 29608
components:
- rot: 1.5707963267948966 rad
pos: 48.5,17.5
parent: 2
type: Transform
- - uid: 29546
+ - uid: 29609
components:
- rot: 1.5707963267948966 rad
pos: 58.5,17.5
parent: 2
type: Transform
- - uid: 29547
+ - uid: 29610
components:
- rot: 1.5707963267948966 rad
pos: 58.5,11.5
parent: 2
type: Transform
- - uid: 29548
+ - uid: 29611
components:
- rot: 3.141592653589793 rad
pos: 61.5,12.5
parent: 2
type: Transform
- - uid: 29549
+ - uid: 29612
components:
- rot: 3.141592653589793 rad
pos: 61.5,11.5
parent: 2
type: Transform
- - uid: 29550
+ - uid: 29613
components:
- rot: 3.141592653589793 rad
pos: 61.5,10.5
parent: 2
type: Transform
- - uid: 29551
+ - uid: 29614
components:
- rot: 3.141592653589793 rad
pos: 61.5,9.5
parent: 2
type: Transform
- - uid: 29552
+ - uid: 29615
components:
- rot: 3.141592653589793 rad
pos: 61.5,8.5
parent: 2
type: Transform
- - uid: 29553
+ - uid: 29616
components:
- rot: 3.141592653589793 rad
pos: 62.5,8.5
parent: 2
type: Transform
- - uid: 29554
+ - uid: 29617
components:
- rot: 3.141592653589793 rad
pos: 63.5,8.5
parent: 2
type: Transform
- - uid: 29555
+ - uid: 29618
components:
- rot: 3.141592653589793 rad
pos: 63.5,12.5
parent: 2
type: Transform
- - uid: 29556
+ - uid: 29619
components:
- rot: 3.141592653589793 rad
pos: 63.5,10.5
parent: 2
type: Transform
- - uid: 29557
+ - uid: 29620
components:
- rot: -1.5707963267948966 rad
pos: 51.5,12.5
parent: 2
type: Transform
- - uid: 29558
+ - uid: 29621
components:
- pos: 58.5,-0.5
parent: 2
type: Transform
- - uid: 29559
+ - uid: 29622
components:
- pos: 61.5,0.5
parent: 2
type: Transform
- - uid: 29560
+ - uid: 29623
components:
- pos: 62.5,0.5
parent: 2
type: Transform
- - uid: 29561
+ - uid: 29624
components:
- rot: 1.5707963267948966 rad
pos: 55.5,2.5
parent: 2
type: Transform
- - uid: 29562
+ - uid: 29625
components:
- rot: 1.5707963267948966 rad
pos: 55.5,1.5
parent: 2
type: Transform
- - uid: 29563
+ - uid: 29626
components:
- rot: 1.5707963267948966 rad
pos: 55.5,0.5
parent: 2
type: Transform
- - uid: 29564
+ - uid: 29627
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-1.5
parent: 2
type: Transform
- - uid: 29565
+ - uid: 29628
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-0.5
parent: 2
type: Transform
- - uid: 29566
+ - uid: 29629
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-2.5
parent: 2
type: Transform
- - uid: 29567
+ - uid: 29630
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-1.5
parent: 2
type: Transform
- - uid: 29568
+ - uid: 29631
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-2.5
parent: 2
type: Transform
- - uid: 29569
+ - uid: 29632
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-3.5
parent: 2
type: Transform
- - uid: 29570
+ - uid: 29633
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-2.5
parent: 2
type: Transform
- - uid: 29571
+ - uid: 29634
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-2.5
parent: 2
type: Transform
- - uid: 29572
+ - uid: 29635
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-3.5
parent: 2
type: Transform
- - uid: 29573
+ - uid: 29636
components:
- rot: 1.5707963267948966 rad
pos: 50.5,-4.5
parent: 2
type: Transform
- - uid: 29574
+ - uid: 29637
components:
- rot: 1.5707963267948966 rad
pos: 49.5,-4.5
parent: 2
type: Transform
- - uid: 29575
+ - uid: 29638
components:
- rot: 1.5707963267948966 rad
pos: 48.5,-4.5
parent: 2
type: Transform
- - uid: 29576
+ - uid: 29639
components:
- rot: 1.5707963267948966 rad
pos: 47.5,-4.5
parent: 2
type: Transform
- - uid: 29577
+ - uid: 29640
components:
- rot: 1.5707963267948966 rad
pos: 46.5,-4.5
parent: 2
type: Transform
- - uid: 29578
+ - uid: 29641
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-2.5
parent: 2
type: Transform
- - uid: 29579
+ - uid: 29642
components:
- pos: 49.5,-5.5
parent: 2
type: Transform
- - uid: 29580
+ - uid: 29643
components:
- pos: 49.5,-6.5
parent: 2
type: Transform
- - uid: 29581
+ - uid: 29644
components:
- pos: 49.5,-10.5
parent: 2
type: Transform
- - uid: 29582
+ - uid: 29645
components:
- pos: 48.5,-10.5
parent: 2
type: Transform
- - uid: 29583
+ - uid: 29646
components:
- rot: 1.5707963267948966 rad
pos: 54.5,-4.5
parent: 2
type: Transform
- - uid: 29584
+ - uid: 29647
components:
- rot: 1.5707963267948966 rad
pos: 55.5,-4.5
parent: 2
type: Transform
- - uid: 29585
+ - uid: 29648
components:
- rot: 1.5707963267948966 rad
pos: 56.5,-4.5
parent: 2
type: Transform
- - uid: 29586
+ - uid: 29649
components:
- rot: 1.5707963267948966 rad
pos: 58.5,-4.5
parent: 2
type: Transform
- - uid: 29587
+ - uid: 29650
components:
- pos: 19.5,-48.5
parent: 2
type: Transform
- - uid: 29588
+ - uid: 29651
components:
- pos: 18.5,-48.5
parent: 2
type: Transform
- - uid: 29589
+ - uid: 29652
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-4.5
parent: 2
type: Transform
- - uid: 29590
+ - uid: 29653
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-2.5
parent: 2
type: Transform
- - uid: 29591
+ - uid: 29654
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-3.5
parent: 2
type: Transform
- - uid: 29592
+ - uid: 29655
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-1.5
parent: 2
type: Transform
- - uid: 29593
+ - uid: 29656
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-5.5
parent: 2
type: Transform
- - uid: 29594
+ - uid: 29657
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-6.5
parent: 2
type: Transform
- - uid: 29595
+ - uid: 29658
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-5.5
parent: 2
type: Transform
- - uid: 29596
+ - uid: 29659
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-6.5
parent: 2
type: Transform
- - uid: 29597
+ - uid: 29660
components:
- rot: -1.5707963267948966 rad
pos: 37.5,-7.5
parent: 2
type: Transform
- - uid: 29598
+ - uid: 29661
components:
- rot: -1.5707963267948966 rad
pos: 45.5,-3.5
parent: 2
type: Transform
- - uid: 29599
+ - uid: 29662
components:
- pos: 40.5,-6.5
parent: 2
type: Transform
- - uid: 29600
+ - uid: 29663
components:
- pos: -14.5,-18.5
parent: 2
type: Transform
- - uid: 29601
+ - uid: 29664
components:
- pos: 24.5,-54.5
parent: 2
type: Transform
- - uid: 29602
+ - uid: 29665
components:
- pos: -17.5,-21.5
parent: 2
type: Transform
- - uid: 29603
+ - uid: 29666
components:
- pos: 55.5,-7.5
parent: 2
type: Transform
- - uid: 29604
+ - uid: 29667
components:
- pos: 49.5,-3.5
parent: 2
type: Transform
- - uid: 29605
+ - uid: 29668
components:
- pos: 58.5,0.5
parent: 2
type: Transform
- - uid: 29606
+ - uid: 29669
components:
- pos: 58.5,-1.5
parent: 2
type: Transform
- - uid: 29607
+ - uid: 29670
components:
- pos: 58.5,-2.5
parent: 2
type: Transform
- - uid: 29608
+ - uid: 29671
components:
- pos: 57.5,-2.5
parent: 2
type: Transform
- - uid: 29609
+ - uid: 29672
components:
- pos: 59.5,-4.5
parent: 2
type: Transform
- - uid: 29610
+ - uid: 29673
components:
- pos: 48.5,-9.5
parent: 2
type: Transform
- - uid: 29611
+ - uid: 29674
components:
- pos: 48.5,-6.5
parent: 2
type: Transform
- - uid: 29612
+ - uid: 29675
components:
- pos: 48.5,-7.5
parent: 2
type: Transform
- - uid: 29613
+ - uid: 29676
components:
- pos: 6.5,-17.5
parent: 2
type: Transform
- - uid: 29614
+ - uid: 29677
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-6.5
parent: 2
type: Transform
- - uid: 29615
+ - uid: 29678
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-12.5
parent: 2
type: Transform
- - uid: 29616
+ - uid: 29679
components:
- rot: 1.5707963267948966 rad
pos: 66.5,-10.5
parent: 2
type: Transform
- - uid: 29617
+ - uid: 29680
components:
- pos: 65.5,-4.5
parent: 2
type: Transform
- - uid: 29618
+ - uid: 29681
components:
- pos: 63.5,-4.5
parent: 2
type: Transform
- - uid: 29619
+ - uid: 29682
components:
- pos: 61.5,-4.5
parent: 2
type: Transform
- - uid: 29620
+ - uid: 29683
components:
- rot: -1.5707963267948966 rad
pos: 62.5,-4.5
parent: 2
type: Transform
- - uid: 29621
+ - uid: 29684
components:
- pos: 53.5,-14.5
parent: 2
type: Transform
- - uid: 29622
+ - uid: 29685
components:
- pos: 61.5,-14.5
parent: 2
type: Transform
- - uid: 29623
+ - uid: 29686
components:
- pos: 60.5,-14.5
parent: 2
type: Transform
- - uid: 29624
+ - uid: 29687
components:
- pos: 59.5,-7.5
parent: 2
type: Transform
- - uid: 29625
+ - uid: 29688
components:
- pos: 58.5,-7.5
parent: 2
type: Transform
- - uid: 29626
+ - uid: 29689
components:
- pos: 57.5,-7.5
parent: 2
type: Transform
- - uid: 29627
+ - uid: 29690
components:
- pos: 56.5,-7.5
parent: 2
type: Transform
- - uid: 29628
+ - uid: 29691
components:
- pos: 59.5,-9.5
parent: 2
type: Transform
- - uid: 29629
+ - uid: 29692
components:
- pos: 58.5,-9.5
parent: 2
type: Transform
- - uid: 29630
+ - uid: 29693
components:
- pos: 57.5,-9.5
parent: 2
type: Transform
- - uid: 29631
+ - uid: 29694
components:
- pos: 56.5,-9.5
parent: 2
type: Transform
- - uid: 29632
+ - uid: 29695
components:
- pos: 55.5,-9.5
parent: 2
type: Transform
- - uid: 29633
+ - uid: 29696
components:
- pos: 55.5,-8.5
parent: 2
type: Transform
- - uid: 29634
+ - uid: 29697
components:
- rot: 3.141592653589793 rad
pos: 58.5,-3.5
parent: 2
type: Transform
- - uid: 29635
+ - uid: 29698
components:
- pos: 60.5,-29.5
parent: 2
type: Transform
- - uid: 29636
+ - uid: 29699
components:
- pos: 60.5,-30.5
parent: 2
type: Transform
- - uid: 29637
+ - uid: 29700
components:
- pos: 49.5,-11.5
parent: 2
type: Transform
- - uid: 29638
+ - uid: 29701
components:
- pos: 49.5,-12.5
parent: 2
type: Transform
- - uid: 29639
+ - uid: 29702
components:
- pos: 50.5,-12.5
parent: 2
type: Transform
- - uid: 29640
+ - uid: 29703
components:
- pos: 35.5,-11.5
parent: 2
type: Transform
- - uid: 29641
+ - uid: 29704
components:
- pos: 37.5,-9.5
parent: 2
type: Transform
- - uid: 29642
+ - uid: 29705
components:
- pos: 38.5,-9.5
parent: 2
type: Transform
- - uid: 29643
+ - uid: 29706
components:
- pos: 39.5,-9.5
parent: 2
type: Transform
- - uid: 29644
+ - uid: 29707
components:
- pos: 39.5,-8.5
parent: 2
type: Transform
- - uid: 29645
+ - uid: 29708
components:
- pos: 41.5,-6.5
parent: 2
type: Transform
- - uid: 29646
+ - uid: 29709
components:
- pos: 41.5,-7.5
parent: 2
type: Transform
- - uid: 29647
+ - uid: 29710
components:
- pos: 41.5,-8.5
parent: 2
type: Transform
- - uid: 29648
+ - uid: 29711
components:
- pos: 41.5,-9.5
parent: 2
type: Transform
- - uid: 29649
+ - uid: 29712
components:
- pos: 41.5,-10.5
parent: 2
type: Transform
- - uid: 29650
+ - uid: 29713
components:
- pos: 39.5,-10.5
parent: 2
type: Transform
- - uid: 29651
+ - uid: 29714
components:
- pos: 39.5,-11.5
parent: 2
type: Transform
- - uid: 29652
+ - uid: 29715
components:
- pos: 37.5,-11.5
parent: 2
type: Transform
- - uid: 29653
+ - uid: 29716
components:
- pos: 37.5,-12.5
parent: 2
type: Transform
- - uid: 29654
+ - uid: 29717
components:
- pos: 37.5,-14.5
parent: 2
type: Transform
- - uid: 29655
+ - uid: 29718
components:
- pos: 45.5,-6.5
parent: 2
type: Transform
- - uid: 29656
+ - uid: 29719
components:
- pos: 45.5,-7.5
parent: 2
type: Transform
- - uid: 29657
+ - uid: 29720
components:
- pos: 45.5,-8.5
parent: 2
type: Transform
- - uid: 29658
+ - uid: 29721
components:
- pos: 45.5,-9.5
parent: 2
type: Transform
- - uid: 29659
+ - uid: 29722
components:
- pos: 43.5,-9.5
parent: 2
type: Transform
- - uid: 29660
+ - uid: 29723
components:
- pos: 45.5,-10.5
parent: 2
type: Transform
- - uid: 29661
+ - uid: 29724
components:
- pos: 45.5,-12.5
parent: 2
type: Transform
- - uid: 29662
+ - uid: 29725
components:
- pos: 44.5,-12.5
parent: 2
type: Transform
- - uid: 29663
+ - uid: 29726
components:
- pos: 42.5,-12.5
parent: 2
type: Transform
- - uid: 29664
+ - uid: 29727
components:
- pos: 41.5,-12.5
parent: 2
type: Transform
- - uid: 29665
+ - uid: 29728
components:
- pos: 41.5,-13.5
parent: 2
type: Transform
- - uid: 29666
+ - uid: 29729
components:
- pos: 40.5,-13.5
parent: 2
type: Transform
- - uid: 29667
+ - uid: 29730
components:
- pos: 39.5,-13.5
parent: 2
type: Transform
- - uid: 29668
+ - uid: 29731
components:
- pos: 46.5,-12.5
parent: 2
type: Transform
- - uid: 29669
+ - uid: 29732
components:
- pos: 47.5,-12.5
parent: 2
type: Transform
- - uid: 29670
+ - uid: 29733
components:
- pos: 47.5,-11.5
parent: 2
type: Transform
- - uid: 29671
+ - uid: 29734
components:
- pos: 47.5,-10.5
parent: 2
type: Transform
- - uid: 29672
+ - uid: 29735
components:
- pos: 46.5,-6.5
parent: 2
type: Transform
- - uid: 29673
+ - uid: 29736
components:
- pos: 69.5,-35.5
parent: 2
type: Transform
- - uid: 29674
+ - uid: 29737
components:
- pos: 66.5,-36.5
parent: 2
type: Transform
- - uid: 29675
+ - uid: 29738
components:
- pos: 58.5,-40.5
parent: 2
type: Transform
- - uid: 29676
+ - uid: 29739
components:
- pos: 58.5,-41.5
parent: 2
type: Transform
- - uid: 29677
+ - uid: 29740
components:
- pos: 58.5,-42.5
parent: 2
type: Transform
- - uid: 29678
+ - uid: 29741
components:
- pos: 65.5,-36.5
parent: 2
type: Transform
- - uid: 29679
+ - uid: 29742
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-38.5
parent: 2
type: Transform
- - uid: 29680
+ - uid: 29743
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-39.5
parent: 2
type: Transform
- - uid: 29681
+ - uid: 29744
components:
- pos: 60.5,-41.5
parent: 2
type: Transform
- - uid: 29682
+ - uid: 29745
components:
- pos: 41.5,-40.5
parent: 2
type: Transform
- - uid: 29683
+ - uid: 29746
components:
- rot: -1.5707963267948966 rad
pos: 44.5,-34.5
parent: 2
type: Transform
- - uid: 29684
+ - uid: 29747
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-34.5
parent: 2
type: Transform
- - uid: 29685
+ - uid: 29748
components:
- rot: -1.5707963267948966 rad
pos: 42.5,-34.5
parent: 2
type: Transform
- - uid: 29686
+ - uid: 29749
components:
- rot: -1.5707963267948966 rad
pos: 51.5,-36.5
parent: 2
type: Transform
- - uid: 29687
+ - uid: 29750
components:
- rot: 3.141592653589793 rad
pos: 44.5,-40.5
parent: 2
type: Transform
- - uid: 29688
+ - uid: 29751
components:
- pos: 47.5,-40.5
parent: 2
type: Transform
- - uid: 29689
+ - uid: 29752
components:
- pos: 47.5,-44.5
parent: 2
type: Transform
- - uid: 29690
+ - uid: 29753
components:
- pos: 46.5,-44.5
parent: 2
type: Transform
- - uid: 29691
+ - uid: 29754
components:
- pos: 45.5,-44.5
parent: 2
type: Transform
- - uid: 29692
+ - uid: 29755
components:
- pos: 41.5,-44.5
parent: 2
type: Transform
- - uid: 29693
+ - uid: 29756
components:
- rot: -1.5707963267948966 rad
pos: 40.5,-34.5
parent: 2
type: Transform
- - uid: 29694
+ - uid: 29757
components:
- rot: -1.5707963267948966 rad
pos: 52.5,-36.5
parent: 2
type: Transform
- - uid: 29695
+ - uid: 29758
components:
- pos: 53.5,-38.5
parent: 2
type: Transform
- - uid: 29696
+ - uid: 29759
components:
- rot: -1.5707963267948966 rad
pos: 41.5,-34.5
parent: 2
type: Transform
- - uid: 29697
+ - uid: 29760
components:
- pos: 47.5,-39.5
parent: 2
type: Transform
- - uid: 29698
+ - uid: 29761
components:
- pos: 47.5,-38.5
parent: 2
type: Transform
- - uid: 29699
+ - uid: 29762
components:
- pos: 54.5,-39.5
parent: 2
type: Transform
- - uid: 29700
+ - uid: 29763
components:
- pos: 52.5,-38.5
parent: 2
type: Transform
- - uid: 29701
+ - uid: 29764
components:
- pos: 54.5,-38.5
parent: 2
type: Transform
- - uid: 29702
+ - uid: 29765
components:
- pos: 56.5,-33.5
parent: 2
type: Transform
- - uid: 29703
+ - uid: 29766
components:
- pos: 59.5,-37.5
parent: 2
type: Transform
- - uid: 29704
+ - uid: 29767
components:
- pos: 59.5,-36.5
parent: 2
type: Transform
- - uid: 29705
+ - uid: 29768
components:
- pos: 58.5,-36.5
parent: 2
type: Transform
- - uid: 29706
+ - uid: 29769
components:
- pos: 47.5,-47.5
parent: 2
type: Transform
- - uid: 29707
+ - uid: 29770
components:
- pos: 54.5,-43.5
parent: 2
type: Transform
- - uid: 29708
+ - uid: 29771
components:
- pos: 51.5,-48.5
parent: 2
type: Transform
- - uid: 29709
+ - uid: 29772
components:
- pos: 48.5,-48.5
parent: 2
type: Transform
- - uid: 29710
+ - uid: 29773
components:
- pos: 47.5,-48.5
parent: 2
type: Transform
- - uid: 29711
+ - uid: 29774
components:
- pos: 56.5,-39.5
parent: 2
type: Transform
- - uid: 29712
+ - uid: 29775
components:
- pos: 57.5,-39.5
parent: 2
type: Transform
- - uid: 29713
+ - uid: 29776
components:
- rot: -1.5707963267948966 rad
pos: 48.5,-36.5
parent: 2
type: Transform
- - uid: 29714
+ - uid: 29777
components:
- pos: 58.5,-43.5
parent: 2
type: Transform
- - uid: 29715
+ - uid: 29778
components:
- pos: 55.5,-43.5
parent: 2
type: Transform
- - uid: 29716
+ - uid: 29779
components:
- pos: 56.5,-43.5
parent: 2
type: Transform
- - uid: 29717
+ - uid: 29780
components:
- pos: 47.5,-49.5
parent: 2
type: Transform
- - uid: 29718
+ - uid: 29781
components:
- pos: 47.5,-50.5
parent: 2
type: Transform
- - uid: 29719
+ - uid: 29782
components:
- pos: 46.5,-50.5
parent: 2
type: Transform
- - uid: 29720
+ - uid: 29783
components:
- pos: 45.5,-50.5
parent: 2
type: Transform
- - uid: 29721
+ - uid: 29784
components:
- pos: 44.5,-50.5
parent: 2
type: Transform
- - uid: 29722
+ - uid: 29785
components:
- pos: 43.5,-50.5
parent: 2
type: Transform
- - uid: 29723
+ - uid: 29786
components:
- pos: 42.5,-50.5
parent: 2
type: Transform
- - uid: 29724
+ - uid: 29787
components:
- pos: 41.5,-50.5
parent: 2
type: Transform
- - uid: 29725
+ - uid: 29788
components:
- pos: 57.5,-31.5
parent: 2
type: Transform
- - uid: 29726
+ - uid: 29789
components:
- pos: 47.5,-35.5
parent: 2
type: Transform
- - uid: 29727
+ - uid: 29790
components:
- rot: -1.5707963267948966 rad
pos: 46.5,-34.5
parent: 2
type: Transform
- - uid: 29728
+ - uid: 29791
components:
- pos: 66.5,-49.5
parent: 2
type: Transform
- - uid: 29729
+ - uid: 29792
components:
- pos: 66.5,-44.5
parent: 2
type: Transform
- - uid: 29730
+ - uid: 29793
components:
- pos: 66.5,-43.5
parent: 2
type: Transform
- - uid: 29731
+ - uid: 29794
components:
- pos: 37.5,-44.5
parent: 2
type: Transform
- - uid: 29732
+ - uid: 29795
components:
- pos: 40.5,-45.5
parent: 2
type: Transform
- - uid: 29733
+ - uid: 29796
components:
- pos: 40.5,-47.5
parent: 2
type: Transform
- - uid: 29734
+ - uid: 29797
components:
- pos: 40.5,-44.5
parent: 2
type: Transform
- - uid: 29735
+ - uid: 29798
components:
- pos: 40.5,-48.5
parent: 2
type: Transform
- - uid: 29736
+ - uid: 29799
components:
- rot: -1.5707963267948966 rad
pos: -17.5,23.5
parent: 2
type: Transform
- - uid: 29737
+ - uid: 29800
components:
- pos: 46.5,-40.5
parent: 2
type: Transform
- - uid: 29738
+ - uid: 29801
components:
- pos: 52.5,-59.5
parent: 2
type: Transform
- - uid: 29739
+ - uid: 29802
components:
- pos: 52.5,-60.5
parent: 2
type: Transform
- - uid: 29740
+ - uid: 29803
components:
- pos: 66.5,-35.5
parent: 2
type: Transform
- - uid: 29741
+ - uid: 29804
components:
- pos: 67.5,-35.5
parent: 2
type: Transform
- - uid: 29742
+ - uid: 29805
components:
- pos: 68.5,-35.5
parent: 2
type: Transform
- - uid: 29743
+ - uid: 29806
components:
- rot: -1.5707963267948966 rad
pos: 66.5,-47.5
parent: 2
type: Transform
- - uid: 29744
+ - uid: 29807
components:
- rot: 3.141592653589793 rad
pos: 40.5,-46.5
parent: 2
type: Transform
- - uid: 29745
+ - uid: 29808
components:
- pos: 8.5,-51.5
parent: 2
type: Transform
- - uid: 29746
+ - uid: 29809
components:
- pos: 38.5,-47.5
parent: 2
type: Transform
- - uid: 29747
+ - uid: 29810
components:
- pos: 37.5,-47.5
parent: 2
type: Transform
- - uid: 29748
+ - uid: 29811
components:
- pos: 37.5,-46.5
parent: 2
type: Transform
- - uid: 29749
+ - uid: 29812
components:
- pos: 37.5,-45.5
parent: 2
type: Transform
- - uid: 29750
+ - uid: 29813
components:
- pos: 57.5,-63.5
parent: 2
type: Transform
- - uid: 29751
+ - uid: 29814
components:
- pos: 57.5,-36.5
parent: 2
type: Transform
- - uid: 29752
+ - uid: 29815
components:
- pos: 74.5,-50.5
parent: 2
type: Transform
- - uid: 29753
+ - uid: 29816
components:
- pos: 59.5,-30.5
parent: 2
type: Transform
- - uid: 29754
+ - uid: 29817
components:
- pos: 56.5,-31.5
parent: 2
type: Transform
- - uid: 29755
+ - uid: 29818
components:
- pos: 58.5,-31.5
parent: 2
type: Transform
- - uid: 29756
+ - uid: 29819
components:
- rot: -1.5707963267948966 rad
pos: 47.5,-36.5
parent: 2
type: Transform
- - uid: 29757
+ - uid: 29820
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-46.5
parent: 2
type: Transform
- - uid: 29758
+ - uid: 29821
components:
- rot: 1.5707963267948966 rad
pos: 30.5,-46.5
parent: 2
type: Transform
- - uid: 29759
+ - uid: 29822
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-46.5
parent: 2
type: Transform
- - uid: 29760
+ - uid: 29823
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-46.5
parent: 2
type: Transform
- - uid: 29761
+ - uid: 29824
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-46.5
parent: 2
type: Transform
- - uid: 29762
+ - uid: 29825
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-45.5
parent: 2
type: Transform
- - uid: 29763
+ - uid: 29826
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-47.5
parent: 2
type: Transform
- - uid: 29764
+ - uid: 29827
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-48.5
parent: 2
type: Transform
- - uid: 29765
+ - uid: 29828
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-49.5
parent: 2
type: Transform
- - uid: 29766
+ - uid: 29829
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-50.5
parent: 2
type: Transform
- - uid: 29767
+ - uid: 29830
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-51.5
parent: 2
type: Transform
- - uid: 29768
+ - uid: 29831
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-53.5
parent: 2
type: Transform
- - uid: 29769
+ - uid: 29832
components:
- pos: 35.5,-52.5
parent: 2
type: Transform
- - uid: 29770
+ - uid: 29833
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-55.5
parent: 2
type: Transform
- - uid: 29771
+ - uid: 29834
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-56.5
parent: 2
type: Transform
- - uid: 29772
+ - uid: 29835
components:
- rot: 1.5707963267948966 rad
pos: 35.5,-57.5
parent: 2
type: Transform
- - uid: 29773
+ - uid: 29836
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-57.5
parent: 2
type: Transform
- - uid: 29774
+ - uid: 29837
components:
- pos: 60.5,-37.5
parent: 2
type: Transform
- - uid: 29775
+ - uid: 29838
components:
- pos: 44.5,-55.5
parent: 2
type: Transform
- - uid: 29776
+ - uid: 29839
components:
- pos: 44.5,-54.5
parent: 2
type: Transform
- - uid: 29777
+ - uid: 29840
components:
- pos: 44.5,-53.5
parent: 2
type: Transform
- - uid: 29778
+ - uid: 29841
components:
- pos: 44.5,-52.5
parent: 2
type: Transform
- - uid: 29779
+ - uid: 29842
components:
- pos: 44.5,-51.5
parent: 2
type: Transform
- - uid: 29780
+ - uid: 29843
components:
- pos: 45.5,-55.5
parent: 2
type: Transform
- - uid: 29781
+ - uid: 29844
components:
- rot: 3.141592653589793 rad
pos: 46.5,-55.5
parent: 2
type: Transform
- - uid: 29782
+ - uid: 29845
components:
- pos: 47.5,-55.5
parent: 2
type: Transform
- - uid: 29783
+ - uid: 29846
components:
- rot: 3.141592653589793 rad
pos: 44.5,-57.5
parent: 2
type: Transform
- - uid: 29784
+ - uid: 29847
components:
- rot: 3.141592653589793 rad
pos: 44.5,-58.5
parent: 2
type: Transform
- - uid: 29785
+ - uid: 29848
components:
- rot: 3.141592653589793 rad
pos: 44.5,-59.5
parent: 2
type: Transform
- - uid: 29786
+ - uid: 29849
components:
- rot: 3.141592653589793 rad
pos: 44.5,-60.5
parent: 2
type: Transform
- - uid: 29787
+ - uid: 29850
components:
- pos: 41.5,-63.5
parent: 2
type: Transform
- - uid: 29788
+ - uid: 29851
components:
- pos: 41.5,-62.5
parent: 2
type: Transform
- - uid: 29789
+ - uid: 29852
components:
- pos: 46.5,-61.5
parent: 2
type: Transform
- - uid: 29790
+ - uid: 29853
components:
- pos: 52.5,-56.5
parent: 2
type: Transform
- - uid: 29791
+ - uid: 29854
components:
- pos: 48.5,-59.5
parent: 2
type: Transform
- - uid: 29792
+ - uid: 29855
components:
- pos: 47.5,-59.5
parent: 2
type: Transform
- - uid: 29793
+ - uid: 29856
components:
- pos: 47.5,-60.5
parent: 2
type: Transform
- - uid: 29794
+ - uid: 29857
components:
- pos: 47.5,-61.5
parent: 2
type: Transform
- - uid: 29795
+ - uid: 29858
components:
- pos: 45.5,-61.5
parent: 2
type: Transform
- - uid: 29796
+ - uid: 29859
components:
- pos: 44.5,-61.5
parent: 2
type: Transform
- - uid: 29797
+ - uid: 29860
components:
- pos: 43.5,-61.5
parent: 2
type: Transform
- - uid: 29798
+ - uid: 29861
components:
- pos: 42.5,-61.5
parent: 2
type: Transform
- - uid: 29799
+ - uid: 29862
components:
- pos: 41.5,-61.5
parent: 2
type: Transform
- - uid: 29800
+ - uid: 29863
components:
- pos: -18.5,0.5
parent: 2
type: Transform
- - uid: 29801
+ - uid: 29864
components:
- pos: -20.5,0.5
parent: 2
type: Transform
- - uid: 29802
+ - uid: 29865
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-16.5
parent: 2
type: Transform
- - uid: 29803
+ - uid: 29866
components:
- pos: -30.5,-9.5
parent: 2
type: Transform
- - uid: 29804
+ - uid: 29867
components:
- pos: -27.5,-15.5
parent: 2
type: Transform
- - uid: 29805
+ - uid: 29868
components:
- pos: -28.5,-15.5
parent: 2
type: Transform
- - uid: 29806
+ - uid: 29869
components:
- pos: -29.5,-15.5
parent: 2
type: Transform
- - uid: 29807
+ - uid: 29870
components:
- pos: -30.5,-15.5
parent: 2
type: Transform
- - uid: 29808
+ - uid: 29871
components:
- pos: -30.5,-11.5
parent: 2
type: Transform
- - uid: 29809
+ - uid: 29872
components:
- pos: -30.5,-14.5
parent: 2
type: Transform
- - uid: 29810
+ - uid: 29873
components:
- pos: -33.5,-13.5
parent: 2
type: Transform
- - uid: 29811
+ - uid: 29874
components:
- pos: -27.5,-19.5
parent: 2
type: Transform
- - uid: 29812
+ - uid: 29875
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-18.5
parent: 2
type: Transform
- - uid: 29813
+ - uid: 29876
components:
- pos: -30.5,-19.5
parent: 2
type: Transform
- - uid: 29814
+ - uid: 29877
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-6.5
parent: 2
type: Transform
- - uid: 29815
+ - uid: 29878
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-5.5
parent: 2
type: Transform
- - uid: 29816
+ - uid: 29879
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-4.5
parent: 2
type: Transform
- - uid: 29817
+ - uid: 29880
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-3.5
parent: 2
type: Transform
- - uid: 29818
+ - uid: 29881
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-2.5
parent: 2
type: Transform
- - uid: 29819
+ - uid: 29882
components:
- rot: -1.5707963267948966 rad
pos: -27.5,-1.5
parent: 2
type: Transform
- - uid: 29820
+ - uid: 29883
components:
- pos: -28.5,2.5
parent: 2
type: Transform
- - uid: 29821
+ - uid: 29884
components:
- pos: -28.5,-1.5
parent: 2
type: Transform
- - uid: 29822
+ - uid: 29885
components:
- rot: 3.141592653589793 rad
pos: -27.5,-7.5
parent: 2
type: Transform
- - uid: 29823
+ - uid: 29886
components:
- rot: -1.5707963267948966 rad
pos: -27.5,2.5
parent: 2
type: Transform
- - uid: 29824
+ - uid: 29887
components:
- rot: -1.5707963267948966 rad
pos: -27.5,3.5
parent: 2
type: Transform
- - uid: 29825
+ - uid: 29888
components:
- rot: -1.5707963267948966 rad
pos: -27.5,4.5
parent: 2
type: Transform
- - uid: 29826
+ - uid: 29889
components:
- rot: -1.5707963267948966 rad
pos: -27.5,5.5
parent: 2
type: Transform
- - uid: 29827
+ - uid: 29890
components:
- rot: -1.5707963267948966 rad
pos: -27.5,7.5
parent: 2
type: Transform
- - uid: 29828
+ - uid: 29891
components:
- rot: -1.5707963267948966 rad
pos: -27.5,8.5
parent: 2
type: Transform
- - uid: 29829
+ - uid: 29892
components:
- rot: -1.5707963267948966 rad
pos: -27.5,9.5
parent: 2
type: Transform
- - uid: 29830
+ - uid: 29893
components:
- pos: -28.5,12.5
parent: 2
type: Transform
- - uid: 29831
+ - uid: 29894
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-18.5
parent: 2
type: Transform
- - uid: 29832
+ - uid: 29895
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-18.5
parent: 2
type: Transform
- - uid: 29833
+ - uid: 29896
components:
- pos: -22.5,-25.5
parent: 2
type: Transform
- - uid: 29834
+ - uid: 29897
components:
- pos: -23.5,-25.5
parent: 2
type: Transform
- - uid: 29835
+ - uid: 29898
components:
- pos: -24.5,-25.5
parent: 2
type: Transform
- - uid: 29836
+ - uid: 29899
components:
- pos: -25.5,-25.5
parent: 2
type: Transform
- - uid: 29837
+ - uid: 29900
components:
- pos: -26.5,-25.5
parent: 2
type: Transform
- - uid: 29838
+ - uid: 29901
components:
- pos: -27.5,-25.5
parent: 2
type: Transform
- - uid: 29839
+ - uid: 29902
components:
- pos: -27.5,-23.5
parent: 2
type: Transform
- - uid: 29840
+ - uid: 29903
components:
- pos: -27.5,-24.5
parent: 2
type: Transform
- - uid: 29841
+ - uid: 29904
components:
- pos: -27.5,-21.5
parent: 2
type: Transform
- - uid: 29842
- components:
- - pos: -27.5,-20.5
- parent: 2
- type: Transform
- - uid: 29843
+ - uid: 29905
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-23.5
parent: 2
type: Transform
- - uid: 29844
+ - uid: 29906
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-18.5
parent: 2
type: Transform
- - uid: 29845
+ - uid: 29907
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-24.5
parent: 2
type: Transform
- - uid: 29846
+ - uid: 29908
components:
- rot: -1.5707963267948966 rad
pos: -29.5,-24.5
parent: 2
type: Transform
- - uid: 29847
+ - uid: 29909
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-24.5
parent: 2
type: Transform
- - uid: 29848
+ - uid: 29910
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-20.5
parent: 2
type: Transform
- - uid: 29849
+ - uid: 29911
components:
- pos: -30.5,-21.5
parent: 2
type: Transform
- - uid: 29850
+ - uid: 29912
components:
- pos: -30.5,-22.5
parent: 2
type: Transform
- - uid: 29851
+ - uid: 29913
components:
- pos: 50.5,41.5
parent: 2
type: Transform
- - uid: 29852
+ - uid: 29914
components:
- pos: -21.5,-25.5
parent: 2
type: Transform
- - uid: 29853
+ - uid: 29915
components:
- pos: -21.5,-27.5
parent: 2
type: Transform
- - uid: 29854
+ - uid: 29916
components:
- pos: -21.5,-28.5
parent: 2
type: Transform
- - uid: 29855
+ - uid: 29917
components:
- pos: -21.5,-29.5
parent: 2
type: Transform
- - uid: 29856
+ - uid: 29918
components:
- pos: -21.5,-30.5
parent: 2
type: Transform
- - uid: 29857
+ - uid: 29919
components:
- pos: -21.5,-31.5
parent: 2
type: Transform
- - uid: 29858
+ - uid: 29920
components:
- pos: -21.5,-33.5
parent: 2
type: Transform
- - uid: 29859
+ - uid: 29921
components:
- pos: -21.5,-36.5
parent: 2
type: Transform
- - uid: 29860
+ - uid: 29922
components:
- pos: -21.5,-37.5
parent: 2
type: Transform
- - uid: 29861
+ - uid: 29923
components:
- pos: -21.5,-38.5
parent: 2
type: Transform
- - uid: 29862
+ - uid: 29924
components:
- pos: -21.5,-39.5
parent: 2
type: Transform
- - uid: 29863
+ - uid: 29925
components:
- pos: -21.5,-40.5
parent: 2
type: Transform
- - uid: 29864
+ - uid: 29926
components:
- pos: -21.5,-41.5
parent: 2
type: Transform
- - uid: 29865
+ - uid: 29927
components:
- pos: -21.5,-43.5
parent: 2
type: Transform
- - uid: 29866
+ - uid: 29928
components:
- pos: 37.5,-49.5
parent: 2
type: Transform
- - uid: 29867
+ - uid: 29929
components:
- pos: 38.5,-49.5
parent: 2
type: Transform
- - uid: 29868
+ - uid: 29930
components:
- pos: 39.5,-50.5
parent: 2
type: Transform
- - uid: 29869
+ - uid: 29931
components:
- pos: 38.5,-50.5
parent: 2
type: Transform
- - uid: 29870
+ - uid: 29932
components:
- pos: -1.5,-12.5
parent: 2
type: Transform
- - uid: 29871
+ - uid: 29933
components:
- pos: -1.5,-13.5
parent: 2
type: Transform
- - uid: 29872
+ - uid: 29934
components:
- pos: 57.5,-61.5
parent: 2
type: Transform
- - uid: 29873
+ - uid: 29935
components:
- pos: 6.5,-58.5
parent: 2
type: Transform
- - uid: 29874
+ - uid: 29936
components:
- pos: -22.5,-27.5
parent: 2
type: Transform
- - uid: 29875
+ - uid: 29937
components:
- pos: -17.5,-30.5
parent: 2
type: Transform
- - uid: 29876
+ - uid: 29938
components:
- rot: 3.141592653589793 rad
pos: 42.5,-58.5
parent: 2
type: Transform
- - uid: 29877
+ - uid: 29939
components:
- rot: 3.141592653589793 rad
pos: 42.5,-60.5
parent: 2
type: Transform
- - uid: 29878
+ - uid: 29940
components:
- pos: 9.5,-69.5
parent: 2
type: Transform
- - uid: 29879
+ - uid: 29941
components:
- pos: 5.5,-72.5
parent: 2
type: Transform
- - uid: 29880
+ - uid: 29942
components:
- pos: -40.5,-13.5
parent: 2
type: Transform
- - uid: 29881
+ - uid: 29943
components:
- pos: -40.5,-8.5
parent: 2
type: Transform
- - uid: 29882
+ - uid: 29944
components:
- pos: -40.5,-7.5
parent: 2
type: Transform
- - uid: 29883
+ - uid: 29945
components:
- pos: -33.5,-8.5
parent: 2
type: Transform
- - uid: 29884
+ - uid: 29946
components:
- pos: -30.5,-8.5
parent: 2
type: Transform
- - uid: 29885
+ - uid: 29947
components:
- pos: -30.5,-25.5
parent: 2
type: Transform
- - uid: 29886
+ - uid: 29948
components:
- pos: -33.5,-25.5
parent: 2
type: Transform
- - uid: 29887
+ - uid: 29949
components:
- pos: -23.5,-27.5
parent: 2
type: Transform
- - uid: 29888
+ - uid: 29950
components:
- pos: -24.5,-27.5
parent: 2
type: Transform
- - uid: 29889
+ - uid: 29951
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-28.5
parent: 2
type: Transform
- - uid: 29890
+ - uid: 29952
components:
- pos: -26.5,-27.5
parent: 2
type: Transform
- - uid: 29891
+ - uid: 29953
components:
- pos: -27.5,-27.5
parent: 2
type: Transform
- - uid: 29892
+ - uid: 29954
components:
- pos: -28.5,-27.5
parent: 2
type: Transform
- - uid: 29893
+ - uid: 29955
components:
- pos: -29.5,-27.5
parent: 2
type: Transform
- - uid: 29894
+ - uid: 29956
components:
- pos: -30.5,-27.5
parent: 2
type: Transform
- - uid: 29895
+ - uid: 29957
components:
- pos: -33.5,-27.5
parent: 2
type: Transform
- - uid: 29896
+ - uid: 29958
components:
- pos: -34.5,-27.5
parent: 2
type: Transform
- - uid: 29897
+ - uid: 29959
components:
- pos: -36.5,-27.5
parent: 2
type: Transform
- - uid: 29898
+ - uid: 29960
components:
- pos: -33.5,-28.5
parent: 2
type: Transform
- - uid: 29899
+ - uid: 29961
components:
- pos: -33.5,-29.5
parent: 2
type: Transform
- - uid: 29900
+ - uid: 29962
components:
- pos: -33.5,-30.5
parent: 2
type: Transform
- - uid: 29901
+ - uid: 29963
components:
- pos: -30.5,-28.5
parent: 2
type: Transform
- - uid: 29902
+ - uid: 29964
components:
- pos: -30.5,-29.5
parent: 2
type: Transform
- - uid: 29903
+ - uid: 29965
components:
- pos: -30.5,-30.5
parent: 2
type: Transform
- - uid: 29904
+ - uid: 29966
components:
- pos: -45.5,-26.5
parent: 2
type: Transform
- - uid: 29905
+ - uid: 29967
components:
- pos: -36.5,-26.5
parent: 2
type: Transform
- - uid: 29906
+ - uid: 29968
components:
- pos: -36.5,-25.5
parent: 2
type: Transform
- - uid: 29907
+ - uid: 29969
components:
- pos: -37.5,-25.5
parent: 2
type: Transform
- - uid: 29908
+ - uid: 29970
components:
- pos: -38.5,-25.5
parent: 2
type: Transform
- - uid: 29909
+ - uid: 29971
components:
- pos: -36.5,-22.5
parent: 2
type: Transform
- - uid: 29910
+ - uid: 29972
components:
- pos: -36.5,-23.5
parent: 2
type: Transform
- - uid: 29911
+ - uid: 29973
components:
- pos: -38.5,-23.5
parent: 2
type: Transform
- - uid: 29912
+ - uid: 29974
components:
- pos: -38.5,-24.5
parent: 2
type: Transform
- - uid: 29913
+ - uid: 29975
components:
- pos: 52.5,-35.5
parent: 2
type: Transform
- - uid: 29914
+ - uid: 29976
components:
- pos: 53.5,-33.5
parent: 2
type: Transform
- - uid: 29915
+ - uid: 29977
components:
- pos: 54.5,-62.5
parent: 2
type: Transform
- - uid: 29916
+ - uid: 29978
components:
- pos: 44.5,-6.5
parent: 2
type: Transform
- - uid: 29917
+ - uid: 29979
components:
- rot: 1.5707963267948966 rad
pos: -28.5,7.5
parent: 2
type: Transform
- - uid: 29918
+ - uid: 29980
components:
- rot: 1.5707963267948966 rad
pos: -28.5,6.5
parent: 2
type: Transform
- - uid: 29919
+ - uid: 29981
components:
- rot: 1.5707963267948966 rad
pos: -28.5,5.5
parent: 2
type: Transform
- - uid: 29920
+ - uid: 29982
components:
- pos: -49.5,-29.5
parent: 2
type: Transform
- - uid: 29921
+ - uid: 29983
components:
- pos: -50.5,-30.5
parent: 2
type: Transform
- - uid: 29922
+ - uid: 29984
components:
- pos: -43.5,-21.5
parent: 2
type: Transform
- - uid: 29923
+ - uid: 29985
components:
- pos: -43.5,-20.5
parent: 2
type: Transform
- - uid: 29924
+ - uid: 29986
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-25.5
parent: 2
type: Transform
- - uid: 29925
+ - uid: 29987
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-25.5
parent: 2
type: Transform
- - uid: 29926
+ - uid: 29988
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-25.5
parent: 2
type: Transform
- - uid: 29927
+ - uid: 29989
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-27.5
parent: 2
type: Transform
- - uid: 29928
+ - uid: 29990
components:
- rot: 1.5707963267948966 rad
pos: -41.5,-27.5
parent: 2
type: Transform
- - uid: 29929
+ - uid: 29991
components:
- rot: 1.5707963267948966 rad
pos: -42.5,-27.5
parent: 2
type: Transform
- - uid: 29930
+ - uid: 29992
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-27.5
parent: 2
type: Transform
- - uid: 29931
+ - uid: 29993
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-30.5
parent: 2
type: Transform
- - uid: 29932
+ - uid: 29994
components:
- rot: 1.5707963267948966 rad
pos: -25.5,-30.5
parent: 2
type: Transform
- - uid: 29933
+ - uid: 29995
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-30.5
parent: 2
type: Transform
- - uid: 29934
+ - uid: 29996
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-31.5
parent: 2
type: Transform
- - uid: 29935
- components:
- - rot: 1.5707963267948966 rad
- pos: -26.5,-32.5
- parent: 2
- type: Transform
- - uid: 29936
+ - uid: 29997
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-32.5
parent: 2
type: Transform
- - uid: 29937
+ - uid: 29998
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-32.5
parent: 2
type: Transform
- - uid: 29938
+ - uid: 29999
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-32.5
parent: 2
type: Transform
- - uid: 29939
+ - uid: 30000
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-31.5
parent: 2
type: Transform
- - uid: 29940
+ - uid: 30001
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-31.5
parent: 2
type: Transform
- - uid: 29941
+ - uid: 30002
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-35.5
parent: 2
type: Transform
- - uid: 29942
+ - uid: 30003
components:
- rot: 1.5707963267948966 rad
pos: -26.5,-36.5
parent: 2
type: Transform
- - uid: 29943
+ - uid: 30004
components:
- pos: -29.5,-37.5
parent: 2
type: Transform
- - uid: 29944
+ - uid: 30005
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-35.5
parent: 2
type: Transform
- - uid: 29945
+ - uid: 30006
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-36.5
parent: 2
type: Transform
- - uid: 29946
+ - uid: 30007
components:
- rot: 1.5707963267948966 rad
pos: -30.5,-36.5
parent: 2
type: Transform
- - uid: 29947
+ - uid: 30008
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-36.5
parent: 2
type: Transform
- - uid: 29948
+ - uid: 30009
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-36.5
parent: 2
type: Transform
- - uid: 29949
+ - uid: 30010
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-31.5
parent: 2
type: Transform
- - uid: 29950
+ - uid: 30011
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-32.5
parent: 2
type: Transform
- - uid: 29951
+ - uid: 30012
components:
- pos: -34.5,-37.5
parent: 2
type: Transform
- - uid: 29952
+ - uid: 30013
components:
- rot: 1.5707963267948966 rad
pos: -34.5,-35.5
parent: 2
type: Transform
- - uid: 29953
+ - uid: 30014
components:
- rot: 1.5707963267948966 rad
pos: -33.5,-31.5
parent: 2
type: Transform
- - uid: 29954
+ - uid: 30015
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-35.5
parent: 2
type: Transform
- - uid: 29955
+ - uid: 30016
components:
- rot: 1.5707963267948966 rad
pos: -22.5,-30.5
parent: 2
type: Transform
- - uid: 29956
+ - uid: 30017
components:
- rot: 1.5707963267948966 rad
pos: -24.5,-28.5
parent: 2
type: Transform
- - uid: 29957
+ - uid: 30018
components:
- rot: 3.141592653589793 rad
pos: -28.5,-6.5
parent: 2
type: Transform
- - uid: 29958
+ - uid: 30019
components:
- pos: -31.5,-4.5
parent: 2
type: Transform
- - uid: 29959
+ - uid: 30020
components:
- pos: -32.5,-4.5
parent: 2
type: Transform
- - uid: 29960
+ - uid: 30021
components:
- pos: -33.5,-4.5
parent: 2
type: Transform
- - uid: 29961
+ - uid: 30022
components:
- pos: -34.5,-4.5
parent: 2
type: Transform
- - uid: 29962
+ - uid: 30023
components:
- pos: -35.5,-4.5
parent: 2
type: Transform
- - uid: 29963
+ - uid: 30024
components:
- pos: -38.5,-3.5
parent: 2
type: Transform
- - uid: 29964
+ - uid: 30025
components:
- pos: -39.5,-3.5
parent: 2
type: Transform
- - uid: 29965
+ - uid: 30026
components:
- pos: -35.5,-3.5
parent: 2
type: Transform
- - uid: 29966
+ - uid: 30027
components:
- pos: -39.5,-4.5
parent: 2
type: Transform
- - uid: 29967
+ - uid: 30028
components:
- pos: -40.5,-4.5
parent: 2
type: Transform
- - uid: 29968
+ - uid: 30029
components:
- pos: -42.5,-4.5
parent: 2
type: Transform
- - uid: 29969
+ - uid: 30030
components:
- pos: -43.5,-4.5
parent: 2
type: Transform
- - uid: 29970
+ - uid: 30031
components:
- pos: -22.5,-40.5
parent: 2
type: Transform
- - uid: 29971
+ - uid: 30032
components:
- pos: -23.5,-40.5
parent: 2
type: Transform
- - uid: 29972
+ - uid: 30033
components:
- pos: -24.5,-40.5
parent: 2
type: Transform
- - uid: 29973
+ - uid: 30034
components:
- pos: -24.5,-41.5
parent: 2
type: Transform
- - uid: 29974
+ - uid: 30035
components:
- pos: -24.5,-42.5
parent: 2
type: Transform
- - uid: 29975
+ - uid: 30036
components:
- pos: -24.5,-43.5
parent: 2
type: Transform
- - uid: 29976
+ - uid: 30037
components:
- pos: -24.5,-44.5
parent: 2
type: Transform
- - uid: 29977
+ - uid: 30038
components:
- pos: -24.5,-45.5
parent: 2
type: Transform
- - uid: 29978
+ - uid: 30039
components:
- pos: -24.5,-46.5
parent: 2
type: Transform
- - uid: 29979
+ - uid: 30040
components:
- pos: -24.5,-47.5
parent: 2
type: Transform
- - uid: 29980
+ - uid: 30041
components:
- pos: -22.5,-37.5
parent: 2
type: Transform
- - uid: 29981
+ - uid: 30042
components:
- pos: -23.5,-37.5
parent: 2
type: Transform
- - uid: 29982
+ - uid: 30043
components:
- pos: -24.5,-37.5
parent: 2
type: Transform
- - uid: 29983
+ - uid: 30044
components:
- pos: -25.5,-37.5
parent: 2
type: Transform
- - uid: 29984
+ - uid: 30045
components:
- pos: -26.5,-37.5
parent: 2
type: Transform
- - uid: 29985
+ - uid: 30046
components:
- pos: -35.5,-31.5
parent: 2
type: Transform
- - uid: 29986
+ - uid: 30047
components:
- pos: -36.5,-31.5
parent: 2
type: Transform
- - uid: 29987
+ - uid: 30048
components:
- pos: -37.5,-31.5
parent: 2
type: Transform
- - uid: 29988
+ - uid: 30049
components:
- pos: -38.5,-31.5
parent: 2
type: Transform
- - uid: 29989
+ - uid: 30050
components:
- pos: -39.5,-31.5
parent: 2
type: Transform
- - uid: 29990
+ - uid: 30051
components:
- pos: -30.5,-38.5
parent: 2
type: Transform
- - uid: 29991
+ - uid: 30052
components:
- pos: -30.5,-39.5
parent: 2
type: Transform
- - uid: 29992
+ - uid: 30053
components:
- pos: -30.5,-41.5
parent: 2
type: Transform
- - uid: 29993
+ - uid: 30054
components:
- pos: -30.5,-42.5
parent: 2
type: Transform
- - uid: 29994
+ - uid: 30055
components:
- pos: -31.5,-42.5
parent: 2
type: Transform
- - uid: 29995
+ - uid: 30056
components:
- pos: -48.5,-4.5
parent: 2
type: Transform
- - uid: 29996
+ - uid: 30057
components:
- pos: -47.5,-4.5
parent: 2
type: Transform
- - uid: 29997
+ - uid: 30058
components:
- pos: -46.5,-4.5
parent: 2
type: Transform
- - uid: 29998
+ - uid: 30059
components:
- pos: -45.5,-4.5
parent: 2
type: Transform
- - uid: 29999
+ - uid: 30060
components:
- pos: -44.5,-4.5
parent: 2
type: Transform
- - uid: 30000
+ - uid: 30061
components:
- pos: -55.5,-19.5
parent: 2
type: Transform
- - uid: 30001
+ - uid: 30062
components:
- pos: -55.5,-20.5
parent: 2
type: Transform
- - uid: 30002
+ - uid: 30063
components:
- pos: -47.5,-26.5
parent: 2
type: Transform
- - uid: 30003
+ - uid: 30064
components:
- rot: 3.141592653589793 rad
pos: -41.5,15.5
parent: 2
type: Transform
- - uid: 30004
+ - uid: 30065
components:
- pos: -31.5,-6.5
parent: 2
type: Transform
- - uid: 30005
+ - uid: 30066
components:
- pos: -32.5,-6.5
parent: 2
type: Transform
- - uid: 30006
+ - uid: 30067
components:
- pos: -32.5,-8.5
parent: 2
type: Transform
- - uid: 30007
+ - uid: 30068
components:
- pos: -31.5,-8.5
parent: 2
type: Transform
- - uid: 30008
+ - uid: 30069
components:
- pos: -33.5,-6.5
parent: 2
type: Transform
- - uid: 30009
+ - uid: 30070
components:
- pos: -33.5,-5.5
parent: 2
type: Transform
- - uid: 30010
+ - uid: 30071
components:
- pos: -37.5,-3.5
parent: 2
type: Transform
- - uid: 30011
+ - uid: 30072
components:
- pos: -36.5,-3.5
parent: 2
type: Transform
- - uid: 30012
+ - uid: 30073
components:
- pos: -65.5,-29.5
parent: 2
type: Transform
- - uid: 30013
+ - uid: 30074
components:
- pos: -70.5,-27.5
parent: 2
type: Transform
- - uid: 30014
+ - uid: 30075
components:
- pos: -74.5,-27.5
parent: 2
type: Transform
- - uid: 30015
+ - uid: 30076
components:
- pos: -69.5,-28.5
parent: 2
type: Transform
- - uid: 30016
+ - uid: 30077
components:
- pos: -69.5,-29.5
parent: 2
type: Transform
- - uid: 30017
+ - uid: 30078
components:
- pos: -69.5,-30.5
parent: 2
type: Transform
- - uid: 30018
+ - uid: 30079
components:
- pos: -57.5,-29.5
parent: 2
type: Transform
- - uid: 30019
+ - uid: 30080
components:
- pos: -53.5,-29.5
parent: 2
type: Transform
- - uid: 30020
+ - uid: 30081
components:
- pos: -49.5,-27.5
parent: 2
type: Transform
- - uid: 30021
+ - uid: 30082
components:
- pos: -49.5,-28.5
parent: 2
type: Transform
- - uid: 30022
+ - uid: 30083
components:
- pos: -56.5,-31.5
parent: 2
type: Transform
- - uid: 30023
+ - uid: 30084
components:
- pos: -57.5,-31.5
parent: 2
type: Transform
- - uid: 30024
+ - uid: 30085
components:
- pos: -63.5,-25.5
parent: 2
type: Transform
- - uid: 30025
+ - uid: 30086
components:
- pos: -57.5,-22.5
parent: 2
type: Transform
- - uid: 30026
+ - uid: 30087
components:
- pos: -55.5,-21.5
parent: 2
type: Transform
- - uid: 30027
+ - uid: 30088
components:
- pos: -55.5,-22.5
parent: 2
type: Transform
- - uid: 30028
+ - uid: 30089
components:
- pos: -49.5,-30.5
parent: 2
type: Transform
- - uid: 30029
+ - uid: 30090
components:
- pos: -67.5,-29.5
parent: 2
type: Transform
- - uid: 30030
+ - uid: 30091
components:
- pos: -54.5,-29.5
parent: 2
type: Transform
- - uid: 30031
+ - uid: 30092
components:
- pos: -56.5,-29.5
parent: 2
type: Transform
- - uid: 30032
+ - uid: 30093
components:
- pos: -36.5,-49.5
parent: 2
type: Transform
- - uid: 30033
+ - uid: 30094
components:
- pos: -36.5,-50.5
parent: 2
type: Transform
- - uid: 30034
+ - uid: 30095
components:
- pos: -36.5,-51.5
parent: 2
type: Transform
- - uid: 30035
+ - uid: 30096
components:
- pos: -36.5,-52.5
parent: 2
type: Transform
- - uid: 30036
+ - uid: 30097
components:
- pos: -36.5,-48.5
parent: 2
type: Transform
- - uid: 30037
+ - uid: 30098
components:
- pos: -36.5,-47.5
parent: 2
type: Transform
- - uid: 30038
+ - uid: 30099
components:
- pos: 69.5,-60.5
parent: 2
type: Transform
- - uid: 30039
+ - uid: 30100
components:
- rot: -1.5707963267948966 rad
pos: -30.5,-18.5
parent: 2
type: Transform
- - uid: 30040
+ - uid: 30101
components:
- pos: -29.5,-38.5
parent: 2
type: Transform
- - uid: 30041
+ - uid: 30102
components:
- pos: -28.5,-38.5
parent: 2
type: Transform
- - uid: 30042
+ - uid: 30103
components:
- pos: -27.5,-38.5
parent: 2
type: Transform
- - uid: 30043
+ - uid: 30104
components:
- pos: -26.5,-38.5
parent: 2
type: Transform
- - uid: 30044
+ - uid: 30105
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-16.5
parent: 2
type: Transform
- - uid: 30045
+ - uid: 30106
components:
- pos: -33.5,-7.5
parent: 2
type: Transform
- - uid: 30046
+ - uid: 30107
components:
- pos: -57.5,-3.5
parent: 2
type: Transform
- - uid: 30047
+ - uid: 30108
components:
- pos: -69.5,-25.5
parent: 2
type: Transform
- - uid: 30048
+ - uid: 30109
components:
- pos: -69.5,-26.5
parent: 2
type: Transform
- - uid: 30049
+ - uid: 30110
components:
- pos: -69.5,-27.5
parent: 2
type: Transform
- - uid: 30050
+ - uid: 30111
components:
- rot: -1.5707963267948966 rad
pos: -43.5,-25.5
parent: 2
type: Transform
- - uid: 30051
+ - uid: 30112
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-29.5
parent: 2
type: Transform
- - uid: 30052
+ - uid: 30113
components:
- rot: -1.5707963267948966 rad
pos: -45.5,-30.5
parent: 2
type: Transform
- - uid: 30053
+ - uid: 30114
components:
- pos: -46.5,-29.5
parent: 2
type: Transform
- - uid: 30054
+ - uid: 30115
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-29.5
parent: 2
type: Transform
- - uid: 30055
+ - uid: 30116
components:
- rot: -1.5707963267948966 rad
pos: -47.5,-28.5
parent: 2
type: Transform
- - uid: 30056
+ - uid: 30117
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-34.5
parent: 2
type: Transform
- - uid: 30057
+ - uid: 30118
components:
- rot: -1.5707963267948966 rad
pos: -56.5,-34.5
parent: 2
type: Transform
- - uid: 30058
+ - uid: 30119
components:
- rot: -1.5707963267948966 rad
pos: -54.5,-34.5
parent: 2
type: Transform
- - uid: 30059
+ - uid: 30120
components:
- rot: -1.5707963267948966 rad
pos: -57.5,-40.5
parent: 2
type: Transform
- - uid: 30060
+ - uid: 30121
components:
- rot: -1.5707963267948966 rad
pos: -34.5,-29.5
parent: 2
type: Transform
- - uid: 30061
+ - uid: 30122
components:
- pos: -55.5,-65.5
parent: 2
type: Transform
- - uid: 30062
+ - uid: 30123
components:
- pos: -54.5,-65.5
parent: 2
type: Transform
- - uid: 30063
+ - uid: 30124
components:
- pos: -53.5,-65.5
parent: 2
type: Transform
- - uid: 30064
+ - uid: 30125
components:
- pos: -51.5,-65.5
parent: 2
type: Transform
- - uid: 30065
+ - uid: 30126
components:
- pos: -51.5,-64.5
parent: 2
type: Transform
- - uid: 30066
+ - uid: 30127
components:
- pos: -51.5,-62.5
parent: 2
type: Transform
- - uid: 30067
+ - uid: 30128
components:
- pos: -56.5,-69.5
parent: 2
type: Transform
- - uid: 30068
+ - uid: 30129
components:
- pos: -23.5,-50.5
parent: 2
type: Transform
- - uid: 30069
+ - uid: 30130
components:
- pos: -24.5,-50.5
parent: 2
type: Transform
- - uid: 30070
+ - uid: 30131
components:
- pos: -25.5,-50.5
parent: 2
type: Transform
- - uid: 30071
+ - uid: 30132
components:
- pos: -24.5,-48.5
parent: 2
type: Transform
- - uid: 30072
+ - uid: 30133
components:
- pos: -26.5,-48.5
parent: 2
type: Transform
- - uid: 30073
+ - uid: 30134
components:
- pos: -25.5,-48.5
parent: 2
type: Transform
- - uid: 30074
+ - uid: 30135
components:
- pos: -26.5,-50.5
parent: 2
type: Transform
- - uid: 30075
+ - uid: 30136
components:
- pos: -27.5,-50.5
parent: 2
type: Transform
- - uid: 30076
+ - uid: 30137
components:
- pos: -28.5,-50.5
parent: 2
type: Transform
- - uid: 30077
+ - uid: 30138
components:
- pos: -28.5,-49.5
parent: 2
type: Transform
- - uid: 30078
+ - uid: 30139
components:
- pos: -28.5,-48.5
parent: 2
type: Transform
- - uid: 30079
+ - uid: 30140
components:
- pos: -28.5,-46.5
parent: 2
type: Transform
- - uid: 30080
+ - uid: 30141
components:
- pos: -28.5,-45.5
parent: 2
type: Transform
- - uid: 30081
+ - uid: 30142
components:
- pos: -29.5,-45.5
parent: 2
type: Transform
- - uid: 30082
+ - uid: 30143
components:
- pos: -29.5,-42.5
parent: 2
type: Transform
- - uid: 30083
+ - uid: 30144
components:
- pos: -28.5,-42.5
parent: 2
type: Transform
- - uid: 30084
+ - uid: 30145
components:
- pos: -27.5,-42.5
parent: 2
type: Transform
- - uid: 30085
+ - uid: 30146
components:
- pos: -26.5,-42.5
parent: 2
type: Transform
- - uid: 30086
+ - uid: 30147
components:
- pos: -26.5,-43.5
parent: 2
type: Transform
- - uid: 30087
+ - uid: 30148
components:
- pos: -26.5,-44.5
parent: 2
type: Transform
- - uid: 30088
+ - uid: 30149
components:
- pos: -26.5,-45.5
parent: 2
type: Transform
- - uid: 30089
+ - uid: 30150
components:
- pos: -30.5,-45.5
parent: 2
type: Transform
- - uid: 30090
+ - uid: 30151
components:
- pos: -29.5,-49.5
parent: 2
type: Transform
- - uid: 30091
+ - uid: 30152
components:
- pos: -31.5,-49.5
parent: 2
type: Transform
- - uid: 30092
+ - uid: 30153
components:
- pos: -27.5,-39.5
parent: 2
type: Transform
- - uid: 30093
+ - uid: 30154
components:
- pos: -27.5,-40.5
parent: 2
type: Transform
- - uid: 30094
+ - uid: 30155
components:
- pos: -23.5,-52.5
parent: 2
type: Transform
- - uid: 30095
+ - uid: 30156
components:
- pos: -24.5,-56.5
parent: 2
type: Transform
- - uid: 30096
+ - uid: 30157
components:
- pos: -25.5,-56.5
parent: 2
type: Transform
- - uid: 30097
+ - uid: 30158
components:
- pos: -26.5,-56.5
parent: 2
type: Transform
- - uid: 30098
+ - uid: 30159
components:
- pos: -27.5,-56.5
parent: 2
type: Transform
- - uid: 30099
+ - uid: 30160
components:
- pos: -29.5,-56.5
parent: 2
type: Transform
- - uid: 30100
+ - uid: 30161
components:
- pos: -30.5,-56.5
parent: 2
type: Transform
- - uid: 30101
+ - uid: 30162
components:
- pos: -30.5,-57.5
parent: 2
type: Transform
- - uid: 30102
+ - uid: 30163
components:
- pos: -52.5,-11.5
parent: 2
type: Transform
- - uid: 30103
+ - uid: 30164
components:
- pos: -52.5,-10.5
parent: 2
type: Transform
- - uid: 30104
+ - uid: 30165
components:
- pos: -52.5,-9.5
parent: 2
type: Transform
- - uid: 30105
+ - uid: 30166
components:
- pos: -52.5,-7.5
parent: 2
type: Transform
- - uid: 30106
+ - uid: 30167
components:
- pos: -51.5,-7.5
parent: 2
type: Transform
- - uid: 30107
+ - uid: 30168
components:
- pos: -50.5,-7.5
parent: 2
type: Transform
- - uid: 30108
+ - uid: 30169
components:
- pos: -27.5,-62.5
parent: 2
type: Transform
- - uid: 30109
+ - uid: 30170
components:
- pos: -29.5,-60.5
parent: 2
type: Transform
- - uid: 30110
+ - uid: 30171
components:
- pos: -29.5,-61.5
parent: 2
type: Transform
- - uid: 30111
+ - uid: 30172
components:
- pos: -27.5,-61.5
parent: 2
type: Transform
- - uid: 30112
+ - uid: 30173
components:
- pos: -29.5,-62.5
parent: 2
type: Transform
- - uid: 30113
+ - uid: 30174
components:
- pos: -29.5,-64.5
parent: 2
type: Transform
- - uid: 30114
+ - uid: 30175
components:
- pos: -28.5,-64.5
parent: 2
type: Transform
- - uid: 30115
+ - uid: 30176
components:
- pos: -28.5,-65.5
parent: 2
type: Transform
- - uid: 30116
+ - uid: 30177
components:
- pos: -27.5,-65.5
parent: 2
type: Transform
- - uid: 30117
+ - uid: 30178
components:
- pos: -25.5,-63.5
parent: 2
type: Transform
- - uid: 30118
+ - uid: 30179
components:
- pos: -24.5,-63.5
parent: 2
type: Transform
- - uid: 30119
+ - uid: 30180
components:
- pos: -24.5,-65.5
parent: 2
type: Transform
- - uid: 30120
+ - uid: 30181
components:
- pos: -27.5,-68.5
parent: 2
type: Transform
- - uid: 30121
+ - uid: 30182
components:
- pos: -28.5,-68.5
parent: 2
type: Transform
- - uid: 30122
+ - uid: 30183
components:
- pos: -29.5,-68.5
parent: 2
type: Transform
- - uid: 30123
+ - uid: 30184
components:
- pos: -29.5,-67.5
parent: 2
type: Transform
- - uid: 30124
+ - uid: 30185
components:
- pos: -31.5,-67.5
parent: 2
type: Transform
- - uid: 30125
+ - uid: 30186
components:
- pos: -30.5,-64.5
parent: 2
type: Transform
- - uid: 30126
+ - uid: 30187
components:
- pos: -30.5,-65.5
parent: 2
type: Transform
- - uid: 30127
+ - uid: 30188
components:
- pos: -32.5,-65.5
parent: 2
type: Transform
- - uid: 30128
+ - uid: 30189
components:
- pos: -32.5,-64.5
parent: 2
type: Transform
- - uid: 30129
+ - uid: 30190
components:
- pos: -33.5,-64.5
parent: 2
type: Transform
- - uid: 30130
+ - uid: 30191
components:
- pos: -55.5,-69.5
parent: 2
type: Transform
- - uid: 30131
+ - uid: 30192
components:
- pos: -54.5,-69.5
parent: 2
type: Transform
- - uid: 30132
+ - uid: 30193
components:
- pos: -52.5,-69.5
parent: 2
type: Transform
- - uid: 30133
+ - uid: 30194
components:
- pos: -52.5,-70.5
parent: 2
type: Transform
- - uid: 30134
+ - uid: 30195
components:
- pos: -52.5,-71.5
parent: 2
type: Transform
- - uid: 30135
+ - uid: 30196
components:
- pos: -51.5,-71.5
parent: 2
type: Transform
- - uid: 30136
+ - uid: 30197
components:
- pos: -51.5,-72.5
parent: 2
type: Transform
- - uid: 30137
+ - uid: 30198
components:
- pos: -50.5,-72.5
parent: 2
type: Transform
- - uid: 30138
+ - uid: 30199
components:
- pos: -50.5,-73.5
parent: 2
type: Transform
- - uid: 30139
+ - uid: 30200
components:
- pos: -50.5,-74.5
parent: 2
type: Transform
- - uid: 30140
+ - uid: 30201
components:
- pos: -50.5,-75.5
parent: 2
type: Transform
- - uid: 30141
+ - uid: 30202
components:
- pos: -58.5,-80.5
parent: 2
type: Transform
- - uid: 30142
+ - uid: 30203
components:
- pos: -58.5,-72.5
parent: 2
type: Transform
- - uid: 30143
+ - uid: 30204
components:
- pos: -49.5,-75.5
parent: 2
type: Transform
- - uid: 30144
+ - uid: 30205
components:
- pos: -48.5,-75.5
parent: 2
type: Transform
- - uid: 30145
+ - uid: 30206
components:
- pos: -48.5,-72.5
parent: 2
type: Transform
- - uid: 30146
+ - uid: 30207
components:
- pos: -48.5,-71.5
parent: 2
type: Transform
- - uid: 30147
+ - uid: 30208
components:
- pos: -47.5,-71.5
parent: 2
type: Transform
- - uid: 30148
+ - uid: 30209
components:
- pos: -46.5,-71.5
parent: 2
type: Transform
- - uid: 30149
+ - uid: 30210
components:
- pos: -46.5,-70.5
parent: 2
type: Transform
- - uid: 30150
+ - uid: 30211
components:
- pos: -45.5,-70.5
parent: 2
type: Transform
- - uid: 30151
+ - uid: 30212
components:
- pos: -45.5,-69.5
parent: 2
type: Transform
- - uid: 30152
+ - uid: 30213
components:
- pos: -44.5,-69.5
parent: 2
type: Transform
- - uid: 30153
+ - uid: 30214
components:
- pos: -43.5,-69.5
parent: 2
type: Transform
- - uid: 30154
+ - uid: 30215
components:
- pos: -40.5,-68.5
parent: 2
type: Transform
- - uid: 30155
+ - uid: 30216
components:
- pos: -40.5,-67.5
parent: 2
type: Transform
- - uid: 30156
+ - uid: 30217
components:
- pos: -40.5,-69.5
parent: 2
type: Transform
- - uid: 30157
+ - uid: 30218
components:
- pos: -39.5,-69.5
parent: 2
type: Transform
- - uid: 30158
+ - uid: 30219
components:
- pos: -38.5,-69.5
parent: 2
type: Transform
- - uid: 30159
+ - uid: 30220
components:
- pos: -38.5,-70.5
parent: 2
type: Transform
- - uid: 30160
+ - uid: 30221
components:
- pos: -37.5,-70.5
parent: 2
type: Transform
- - uid: 30161
+ - uid: 30222
components:
- pos: -37.5,-71.5
parent: 2
type: Transform
- - uid: 30162
+ - uid: 30223
components:
- pos: -36.5,-71.5
parent: 2
type: Transform
- - uid: 30163
+ - uid: 30224
components:
- pos: -35.5,-71.5
parent: 2
type: Transform
- - uid: 30164
+ - uid: 30225
components:
- pos: -35.5,-72.5
parent: 2
type: Transform
- - uid: 30165
+ - uid: 30226
components:
- pos: -43.5,-68.5
parent: 2
type: Transform
- - uid: 30166
+ - uid: 30227
components:
- pos: -40.5,-65.5
parent: 2
type: Transform
- - uid: 30167
+ - uid: 30228
components:
- pos: -41.5,-65.5
parent: 2
type: Transform
- - uid: 30168
+ - uid: 30229
components:
- pos: -42.5,-65.5
parent: 2
type: Transform
- - uid: 30169
+ - uid: 30230
components:
- pos: -43.5,-65.5
parent: 2
type: Transform
- - uid: 30170
+ - uid: 30231
components:
- pos: -44.5,-65.5
parent: 2
type: Transform
- - uid: 30171
+ - uid: 30232
components:
- pos: -45.5,-65.5
parent: 2
type: Transform
- - uid: 30172
+ - uid: 30233
components:
- pos: -46.5,-65.5
parent: 2
type: Transform
- - uid: 30173
+ - uid: 30234
components:
- pos: -47.5,-65.5
parent: 2
type: Transform
- - uid: 30174
+ - uid: 30235
components:
- pos: -48.5,-67.5
parent: 2
type: Transform
- - uid: 30175
+ - uid: 30236
components:
- pos: -48.5,-68.5
parent: 2
type: Transform
- - uid: 30176
+ - uid: 30237
components:
- pos: -48.5,-69.5
parent: 2
type: Transform
- - uid: 30177
+ - uid: 30238
components:
- pos: -48.5,-70.5
parent: 2
type: Transform
- - uid: 30178
+ - uid: 30239
components:
- pos: -48.5,-65.5
parent: 2
type: Transform
- - uid: 30179
+ - uid: 30240
components:
- pos: -51.5,-69.5
parent: 2
type: Transform
- - uid: 30180
+ - uid: 30241
components:
- pos: -51.5,-68.5
parent: 2
type: Transform
- - uid: 30181
+ - uid: 30242
components:
- pos: -35.5,-63.5
parent: 2
type: Transform
- - uid: 30182
+ - uid: 30243
components:
- pos: -35.5,-64.5
parent: 2
type: Transform
- - uid: 30183
+ - uid: 30244
components:
- pos: -36.5,-66.5
parent: 2
type: Transform
- - uid: 30184
+ - uid: 30245
components:
- pos: -36.5,-67.5
parent: 2
type: Transform
- - uid: 30185
+ - uid: 30246
components:
- pos: -35.5,-67.5
parent: 2
type: Transform
- - uid: 30186
+ - uid: 30247
components:
- pos: -35.5,-68.5
parent: 2
type: Transform
- - uid: 30187
+ - uid: 30248
components:
- pos: -34.5,-68.5
parent: 2
type: Transform
- - uid: 30188
+ - uid: 30249
components:
- pos: -38.5,-66.5
parent: 2
type: Transform
- - uid: 30189
+ - uid: 30250
components:
- pos: -35.5,-69.5
parent: 2
type: Transform
- - uid: 30190
+ - uid: 30251
components:
- pos: -33.5,-68.5
parent: 2
type: Transform
- - uid: 30191
+ - uid: 30252
components:
- pos: -32.5,-68.5
parent: 2
type: Transform
- - uid: 30192
+ - uid: 30253
components:
- pos: -31.5,-68.5
parent: 2
type: Transform
- - uid: 30193
+ - uid: 30254
components:
- pos: -42.5,-63.5
parent: 2
type: Transform
- - uid: 30194
+ - uid: 30255
components:
- pos: -46.5,-64.5
parent: 2
type: Transform
- - uid: 30195
+ - uid: 30256
components:
- pos: -40.5,-73.5
parent: 2
type: Transform
- - uid: 30196
+ - uid: 30257
components:
- pos: -44.5,-73.5
parent: 2
type: Transform
- - uid: 30197
+ - uid: 30258
components:
- pos: -39.5,-74.5
parent: 2
type: Transform
- - uid: 30198
+ - uid: 30259
components:
- pos: -42.5,-73.5
parent: 2
type: Transform
- - uid: 30199
+ - uid: 30260
components:
- pos: -41.5,-73.5
parent: 2
type: Transform
- - uid: 30200
+ - uid: 30261
components:
- pos: -43.5,-73.5
parent: 2
type: Transform
- - uid: 30201
+ - uid: 30262
components:
- pos: -44.5,-74.5
parent: 2
type: Transform
- - uid: 30202
+ - uid: 30263
components:
- pos: -39.5,-73.5
parent: 2
type: Transform
- - uid: 30203
+ - uid: 30264
components:
- pos: -23.5,-63.5
parent: 2
type: Transform
- - uid: 30204
+ - uid: 30265
components:
- rot: 3.141592653589793 rad
pos: -30.5,-53.5
parent: 2
type: Transform
- - uid: 30205
+ - uid: 30266
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-52.5
parent: 2
type: Transform
- - uid: 30206
+ - uid: 30267
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-53.5
parent: 2
type: Transform
- - uid: 30207
+ - uid: 30268
components:
- rot: 1.5707963267948966 rad
pos: -29.5,-54.5
parent: 2
type: Transform
- - uid: 30208
+ - uid: 30269
components:
- pos: -26.5,-62.5
parent: 2
type: Transform
- - uid: 30209
+ - uid: 30270
components:
- pos: -45.5,-68.5
parent: 2
type: Transform
- - uid: 30210
+ - uid: 30271
components:
- pos: -27.5,-59.5
parent: 2
type: Transform
- - uid: 30211
+ - uid: 30272
components:
- pos: -37.5,-47.5
parent: 2
type: Transform
- - uid: 30212
+ - uid: 30273
components:
- pos: -17.5,31.5
parent: 2
type: Transform
- - uid: 30213
+ - uid: 30274
components:
- pos: -26.5,-63.5
parent: 2
type: Transform
- - uid: 30214
+ - uid: 30275
components:
- pos: -22.5,-63.5
parent: 2
type: Transform
- - uid: 30215
+ - uid: 30276
components:
- pos: 58.5,2.5
parent: 2
type: Transform
- - uid: 30216
+ - uid: 30277
components:
- rot: 3.141592653589793 rad
pos: -27.5,-57.5
parent: 2
type: Transform
- - uid: 30217
+ - uid: 30278
components:
- pos: -33.5,-24.5
parent: 2
type: Transform
- - uid: 30218
+ - uid: 30279
components:
- pos: -34.5,-24.5
parent: 2
type: Transform
- - uid: 30219
+ - uid: 30280
components:
- pos: -34.5,-22.5
parent: 2
type: Transform
- - uid: 30220
+ - uid: 30281
components:
- pos: -34.5,-23.5
parent: 2
type: Transform
- - uid: 30221
+ - uid: 30282
components:
- rot: 1.5707963267948966 rad
pos: 52.5,54.5
parent: 2
type: Transform
- - uid: 30222
+ - uid: 30283
components:
- rot: -1.5707963267948966 rad
pos: -9.5,33.5
parent: 2
type: Transform
- - uid: 30223
+ - uid: 30284
components:
- rot: -1.5707963267948966 rad
pos: -10.5,33.5
parent: 2
type: Transform
- - uid: 30224
+ - uid: 30285
components:
- rot: -1.5707963267948966 rad
pos: -9.5,30.5
parent: 2
type: Transform
- - uid: 30225
+ - uid: 30286
components:
- rot: -1.5707963267948966 rad
pos: -10.5,30.5
parent: 2
type: Transform
- - uid: 30226
+ - uid: 30287
components:
- rot: -1.5707963267948966 rad
pos: -11.5,30.5
parent: 2
type: Transform
- - uid: 30227
+ - uid: 30288
components:
- rot: -1.5707963267948966 rad
pos: -12.5,30.5
parent: 2
type: Transform
- - uid: 30228
+ - uid: 30289
components:
- pos: -11.5,25.5
parent: 2
type: Transform
- - uid: 30229
+ - uid: 30290
components:
- pos: -12.5,25.5
parent: 2
type: Transform
- - uid: 30230
+ - uid: 30291
components:
- rot: -1.5707963267948966 rad
pos: -10.5,34.5
parent: 2
type: Transform
- - uid: 30231
+ - uid: 30292
components:
- pos: -21.5,16.5
parent: 2
type: Transform
- - uid: 30232
+ - uid: 30293
components:
- pos: -21.5,17.5
parent: 2
type: Transform
- - uid: 30233
- components:
- - pos: -21.5,18.5
- parent: 2
- type: Transform
- - uid: 30234
- components:
- - pos: -21.5,19.5
- parent: 2
- type: Transform
- - uid: 30235
+ - uid: 30294
components:
- pos: -17.5,15.5
parent: 2
type: Transform
- - uid: 30236
+ - uid: 30295
components:
- pos: -17.5,16.5
parent: 2
type: Transform
- - uid: 30237
+ - uid: 30296
components:
- pos: -17.5,17.5
parent: 2
type: Transform
- - uid: 30238
+ - uid: 30297
components:
- pos: -17.5,18.5
parent: 2
type: Transform
- - uid: 30239
+ - uid: 30298
components:
- pos: -21.5,22.5
parent: 2
type: Transform
- - uid: 30240
+ - uid: 30299
components:
- pos: -21.5,25.5
parent: 2
type: Transform
- - uid: 30241
+ - uid: 30300
components:
- rot: -1.5707963267948966 rad
pos: -13.5,22.5
parent: 2
type: Transform
- - uid: 30242
+ - uid: 30301
components:
- rot: -1.5707963267948966 rad
pos: -17.5,27.5
parent: 2
type: Transform
- - uid: 30243
+ - uid: 30302
components:
- pos: -17.5,22.5
parent: 2
type: Transform
- - uid: 30244
+ - uid: 30303
components:
- pos: -17.5,21.5
parent: 2
type: Transform
- - uid: 30245
+ - uid: 30304
components:
- pos: -17.5,20.5
parent: 2
type: Transform
- - uid: 30246
+ - uid: 30305
components:
- pos: -23.5,16.5
parent: 2
type: Transform
- - uid: 30247
+ - uid: 30306
components:
- pos: -26.5,17.5
parent: 2
type: Transform
- - uid: 30248
+ - uid: 30307
components:
- pos: -26.5,26.5
parent: 2
type: Transform
- - uid: 30249
+ - uid: 30308
components:
- pos: -25.5,26.5
parent: 2
type: Transform
- - uid: 30250
+ - uid: 30309
components:
- pos: -26.5,20.5
parent: 2
type: Transform
- - uid: 30251
+ - uid: 30310
components:
- pos: -27.5,26.5
parent: 2
type: Transform
- - uid: 30252
+ - uid: 30311
components:
- pos: -28.5,26.5
parent: 2
type: Transform
- - uid: 30253
+ - uid: 30312
components:
- pos: -26.5,24.5
parent: 2
type: Transform
- - uid: 30254
+ - uid: 30313
components:
- rot: 3.141592653589793 rad
pos: -27.5,20.5
parent: 2
type: Transform
- - uid: 30255
+ - uid: 30314
components:
- rot: 3.141592653589793 rad
pos: -28.5,20.5
parent: 2
type: Transform
- - uid: 30256
+ - uid: 30315
components:
- rot: 3.141592653589793 rad
pos: -29.5,20.5
parent: 2
type: Transform
- - uid: 30257
+ - uid: 30316
components:
- rot: 3.141592653589793 rad
pos: -29.5,24.5
parent: 2
type: Transform
- - uid: 30258
+ - uid: 30317
components:
- pos: -26.5,16.5
parent: 2
type: Transform
- - uid: 30259
+ - uid: 30318
components:
- pos: -27.5,16.5
parent: 2
type: Transform
- - uid: 30260
+ - uid: 30319
components:
- pos: -28.5,16.5
parent: 2
type: Transform
- - uid: 30261
+ - uid: 30320
components:
- pos: -29.5,16.5
parent: 2
type: Transform
- - uid: 30262
+ - uid: 30321
components:
- pos: -22.5,14.5
parent: 2
type: Transform
- - uid: 30263
+ - uid: 30322
components:
- pos: -23.5,14.5
parent: 2
type: Transform
- - uid: 30264
+ - uid: 30323
components:
- pos: -24.5,16.5
parent: 2
type: Transform
- - uid: 30265
+ - uid: 30324
components:
- pos: -23.5,26.5
parent: 2
type: Transform
- - uid: 30266
+ - uid: 30325
components:
- pos: -36.5,34.5
parent: 2
type: Transform
- - uid: 30267
+ - uid: 30326
components:
- pos: -24.5,15.5
parent: 2
type: Transform
- - uid: 30268
+ - uid: 30327
components:
- pos: -34.5,16.5
parent: 2
type: Transform
- - uid: 30269
+ - uid: 30328
components:
- pos: -35.5,17.5
parent: 2
type: Transform
- - uid: 30270
+ - uid: 30329
components:
- pos: -35.5,23.5
parent: 2
type: Transform
- - uid: 30271
+ - uid: 30330
components:
- pos: -35.5,24.5
parent: 2
type: Transform
- - uid: 30272
+ - uid: 30331
components:
- pos: -33.5,16.5
parent: 2
type: Transform
- - uid: 30273
+ - uid: 30332
components:
- pos: -32.5,16.5
parent: 2
type: Transform
- - uid: 30274
+ - uid: 30333
components:
- pos: -31.5,16.5
parent: 2
type: Transform
- - uid: 30275
+ - uid: 30334
components:
- pos: -30.5,16.5
parent: 2
type: Transform
- - uid: 30276
+ - uid: 30335
components:
- rot: 1.5707963267948966 rad
pos: -36.5,17.5
parent: 2
type: Transform
- - uid: 30277
+ - uid: 30336
components:
- rot: 1.5707963267948966 rad
pos: -39.5,17.5
parent: 2
type: Transform
- - uid: 30278
+ - uid: 30337
components:
- rot: 1.5707963267948966 rad
pos: -40.5,17.5
parent: 2
type: Transform
- - uid: 30279
+ - uid: 30338
components:
- pos: -38.5,34.5
parent: 2
type: Transform
- - uid: 30280
+ - uid: 30339
components:
- pos: -39.5,32.5
parent: 2
type: Transform
- - uid: 30281
+ - uid: 30340
components:
- pos: -39.5,33.5
parent: 2
type: Transform
- - uid: 30282
+ - uid: 30341
components:
- rot: 1.5707963267948966 rad
pos: -40.5,26.5
parent: 2
type: Transform
- - uid: 30283
+ - uid: 30342
components:
- rot: 1.5707963267948966 rad
pos: -42.5,26.5
parent: 2
type: Transform
- - uid: 30284
+ - uid: 30343
components:
- rot: 1.5707963267948966 rad
pos: -43.5,17.5
parent: 2
type: Transform
- - uid: 30285
+ - uid: 30344
components:
- rot: 1.5707963267948966 rad
pos: -43.5,16.5
parent: 2
type: Transform
- - uid: 30286
+ - uid: 30345
components:
- pos: -51.5,21.5
parent: 2
type: Transform
- - uid: 30287
+ - uid: 30346
components:
- rot: 1.5707963267948966 rad
pos: -47.5,27.5
parent: 2
type: Transform
- - uid: 30288
+ - uid: 30347
components:
- rot: 1.5707963267948966 rad
pos: -48.5,27.5
parent: 2
type: Transform
- - uid: 30289
+ - uid: 30348
components:
- rot: 1.5707963267948966 rad
pos: -44.5,27.5
parent: 2
type: Transform
- - uid: 30290
+ - uid: 30349
components:
- rot: 1.5707963267948966 rad
pos: -43.5,27.5
parent: 2
type: Transform
- - uid: 30291
+ - uid: 30350
components:
- rot: 1.5707963267948966 rad
pos: -43.5,26.5
parent: 2
type: Transform
- - uid: 30292
+ - uid: 30351
components:
- pos: -17.5,35.5
parent: 2
type: Transform
- - uid: 30293
+ - uid: 30352
components:
- rot: -1.5707963267948966 rad
pos: -18.5,36.5
parent: 2
type: Transform
- - uid: 30294
+ - uid: 30353
components:
- pos: -17.5,33.5
parent: 2
type: Transform
- - uid: 30295
+ - uid: 30354
components:
- pos: -13.5,30.5
parent: 2
type: Transform
- - uid: 30296
+ - uid: 30355
components:
- pos: -13.5,29.5
parent: 2
type: Transform
- - uid: 30297
+ - uid: 30356
components:
- pos: -13.5,28.5
parent: 2
type: Transform
- - uid: 30298
+ - uid: 30357
components:
- pos: -14.5,28.5
parent: 2
type: Transform
- - uid: 30299
+ - uid: 30358
components:
- pos: -16.5,28.5
parent: 2
type: Transform
- - uid: 30300
+ - uid: 30359
components:
- pos: 51.5,41.5
parent: 2
type: Transform
- - uid: 30301
+ - uid: 30360
components:
- pos: -22.5,26.5
parent: 2
type: Transform
- - uid: 30302
+ - uid: 30361
components:
- pos: -24.5,14.5
parent: 2
type: Transform
- - uid: 30303
+ - uid: 30362
components:
- pos: -27.5,11.5
parent: 2
type: Transform
- - uid: 30304
+ - uid: 30363
components:
- pos: -28.5,11.5
parent: 2
type: Transform
- - uid: 30305
+ - uid: 30364
components:
- pos: -29.5,26.5
parent: 2
type: Transform
- - uid: 30306
+ - uid: 30365
components:
- rot: 3.141592653589793 rad
pos: -41.5,13.5
parent: 2
type: Transform
- - uid: 30307
+ - uid: 30366
components:
- pos: -28.5,14.5
parent: 2
type: Transform
- - uid: 30308
+ - uid: 30367
components:
- pos: -28.5,13.5
parent: 2
type: Transform
- - uid: 30309
+ - uid: 30368
components:
- pos: -28.5,15.5
parent: 2
type: Transform
- - uid: 30310
+ - uid: 30369
components:
- rot: 1.5707963267948966 rad
pos: -40.5,36.5
parent: 2
type: Transform
- - uid: 30311
+ - uid: 30370
components:
- rot: 1.5707963267948966 rad
pos: -41.5,36.5
parent: 2
type: Transform
- - uid: 30312
+ - uid: 30371
components:
- rot: 1.5707963267948966 rad
pos: -42.5,36.5
parent: 2
type: Transform
- - uid: 30313
+ - uid: 30372
components:
- rot: 1.5707963267948966 rad
pos: -43.5,36.5
parent: 2
type: Transform
- - uid: 30314
+ - uid: 30373
components:
- rot: 1.5707963267948966 rad
pos: -44.5,36.5
parent: 2
type: Transform
- - uid: 30315
+ - uid: 30374
components:
- rot: 1.5707963267948966 rad
pos: -44.5,37.5
parent: 2
type: Transform
- - uid: 30316
+ - uid: 30375
components:
- rot: 1.5707963267948966 rad
pos: -47.5,37.5
parent: 2
type: Transform
- - uid: 30317
+ - uid: 30376
components:
- rot: 1.5707963267948966 rad
pos: -39.5,35.5
parent: 2
type: Transform
- - uid: 30318
+ - uid: 30377
components:
- rot: 1.5707963267948966 rad
pos: -39.5,36.5
parent: 2
type: Transform
- - uid: 30319
+ - uid: 30378
components:
- pos: -37.5,26.5
parent: 2
type: Transform
- - uid: 30320
+ - uid: 30379
components:
- pos: -36.5,26.5
parent: 2
type: Transform
- - uid: 30321
+ - uid: 30380
components:
- pos: -25.5,38.5
parent: 2
type: Transform
- - uid: 30322
+ - uid: 30381
components:
- pos: -38.5,26.5
parent: 2
type: Transform
- - uid: 30323
+ - uid: 30382
components:
- pos: -39.5,26.5
parent: 2
type: Transform
- - uid: 30324
+ - uid: 30383
components:
- pos: -39.5,27.5
parent: 2
type: Transform
- - uid: 30325
+ - uid: 30384
components:
- pos: -39.5,28.5
parent: 2
type: Transform
- - uid: 30326
+ - uid: 30385
components:
- pos: -39.5,30.5
parent: 2
type: Transform
- - uid: 30327
+ - uid: 30386
components:
- pos: -39.5,34.5
parent: 2
type: Transform
- - uid: 30328
+ - uid: 30387
components:
- pos: -30.5,-1.5
parent: 2
type: Transform
- - uid: 30329
+ - uid: 30388
components:
- pos: -31.5,-1.5
parent: 2
type: Transform
- - uid: 30330
+ - uid: 30389
components:
- pos: -32.5,-1.5
parent: 2
type: Transform
- - uid: 30331
+ - uid: 30390
components:
- pos: -32.5,-2.5
parent: 2
type: Transform
- - uid: 30332
+ - uid: 30391
components:
- pos: -29.5,2.5
parent: 2
type: Transform
- - uid: 30333
+ - uid: 30392
components:
- pos: -30.5,2.5
parent: 2
type: Transform
- - uid: 30334
+ - uid: 30393
components:
- pos: -31.5,2.5
parent: 2
type: Transform
- - uid: 30335
+ - uid: 30394
components:
- pos: -32.5,2.5
parent: 2
type: Transform
- - uid: 30336
+ - uid: 30395
components:
- pos: -33.5,2.5
parent: 2
type: Transform
- - uid: 30337
+ - uid: 30396
components:
- pos: -34.5,-1.5
parent: 2
type: Transform
- - uid: 30338
+ - uid: 30397
components:
- rot: 3.141592653589793 rad
pos: -25.5,16.5
parent: 2
type: Transform
- - uid: 30339
+ - uid: 30398
components:
- pos: -22.5,16.5
parent: 2
type: Transform
- - uid: 30340
+ - uid: 30399
components:
- pos: -16.5,22.5
parent: 2
type: Transform
- - uid: 30341
+ - uid: 30400
components:
- pos: -15.5,22.5
parent: 2
type: Transform
- - uid: 30342
+ - uid: 30401
components:
- pos: -14.5,22.5
parent: 2
type: Transform
- - uid: 30343
+ - uid: 30402
components:
- rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 2
type: Transform
- - uid: 30344
+ - uid: 30403
components:
- pos: -13.5,25.5
parent: 2
type: Transform
- - uid: 30345
+ - uid: 30404
components:
- rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 2
type: Transform
- - uid: 30346
+ - uid: 30405
components:
- rot: 3.141592653589793 rad
pos: -48.5,17.5
parent: 2
type: Transform
- - uid: 30347
+ - uid: 30406
components:
- rot: 3.141592653589793 rad
pos: -47.5,17.5
parent: 2
type: Transform
- - uid: 30348
+ - uid: 30407
components:
- rot: 3.141592653589793 rad
pos: -29.5,-4.5
parent: 2
type: Transform
- - uid: 30349
+ - uid: 30408
components:
- rot: 3.141592653589793 rad
pos: -29.5,-6.5
parent: 2
type: Transform
- - uid: 30350
+ - uid: 30409
components:
- rot: 3.141592653589793 rad
pos: -29.5,-8.5
parent: 2
type: Transform
- - uid: 30351
+ - uid: 30410
components:
- rot: 3.141592653589793 rad
pos: -28.5,-8.5
parent: 2
type: Transform
- - uid: 30352
+ - uid: 30411
components:
- rot: 3.141592653589793 rad
pos: -27.5,-8.5
parent: 2
type: Transform
- - uid: 30353
+ - uid: 30412
components:
- rot: 3.141592653589793 rad
pos: -28.5,-4.5
parent: 2
type: Transform
- - uid: 30354
+ - uid: 30413
components:
- rot: -1.5707963267948966 rad
pos: -35.5,-1.5
parent: 2
type: Transform
- - uid: 30355
+ - uid: 30414
components:
- rot: -1.5707963267948966 rad
pos: -36.5,-1.5
parent: 2
type: Transform
- - uid: 30356
+ - uid: 30415
components:
- rot: -1.5707963267948966 rad
pos: -38.5,-1.5
parent: 2
type: Transform
- - uid: 30357
+ - uid: 30416
components:
- rot: -1.5707963267948966 rad
pos: -39.5,-1.5
parent: 2
type: Transform
- - uid: 30358
+ - uid: 30417
components:
- rot: -1.5707963267948966 rad
pos: -40.5,-1.5
parent: 2
type: Transform
- - uid: 30359
+ - uid: 30418
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-1.5
parent: 2
type: Transform
- - uid: 30360
+ - uid: 30419
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-1.5
parent: 2
type: Transform
- - uid: 30361
+ - uid: 30420
components:
- pos: -42.5,2.5
parent: 2
type: Transform
- - uid: 30362
+ - uid: 30421
components:
- pos: -43.5,2.5
parent: 2
type: Transform
- - uid: 30363
+ - uid: 30422
components:
- pos: -42.5,3.5
parent: 2
type: Transform
- - uid: 30364
+ - uid: 30423
components:
- pos: -42.5,4.5
parent: 2
type: Transform
- - uid: 30365
+ - uid: 30424
components:
- pos: -42.5,5.5
parent: 2
type: Transform
- - uid: 30366
+ - uid: 30425
components:
- pos: -42.5,6.5
parent: 2
type: Transform
- - uid: 30367
+ - uid: 30426
components:
- pos: -42.5,7.5
parent: 2
type: Transform
- - uid: 30368
+ - uid: 30427
components:
- pos: -41.5,11.5
parent: 2
type: Transform
- - uid: 30369
+ - uid: 30428
components:
- pos: -41.5,10.5
parent: 2
type: Transform
- - uid: 30370
+ - uid: 30429
components:
- pos: -41.5,9.5
parent: 2
type: Transform
- - uid: 30371
+ - uid: 30430
components:
- pos: -41.5,8.5
parent: 2
type: Transform
- - uid: 30372
+ - uid: 30431
components:
- pos: -34.5,12.5
parent: 2
type: Transform
- - uid: 30373
+ - uid: 30432
components:
- pos: -34.5,11.5
parent: 2
type: Transform
- - uid: 30374
+ - uid: 30433
components:
- pos: -34.5,10.5
parent: 2
type: Transform
- - uid: 30375
+ - uid: 30434
components:
- pos: -33.5,3.5
parent: 2
type: Transform
- - uid: 30376
+ - uid: 30435
components:
- pos: -33.5,4.5
parent: 2
type: Transform
- - uid: 30377
+ - uid: 30436
components:
- pos: -33.5,5.5
parent: 2
type: Transform
- - uid: 30378
+ - uid: 30437
components:
- pos: -33.5,6.5
parent: 2
type: Transform
- - uid: 30379
+ - uid: 30438
components:
- pos: -33.5,7.5
parent: 2
type: Transform
- - uid: 30380
+ - uid: 30439
components:
- pos: -43.5,15.5
parent: 2
type: Transform
- - uid: 30381
+ - uid: 30440
components:
- pos: -33.5,12.5
parent: 2
type: Transform
- - uid: 30382
+ - uid: 30441
components:
- pos: -42.5,12.5
parent: 2
type: Transform
- - uid: 30383
+ - uid: 30442
components:
- pos: -32.5,12.5
parent: 2
type: Transform
- - uid: 30384
+ - uid: 30443
components:
- pos: -41.5,7.5
parent: 2
type: Transform
- - uid: 30385
+ - uid: 30444
components:
- pos: -40.5,7.5
parent: 2
type: Transform
- - uid: 30386
+ - uid: 30445
components:
- pos: -35.5,7.5
parent: 2
type: Transform
- - uid: 30387
+ - uid: 30446
components:
- pos: -34.5,7.5
parent: 2
type: Transform
- - uid: 30388
+ - uid: 30447
components:
- rot: 3.141592653589793 rad
pos: -41.5,14.5
parent: 2
type: Transform
- - uid: 30389
+ - uid: 30448
components:
- pos: -43.5,12.5
parent: 2
type: Transform
- - uid: 30390
+ - uid: 30449
components:
- pos: -43.5,13.5
parent: 2
type: Transform
- - uid: 30391
+ - uid: 30450
components:
- pos: -32.5,15.5
parent: 2
type: Transform
- - uid: 30392
+ - uid: 30451
components:
- pos: -41.5,12.5
parent: 2
type: Transform
- - uid: 30393
+ - uid: 30452
components:
- pos: -29.5,11.5
parent: 2
type: Transform
- - uid: 30394
+ - uid: 30453
components:
- pos: -34.5,8.5
parent: 2
type: Transform
- - uid: 30395
+ - uid: 30454
components:
- pos: -33.5,-1.5
parent: 2
type: Transform
- - uid: 30396
+ - uid: 30455
components:
- pos: -34.5,9.5
parent: 2
type: Transform
- - uid: 30397
+ - uid: 30456
components:
- rot: 3.141592653589793 rad
pos: -32.5,13.5
parent: 2
type: Transform
- - uid: 30398
+ - uid: 30457
components:
- rot: 3.141592653589793 rad
pos: -41.5,13.5
parent: 2
type: Transform
- - uid: 30399
+ - uid: 30458
components:
- rot: 3.141592653589793 rad
pos: -41.5,16.5
parent: 2
type: Transform
- - uid: 30400
+ - uid: 30459
components:
- rot: 3.141592653589793 rad
pos: -41.5,14.5
parent: 2
type: Transform
- - uid: 30401
+ - uid: 30460
components:
- pos: -43.5,-1.5
parent: 2
type: Transform
- - uid: 30402
+ - uid: 30461
components:
- pos: -44.5,2.5
parent: 2
type: Transform
- - uid: 30403
+ - uid: 30462
components:
- pos: -44.5,-1.5
parent: 2
type: Transform
- - uid: 30404
+ - uid: 30463
components:
- pos: -32.5,11.5
parent: 2
type: Transform
- - uid: 30405
+ - uid: 30464
components:
- pos: -31.5,11.5
parent: 2
type: Transform
- - uid: 30406
+ - uid: 30465
components:
- rot: -1.5707963267948966 rad
pos: -41.5,16.5
parent: 2
type: Transform
- - uid: 30407
+ - uid: 30466
components:
- rot: 3.141592653589793 rad
pos: -40.5,17.5
parent: 2
type: Transform
- - uid: 30408
- components:
- - pos: -9.5,-19.5
- parent: 2
- type: Transform
- - uid: 30409
+ - uid: 30467
components:
- pos: -32.5,7.5
parent: 2
type: Transform
- - uid: 30410
+ - uid: 30468
components:
- pos: -31.5,7.5
parent: 2
type: Transform
- - uid: 30411
+ - uid: 30469
components:
- pos: -29.5,7.5
parent: 2
type: Transform
- - uid: 30412
+ - uid: 30470
components:
- rot: 3.141592653589793 rad
pos: -41.5,15.5
parent: 2
type: Transform
- - uid: 30413
+ - uid: 30471
components:
- rot: 1.5707963267948966 rad
pos: -48.5,2.5
parent: 2
type: Transform
- - uid: 30414
+ - uid: 30472
components:
- rot: 1.5707963267948966 rad
pos: -48.5,1.5
parent: 2
type: Transform
- - uid: 30415
+ - uid: 30473
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-0.5
parent: 2
type: Transform
- - uid: 30416
+ - uid: 30474
components:
- rot: 1.5707963267948966 rad
pos: -48.5,-1.5
parent: 2
type: Transform
- - uid: 30417
+ - uid: 30475
components:
- rot: 1.5707963267948966 rad
pos: -46.5,-1.5
parent: 2
type: Transform
- - uid: 30418
+ - uid: 30476
components:
- rot: 1.5707963267948966 rad
pos: -45.5,-1.5
parent: 2
type: Transform
- - uid: 30419
+ - uid: 30477
components:
- rot: 1.5707963267948966 rad
pos: -47.5,-1.5
parent: 2
type: Transform
- - uid: 30420
+ - uid: 30478
components:
- rot: 1.5707963267948966 rad
pos: -49.5,2.5
parent: 2
type: Transform
- - uid: 30421
+ - uid: 30479
components:
- rot: 1.5707963267948966 rad
pos: -50.5,2.5
parent: 2
type: Transform
- - uid: 30422
+ - uid: 30480
components:
- rot: 1.5707963267948966 rad
pos: -50.5,3.5
parent: 2
type: Transform
- - uid: 30423
+ - uid: 30481
components:
- rot: 1.5707963267948966 rad
pos: -50.5,4.5
parent: 2
type: Transform
- - uid: 30424
+ - uid: 30482
components:
- rot: 1.5707963267948966 rad
pos: -50.5,5.5
parent: 2
type: Transform
- - uid: 30425
+ - uid: 30483
components:
- rot: 1.5707963267948966 rad
pos: -50.5,6.5
parent: 2
type: Transform
- - uid: 30426
+ - uid: 30484
components:
- rot: 1.5707963267948966 rad
pos: -50.5,7.5
parent: 2
type: Transform
- - uid: 30427
+ - uid: 30485
components:
- rot: 1.5707963267948966 rad
pos: -50.5,8.5
parent: 2
type: Transform
- - uid: 30428
+ - uid: 30486
components:
- rot: 1.5707963267948966 rad
pos: -50.5,9.5
parent: 2
type: Transform
- - uid: 30429
+ - uid: 30487
components:
- rot: 1.5707963267948966 rad
pos: -49.5,9.5
parent: 2
type: Transform
- - uid: 30430
+ - uid: 30488
components:
- rot: 1.5707963267948966 rad
pos: -48.5,9.5
parent: 2
type: Transform
- - uid: 30431
+ - uid: 30489
components:
- rot: 1.5707963267948966 rad
pos: -47.5,9.5
parent: 2
type: Transform
- - uid: 30432
+ - uid: 30490
components:
- rot: 1.5707963267948966 rad
pos: -44.5,9.5
parent: 2
type: Transform
- - uid: 30433
+ - uid: 30491
components:
- rot: 1.5707963267948966 rad
pos: -43.5,9.5
parent: 2
type: Transform
- - uid: 30434
+ - uid: 30492
components:
- rot: 1.5707963267948966 rad
pos: -43.5,8.5
parent: 2
type: Transform
- - uid: 30435
+ - uid: 30493
components:
- rot: 1.5707963267948966 rad
pos: -43.5,7.5
parent: 2
type: Transform
- - uid: 30436
+ - uid: 30494
components:
- rot: 1.5707963267948966 rad
pos: -44.5,10.5
parent: 2
type: Transform
- - uid: 30437
+ - uid: 30495
components:
- rot: 1.5707963267948966 rad
pos: -44.5,12.5
parent: 2
type: Transform
- - uid: 30438
+ - uid: 30496
components:
- pos: -50.5,1.5
parent: 2
type: Transform
- - uid: 30439
+ - uid: 30497
components:
- pos: -50.5,0.5
parent: 2
type: Transform
- - uid: 30440
+ - uid: 30498
components:
- pos: -50.5,-0.5
parent: 2
type: Transform
- - uid: 30441
+ - uid: 30499
components:
- pos: -50.5,-1.5
parent: 2
type: Transform
- - uid: 30442
+ - uid: 30500
components:
- pos: -46.5,-3.5
parent: 2
type: Transform
- - uid: 30443
+ - uid: 30501
components:
- pos: -43.5,-2.5
parent: 2
type: Transform
- - uid: 30444
+ - uid: 30502
components:
- pos: -50.5,-2.5
parent: 2
type: Transform
- - uid: 30445
+ - uid: 30503
components:
- pos: -52.5,-1.5
parent: 2
type: Transform
- - uid: 30446
+ - uid: 30504
components:
- pos: -52.5,0.5
parent: 2
type: Transform
- - uid: 30447
+ - uid: 30505
components:
- pos: -52.5,-2.5
parent: 2
type: Transform
- - uid: 30448
+ - uid: 30506
components:
- pos: -54.5,-2.5
parent: 2
type: Transform
- - uid: 30449
+ - uid: 30507
components:
- rot: 3.141592653589793 rad
pos: -11.5,22.5
parent: 2
type: Transform
- - uid: 30450
+ - uid: 30508
components:
- pos: -56.5,-2.5
parent: 2
type: Transform
- - uid: 30451
+ - uid: 30509
components:
- pos: -55.5,-2.5
parent: 2
type: Transform
- - uid: 30452
+ - uid: 30510
components:
- pos: -52.5,1.5
parent: 2
type: Transform
- - uid: 30453
+ - uid: 30511
components:
- pos: -50.5,12.5
parent: 2
type: Transform
- - uid: 30454
+ - uid: 30512
components:
- pos: -50.5,13.5
parent: 2
type: Transform
- - uid: 30455
+ - uid: 30513
components:
- pos: -50.5,14.5
parent: 2
type: Transform
- - uid: 30456
+ - uid: 30514
components:
- pos: -50.5,15.5
parent: 2
type: Transform
- - uid: 30457
+ - uid: 30515
components:
- rot: 3.141592653589793 rad
pos: -52.5,12.5
parent: 2
type: Transform
- - uid: 30458
+ - uid: 30516
components:
- rot: 3.141592653589793 rad
pos: -52.5,5.5
parent: 2
type: Transform
- - uid: 30459
+ - uid: 30517
components:
- rot: 3.141592653589793 rad
pos: -51.5,9.5
parent: 2
type: Transform
- - uid: 30460
+ - uid: 30518
components:
- rot: 3.141592653589793 rad
pos: -51.5,5.5
parent: 2
type: Transform
- - uid: 30461
+ - uid: 30519
components:
- rot: 3.141592653589793 rad
pos: -46.5,17.5
parent: 2
type: Transform
- - uid: 30462
+ - uid: 30520
components:
- pos: -32.5,-3.5
parent: 2
type: Transform
- - uid: 30463
+ - uid: 30521
components:
- pos: 53.5,41.5
parent: 2
type: Transform
- - uid: 30464
+ - uid: 30522
components:
- pos: 64.5,0.5
parent: 2
type: Transform
- - uid: 30465
+ - uid: 30523
components:
- pos: 67.5,-12.5
parent: 2
type: Transform
- - uid: 30466
+ - uid: 30524
components:
- pos: 67.5,-4.5
parent: 2
type: Transform
- - uid: 30467
+ - uid: 30525
components:
- pos: 53.5,40.5
parent: 2
type: Transform
- - uid: 30468
+ - uid: 30526
components:
- pos: -17.5,36.5
parent: 2
type: Transform
- - uid: 30469
+ - uid: 30527
components:
- pos: -20.5,32.5
parent: 2
type: Transform
- - uid: 30470
+ - uid: 30528
components:
- pos: -21.5,32.5
parent: 2
type: Transform
- - uid: 30471
+ - uid: 30529
components:
- pos: -21.5,31.5
parent: 2
type: Transform
- - uid: 30472
+ - uid: 30530
components:
- rot: -1.5707963267948966 rad
pos: -22.5,32.5
parent: 2
type: Transform
- - uid: 30473
+ - uid: 30531
components:
- pos: -21.5,29.5
parent: 2
type: Transform
- - uid: 30474
+ - uid: 30532
components:
- pos: -21.5,28.5
parent: 2
type: Transform
- - uid: 30475
+ - uid: 30533
components:
- pos: -21.5,26.5
parent: 2
type: Transform
- - uid: 30476
+ - uid: 30534
components:
- pos: -17.5,28.5
parent: 2
type: Transform
- - uid: 30477
+ - uid: 30535
components:
- rot: -1.5707963267948966 rad
pos: -13.5,27.5
parent: 2
type: Transform
- - uid: 30478
+ - uid: 30536
components:
- rot: -1.5707963267948966 rad
pos: -13.5,23.5
parent: 2
type: Transform
- - uid: 30479
+ - uid: 30537
components:
- pos: -35.5,20.5
parent: 2
type: Transform
- - uid: 30480
+ - uid: 30538
components:
- pos: -0.5,10.5
parent: 2
type: Transform
- - uid: 30481
+ - uid: 30539
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-11.5
parent: 2
type: Transform
- - uid: 30482
+ - uid: 30540
components:
- pos: 5.5,-55.5
parent: 2
type: Transform
- - uid: 30483
+ - uid: 30541
components:
- pos: 59.5,-31.5
parent: 2
type: Transform
- - uid: 30484
+ - uid: 30542
components:
- rot: -1.5707963267948966 rad
pos: -0.5,-76.5
parent: 2
type: Transform
- - uid: 30485
+ - uid: 30543
components:
- pos: 19.5,-51.5
parent: 2
type: Transform
- - uid: 30486
+ - uid: 30544
components:
- pos: 22.5,-48.5
parent: 2
type: Transform
- - uid: 30487
+ - uid: 30545
components:
- rot: 3.141592653589793 rad
pos: -31.5,-53.5
parent: 2
type: Transform
- - uid: 30488
+ - uid: 30546
components:
- pos: -27.5,-55.5
parent: 2
type: Transform
- - uid: 30489
+ - uid: 30547
components:
- rot: 3.141592653589793 rad
pos: -17.5,8.5
parent: 2
type: Transform
- - uid: 30490
+ - uid: 30548
components:
- pos: -21.5,-6.5
parent: 2
type: Transform
- - uid: 30491
+ - uid: 30549
components:
- rot: 3.141592653589793 rad
pos: -44.5,17.5
parent: 2
type: Transform
- - uid: 30492
+ - uid: 30550
components:
- rot: 3.141592653589793 rad
pos: -31.5,-72.5
parent: 2
type: Transform
- - uid: 30493
+ - uid: 30551
components:
- pos: -30.5,-68.5
parent: 2
type: Transform
- - uid: 30494
+ - uid: 30552
components:
- pos: -26.5,-72.5
parent: 2
type: Transform
- - uid: 30495
+ - uid: 30553
components:
- pos: -26.5,-71.5
parent: 2
type: Transform
- - uid: 30496
+ - uid: 30554
components:
- pos: 6.5,-55.5
parent: 2
type: Transform
- - uid: 30497
+ - uid: 30555
components:
- pos: -17.5,32.5
parent: 2
type: Transform
- - uid: 30498
+ - uid: 30556
components:
- pos: -18.5,32.5
parent: 2
type: Transform
- - uid: 30499
+ - uid: 30557
components:
- pos: -19.5,32.5
parent: 2
type: Transform
- - uid: 30500
+ - uid: 30558
components:
- pos: 44.5,47.5
parent: 2
type: Transform
- - uid: 30501
+ - uid: 30559
components:
- pos: 44.5,48.5
parent: 2
type: Transform
- - uid: 30502
+ - uid: 30560
components:
- pos: 53.5,39.5
parent: 2
type: Transform
- - uid: 30503
+ - uid: 30561
components:
- pos: 53.5,38.5
parent: 2
type: Transform
- - uid: 30504
+ - uid: 30562
components:
- pos: 52.5,38.5
parent: 2
type: Transform
- - uid: 30505
+ - uid: 30563
components:
- pos: 51.5,38.5
parent: 2
type: Transform
- - uid: 30506
+ - uid: 30564
components:
- pos: 50.5,38.5
parent: 2
type: Transform
- - uid: 30507
+ - uid: 30565
components:
- pos: 55.5,36.5
parent: 2
type: Transform
- - uid: 30508
+ - uid: 30566
components:
- pos: 55.5,35.5
parent: 2
type: Transform
- - uid: 30509
+ - uid: 30567
components:
- pos: 55.5,34.5
parent: 2
type: Transform
- - uid: 30510
+ - uid: 30568
components:
- pos: 54.5,34.5
parent: 2
type: Transform
- - uid: 30511
+ - uid: 30569
components:
- pos: 53.5,34.5
parent: 2
type: Transform
- - uid: 30512
+ - uid: 30570
components:
- pos: 51.5,34.5
parent: 2
type: Transform
- - uid: 30513
+ - uid: 30571
components:
- pos: 50.5,34.5
parent: 2
type: Transform
- - uid: 30514
+ - uid: 30572
components:
- pos: 50.5,35.5
parent: 2
type: Transform
- - uid: 30515
+ - uid: 30573
components:
- pos: 50.5,36.5
parent: 2
type: Transform
- - uid: 30516
+ - uid: 30574
components:
- pos: 50.5,37.5
parent: 2
type: Transform
- - uid: 30517
+ - uid: 30575
components:
- pos: 51.5,33.5
parent: 2
type: Transform
- - uid: 30518
+ - uid: 30576
components:
- pos: 51.5,32.5
parent: 2
type: Transform
- - uid: 30519
+ - uid: 30577
components:
- pos: 53.5,33.5
parent: 2
type: Transform
- - uid: 30520
+ - uid: 30578
components:
- pos: 53.5,32.5
parent: 2
type: Transform
- - uid: 30521
+ - uid: 30579
components:
- pos: 53.5,31.5
parent: 2
type: Transform
- - uid: 30522
+ - uid: 30580
components:
- pos: 53.5,30.5
parent: 2
type: Transform
- - uid: 30523
+ - uid: 30581
components:
- pos: 52.5,30.5
parent: 2
type: Transform
- - uid: 30524
+ - uid: 30582
components:
- pos: 51.5,30.5
parent: 2
type: Transform
- - uid: 30525
+ - uid: 30583
components:
- pos: 49.5,30.5
parent: 2
type: Transform
- - uid: 30526
+ - uid: 30584
components:
- pos: 50.5,30.5
parent: 2
type: Transform
- - uid: 30527
+ - uid: 30585
components:
- pos: 49.5,34.5
parent: 2
type: Transform
- - uid: 30528
+ - uid: 30586
components:
- pos: 48.5,34.5
parent: 2
type: Transform
- - uid: 30529
+ - uid: 30587
components:
- pos: 47.5,30.5
parent: 2
type: Transform
- - uid: 30530
+ - uid: 30588
components:
- pos: 47.5,29.5
parent: 2
type: Transform
- - uid: 30531
+ - uid: 30589
components:
- pos: 47.5,28.5
parent: 2
type: Transform
- - uid: 30532
+ - uid: 30590
components:
- pos: 47.5,27.5
parent: 2
type: Transform
- - uid: 30533
+ - uid: 30591
components:
- pos: 49.5,27.5
parent: 2
type: Transform
- - uid: 30534
+ - uid: 30592
components:
- pos: 50.5,27.5
parent: 2
type: Transform
- - uid: 30535
+ - uid: 30593
components:
- pos: 51.5,27.5
parent: 2
type: Transform
- - uid: 30536
+ - uid: 30594
components:
- pos: 51.5,28.5
parent: 2
type: Transform
- - uid: 30537
+ - uid: 30595
components:
- pos: 51.5,29.5
parent: 2
type: Transform
- - uid: 30538
+ - uid: 30596
components:
- pos: 60.5,27.5
parent: 2
type: Transform
- - uid: 30539
+ - uid: 30597
components:
- pos: 59.5,27.5
parent: 2
type: Transform
- - uid: 30540
+ - uid: 30598
components:
- pos: 57.5,27.5
parent: 2
type: Transform
- - uid: 30541
+ - uid: 30599
components:
- pos: 56.5,27.5
parent: 2
type: Transform
- - uid: 30542
+ - uid: 30600
components:
- pos: 61.5,29.5
parent: 2
type: Transform
- - uid: 30543
+ - uid: 30601
components:
- pos: 61.5,28.5
parent: 2
type: Transform
- - uid: 30544
+ - uid: 30602
components:
- pos: 61.5,27.5
parent: 2
type: Transform
- - uid: 30545
+ - uid: 30603
components:
- pos: 59.5,30.5
parent: 2
type: Transform
- - uid: 30546
+ - uid: 30604
components:
- pos: 58.5,30.5
parent: 2
type: Transform
- - uid: 30547
+ - uid: 30605
components:
- pos: 56.5,30.5
parent: 2
type: Transform
- - uid: 30548
+ - uid: 30606
components:
- pos: 56.5,29.5
parent: 2
type: Transform
- - uid: 30549
+ - uid: 30607
components:
- pos: 56.5,28.5
parent: 2
type: Transform
- - uid: 30550
+ - uid: 30608
components:
- pos: 54.5,30.5
parent: 2
type: Transform
- - uid: 30551
+ - uid: 30609
components:
- pos: 55.5,30.5
parent: 2
type: Transform
- - uid: 30552
+ - uid: 30610
components:
- rot: -1.5707963267948966 rad
pos: 49.5,29.5
parent: 2
type: Transform
- - uid: 30553
+ - uid: 30611
components:
- rot: 3.141592653589793 rad
pos: -11.5,23.5
parent: 2
type: Transform
- - uid: 30554
+ - uid: 30612
components:
- rot: -1.5707963267948966 rad
pos: -23.5,32.5
parent: 2
type: Transform
- - uid: 30555
+ - uid: 30613
components:
- rot: -1.5707963267948966 rad
pos: -24.5,32.5
parent: 2
type: Transform
- - uid: 30556
+ - uid: 30614
components:
- rot: -1.5707963267948966 rad
pos: -25.5,32.5
parent: 2
type: Transform
- - uid: 30557
+ - uid: 30615
components:
- rot: -1.5707963267948966 rad
pos: -22.5,28.5
parent: 2
type: Transform
- - uid: 30558
+ - uid: 30616
components:
- rot: -1.5707963267948966 rad
pos: -23.5,28.5
parent: 2
type: Transform
- - uid: 30559
+ - uid: 30617
components:
- rot: -1.5707963267948966 rad
pos: -24.5,28.5
parent: 2
type: Transform
- - uid: 30560
+ - uid: 30618
components:
- rot: -1.5707963267948966 rad
pos: -25.5,28.5
parent: 2
type: Transform
- - uid: 30561
+ - uid: 30619
components:
- rot: -1.5707963267948966 rad
pos: -25.5,31.5
parent: 2
type: Transform
- - uid: 30562
+ - uid: 30620
components:
- rot: -1.5707963267948966 rad
pos: -25.5,30.5
parent: 2
type: Transform
- - uid: 30563
+ - uid: 30621
components:
- rot: -1.5707963267948966 rad
pos: -25.5,29.5
parent: 2
type: Transform
- - uid: 30564
+ - uid: 30622
components:
- rot: -1.5707963267948966 rad
pos: -20.5,36.5
parent: 2
type: Transform
- - uid: 30565
+ - uid: 30623
components:
- rot: -1.5707963267948966 rad
pos: -19.5,36.5
parent: 2
type: Transform
- - uid: 30566
+ - uid: 30624
components:
- rot: -1.5707963267948966 rad
pos: -21.5,36.5
parent: 2
type: Transform
- - uid: 30567
+ - uid: 30625
components:
- rot: -1.5707963267948966 rad
pos: -22.5,36.5
parent: 2
type: Transform
- - uid: 30568
+ - uid: 30626
components:
- rot: -1.5707963267948966 rad
pos: -22.5,35.5
parent: 2
type: Transform
- - uid: 30569
+ - uid: 30627
components:
- rot: -1.5707963267948966 rad
pos: -22.5,33.5
parent: 2
type: Transform
- - uid: 30570
+ - uid: 30628
components:
- rot: -1.5707963267948966 rad
pos: -26.5,29.5
parent: 2
type: Transform
- - uid: 30571
+ - uid: 30629
components:
- rot: -1.5707963267948966 rad
pos: -27.5,29.5
parent: 2
type: Transform
- - uid: 30572
+ - uid: 30630
components:
- rot: -1.5707963267948966 rad
pos: -27.5,30.5
parent: 2
type: Transform
- - uid: 30573
+ - uid: 30631
components:
- rot: -1.5707963267948966 rad
pos: -18.5,37.5
parent: 2
type: Transform
- - uid: 30574
+ - uid: 30632
components:
- rot: -1.5707963267948966 rad
pos: -17.5,39.5
parent: 2
type: Transform
- - uid: 30575
+ - uid: 30633
components:
- rot: -1.5707963267948966 rad
pos: -18.5,39.5
parent: 2
type: Transform
- - uid: 30576
+ - uid: 30634
components:
- rot: -1.5707963267948966 rad
pos: -19.5,39.5
parent: 2
type: Transform
- - uid: 30577
+ - uid: 30635
components:
- rot: -1.5707963267948966 rad
pos: -9.5,31.5
parent: 2
type: Transform
- - uid: 30578
+ - uid: 30636
components:
- rot: -1.5707963267948966 rad
pos: -9.5,32.5
parent: 2
type: Transform
- - uid: 30579
+ - uid: 30637
components:
- rot: -1.5707963267948966 rad
pos: -13.5,31.5
parent: 2
type: Transform
- - uid: 30580
+ - uid: 30638
components:
- rot: -1.5707963267948966 rad
pos: -13.5,32.5
parent: 2
type: Transform
- - uid: 30581
+ - uid: 30639
components:
- rot: -1.5707963267948966 rad
pos: -9.5,36.5
parent: 2
type: Transform
- - uid: 30582
+ - uid: 30640
components:
- rot: -1.5707963267948966 rad
pos: -8.5,36.5
parent: 2
type: Transform
- - uid: 30583
+ - uid: 30641
components:
- rot: -1.5707963267948966 rad
pos: -13.5,40.5
parent: 2
type: Transform
- - uid: 30584
+ - uid: 30642
components:
- rot: -1.5707963267948966 rad
pos: -12.5,40.5
parent: 2
type: Transform
- - uid: 30585
+ - uid: 30643
components:
- rot: -1.5707963267948966 rad
pos: -11.5,40.5
parent: 2
type: Transform
- - uid: 30586
+ - uid: 30644
components:
- rot: -1.5707963267948966 rad
pos: -10.5,35.5
parent: 2
type: Transform
- - uid: 30587
+ - uid: 30645
components:
- rot: -1.5707963267948966 rad
pos: -19.5,52.5
parent: 2
type: Transform
- - uid: 30588
+ - uid: 30646
components:
- rot: -1.5707963267948966 rad
pos: -10.5,40.5
parent: 2
type: Transform
- - uid: 30589
+ - uid: 30647
components:
- rot: -1.5707963267948966 rad
pos: -9.5,40.5
parent: 2
type: Transform
- - uid: 30590
+ - uid: 30648
components:
- rot: -1.5707963267948966 rad
pos: -8.5,40.5
parent: 2
type: Transform
- - uid: 30591
+ - uid: 30649
components:
- rot: -1.5707963267948966 rad
pos: -10.5,36.5
parent: 2
type: Transform
- - uid: 30592
+ - uid: 30650
components:
- rot: -1.5707963267948966 rad
pos: -11.5,36.5
parent: 2
type: Transform
- - uid: 30593
+ - uid: 30651
components:
- rot: -1.5707963267948966 rad
pos: -12.5,36.5
parent: 2
type: Transform
- - uid: 30594
+ - uid: 30652
components:
- rot: -1.5707963267948966 rad
pos: -16.5,64.5
parent: 2
type: Transform
- - uid: 30595
+ - uid: 30653
components:
- rot: -1.5707963267948966 rad
pos: -15.5,64.5
parent: 2
type: Transform
- - uid: 30596
+ - uid: 30654
components:
- rot: -1.5707963267948966 rad
pos: -14.5,64.5
parent: 2
type: Transform
- - uid: 30597
+ - uid: 30655
components:
- rot: -1.5707963267948966 rad
pos: -18.5,64.5
parent: 2
type: Transform
- - uid: 30598
+ - uid: 30656
components:
- rot: -1.5707963267948966 rad
pos: -19.5,64.5
parent: 2
type: Transform
- - uid: 30599
+ - uid: 30657
components:
- rot: -1.5707963267948966 rad
pos: -20.5,64.5
parent: 2
type: Transform
- - uid: 30600
+ - uid: 30658
components:
- rot: -1.5707963267948966 rad
pos: -14.5,63.5
parent: 2
type: Transform
- - uid: 30601
+ - uid: 30659
components:
- rot: -1.5707963267948966 rad
pos: -14.5,61.5
parent: 2
type: Transform
- - uid: 30602
+ - uid: 30660
components:
- rot: -1.5707963267948966 rad
pos: -14.5,60.5
parent: 2
type: Transform
- - uid: 30603
+ - uid: 30661
components:
- rot: -1.5707963267948966 rad
pos: -20.5,63.5
parent: 2
type: Transform
- - uid: 30604
+ - uid: 30662
components:
- rot: -1.5707963267948966 rad
pos: -20.5,61.5
parent: 2
type: Transform
- - uid: 30605
+ - uid: 30663
components:
- rot: -1.5707963267948966 rad
pos: -20.5,60.5
parent: 2
type: Transform
- - uid: 30606
+ - uid: 30664
components:
- rot: -1.5707963267948966 rad
pos: -11.5,62.5
parent: 2
type: Transform
- - uid: 30607
+ - uid: 30665
components:
- rot: -1.5707963267948966 rad
pos: -11.5,61.5
parent: 2
type: Transform
- - uid: 30608
+ - uid: 30666
components:
- rot: -1.5707963267948966 rad
pos: -11.5,60.5
parent: 2
type: Transform
- - uid: 30609
+ - uid: 30667
components:
- rot: -1.5707963267948966 rad
pos: -20.5,59.5
parent: 2
type: Transform
- - uid: 30610
+ - uid: 30668
components:
- rot: -1.5707963267948966 rad
pos: -18.5,59.5
parent: 2
type: Transform
- - uid: 30611
+ - uid: 30669
components:
- rot: -1.5707963267948966 rad
pos: -18.5,58.5
parent: 2
type: Transform
- - uid: 30612
+ - uid: 30670
components:
- rot: -1.5707963267948966 rad
pos: -18.5,57.5
parent: 2
type: Transform
- - uid: 30613
+ - uid: 30671
components:
- rot: -1.5707963267948966 rad
pos: -11.5,57.5
parent: 2
type: Transform
- - uid: 30614
+ - uid: 30672
components:
- rot: -1.5707963267948966 rad
pos: -20.5,58.5
parent: 2
type: Transform
- - uid: 30615
+ - uid: 30673
components:
- rot: -1.5707963267948966 rad
pos: -20.5,57.5
parent: 2
type: Transform
- - uid: 30616
+ - uid: 30674
components:
- rot: -1.5707963267948966 rad
pos: -18.5,56.5
parent: 2
type: Transform
- - uid: 30617
+ - uid: 30675
components:
- rot: 1.5707963267948966 rad
pos: -19.5,57.5
parent: 2
type: Transform
- - uid: 30618
+ - uid: 30676
components:
- rot: -1.5707963267948966 rad
pos: -20.5,56.5
parent: 2
type: Transform
- - uid: 30619
+ - uid: 30677
components:
- rot: -1.5707963267948966 rad
pos: -20.5,54.5
parent: 2
type: Transform
- - uid: 30620
+ - uid: 30678
components:
- rot: -1.5707963267948966 rad
pos: -18.5,54.5
parent: 2
type: Transform
- - uid: 30621
+ - uid: 30679
components:
- rot: -1.5707963267948966 rad
pos: -18.5,53.5
parent: 2
type: Transform
- - uid: 30622
+ - uid: 30680
components:
- rot: -1.5707963267948966 rad
pos: -18.5,52.5
parent: 2
type: Transform
- - uid: 30623
+ - uid: 30681
components:
- rot: -1.5707963267948966 rad
pos: -22.5,49.5
parent: 2
type: Transform
- - uid: 30624
+ - uid: 30682
components:
- rot: -1.5707963267948966 rad
pos: -23.5,54.5
parent: 2
type: Transform
- - uid: 30625
+ - uid: 30683
components:
- rot: -1.5707963267948966 rad
pos: -23.5,55.5
parent: 2
type: Transform
- - uid: 30626
+ - uid: 30684
components:
- rot: -1.5707963267948966 rad
pos: -11.5,56.5
parent: 2
type: Transform
- - uid: 30627
+ - uid: 30685
components:
- rot: -1.5707963267948966 rad
pos: -11.5,55.5
parent: 2
type: Transform
- - uid: 30628
+ - uid: 30686
components:
- rot: -1.5707963267948966 rad
pos: -11.5,54.5
parent: 2
type: Transform
- - uid: 30629
+ - uid: 30687
components:
- rot: -1.5707963267948966 rad
pos: -20.5,53.5
parent: 2
type: Transform
- - uid: 30630
+ - uid: 30688
components:
- rot: -1.5707963267948966 rad
pos: -20.5,52.5
parent: 2
type: Transform
- - uid: 30631
+ - uid: 30689
components:
- rot: -1.5707963267948966 rad
pos: -23.5,53.5
parent: 2
type: Transform
- - uid: 30632
+ - uid: 30690
components:
- rot: -1.5707963267948966 rad
pos: -23.5,52.5
parent: 2
type: Transform
- - uid: 30633
+ - uid: 30691
components:
- rot: -1.5707963267948966 rad
pos: -23.5,49.5
parent: 2
type: Transform
- - uid: 30634
+ - uid: 30692
components:
- rot: -1.5707963267948966 rad
pos: -23.5,50.5
parent: 2
type: Transform
- - uid: 30635
+ - uid: 30693
components:
- rot: -1.5707963267948966 rad
pos: -23.5,51.5
parent: 2
type: Transform
- - uid: 30636
+ - uid: 30694
components:
- rot: -1.5707963267948966 rad
pos: -11.5,50.5
parent: 2
type: Transform
- - uid: 30637
+ - uid: 30695
components:
- rot: -1.5707963267948966 rad
pos: -11.5,49.5
parent: 2
type: Transform
- - uid: 30638
+ - uid: 30696
components:
- rot: -1.5707963267948966 rad
pos: -14.5,48.5
parent: 2
type: Transform
- - uid: 30639
+ - uid: 30697
components:
- rot: -1.5707963267948966 rad
pos: -11.5,48.5
parent: 2
type: Transform
- - uid: 30640
+ - uid: 30698
components:
- rot: -1.5707963267948966 rad
pos: -12.5,48.5
parent: 2
type: Transform
- - uid: 30641
+ - uid: 30699
components:
- rot: -1.5707963267948966 rad
pos: -15.5,49.5
parent: 2
type: Transform
- - uid: 30642
+ - uid: 30700
components:
- rot: -1.5707963267948966 rad
pos: -19.5,49.5
parent: 2
type: Transform
- - uid: 30643
+ - uid: 30701
components:
- rot: -1.5707963267948966 rad
pos: -19.5,48.5
parent: 2
type: Transform
- - uid: 30644
+ - uid: 30702
components:
- rot: -1.5707963267948966 rad
pos: -19.5,47.5
parent: 2
type: Transform
- - uid: 30645
+ - uid: 30703
components:
- rot: -1.5707963267948966 rad
pos: -19.5,46.5
parent: 2
type: Transform
- - uid: 30646
+ - uid: 30704
components:
- rot: -1.5707963267948966 rad
pos: -19.5,40.5
parent: 2
type: Transform
- - uid: 30647
+ - uid: 30705
components:
- rot: -1.5707963267948966 rad
pos: -15.5,48.5
parent: 2
type: Transform
- - uid: 30648
+ - uid: 30706
components:
- rot: -1.5707963267948966 rad
pos: -13.5,43.5
parent: 2
type: Transform
- - uid: 30649
+ - uid: 30707
components:
- rot: -1.5707963267948966 rad
pos: -13.5,42.5
parent: 2
type: Transform
- - uid: 30650
+ - uid: 30708
components:
- pos: -25.5,37.5
parent: 2
type: Transform
- - uid: 30651
+ - uid: 30709
components:
- pos: -25.5,36.5
parent: 2
type: Transform
- - uid: 30652
+ - uid: 30710
components:
- pos: -26.5,36.5
parent: 2
type: Transform
- - uid: 30653
+ - uid: 30711
components:
- pos: -25.5,39.5
parent: 2
type: Transform
- - uid: 30654
+ - uid: 30712
components:
- pos: -25.5,40.5
parent: 2
type: Transform
- - uid: 30655
+ - uid: 30713
components:
- pos: -44.5,38.5
parent: 2
type: Transform
- - uid: 30656
+ - uid: 30714
components:
- pos: -30.5,37.5
parent: 2
type: Transform
- - uid: 30657
+ - uid: 30715
components:
- pos: -31.5,37.5
parent: 2
type: Transform
- - uid: 30658
+ - uid: 30716
components:
- pos: -33.5,37.5
parent: 2
type: Transform
- - uid: 30659
+ - uid: 30717
components:
- pos: -33.5,38.5
parent: 2
type: Transform
- - uid: 30660
+ - uid: 30718
components:
- pos: -34.5,38.5
parent: 2
type: Transform
- - uid: 30661
+ - uid: 30719
components:
- pos: -35.5,36.5
parent: 2
type: Transform
- - uid: 30662
+ - uid: 30720
components:
- pos: -37.5,38.5
parent: 2
type: Transform
- - uid: 30663
+ - uid: 30721
components:
- pos: -38.5,38.5
parent: 2
type: Transform
- - uid: 30664
+ - uid: 30722
components:
- rot: 3.141592653589793 rad
pos: 67.5,9.5
parent: 2
type: Transform
- - uid: 30665
+ - uid: 30723
components:
- pos: -44.5,13.5
parent: 2
type: Transform
- - uid: 30666
+ - uid: 30724
components:
- rot: -1.5707963267948966 rad
pos: -22.5,40.5
parent: 2
type: Transform
- - uid: 30667
+ - uid: 30725
components:
- rot: -1.5707963267948966 rad
pos: -21.5,40.5
parent: 2
type: Transform
- - uid: 30668
+ - uid: 30726
components:
- rot: -1.5707963267948966 rad
pos: -20.5,40.5
parent: 2
type: Transform
- - uid: 30669
+ - uid: 30727
components:
- pos: -23.5,40.5
parent: 2
type: Transform
- - uid: 30670
+ - uid: 30728
components:
- pos: -23.5,42.5
parent: 2
type: Transform
- - uid: 30671
+ - uid: 30729
components:
- pos: -23.5,43.5
parent: 2
type: Transform
- - uid: 30672
+ - uid: 30730
components:
- pos: -23.5,44.5
parent: 2
type: Transform
- - uid: 30673
+ - uid: 30731
components:
- pos: -23.5,45.5
parent: 2
type: Transform
- - uid: 30674
+ - uid: 30732
components:
- pos: -23.5,46.5
parent: 2
type: Transform
- - uid: 30675
+ - uid: 30733
components:
- pos: -22.5,46.5
parent: 2
type: Transform
- - uid: 30676
+ - uid: 30734
components:
- pos: -21.5,46.5
parent: 2
type: Transform
- - uid: 30677
+ - uid: 30735
components:
- pos: -20.5,46.5
parent: 2
type: Transform
- - uid: 30678
+ - uid: 30736
components:
- pos: -8.5,47.5
parent: 2
type: Transform
- - uid: 30679
+ - uid: 30737
components:
- pos: -7.5,47.5
parent: 2
type: Transform
- - uid: 30680
+ - uid: 30738
components:
- pos: -6.5,47.5
parent: 2
type: Transform
- - uid: 30681
+ - uid: 30739
components:
- pos: -2.5,47.5
parent: 2
type: Transform
- - uid: 30682
+ - uid: 30740
components:
- pos: -1.5,47.5
parent: 2
type: Transform
- - uid: 30683
+ - uid: 30741
components:
- pos: -1.5,48.5
parent: 2
type: Transform
- - uid: 30684
+ - uid: 30742
components:
- pos: -1.5,51.5
parent: 2
type: Transform
- - uid: 30685
+ - uid: 30743
components:
- pos: -1.5,52.5
parent: 2
type: Transform
- - uid: 30686
+ - uid: 30744
components:
- pos: -1.5,53.5
parent: 2
type: Transform
- - uid: 30687
+ - uid: 30745
components:
- pos: -1.5,54.5
parent: 2
type: Transform
- - uid: 30688
+ - uid: 30746
components:
- pos: 45.5,34.5
parent: 2
type: Transform
- - uid: 30689
+ - uid: 30747
components:
- rot: 3.141592653589793 rad
pos: 45.5,33.5
parent: 2
type: Transform
- - uid: 30690
+ - uid: 30748
components:
- rot: -1.5707963267948966 rad
pos: -4.5,57.5
parent: 2
type: Transform
- - uid: 30691
+ - uid: 30749
components:
- rot: -1.5707963267948966 rad
pos: -3.5,57.5
parent: 2
type: Transform
- - uid: 30692
+ - uid: 30750
components:
- rot: -1.5707963267948966 rad
pos: -2.5,57.5
parent: 2
type: Transform
- - uid: 30693
+ - uid: 30751
components:
- rot: -1.5707963267948966 rad
pos: -1.5,57.5
parent: 2
type: Transform
- - uid: 30694
+ - uid: 30752
components:
- rot: -1.5707963267948966 rad
pos: -1.5,56.5
parent: 2
type: Transform
- - uid: 30695
+ - uid: 30753
components:
- rot: -1.5707963267948966 rad
pos: -1.5,55.5
parent: 2
type: Transform
- - uid: 30696
+ - uid: 30754
components:
- rot: -1.5707963267948966 rad
pos: -9.5,60.5
parent: 2
type: Transform
- - uid: 30697
+ - uid: 30755
components:
- pos: 17.5,35.5
parent: 2
type: Transform
- - uid: 30698
+ - uid: 30756
components:
- pos: 15.5,35.5
parent: 2
type: Transform
- - uid: 30699
+ - uid: 30757
components:
- pos: -28.5,42.5
parent: 2
type: Transform
- - uid: 30700
+ - uid: 30758
components:
- pos: -27.5,42.5
parent: 2
type: Transform
- - uid: 30701
+ - uid: 30759
components:
- pos: -26.5,42.5
parent: 2
type: Transform
- - uid: 30702
+ - uid: 30760
components:
- pos: -39.5,37.5
parent: 2
type: Transform
- - uid: 30703
+ - uid: 30761
components:
- pos: -39.5,38.5
parent: 2
type: Transform
- - uid: 30704
+ - uid: 30762
components:
- pos: -36.5,38.5
parent: 2
type: Transform
- - uid: 30705
+ - uid: 30763
components:
- pos: -35.5,38.5
parent: 2
type: Transform
- - uid: 30706
+ - uid: 30764
components:
- pos: 40.5,49.5
parent: 2
type: Transform
- - uid: 30707
+ - uid: 30765
components:
- pos: 40.5,50.5
parent: 2
type: Transform
- - uid: 30708
+ - uid: 30766
components:
- pos: 44.5,46.5
parent: 2
type: Transform
- - uid: 30709
+ - uid: 30767
components:
- pos: 44.5,44.5
parent: 2
type: Transform
- - uid: 30710
+ - uid: 30768
components:
- pos: -23.5,48.5
parent: 2
type: Transform
- - uid: 30711
+ - uid: 30769
components:
- pos: 7.5,-31.5
parent: 2
type: Transform
- - uid: 30712
+ - uid: 30770
components:
- pos: 7.5,-29.5
parent: 2
type: Transform
- - uid: 30713
+ - uid: 30771
components:
- pos: 7.5,-30.5
parent: 2
type: Transform
- - uid: 30714
+ - uid: 30772
components:
- pos: -22.5,-17.5
parent: 2
type: Transform
- - uid: 30715
+ - uid: 30773
components:
- pos: -16.5,-96.5
parent: 2
type: Transform
- - uid: 30716
+ - uid: 30774
components:
- pos: -28.5,-96.5
parent: 2
type: Transform
- - uid: 30717
+ - uid: 30775
components:
- pos: -13.5,-98.5
parent: 2
type: Transform
- - uid: 30718
+ - uid: 30776
components:
- pos: -13.5,-96.5
parent: 2
type: Transform
- - uid: 30719
+ - uid: 30777
components:
- pos: -31.5,-98.5
parent: 2
type: Transform
- - uid: 30720
+ - uid: 30778
components:
- pos: -31.5,-96.5
parent: 2
type: Transform
- - uid: 30721
+ - uid: 30779
components:
- pos: -43.5,-93.5
parent: 2
type: Transform
- - uid: 30722
+ - uid: 30780
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-93.5
parent: 2
type: Transform
- - uid: 30723
+ - uid: 30781
components:
- rot: 1.5707963267948966 rad
pos: -40.5,-93.5
parent: 2
type: Transform
- - uid: 30724
+ - uid: 30782
components:
- rot: 3.141592653589793 rad
pos: -39.5,-94.5
parent: 2
type: Transform
- - uid: 30725
+ - uid: 30783
components:
- rot: 3.141592653589793 rad
pos: -39.5,-97.5
parent: 2
type: Transform
- - uid: 30726
+ - uid: 30784
components:
- pos: 16.5,-4.5
parent: 2
type: Transform
- - uid: 30727
+ - uid: 30785
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-8.5
parent: 2
type: Transform
- - uid: 30728
+ - uid: 30786
components:
- pos: -13.5,33.5
parent: 2
type: Transform
- - uid: 30729
+ - uid: 30787
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
type: Transform
- - uid: 30730
+ - uid: 30788
components:
- rot: -1.5707963267948966 rad
pos: -14.5,-12.5
parent: 2
type: Transform
- - uid: 30731
+ - uid: 30789
components:
- pos: 60.5,-28.5
parent: 2
type: Transform
- - uid: 30732
+ - uid: 30790
components:
- pos: 7.5,-35.5
parent: 2
type: Transform
- - uid: 30733
+ - uid: 30791
components:
- pos: 7.5,-32.5
parent: 2
type: Transform
- - uid: 30734
+ - uid: 30792
components:
- pos: 57.5,-62.5
parent: 2
type: Transform
- - uid: 30735
+ - uid: 30793
components:
- pos: 5.5,-35.5
parent: 2
type: Transform
- - uid: 30736
+ - uid: 30794
components:
- rot: -1.5707963267948966 rad
pos: 39.5,-34.5
parent: 2
type: Transform
- - uid: 30737
+ - uid: 30795
components:
- pos: 56.5,-62.5
parent: 2
type: Transform
- - uid: 30738
+ - uid: 30796
components:
- pos: 7.5,-33.5
parent: 2
type: Transform
- - uid: 30739
+ - uid: 30797
components:
- pos: 7.5,-34.5
parent: 2
type: Transform
- - uid: 30740
+ - uid: 30798
components:
- pos: 52.5,-33.5
parent: 2
type: Transform
- - uid: 30741
+ - uid: 30799
components:
- pos: 52.5,-34.5
parent: 2
type: Transform
- - uid: 30742
+ - uid: 30800
components:
- pos: 55.5,-62.5
parent: 2
type: Transform
- - uid: 30743
+ - uid: 30801
components:
- rot: -1.5707963267948966 rad
pos: 38.5,-34.5
parent: 2
type: Transform
- - uid: 30744
+ - uid: 30802
components:
- pos: 9.5,-38.5
parent: 2
type: Transform
- - uid: 30745
+ - uid: 30803
components:
- rot: 3.141592653589793 rad
pos: -16.5,-17.5
parent: 2
type: Transform
- - uid: 30746
+ - uid: 30804
components:
- rot: 3.141592653589793 rad
pos: -16.5,-19.5
parent: 2
type: Transform
- - uid: 30747
+ - uid: 30805
components:
- rot: 3.141592653589793 rad
pos: -14.5,-22.5
parent: 2
type: Transform
- - uid: 30748
+ - uid: 30806
components:
- pos: 73.5,-55.5
parent: 2
type: Transform
- - uid: 30749
+ - uid: 30807
components:
- pos: 52.5,-37.5
parent: 2
type: Transform
- - uid: 30750
+ - uid: 30808
components:
- rot: 1.5707963267948966 rad
pos: -57.5,-57.5
parent: 2
type: Transform
- - uid: 30751
+ - uid: 30809
components:
- pos: 60.5,-42.5
parent: 2
type: Transform
- - uid: 30752
+ - uid: 30810
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-40.5
parent: 2
type: Transform
- - uid: 30753
+ - uid: 30811
components:
- pos: 55.5,-33.5
parent: 2
type: Transform
- - uid: 30754
+ - uid: 30812
components:
- pos: 56.5,-36.5
parent: 2
type: Transform
- - uid: 30755
+ - uid: 30813
components:
- pos: 56.5,-34.5
parent: 2
type: Transform
- - uid: 30756
+ - uid: 30814
components:
- pos: 60.5,-27.5
parent: 2
type: Transform
- - uid: 30757
+ - uid: 30815
components:
- pos: 59.5,-27.5
parent: 2
type: Transform
- - uid: 30758
+ - uid: 30816
components:
- pos: 58.5,-27.5
parent: 2
type: Transform
- - uid: 30759
+ - uid: 30817
components:
- pos: 56.5,-29.5
parent: 2
type: Transform
- - uid: 30760
+ - uid: 30818
components:
- pos: 56.5,-30.5
parent: 2
type: Transform
- - uid: 30761
+ - uid: 30819
components:
- pos: 56.5,-28.5
parent: 2
type: Transform
- - uid: 30762
+ - uid: 30820
components:
- pos: 61.5,-27.5
parent: 2
type: Transform
- - uid: 30763
+ - uid: 30821
components:
- pos: 56.5,-27.5
parent: 2
type: Transform
- - uid: 30764
+ - uid: 30822
components:
- pos: 53.5,-29.5
parent: 2
type: Transform
- - uid: 30765
+ - uid: 30823
components:
- pos: 54.5,-29.5
parent: 2
type: Transform
- - uid: 30766
+ - uid: 30824
components:
- pos: 44.5,-62.5
parent: 2
type: Transform
- - uid: 30767
+ - uid: 30825
components:
- pos: 44.5,-63.5
parent: 2
type: Transform
- - uid: 30768
+ - uid: 30826
components:
- pos: 53.5,-66.5
parent: 2
type: Transform
- - uid: 30769
+ - uid: 30827
components:
- pos: 56.5,-35.5
parent: 2
type: Transform
- - uid: 30770
+ - uid: 30828
components:
- pos: 57.5,-66.5
parent: 2
type: Transform
- - uid: 30771
+ - uid: 30829
components:
- pos: 57.5,-67.5
parent: 2
type: Transform
- - uid: 30772
+ - uid: 30830
components:
- pos: 65.5,-66.5
parent: 2
type: Transform
- - uid: 30773
+ - uid: 30831
components:
- pos: 65.5,-62.5
parent: 2
type: Transform
- - uid: 30774
+ - uid: 30832
components:
- pos: 65.5,-64.5
parent: 2
type: Transform
- - uid: 30775
+ - uid: 30833
components:
- pos: 65.5,-63.5
parent: 2
type: Transform
- - uid: 30776
+ - uid: 30834
components:
- pos: 73.5,-56.5
parent: 2
type: Transform
- - uid: 30777
+ - uid: 30835
components:
- pos: 74.5,-53.5
parent: 2
type: Transform
- - uid: 30778
+ - uid: 30836
components:
- pos: 66.5,-62.5
parent: 2
type: Transform
- - uid: 30779
+ - uid: 30837
components:
- pos: 67.5,-62.5
parent: 2
type: Transform
- - uid: 30780
+ - uid: 30838
components:
- pos: 70.5,-63.5
parent: 2
type: Transform
- - uid: 30781
+ - uid: 30839
components:
- pos: 70.5,-62.5
parent: 2
type: Transform
- - uid: 30782
+ - uid: 30840
components:
- pos: 69.5,-62.5
parent: 2
type: Transform
- - uid: 30783
+ - uid: 30841
components:
- pos: 69.5,-58.5
parent: 2
type: Transform
- - uid: 30784
+ - uid: 30842
components:
- pos: 70.5,-58.5
parent: 2
type: Transform
- - uid: 30785
+ - uid: 30843
components:
- pos: 70.5,-59.5
parent: 2
type: Transform
- - uid: 30786
+ - uid: 30844
components:
- pos: 70.5,-60.5
parent: 2
type: Transform
- - uid: 30787
+ - uid: 30845
components:
- pos: 72.5,-58.5
parent: 2
type: Transform
- - uid: 30788
+ - uid: 30846
components:
- pos: 56.5,-37.5
parent: 2
type: Transform
- - uid: 30789
+ - uid: 30847
components:
- pos: 58.5,-39.5
parent: 2
type: Transform
- - uid: 30790
+ - uid: 30848
components:
- pos: 62.5,-27.5
parent: 2
type: Transform
- - uid: 30791
+ - uid: 30849
components:
- pos: 18.5,-15.5
parent: 2
type: Transform
- - uid: 30792
+ - uid: 30850
components:
- pos: -12.5,-34.5
parent: 2
type: Transform
- - uid: 30793
+ - uid: 30851
components:
- pos: -22.5,0.5
parent: 2
type: Transform
- - uid: 30794
+ - uid: 30852
components:
- rot: 3.141592653589793 rad
pos: 19.5,8.5
parent: 2
type: Transform
- - uid: 30795
+ - uid: 30853
components:
- pos: 16.5,8.5
parent: 2
type: Transform
- - uid: 30796
+ - uid: 30854
components:
- pos: 1.5,-51.5
parent: 2
type: Transform
- - uid: 30797
+ - uid: 30855
components:
- pos: 5.5,-73.5
parent: 2
type: Transform
- - uid: 30798
+ - uid: 30856
components:
- rot: -1.5707963267948966 rad
pos: -35.5,18.5
parent: 2
type: Transform
- - uid: 30799
+ - uid: 30857
components:
- rot: -1.5707963267948966 rad
pos: -35.5,19.5
parent: 2
type: Transform
- - uid: 30800
+ - uid: 30858
components:
- pos: -16.5,-11.5
parent: 2
type: Transform
- - uid: 30801
+ - uid: 30859
components:
- pos: -13.5,-16.5
parent: 2
type: Transform
- - uid: 30802
+ - uid: 30860
components:
- pos: -8.5,-7.5
parent: 2
type: Transform
- - uid: 30803
+ - uid: 30861
components:
- pos: 6.5,-51.5
parent: 2
type: Transform
- - uid: 30804
+ - uid: 30862
components:
- rot: 1.5707963267948966 rad
pos: -27.5,-60.5
parent: 2
type: Transform
- - uid: 30805
+ - uid: 30863
components:
- pos: -21.5,-51.5
parent: 2
type: Transform
- - uid: 30806
+ - uid: 30864
components:
- pos: 5.5,-75.5
parent: 2
type: Transform
- - uid: 30807
+ - uid: 30865
components:
- pos: 4.5,-72.5
parent: 2
type: Transform
- - uid: 30808
+ - uid: 30866
components:
- pos: -11.5,13.5
parent: 2
type: Transform
- - uid: 30809
+ - uid: 30867
components:
- rot: -1.5707963267948966 rad
pos: 2.5,-24.5
parent: 2
type: Transform
- - uid: 30810
+ - uid: 30868
components:
- rot: 3.141592653589793 rad
pos: 29.5,-37.5
parent: 2
type: Transform
+ - uid: 30869
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -26.5,-32.5
+ parent: 2
+ type: Transform
- proto: WallSolidDiagonal
entities:
- - uid: 30811
+ - uid: 30870
components:
- rot: -1.5707963267948966 rad
pos: 7.5,-8.5
parent: 2
type: Transform
- - uid: 30812
+ - uid: 30871
components:
- rot: 1.5707963267948966 rad
pos: -35.5,16.5
parent: 2
type: Transform
- - uid: 30813
+ - uid: 30872
components:
- rot: 3.141592653589793 rad
pos: -40.5,16.5
@@ -196612,84 +197296,84 @@ entities:
type: Transform
- proto: WallSolidRust
entities:
- - uid: 30814
+ - uid: 30873
components:
- rot: 3.141592653589793 rad
pos: -53.5,-30.5
parent: 2
type: Transform
- - uid: 30815
+ - uid: 30874
components:
- rot: 3.141592653589793 rad
pos: -56.5,-30.5
parent: 2
type: Transform
- - uid: 30816
+ - uid: 30875
components:
- rot: 3.141592653589793 rad
pos: -52.5,-65.5
parent: 2
type: Transform
- - uid: 30817
+ - uid: 30876
components:
- rot: 3.141592653589793 rad
pos: -26.5,-65.5
parent: 2
type: Transform
- - uid: 30818
+ - uid: 30877
components:
- rot: 3.141592653589793 rad
pos: -25.5,-65.5
parent: 2
type: Transform
- - uid: 30819
+ - uid: 30878
components:
- rot: 3.141592653589793 rad
pos: -31.5,-65.5
parent: 2
type: Transform
- - uid: 30820
+ - uid: 30879
components:
- rot: 3.141592653589793 rad
pos: -53.5,-69.5
parent: 2
type: Transform
- - uid: 30821
+ - uid: 30880
components:
- rot: 3.141592653589793 rad
pos: -48.5,-73.5
parent: 2
type: Transform
- - uid: 30822
+ - uid: 30881
components:
- rot: 3.141592653589793 rad
pos: -40.5,-66.5
parent: 2
type: Transform
- - uid: 30823
+ - uid: 30882
components:
- rot: 3.141592653589793 rad
pos: -37.5,-66.5
parent: 2
type: Transform
- - uid: 30824
+ - uid: 30883
components:
- pos: -12.5,-33.5
parent: 2
type: Transform
- - uid: 30825
+ - uid: 30884
components:
- rot: 3.141592653589793 rad
pos: 13.5,-58.5
parent: 2
type: Transform
- - uid: 30826
+ - uid: 30885
components:
- rot: 3.141592653589793 rad
pos: 13.5,-56.5
parent: 2
type: Transform
- - uid: 30827
+ - uid: 30886
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-7.5
@@ -196697,7 +197381,7 @@ entities:
type: Transform
- proto: WardrobeBotanistFilled
entities:
- - uid: 30828
+ - uid: 30887
components:
- pos: -4.5,12.5
parent: 2
@@ -196720,7 +197404,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30829
+ - uid: 30888
components:
- pos: -4.5,10.5
parent: 2
@@ -196745,7 +197429,7 @@ entities:
type: EntityStorage
- proto: WardrobeGreenFilled
entities:
- - uid: 30830
+ - uid: 30889
components:
- pos: -48.5,3.5
parent: 2
@@ -196770,7 +197454,7 @@ entities:
type: EntityStorage
- proto: WardrobePrisonFilled
entities:
- - uid: 30831
+ - uid: 30890
components:
- pos: 28.5,10.5
parent: 2
@@ -196793,7 +197477,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30832
+ - uid: 30891
components:
- pos: 36.5,5.5
parent: 2
@@ -196816,7 +197500,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30833
+ - uid: 30892
components:
- pos: 31.5,10.5
parent: 2
@@ -196839,7 +197523,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30834
+ - uid: 30893
components:
- pos: 34.5,10.5
parent: 2
@@ -196862,7 +197546,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30835
+ - uid: 30894
components:
- pos: 36.5,8.5
parent: 2
@@ -196885,7 +197569,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30836
+ - uid: 30895
components:
- pos: 55.5,22.5
parent: 2
@@ -196908,7 +197592,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30837
+ - uid: 30896
components:
- pos: 52.5,22.5
parent: 2
@@ -196931,7 +197615,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30838
+ - uid: 30897
components:
- pos: 49.5,22.5
parent: 2
@@ -196954,7 +197638,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30839
+ - uid: 30898
components:
- pos: 46.5,22.5
parent: 2
@@ -196977,7 +197661,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30840
+ - uid: 30899
components:
- pos: 58.5,22.5
parent: 2
@@ -197000,7 +197684,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30841
+ - uid: 30900
components:
- pos: 60.5,19.5
parent: 2
@@ -197023,7 +197707,7 @@ entities:
- 0
- 0
type: EntityStorage
- - uid: 30842
+ - uid: 30901
components:
- pos: 60.5,16.5
parent: 2
@@ -197048,7 +197732,7 @@ entities:
type: EntityStorage
- proto: WardrobeYellowFilled
entities:
- - uid: 30843
+ - uid: 30902
components:
- pos: -49.5,3.5
parent: 2
@@ -197073,56 +197757,56 @@ entities:
type: EntityStorage
- proto: WarningCO2
entities:
- - uid: 30844
+ - uid: 30903
components:
- pos: -51.5,-50.5
parent: 2
type: Transform
- proto: WarningN2
entities:
- - uid: 30845
+ - uid: 30904
components:
- pos: -51.5,-54.5
parent: 2
type: Transform
- proto: WarningN2O
entities:
- - uid: 30846
+ - uid: 30905
components:
- pos: -51.5,-42.5
parent: 2
type: Transform
- proto: WarningO2
entities:
- - uid: 30847
+ - uid: 30906
components:
- pos: -51.5,-52.5
parent: 2
type: Transform
- proto: WarningPlasma
entities:
- - uid: 30848
+ - uid: 30907
components:
- pos: -51.5,-46.5
parent: 2
type: Transform
- proto: WarningTritium
entities:
- - uid: 30849
+ - uid: 30908
components:
- pos: -51.5,-44.5
parent: 2
type: Transform
- proto: WarningWaste
entities:
- - uid: 30850
+ - uid: 30909
components:
- pos: -51.5,-48.5
parent: 2
type: Transform
- proto: WarpPoint
entities:
- - uid: 30851
+ - uid: 30910
components:
- rot: -1.5707963267948966 rad
pos: 1.5,-5.5
@@ -197130,14 +197814,14 @@ entities:
type: Transform
- location: hop
type: WarpPoint
- - uid: 30852
+ - uid: 30911
components:
- pos: 12.5,11.5
parent: 2
type: Transform
- location: bar
type: WarpPoint
- - uid: 30853
+ - uid: 30912
components:
- name: 'Warp: medical'
type: MetaData
@@ -197146,7 +197830,7 @@ entities:
type: Transform
- location: medbay
type: WarpPoint
- - uid: 30854
+ - uid: 30913
components:
- name: 'warp: science'
type: MetaData
@@ -197155,7 +197839,7 @@ entities:
type: Transform
- location: science reception
type: WarpPoint
- - uid: 30855
+ - uid: 30914
components:
- name: 'warp: bridge'
type: MetaData
@@ -197164,7 +197848,7 @@ entities:
type: Transform
- location: bridge
type: WarpPoint
- - uid: 30856
+ - uid: 30915
components:
- name: 'warp: prison'
type: MetaData
@@ -197173,7 +197857,7 @@ entities:
type: Transform
- location: open prison
type: WarpPoint
- - uid: 30857
+ - uid: 30916
components:
- name: 'warp: security'
type: MetaData
@@ -197182,21 +197866,21 @@ entities:
type: Transform
- location: security
type: WarpPoint
- - uid: 30858
+ - uid: 30917
components:
- pos: 61.5,-8.5
parent: 2
type: Transform
- location: evac
type: WarpPoint
- - uid: 30859
+ - uid: 30918
components:
- name: 'warp: waste'
type: MetaData
- pos: 17.5,-53.5
parent: 2
type: Transform
- - uid: 30860
+ - uid: 30919
components:
- name: 'warp: engineering'
type: MetaData
@@ -197205,7 +197889,7 @@ entities:
type: Transform
- location: engineering reception
type: WarpPoint
- - uid: 30861
+ - uid: 30920
components:
- name: 'warp: atmospherics'
type: MetaData
@@ -197214,7 +197898,7 @@ entities:
type: Transform
- location: atmospherics
type: WarpPoint
- - uid: 30862
+ - uid: 30921
components:
- name: 'warp: singularity'
type: MetaData
@@ -197223,7 +197907,7 @@ entities:
type: Transform
- location: singularity
type: WarpPoint
- - uid: 30863
+ - uid: 30922
components:
- name: 'warp: forgotten dock'
type: MetaData
@@ -197232,7 +197916,7 @@ entities:
type: Transform
- location: forgotten ship dock
type: WarpPoint
- - uid: 30864
+ - uid: 30923
components:
- name: 'warp: jani closet'
type: MetaData
@@ -197241,7 +197925,7 @@ entities:
type: Transform
- location: janitorial closet
type: WarpPoint
- - uid: 30865
+ - uid: 30924
components:
- name: 'warp: courthouse'
type: MetaData
@@ -197250,7 +197934,7 @@ entities:
type: Transform
- location: courtroom
type: WarpPoint
- - uid: 30866
+ - uid: 30925
components:
- name: 'Warp: psychology'
type: MetaData
@@ -197259,7 +197943,7 @@ entities:
type: Transform
- location: psychology
type: WarpPoint
- - uid: 30867
+ - uid: 30926
components:
- name: 'warp: virology'
type: MetaData
@@ -197268,7 +197952,7 @@ entities:
type: Transform
- location: virology reception
type: WarpPoint
- - uid: 30868
+ - uid: 30927
components:
- name: 'warp: cargo'
type: MetaData
@@ -197278,7 +197962,7 @@ entities:
type: Transform
- location: cargo
type: WarpPoint
- - uid: 30869
+ - uid: 30928
components:
- name: 'warp: salvage'
type: MetaData
@@ -197288,7 +197972,7 @@ entities:
type: Transform
- location: salvage
type: WarpPoint
- - uid: 30870
+ - uid: 30929
components:
- name: 'warp: arrivals'
type: MetaData
@@ -197298,7 +197982,7 @@ entities:
type: Transform
- location: arrivals
type: WarpPoint
- - uid: 30871
+ - uid: 30930
components:
- name: 'Warp: kitchen'
type: MetaData
@@ -197308,7 +197992,7 @@ entities:
type: Transform
- location: kitchen
type: WarpPoint
- - uid: 30872
+ - uid: 30931
components:
- name: 'Warp: botany'
type: MetaData
@@ -197318,7 +198002,7 @@ entities:
type: Transform
- location: hydrophonics
type: WarpPoint
- - uid: 30873
+ - uid: 30932
components:
- name: 'warp: library'
type: MetaData
@@ -197328,7 +198012,7 @@ entities:
type: Transform
- location: library
type: WarpPoint
- - uid: 30874
+ - uid: 30933
components:
- name: 'Warp: armory'
type: MetaData
@@ -197338,7 +198022,7 @@ entities:
type: Transform
- location: armory
type: WarpPoint
- - uid: 30875
+ - uid: 30934
components:
- name: 'warp: revolution bar'
type: MetaData
@@ -197348,7 +198032,7 @@ entities:
type: Transform
- location: rebelion bar
type: WarpPoint
- - uid: 30876
+ - uid: 30935
components:
- rot: 3.141592653589793 rad
pos: -44.5,53.5
@@ -197356,7 +198040,7 @@ entities:
type: Transform
- location: asteroid
type: WarpPoint
- - uid: 30877
+ - uid: 30936
components:
- pos: 0.5,-20.5
parent: 2
@@ -197365,203 +198049,203 @@ entities:
type: WarpPoint
- proto: WarpPointBombing
entities:
- - uid: 30878
+ - uid: 30937
components:
- pos: 24.5,1.5
parent: 2
type: Transform
- location: boxing ring
type: WarpPoint
- - uid: 30879
+ - uid: 30938
components:
- pos: 30.5,-12.5
parent: 2
type: Transform
- location: eva
type: WarpPoint
- - uid: 30880
+ - uid: 30939
components:
- pos: 53.5,15.5
parent: 2
type: Transform
- location: perma brig
type: WarpPoint
- - uid: 30881
+ - uid: 30940
components:
- pos: -19.5,4.5
parent: 2
type: Transform
- location: gravity
type: WarpPoint
- - uid: 30882
+ - uid: 30941
components:
- pos: 5.5,-47.5
parent: 2
type: Transform
- location: chemistry
type: WarpPoint
- - uid: 30883
+ - uid: 30942
components:
- pos: -24.5,-60.5
parent: 2
type: Transform
- location: cryogenics
type: WarpPoint
- - uid: 30884
+ - uid: 30943
components:
- pos: 0.5,-20.5
parent: 2
type: Transform
- location: theatre
type: WarpPoint
- - uid: 30885
+ - uid: 30944
components:
- pos: 29.5,31.5
parent: 2
type: Transform
- location: armory
type: WarpPoint
- - uid: 30886
+ - uid: 30945
components:
- pos: 25.5,-23.5
parent: 2
type: Transform
- location: bridge
type: WarpPoint
- - uid: 30887
+ - uid: 30946
components:
- pos: 46.5,6.5
parent: 2
type: Transform
- location: brigmed
type: WarpPoint
- - uid: 30888
+ - uid: 30947
components:
- pos: 64.5,-8.5
parent: 2
type: Transform
- location: evac
type: WarpPoint
- - uid: 30889
+ - uid: 30948
components:
- pos: 46.5,-24.5
parent: 2
type: Transform
- location: north vault
type: WarpPoint
- - uid: 30890
+ - uid: 30949
components:
- pos: 31.5,-49.5
parent: 2
type: Transform
- location: courtroom
type: WarpPoint
- - uid: 30891
+ - uid: 30950
components:
- pos: -19.5,-47.5
parent: 2
type: Transform
- location: camera server room
type: WarpPoint
- - uid: 30892
+ - uid: 30951
components:
- pos: 9.5,-21.5
parent: 2
type: Transform
- location: 'telecoms '
type: WarpPoint
- - uid: 30893
+ - uid: 30952
components:
- pos: -46.5,-12.5
parent: 2
type: Transform
- location: ame
type: WarpPoint
- - uid: 30894
+ - uid: 30953
components:
- pos: -40.5,21.5
parent: 2
type: Transform
- location: cargo
type: WarpPoint
- - uid: 30895
+ - uid: 30954
components:
- pos: -42.5,32.5
parent: 2
type: Transform
- location: salvage
type: WarpPoint
- - uid: 30896
+ - uid: 30955
components:
- pos: -1.5,-64.5
parent: 2
type: Transform
- location: surgery
type: WarpPoint
- - uid: 30897
+ - uid: 30956
components:
- pos: -43.5,-46.5
parent: 2
type: Transform
- location: atmospherics
type: WarpPoint
- - uid: 30898
+ - uid: 30957
components:
- pos: -69.5,-41.5
parent: 2
type: Transform
- location: teg
type: WarpPoint
- - uid: 30899
+ - uid: 30958
components:
- pos: 72.5,-34.5
parent: 2
type: Transform
- location: xenoarcheology
type: WarpPoint
- - uid: 30900
+ - uid: 30959
components:
- pos: 72.5,-45.5
parent: 2
type: Transform
- location: robotics
type: WarpPoint
- - uid: 30901
+ - uid: 30960
components:
- pos: -11.5,-35.5
parent: 2
type: Transform
- location: psychologists office
type: WarpPoint
- - uid: 30902
+ - uid: 30961
components:
- pos: -11.5,-10.5
parent: 2
type: Transform
- location: trash sorting
type: WarpPoint
- - uid: 30903
+ - uid: 30962
components:
- pos: -7.5,9.5
parent: 2
type: Transform
- location: botany
type: WarpPoint
- - uid: 30904
+ - uid: 30963
components:
- pos: 19.5,-13.5
parent: 2
type: Transform
- location: detectives office
type: WarpPoint
- - uid: 30905
+ - uid: 30964
components:
- pos: 22.5,22.5
parent: 2
type: Transform
- location: wardens office
type: WarpPoint
- - uid: 30906
+ - uid: 30965
components:
- pos: -24.5,-77.5
parent: 2
@@ -197570,29 +198254,29 @@ entities:
type: WarpPoint
- proto: WaterCooler
entities:
- - uid: 30907
+ - uid: 30966
components:
- pos: -8.5,-35.5
parent: 2
type: Transform
- - uid: 30908
+ - uid: 30967
components:
- pos: 55.398575,18.5843
parent: 2
type: Transform
- - uid: 30909
+ - uid: 30968
components:
- pos: 36.5,-6.5
parent: 2
type: Transform
- - uid: 30910
+ - uid: 30969
components:
- pos: 41.5,-47.5
parent: 2
type: Transform
- proto: WatermelonSeeds
entities:
- - uid: 30911
+ - uid: 30970
components:
- rot: 3.141592653589793 rad
pos: -9.469382,12.335931
@@ -197600,432 +198284,427 @@ entities:
type: Transform
- proto: WaterTank
entities:
- - uid: 30912
+ - uid: 30971
components:
- pos: 74.5,-54.5
parent: 2
type: Transform
- proto: WaterTankFull
entities:
- - uid: 30913
+ - uid: 30972
components:
- pos: -4.5,14.5
parent: 2
type: Transform
- - uid: 30914
+ - uid: 30973
components:
- pos: -19.5,-86.5
parent: 2
type: Transform
- - uid: 30915
+ - uid: 30974
components:
- pos: 7.5,-81.5
parent: 2
type: Transform
- - uid: 30916
+ - uid: 30975
components:
- pos: 45.5,21.5
parent: 2
type: Transform
- - uid: 30917
+ - uid: 30976
components:
- pos: 8.5,-64.5
parent: 2
type: Transform
- - uid: 30918
+ - uid: 30977
components:
- pos: -29.5,-65.5
parent: 2
type: Transform
- - uid: 30919
+ - uid: 30978
components:
- pos: 35.5,-10.5
parent: 2
type: Transform
- - uid: 30920
+ - uid: 30979
components:
- pos: -27.5,-43.5
parent: 2
type: Transform
- - uid: 30921
- components:
- - pos: -1.5,-14.5
- parent: 2
- type: Transform
- - uid: 30922
+ - uid: 30980
components:
- pos: -39.5,-30.5
parent: 2
type: Transform
- - uid: 30923
+ - uid: 30981
components:
- pos: -45.5,-3.5
parent: 2
type: Transform
- - uid: 30924
+ - uid: 30982
components:
- pos: -27.5,37.5
parent: 2
type: Transform
- - uid: 30925
+ - uid: 30983
components:
- pos: -8.5,-8.5
parent: 2
type: Transform
- proto: WaterTankHighCapacity
entities:
- - uid: 30926
+ - uid: 30984
components:
- pos: -7.5,-21.5
parent: 2
type: Transform
- - uid: 30927
+ - uid: 30985
components:
- pos: -5.5,8.5
parent: 2
type: Transform
- proto: WaterVaporCanister
entities:
- - uid: 30928
+ - uid: 30986
components:
- pos: -50.5,-48.5
parent: 2
type: Transform
- - uid: 30929
+ - uid: 30987
components:
- pos: -34.5,-28.5
parent: 2
type: Transform
- proto: WeaponCapacitorRecharger
entities:
- - uid: 30930
+ - uid: 30988
components:
- pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 30931
+ - uid: 30989
components:
- pos: 2.5,-56.5
parent: 2
type: Transform
- - uid: 30932
+ - uid: 30990
components:
- pos: 6.5,12.5
parent: 2
type: Transform
- - uid: 30933
+ - uid: 30991
components:
- pos: 20.5,-45.5
parent: 2
type: Transform
- - uid: 30934
+ - uid: 30992
components:
- pos: 5.5,20.5
parent: 2
type: Transform
- - uid: 30935
+ - uid: 30993
components:
- pos: 17.5,22.5
parent: 2
type: Transform
- - uid: 30936
+ - uid: 30994
components:
- pos: 25.5,23.5
parent: 2
type: Transform
- - uid: 30937
+ - uid: 30995
components:
- pos: -16.5,24.5
parent: 2
type: Transform
- - uid: 30938
+ - uid: 30996
components:
- pos: -16.5,-21.5
parent: 2
type: Transform
- proto: WeaponDisabler
entities:
- - uid: 30939
+ - uid: 30997
components:
- pos: 1.6229637,21.593708
parent: 2
type: Transform
- - uid: 30940
+ - uid: 30998
components:
- pos: 12.563014,21.38584
parent: 2
type: Transform
- - uid: 30941
+ - uid: 30999
components:
- pos: 12.453639,21.54209
parent: 2
type: Transform
- proto: WeaponLaserCarbine
entities:
- - uid: 30942
+ - uid: 31000
components:
- pos: 26.559673,29.582918
parent: 2
type: Transform
- - uid: 30943
+ - uid: 31001
components:
- pos: 31.473701,27.53409
parent: 2
type: Transform
- - uid: 30944
+ - uid: 31002
components:
- pos: 27.55704,27.505564
parent: 2
type: Transform
- proto: WeaponPistolMk58
entities:
- - uid: 30945
+ - uid: 31003
components:
- pos: 31.657001,32.450115
parent: 2
type: Transform
- - uid: 30946
+ - uid: 31004
components:
- pos: 31.637281,32.558495
parent: 2
type: Transform
- - uid: 30947
+ - uid: 31005
components:
- pos: 31.586092,32.47933
parent: 2
type: Transform
- - uid: 30948
+ - uid: 31006
components:
- pos: 31.657982,32.330257
parent: 2
type: Transform
- proto: WeaponRevolverDeckard
entities:
- - uid: 30949
+ - uid: 31007
components:
- pos: 30.600538,32.59448
parent: 2
type: Transform
- proto: WeaponRevolverInspector
entities:
- - uid: 30950
+ - uid: 31008
components:
- pos: 23.444613,-35.267536
parent: 2
type: Transform
- proto: WeaponShotgunKammerer
entities:
- - uid: 30951
+ - uid: 31009
components:
- pos: 26.643364,32.60906
parent: 2
type: Transform
- - uid: 30952
+ - uid: 31010
components:
- pos: 26.777893,32.47498
parent: 2
type: Transform
- - uid: 30953
+ - uid: 31011
components:
- pos: 26.709015,32.580257
parent: 2
type: Transform
- proto: WeaponSubMachineGunDrozd
entities:
- - uid: 30954
+ - uid: 31012
components:
- pos: 27.939907,32.617863
parent: 2
type: Transform
- - uid: 30955
+ - uid: 31013
components:
- pos: 28.718153,32.704456
parent: 2
type: Transform
- - uid: 30956
+ - uid: 31014
components:
- pos: 29.421278,32.68883
parent: 2
type: Transform
- proto: WeaponSubMachineGunWt550
entities:
- - uid: 30957
+ - uid: 31015
components:
- pos: 6.384364,22.636343
parent: 2
type: Transform
- proto: Welder
entities:
- - uid: 30958
+ - uid: 31016
components:
- pos: -23.377909,-24.435646
parent: 2
type: Transform
- - uid: 30959
+ - uid: 31017
components:
- pos: -11.453522,-74.45183
parent: 2
type: Transform
- - uid: 30960
+ - uid: 31018
components:
- pos: -44.4577,-25.484493
parent: 2
type: Transform
- - uid: 30961
+ - uid: 31019
components:
- pos: -28.416739,-28.473803
parent: 2
type: Transform
- - uid: 30962
+ - uid: 31020
components:
- pos: -52.43758,2.566814
parent: 2
type: Transform
- - uid: 30963
+ - uid: 31021
components:
- pos: -44.442474,-76.91975
parent: 2
type: Transform
- - uid: 30964
+ - uid: 31022
components:
- pos: 76.51503,-43.437786
parent: 2
type: Transform
- - uid: 30965
+ - uid: 31023
components:
- pos: -66.37563,-43.430454
parent: 2
type: Transform
- proto: WelderIndustrial
entities:
- - uid: 30966
+ - uid: 31024
components:
- pos: -34.41553,-12.611145
parent: 2
type: Transform
- - uid: 30967
+ - uid: 31025
components:
- pos: -35.502888,-46.513077
parent: 2
type: Transform
- - uid: 30968
+ - uid: 31026
components:
- pos: -42.417007,-21.43029
parent: 2
type: Transform
- proto: WelderMini
entities:
- - uid: 30969
+ - uid: 31027
components:
- pos: -52.426445,-12.844277
parent: 2
type: Transform
- proto: WeldingFuelTank
entities:
- - uid: 30970
+ - uid: 31028
components:
- pos: -28.5,-43.5
parent: 2
type: Transform
- - uid: 30971
+ - uid: 31029
components:
- pos: 7.5,-64.5
parent: 2
type: Transform
- proto: WeldingFuelTankFull
entities:
- - uid: 30972
+ - uid: 31030
components:
- pos: -3.5,-71.5
parent: 2
type: Transform
- - uid: 30973
+ - uid: 31031
components:
- pos: -28.5,-25.5
parent: 2
type: Transform
- - uid: 30974
+ - uid: 31032
components:
- pos: -43.5,-63.5
parent: 2
type: Transform
- - uid: 30975
+ - uid: 31033
components:
- pos: -38.5,-30.5
parent: 2
type: Transform
- - uid: 30976
+ - uid: 31034
components:
- pos: -0.5,23.5
parent: 2
type: Transform
- - uid: 30977
+ - uid: 31035
components:
- pos: -51.5,4.5
parent: 2
type: Transform
- - uid: 30978
+ - uid: 31036
components:
- pos: -16.5,-18.5
parent: 2
type: Transform
- - uid: 30979
+ - uid: 31037
components:
- pos: 39.5,-32.5
parent: 2
type: Transform
- - uid: 30980
+ - uid: 31038
components:
- pos: 72.5,-59.5
parent: 2
type: Transform
- - uid: 30981
+ - uid: 31039
components:
- pos: 66.5,6.5
parent: 2
type: Transform
- - uid: 30982
+ - uid: 31040
components:
- pos: 74.5,-55.5
parent: 2
type: Transform
- - uid: 30983
+ - uid: 31041
components:
- pos: -54.5,-35.5
parent: 2
type: Transform
- proto: WeldingFuelTankHighCapacity
entities:
- - uid: 30984
+ - uid: 31042
components:
- pos: -53.5,-25.5
parent: 2
type: Transform
- proto: WetFloorSign
entities:
- - uid: 30985
+ - uid: 31043
components:
- pos: -7.8693366,-23.228895
parent: 2
type: Transform
- - uid: 30986
+ - uid: 31044
components:
- pos: 16.379074,-41.325726
parent: 2
type: Transform
- - uid: 30987
+ - uid: 31045
components:
- pos: -7.8537116,-23.36952
parent: 2
type: Transform
- - uid: 30988
+ - uid: 31046
components:
- pos: -7.7912116,-23.603895
parent: 2
type: Transform
- proto: Windoor
entities:
- - uid: 30989
+ - uid: 31047
components:
- rot: 1.5707963267948966 rad
pos: 26.5,0.5
@@ -198033,185 +198712,200 @@ entities:
type: Transform
- proto: WindoorBarLocked
entities:
- - uid: 30990
+ - uid: 31048
components:
- pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 30991
+ - uid: 31049
components:
- pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 30992
+ - uid: 31050
components:
- rot: 1.5707963267948966 rad
pos: 15.5,14.5
parent: 2
type: Transform
- - uid: 30993
+ - uid: 31051
components:
- rot: 1.5707963267948966 rad
pos: -39.5,-75.5
parent: 2
type: Transform
- - uid: 30994
+ - uid: 31052
components:
- rot: -1.5707963267948966 rad
pos: -44.5,-75.5
parent: 2
type: Transform
- - uid: 30995
+ - uid: 31053
components:
- pos: 28.5,-37.5
parent: 2
type: Transform
- proto: WindoorKitchenHydroponicsLocked
entities:
- - uid: 30996
+ - uid: 31054
components:
- pos: -4.5,17.5
parent: 2
type: Transform
- - uid: 30997
+ - uid: 31055
components:
- pos: -7.5,17.5
parent: 2
type: Transform
- proto: WindoorSecure
entities:
- - uid: 30998
+ - uid: 31056
components:
- pos: 1.5,-1.5
parent: 2
type: Transform
- - uid: 30999
+ - uid: 31057
components:
- rot: 3.141592653589793 rad
pos: 4.5,-3.5
parent: 2
type: Transform
- - uid: 31000
+ - uid: 31058
components:
- pos: 4.5,-1.5
parent: 2
type: Transform
- - uid: 31001
+ - uid: 31059
components:
- pos: 17.5,-53.5
parent: 2
type: Transform
- - uid: 31002
+ - uid: 31060
components:
- pos: -13.5,-9.5
parent: 2
type: Transform
- - uid: 31003
+ - uid: 31061
components:
- pos: 59.5,22.5
parent: 2
type: Transform
- - uid: 31004
+ - uid: 31062
components:
- pos: 56.5,22.5
parent: 2
type: Transform
- - uid: 31005
+ - uid: 31063
components:
- pos: 53.5,22.5
parent: 2
type: Transform
- - uid: 31006
+ - uid: 31064
components:
- pos: 50.5,22.5
parent: 2
type: Transform
- - uid: 31007
+ - uid: 31065
components:
- pos: 47.5,22.5
parent: 2
type: Transform
- - uid: 31008
+ - uid: 31066
components:
- rot: -1.5707963267948966 rad
pos: 60.5,18.5
parent: 2
type: Transform
- - uid: 31009
+ - uid: 31067
components:
- rot: -1.5707963267948966 rad
pos: 60.5,15.5
parent: 2
type: Transform
- - uid: 31010
+ - uid: 31068
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-34.5
parent: 2
type: Transform
- - uid: 31011
+ - uid: 31069
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-33.5
parent: 2
type: Transform
- - uid: 31012
+ - uid: 31070
components:
- rot: -1.5707963267948966 rad
pos: -34.5,14.5
parent: 2
type: Transform
- - uid: 31013
+ - uid: 31071
components:
- rot: 3.141592653589793 rad
pos: 71.5,-47.5
parent: 2
type: Transform
+ - uid: 31072
+ components:
+ - pos: -5.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 31073
+ components:
+ - pos: -4.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 31074
+ components:
+ - pos: -3.5,-47.5
+ parent: 2
+ type: Transform
- proto: WindoorSecureArmoryLocked
entities:
- - uid: 31014
+ - uid: 31075
components:
- rot: 3.141592653589793 rad
pos: 25.5,19.5
parent: 2
type: Transform
- - uid: 31015
+ - uid: 31076
components:
- rot: 3.141592653589793 rad
pos: 24.5,19.5
parent: 2
type: Transform
- - uid: 31016
+ - uid: 31077
components:
- rot: 1.5707963267948966 rad
pos: 30.5,28.5
parent: 2
type: Transform
- - uid: 31017
+ - uid: 31078
components:
- rot: 1.5707963267948966 rad
pos: 30.5,30.5
parent: 2
type: Transform
- - uid: 31018
+ - uid: 31079
components:
- rot: -1.5707963267948966 rad
pos: 28.5,30.5
parent: 2
type: Transform
- - uid: 31019
+ - uid: 31080
components:
- rot: 3.141592653589793 rad
pos: 26.5,19.5
parent: 2
type: Transform
- - uid: 31020
+ - uid: 31081
components:
- rot: -1.5707963267948966 rad
pos: 28.5,28.5
parent: 2
type: Transform
- - uid: 31021
+ - uid: 31082
components:
- rot: 3.141592653589793 rad
pos: 29.5,30.5
@@ -198219,14 +198913,14 @@ entities:
type: Transform
- proto: WindoorSecureBrigLocked
entities:
- - uid: 31022
+ - uid: 31083
components:
- pos: 31.5,-52.5
parent: 2
type: Transform
- proto: WindoorSecureCargoLocked
entities:
- - uid: 31023
+ - uid: 31084
components:
- rot: -1.5707963267948966 rad
pos: -26.5,22.5
@@ -198234,19 +198928,19 @@ entities:
type: Transform
- proto: WindoorSecureChemistryLocked
entities:
- - uid: 31024
+ - uid: 31085
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-48.5
parent: 2
type: Transform
- - uid: 31025
+ - uid: 31086
components:
- rot: 1.5707963267948966 rad
pos: 1.5,-46.5
parent: 2
type: Transform
- - uid: 31026
+ - uid: 31087
components:
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
@@ -198254,13 +198948,13 @@ entities:
type: Transform
- proto: WindoorSecureEngineeringLocked
entities:
- - uid: 31027
+ - uid: 31088
components:
- rot: -1.5707963267948966 rad
pos: -26.5,-12.5
parent: 2
type: Transform
- - uid: 31028
+ - uid: 31089
components:
- rot: -1.5707963267948966 rad
pos: -21.5,-34.5
@@ -198268,67 +198962,67 @@ entities:
type: Transform
- proto: WindoorSecureHeadOfPersonnelLocked
entities:
- - uid: 31029
+ - uid: 31090
components:
- pos: 4.5,-3.5
parent: 2
type: Transform
- proto: WindoorSecureMedicalLocked
entities:
- - uid: 31030
+ - uid: 31091
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-79.5
parent: 2
type: Transform
- - uid: 31031
+ - uid: 31092
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-78.5
parent: 2
type: Transform
- - uid: 31032
+ - uid: 31093
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-76.5
parent: 2
type: Transform
- - uid: 31033
+ - uid: 31094
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-77.5
parent: 2
type: Transform
- - uid: 31034
+ - uid: 31095
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-75.5
parent: 2
type: Transform
- - uid: 31035
+ - uid: 31096
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-79.5
parent: 2
type: Transform
- - uid: 31036
+ - uid: 31097
components:
- rot: 3.141592653589793 rad
pos: -20.5,-88.5
parent: 2
type: Transform
- - uid: 31037
+ - uid: 31098
components:
- rot: 3.141592653589793 rad
pos: -25.5,-88.5
parent: 2
type: Transform
- - uid: 31038
+ - uid: 31099
components:
- pos: 3.5,-51.5
parent: 2
type: Transform
- - uid: 31039
+ - uid: 31100
components:
- rot: 1.5707963267948966 rad
pos: 48.5,6.5
@@ -198336,13 +199030,13 @@ entities:
type: Transform
- proto: WindoorSecureScienceLocked
entities:
- - uid: 31040
+ - uid: 31101
components:
- rot: 3.141592653589793 rad
pos: 42.5,-40.5
parent: 2
type: Transform
- - uid: 31041
+ - uid: 31102
components:
- rot: 3.141592653589793 rad
pos: 43.5,-40.5
@@ -198350,116 +199044,116 @@ entities:
type: Transform
- proto: WindoorSecureSecurityLocked
entities:
- - uid: 31042
+ - uid: 31103
components:
- rot: -1.5707963267948966 rad
pos: 48.5,6.5
parent: 2
type: Transform
- - uid: 31043
+ - uid: 31104
components:
- rot: 1.5707963267948966 rad
pos: 42.5,6.5
parent: 2
type: Transform
- - uid: 31044
+ - uid: 31105
components:
- rot: 3.141592653589793 rad
pos: 29.5,13.5
parent: 2
type: Transform
- links:
- - 2255
+ - 2256
type: DeviceLinkSink
- - uid: 31045
+ - uid: 31106
components:
- rot: 1.5707963267948966 rad
pos: 39.5,7.5
parent: 2
type: Transform
- links:
- - 2257
+ - 2258
type: DeviceLinkSink
- - uid: 31046
+ - uid: 31107
components:
- rot: 3.141592653589793 rad
pos: 5.5,11.5
parent: 2
type: Transform
- - uid: 31047
+ - uid: 31108
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-56.5
parent: 2
type: Transform
- - uid: 31048
+ - uid: 31109
components:
- rot: 3.141592653589793 rad
pos: 4.5,11.5
parent: 2
type: Transform
- - uid: 31049
+ - uid: 31110
components:
- rot: 3.141592653589793 rad
pos: 32.5,13.5
parent: 2
type: Transform
- links:
- - 2256
+ - 2257
type: DeviceLinkSink
- - uid: 31050
+ - uid: 31111
components:
- rot: 1.5707963267948966 rad
pos: 39.5,4.5
parent: 2
type: Transform
- links:
- - 2258
+ - 2259
type: DeviceLinkSink
- - uid: 31051
+ - uid: 31112
components:
- rot: 3.141592653589793 rad
pos: 17.5,15.5
parent: 2
type: Transform
- - uid: 31052
+ - uid: 31113
components:
- rot: 3.141592653589793 rad
pos: 35.5,13.5
parent: 2
type: Transform
- links:
- - 2254
+ - 2255
type: DeviceLinkSink
- - uid: 31053
+ - uid: 31114
components:
- rot: 3.141592653589793 rad
pos: 18.5,15.5
parent: 2
type: Transform
- - uid: 31054
+ - uid: 31115
components:
- pos: 21.5,-44.5
parent: 2
type: Transform
- - uid: 31055
+ - uid: 31116
components:
- pos: 22.5,-44.5
parent: 2
type: Transform
- - uid: 31056
+ - uid: 31117
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-22.5
parent: 2
type: Transform
- - uid: 31057
+ - uid: 31118
components:
- rot: 1.5707963267948966 rad
pos: -17.5,-23.5
parent: 2
type: Transform
- - uid: 31058
+ - uid: 31119
components:
- rot: 1.5707963267948966 rad
pos: -17.5,25.5
@@ -198467,7 +199161,7 @@ entities:
type: Transform
- proto: WindoorTheatreLocked
entities:
- - uid: 31059
+ - uid: 31120
components:
- rot: 3.141592653589793 rad
pos: 9.5,-0.5
@@ -198475,786 +199169,808 @@ entities:
type: Transform
- proto: Window
entities:
- - uid: 31060
+ - uid: 31121
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -21.5,19.5
+ parent: 2
+ type: Transform
+ - uid: 31122
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -21.5,18.5
+ parent: 2
+ type: Transform
+ - uid: 31123
+ components:
+ - pos: 8.5,-46.5
+ parent: 2
+ type: Transform
+ - uid: 31124
+ components:
+ - pos: 8.5,-45.5
+ parent: 2
+ type: Transform
+ - uid: 31125
components:
- rot: -1.5707963267948966 rad
pos: -48.5,-74.5
parent: 2
type: Transform
- - uid: 31061
+ - uid: 31126
components:
- rot: -1.5707963267948966 rad
pos: -41.5,-69.5
parent: 2
type: Transform
- - uid: 31062
+ - uid: 31127
components:
- rot: -1.5707963267948966 rad
pos: -42.5,-69.5
parent: 2
type: Transform
- - uid: 31063
+ - uid: 31128
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-31.5
parent: 2
type: Transform
- - uid: 31064
+ - uid: 31129
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-32.5
parent: 2
type: Transform
- - uid: 31065
+ - uid: 31130
components:
- pos: 27.5,-55.5
parent: 2
type: Transform
- - uid: 31066
+ - uid: 31131
components:
- pos: 27.5,-54.5
parent: 2
type: Transform
- - uid: 31067
+ - uid: 31132
components:
- rot: 3.141592653589793 rad
pos: -20.5,65.5
parent: 2
type: Transform
- - uid: 31068
+ - uid: 31133
components:
- rot: 3.141592653589793 rad
pos: -20.5,67.5
parent: 2
type: Transform
- - uid: 31069
+ - uid: 31134
components:
- rot: 3.141592653589793 rad
pos: -14.5,67.5
parent: 2
type: Transform
- - uid: 31070
+ - uid: 31135
components:
- pos: -13.5,-57.5
parent: 2
type: Transform
- - uid: 31071
+ - uid: 31136
components:
- pos: -9.5,-58.5
parent: 2
type: Transform
- - uid: 31072
+ - uid: 31137
components:
- pos: -4.5,-56.5
parent: 2
type: Transform
- - uid: 31073
+ - uid: 31138
components:
- rot: -1.5707963267948966 rad
pos: 22.5,5.5
parent: 2
type: Transform
- - uid: 31074
+ - uid: 31139
components:
- pos: -21.5,-13.5
parent: 2
type: Transform
- - uid: 31075
+ - uid: 31140
components:
- pos: -9.5,-40.5
parent: 2
type: Transform
- - uid: 31076
+ - uid: 31141
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-1.5
parent: 2
type: Transform
- - uid: 31077
+ - uid: 31142
components:
- pos: -14.5,-44.5
parent: 2
type: Transform
- - uid: 31078
+ - uid: 31143
components:
- pos: -1.5,-56.5
parent: 2
type: Transform
- - uid: 31079
+ - uid: 31144
components:
- pos: 39.5,-0.5
parent: 2
type: Transform
- - uid: 31080
+ - uid: 31145
components:
- pos: -12.5,-58.5
parent: 2
type: Transform
- - uid: 31081
+ - uid: 31146
components:
- pos: -6.5,-55.5
parent: 2
type: Transform
- - uid: 31082
+ - uid: 31147
components:
- pos: -0.5,-62.5
parent: 2
type: Transform
- - uid: 31083
+ - uid: 31148
components:
- pos: 1.5,-56.5
parent: 2
type: Transform
- - uid: 31084
+ - uid: 31149
components:
- pos: -0.5,-58.5
parent: 2
type: Transform
- - uid: 31085
+ - uid: 31150
components:
- pos: -3.5,-58.5
parent: 2
type: Transform
- - uid: 31086
+ - uid: 31151
components:
- pos: 30.5,-57.5
parent: 2
type: Transform
- - uid: 31087
+ - uid: 31152
components:
- pos: 29.5,-57.5
parent: 2
type: Transform
- - uid: 31088
+ - uid: 31153
components:
- pos: 33.5,-57.5
parent: 2
type: Transform
- - uid: 31089
+ - uid: 31154
components:
- rot: -1.5707963267948966 rad
pos: 19.5,0.5
parent: 2
type: Transform
- - uid: 31090
+ - uid: 31155
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-3.5
parent: 2
type: Transform
- - uid: 31091
+ - uid: 31156
components:
- rot: -1.5707963267948966 rad
pos: 23.5,-3.5
parent: 2
type: Transform
- - uid: 31092
+ - uid: 31157
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-3.5
parent: 2
type: Transform
- - uid: 31093
+ - uid: 31158
components:
- pos: 35.5,-5.5
parent: 2
type: Transform
- - uid: 31094
+ - uid: 31159
components:
- pos: -21.5,11.5
parent: 2
type: Transform
- - uid: 31095
+ - uid: 31160
components:
- pos: -21.5,12.5
parent: 2
type: Transform
- - uid: 31096
+ - uid: 31161
components:
- pos: -21.5,-10.5
parent: 2
type: Transform
- - uid: 31097
+ - uid: 31162
components:
- pos: -21.5,-14.5
parent: 2
type: Transform
- - uid: 31098
+ - uid: 31163
components:
- pos: 35.5,-1.5
parent: 2
type: Transform
- - uid: 31099
+ - uid: 31164
components:
- pos: 35.5,-2.5
parent: 2
type: Transform
- - uid: 31100
+ - uid: 31165
components:
- pos: -21.5,-9.5
parent: 2
type: Transform
- - uid: 31101
+ - uid: 31166
components:
- pos: -5.5,-44.5
parent: 2
type: Transform
- - uid: 31102
+ - uid: 31167
components:
- pos: -11.5,-40.5
parent: 2
type: Transform
- - uid: 31103
+ - uid: 31168
components:
- pos: -10.5,-40.5
parent: 2
type: Transform
- - uid: 31104
+ - uid: 31169
components:
- pos: 0.5,-62.5
parent: 2
type: Transform
- - uid: 31105
+ - uid: 31170
components:
- pos: 1.5,-57.5
parent: 2
type: Transform
- - uid: 31106
+ - uid: 31171
components:
- pos: -0.5,-55.5
parent: 2
type: Transform
- - uid: 31107
+ - uid: 31172
components:
- pos: 2.5,-55.5
parent: 2
type: Transform
- - uid: 31108
+ - uid: 31173
components:
- pos: 2.5,-62.5
parent: 2
type: Transform
- - uid: 31109
+ - uid: 31174
components:
- pos: -9.5,-62.5
parent: 2
type: Transform
- - uid: 31110
+ - uid: 31175
components:
- pos: -3.5,-55.5
parent: 2
type: Transform
- - uid: 31111
+ - uid: 31176
components:
- pos: -9.5,-55.5
parent: 2
type: Transform
- - uid: 31112
+ - uid: 31177
components:
- pos: 2.5,-58.5
parent: 2
type: Transform
- - uid: 31113
+ - uid: 31178
components:
- pos: 4.5,-62.5
parent: 2
type: Transform
- - uid: 31114
+ - uid: 31179
components:
- pos: -8.5,-62.5
parent: 2
type: Transform
- - uid: 31115
+ - uid: 31180
components:
- pos: -10.5,-56.5
parent: 2
type: Transform
- - uid: 31116
+ - uid: 31181
components:
- pos: -10.5,-57.5
parent: 2
type: Transform
- - uid: 31117
+ - uid: 31182
components:
- pos: -21.5,-61.5
parent: 2
type: Transform
- - uid: 31118
+ - uid: 31183
components:
- pos: -21.5,-59.5
parent: 2
type: Transform
- - uid: 31119
+ - uid: 31184
components:
- pos: -12.5,-44.5
parent: 2
type: Transform
- - uid: 31120
+ - uid: 31185
components:
- pos: -12.5,-55.5
parent: 2
type: Transform
- - uid: 31121
+ - uid: 31186
components:
- pos: -6.5,-36.5
parent: 2
type: Transform
- - uid: 31122
+ - uid: 31187
components:
- pos: -25.5,9.5
parent: 2
type: Transform
- - uid: 31123
+ - uid: 31188
components:
- pos: -3.5,-44.5
parent: 2
type: Transform
- - uid: 31124
+ - uid: 31189
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-0.5
parent: 2
type: Transform
- - uid: 31125
+ - uid: 31190
components:
- rot: -1.5707963267948966 rad
pos: 25.5,5.5
parent: 2
type: Transform
- - uid: 31126
+ - uid: 31191
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-3.5
parent: 2
type: Transform
- - uid: 31127
+ - uid: 31192
components:
- rot: -1.5707963267948966 rad
pos: 21.5,-3.5
parent: 2
type: Transform
- - uid: 31128
+ - uid: 31193
components:
- pos: -4.5,-44.5
parent: 2
type: Transform
- - uid: 31129
+ - uid: 31194
components:
- pos: -1.5,-57.5
parent: 2
type: Transform
- - uid: 31130
+ - uid: 31195
components:
- pos: -4.5,-57.5
parent: 2
type: Transform
- - uid: 31131
+ - uid: 31196
components:
- pos: -7.5,-57.5
parent: 2
type: Transform
- - uid: 31132
+ - uid: 31197
components:
- pos: -13.5,-44.5
parent: 2
type: Transform
- - uid: 31133
+ - uid: 31198
components:
- pos: -6.5,-38.5
parent: 2
type: Transform
- - uid: 31134
+ - uid: 31199
components:
- pos: -10.5,-16.5
parent: 2
type: Transform
- - uid: 31135
+ - uid: 31200
components:
- pos: 42.5,-0.5
parent: 2
type: Transform
- - uid: 31136
+ - uid: 31201
components:
- pos: -21.5,-20.5
parent: 2
type: Transform
- - uid: 31137
+ - uid: 31202
components:
- rot: -1.5707963267948966 rad
pos: 21.5,5.5
parent: 2
type: Transform
- - uid: 31138
+ - uid: 31203
components:
- rot: -1.5707963267948966 rad
pos: 26.5,5.5
parent: 2
type: Transform
- - uid: 31139
+ - uid: 31204
components:
- rot: -1.5707963267948966 rad
pos: 23.5,5.5
parent: 2
type: Transform
- - uid: 31140
+ - uid: 31205
components:
- rot: -1.5707963267948966 rad
pos: 25.5,-3.5
parent: 2
type: Transform
- - uid: 31141
+ - uid: 31206
components:
- pos: -12.5,43.5
parent: 2
type: Transform
- - uid: 31142
+ - uid: 31207
components:
- pos: 37.5,-0.5
parent: 2
type: Transform
- - uid: 31143
+ - uid: 31208
components:
- rot: 3.141592653589793 rad
pos: -20.5,-68.5
parent: 2
type: Transform
- - uid: 31144
+ - uid: 31209
components:
- rot: 3.141592653589793 rad
pos: -18.5,-68.5
parent: 2
type: Transform
- - uid: 31145
+ - uid: 31210
components:
- rot: -1.5707963267948966 rad
pos: 19.5,3.5
parent: 2
type: Transform
- - uid: 31146
+ - uid: 31211
components:
- rot: -1.5707963267948966 rad
pos: 19.5,2.5
parent: 2
type: Transform
- - uid: 31147
+ - uid: 31212
components:
- pos: -6.5,-58.5
parent: 2
type: Transform
- - uid: 31148
+ - uid: 31213
components:
- pos: -6.5,-37.5
parent: 2
type: Transform
- - uid: 31149
+ - uid: 31214
components:
- pos: -7.5,-56.5
parent: 2
type: Transform
- - uid: 31150
+ - uid: 31215
components:
- pos: 41.5,-0.5
parent: 2
type: Transform
- - uid: 31151
+ - uid: 31216
components:
- pos: -13.5,-56.5
parent: 2
type: Transform
- - uid: 31152
+ - uid: 31217
components:
- rot: -1.5707963267948966 rad
pos: 19.5,1.5
parent: 2
type: Transform
- - uid: 31153
+ - uid: 31218
components:
- rot: -1.5707963267948966 rad
pos: 27.5,5.5
parent: 2
type: Transform
- - uid: 31154
+ - uid: 31219
components:
- pos: 43.5,-0.5
parent: 2
type: Transform
- - uid: 31155
+ - uid: 31220
components:
- pos: -21.5,-22.5
parent: 2
type: Transform
- - uid: 31156
+ - uid: 31221
components:
- pos: 32.5,-57.5
parent: 2
type: Transform
- - uid: 31157
+ - uid: 31222
components:
- pos: -12.5,14.5
parent: 2
type: Transform
- - uid: 31158
+ - uid: 31223
components:
- pos: -23.5,9.5
parent: 2
type: Transform
- - uid: 31159
+ - uid: 31224
components:
- pos: -22.5,9.5
parent: 2
type: Transform
- - uid: 31160
+ - uid: 31225
components:
- pos: -8.5,43.5
parent: 2
type: Transform
- - uid: 31161
+ - uid: 31226
components:
- pos: 35.5,-4.5
parent: 2
type: Transform
- - uid: 31162
+ - uid: 31227
components:
- pos: -12.5,-16.5
parent: 2
type: Transform
- - uid: 31163
+ - uid: 31228
components:
- pos: 43.5,-12.5
parent: 2
type: Transform
- - uid: 31164
+ - uid: 31229
components:
- pos: 42.5,-44.5
parent: 2
type: Transform
- - uid: 31165
+ - uid: 31230
components:
- pos: 43.5,-44.5
parent: 2
type: Transform
- - uid: 31166
+ - uid: 31231
components:
- pos: 44.5,-44.5
parent: 2
type: Transform
- - uid: 31167
+ - uid: 31232
components:
- pos: 27.5,-51.5
parent: 2
type: Transform
- - uid: 31168
+ - uid: 31233
components:
- pos: 27.5,-47.5
parent: 2
type: Transform
- - uid: 31169
+ - uid: 31234
components:
- pos: -19.5,0.5
parent: 2
type: Transform
- - uid: 31170
+ - uid: 31235
components:
- pos: -17.5,0.5
parent: 2
type: Transform
- - uid: 31171
+ - uid: 31236
components:
- pos: -16.5,0.5
parent: 2
type: Transform
- - uid: 31172
+ - uid: 31237
components:
- rot: -1.5707963267948966 rad
pos: -24.5,-18.5
parent: 2
type: Transform
- - uid: 31173
+ - uid: 31238
components:
- pos: 38.5,-57.5
parent: 2
type: Transform
- - uid: 31174
+ - uid: 31239
components:
- pos: 40.5,-57.5
parent: 2
type: Transform
- - uid: 31175
+ - uid: 31240
components:
- rot: -1.5707963267948966 rad
pos: -25.5,-18.5
parent: 2
type: Transform
- - uid: 31176
+ - uid: 31241
components:
- pos: 5.5,-58.5
parent: 2
type: Transform
- - uid: 31177
+ - uid: 31242
components:
- rot: 1.5707963267948966 rad
pos: -66.5,-29.5
parent: 2
type: Transform
- - uid: 31178
+ - uid: 31243
components:
- rot: -1.5707963267948966 rad
pos: -28.5,-47.5
parent: 2
type: Transform
- - uid: 31179
+ - uid: 31244
components:
- pos: -38.5,-63.5
parent: 2
type: Transform
- - uid: 31180
+ - uid: 31245
components:
- pos: -38.5,-65.5
parent: 2
type: Transform
- - uid: 31181
+ - uid: 31246
components:
- pos: -21.5,24.5
parent: 2
type: Transform
- - uid: 31182
+ - uid: 31247
components:
- pos: -21.5,23.5
parent: 2
type: Transform
- - uid: 31183
+ - uid: 31248
components:
- pos: -34.5,2.5
parent: 2
type: Transform
- - uid: 31184
+ - uid: 31249
components:
- pos: -26.5,9.5
parent: 2
type: Transform
- - uid: 31185
+ - uid: 31250
components:
- pos: -36.5,2.5
parent: 2
type: Transform
- - uid: 31186
+ - uid: 31251
components:
- pos: -36.5,7.5
parent: 2
type: Transform
- - uid: 31187
+ - uid: 31252
components:
- pos: -39.5,2.5
parent: 2
type: Transform
- - uid: 31188
+ - uid: 31253
components:
- pos: -35.5,2.5
parent: 2
type: Transform
- - uid: 31189
+ - uid: 31254
components:
- pos: -39.5,7.5
parent: 2
type: Transform
- - uid: 31190
+ - uid: 31255
components:
- pos: -41.5,2.5
parent: 2
type: Transform
- - uid: 31191
+ - uid: 31256
components:
- pos: -40.5,2.5
parent: 2
type: Transform
- - uid: 31192
+ - uid: 31257
components:
- rot: 1.5707963267948966 rad
pos: -52.5,-0.5
parent: 2
type: Transform
- - uid: 31193
+ - uid: 31258
components:
- pos: -30.5,-72.5
parent: 2
type: Transform
- - uid: 31194
+ - uid: 31259
components:
- pos: -14.5,65.5
parent: 2
type: Transform
- - uid: 31195
+ - uid: 31260
components:
- pos: -14.5,62.5
parent: 2
type: Transform
- - uid: 31196
+ - uid: 31261
components:
- pos: -3.5,47.5
parent: 2
type: Transform
- - uid: 31197
+ - uid: 31262
components:
- pos: -1.5,49.5
parent: 2
type: Transform
- - uid: 31198
+ - uid: 31263
components:
- pos: -5.5,47.5
parent: 2
type: Transform
- - uid: 31199
+ - uid: 31264
components:
- rot: 3.141592653589793 rad
pos: -19.5,44.5
parent: 2
type: Transform
- - uid: 31200
+ - uid: 31265
components:
- pos: -7.5,57.5
parent: 2
type: Transform
- - uid: 31201
+ - uid: 31266
components:
- pos: -5.5,57.5
parent: 2
type: Transform
- - uid: 31202
+ - uid: 31267
components:
- pos: 2.5,47.5
parent: 2
type: Transform
- - uid: 31203
+ - uid: 31268
components:
- pos: 2.5,50.5
parent: 2
type: Transform
- - uid: 31204
+ - uid: 31269
components:
- pos: 2.5,51.5
parent: 2
type: Transform
- - uid: 31205
+ - uid: 31270
components:
- pos: -1.5,50.5
parent: 2
type: Transform
- - uid: 31206
+ - uid: 31271
components:
- pos: -11.5,51.5
parent: 2
type: Transform
- - uid: 31207
+ - uid: 31272
components:
- pos: -11.5,53.5
parent: 2
type: Transform
- - uid: 31208
+ - uid: 31273
components:
- pos: -20.5,62.5
parent: 2
type: Transform
- - uid: 31209
+ - uid: 31274
components:
- rot: 3.141592653589793 rad
pos: -28.5,-72.5
@@ -199262,129 +199978,129 @@ entities:
type: Transform
- proto: WindowDirectional
entities:
- - uid: 31210
+ - uid: 31275
components:
- pos: 3.5,-1.5
parent: 2
type: Transform
- - uid: 31211
+ - uid: 31276
components:
- pos: 2.5,-1.5
parent: 2
type: Transform
- - uid: 31212
+ - uid: 31277
components:
- rot: -1.5707963267948966 rad
pos: 10.5,0.5
parent: 2
type: Transform
- - uid: 31213
+ - uid: 31278
components:
- rot: 1.5707963267948966 rad
pos: 7.5,1.5
parent: 2
type: Transform
- - uid: 31214
+ - uid: 31279
components:
- pos: 8.5,2.5
parent: 2
type: Transform
- - uid: 31215
+ - uid: 31280
components:
- rot: -1.5707963267948966 rad
pos: 10.5,1.5
parent: 2
type: Transform
- - uid: 31216
+ - uid: 31281
components:
- rot: -1.5707963267948966 rad
pos: 5.5,-57.5
parent: 2
type: Transform
- - uid: 31217
+ - uid: 31282
components:
- pos: 9.5,2.5
parent: 2
type: Transform
- - uid: 31218
+ - uid: 31283
components:
- rot: 3.141592653589793 rad
pos: 8.5,-0.5
parent: 2
type: Transform
- - uid: 31219
+ - uid: 31284
components:
- rot: 1.5707963267948966 rad
pos: 7.5,0.5
parent: 2
type: Transform
- - uid: 31220
+ - uid: 31285
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-35.5
parent: 2
type: Transform
- - uid: 31221
+ - uid: 31286
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-49.5
parent: 2
type: Transform
- - uid: 31222
+ - uid: 31287
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-47.5
parent: 2
type: Transform
- - uid: 31223
+ - uid: 31288
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-47.5
parent: 2
type: Transform
- - uid: 31224
+ - uid: 31289
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-49.5
parent: 2
type: Transform
- - uid: 31225
+ - uid: 31290
components:
- rot: 1.5707963267948966 rad
pos: 59.5,-32.5
parent: 2
type: Transform
- - uid: 31226
+ - uid: 31291
components:
- rot: 1.5707963267948966 rad
pos: 68.5,-48.5
parent: 2
type: Transform
- - uid: 31227
+ - uid: 31292
components:
- rot: -1.5707963267948966 rad
pos: 74.5,-48.5
parent: 2
type: Transform
- - uid: 31228
+ - uid: 31293
components:
- rot: 3.141592653589793 rad
pos: 69.5,-47.5
parent: 2
type: Transform
- - uid: 31229
+ - uid: 31294
components:
- rot: 3.141592653589793 rad
pos: 70.5,-47.5
parent: 2
type: Transform
- - uid: 31230
+ - uid: 31295
components:
- rot: 3.141592653589793 rad
pos: 73.5,-47.5
parent: 2
type: Transform
- - uid: 31231
+ - uid: 31296
components:
- rot: 3.141592653589793 rad
pos: 72.5,-47.5
@@ -199392,1641 +200108,1657 @@ entities:
type: Transform
- proto: WindowReinforcedDirectional
entities:
- - uid: 31232
- components:
- - rot: 1.5707963267948966 rad
- pos: -25.5,-24.5
- parent: 2
- type: Transform
- - uid: 31233
- components:
- - rot: 3.141592653589793 rad
- pos: -24.5,-24.5
- parent: 2
- type: Transform
- - uid: 31234
+ - uid: 31297
components:
- rot: -1.5707963267948966 rad
pos: -11.5,7.5
parent: 2
type: Transform
- - uid: 31235
+ - uid: 31298
components:
- pos: 16.5,-53.5
parent: 2
type: Transform
- - uid: 31236
+ - uid: 31299
components:
- pos: -11.5,6.5
parent: 2
type: Transform
- - uid: 31237
+ - uid: 31300
components:
- pos: 15.5,-53.5
parent: 2
type: Transform
- - uid: 31238
+ - uid: 31301
components:
- rot: 3.141592653589793 rad
pos: -11.5,7.5
parent: 2
type: Transform
- - uid: 31239
+ - uid: 31302
components:
- rot: -1.5707963267948966 rad
pos: -11.5,6.5
parent: 2
type: Transform
- - uid: 31240
+ - uid: 31303
components:
- rot: 1.5707963267948966 rad
pos: -11.5,6.5
parent: 2
type: Transform
- - uid: 31241
+ - uid: 31304
components:
- rot: 1.5707963267948966 rad
pos: -11.5,7.5
parent: 2
type: Transform
- - uid: 31242
+ - uid: 31305
components:
- pos: -28.5,-78.5
parent: 2
type: Transform
- - uid: 31243
+ - uid: 31306
components:
- rot: -1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 31244
+ - uid: 31307
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-75.5
parent: 2
type: Transform
- - uid: 31245
+ - uid: 31308
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-88.5
parent: 2
type: Transform
- - uid: 31246
+ - uid: 31309
components:
- pos: -17.5,-76.5
parent: 2
type: Transform
- - uid: 31247
+ - uid: 31310
components:
- pos: -30.5,-78.5
parent: 2
type: Transform
- - uid: 31248
+ - uid: 31311
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-80.5
parent: 2
type: Transform
- - uid: 31249
+ - uid: 31312
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-90.5
parent: 2
type: Transform
- - uid: 31250
+ - uid: 31313
components:
- pos: -4.5,4.5
parent: 2
type: Transform
- - uid: 31251
+ - uid: 31314
components:
- rot: -1.5707963267948966 rad
pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 31252
+ - uid: 31315
components:
- rot: 1.5707963267948966 rad
pos: 24.5,-21.5
parent: 2
type: Transform
- - uid: 31253
+ - uid: 31316
components:
- rot: 1.5707963267948966 rad
pos: 26.5,-21.5
parent: 2
type: Transform
- - uid: 31254
+ - uid: 31317
components:
- rot: -1.5707963267948966 rad
pos: 26.5,-21.5
parent: 2
type: Transform
- - uid: 31255
+ - uid: 31318
components:
- pos: 49.5,22.5
parent: 2
type: Transform
- - uid: 31256
+ - uid: 31319
components:
- pos: 25.5,-23.5
parent: 2
type: Transform
- - uid: 31257
+ - uid: 31320
components:
- rot: 3.141592653589793 rad
pos: 26.5,28.5
parent: 2
type: Transform
- - uid: 31258
+ - uid: 31321
components:
- rot: 1.5707963267948966 rad
pos: 30.5,29.5
parent: 2
type: Transform
- - uid: 31259
+ - uid: 31322
components:
- rot: 3.141592653589793 rad
pos: 32.5,28.5
parent: 2
type: Transform
- - uid: 31260
+ - uid: 31323
components:
- rot: 3.141592653589793 rad
pos: 27.5,28.5
parent: 2
type: Transform
- - uid: 31261
+ - uid: 31324
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-78.5
parent: 2
type: Transform
- - uid: 31262
+ - uid: 31325
components:
- pos: -11.5,-9.5
parent: 2
type: Transform
- - uid: 31263
+ - uid: 31326
components:
- rot: -1.5707963267948966 rad
pos: 19.5,-54.5
parent: 2
type: Transform
- - uid: 31264
+ - uid: 31327
components:
- pos: 58.5,22.5
parent: 2
type: Transform
- - uid: 31265
+ - uid: 31328
components:
- pos: 52.5,22.5
parent: 2
type: Transform
- - uid: 31266
+ - uid: 31329
components:
- pos: 55.5,22.5
parent: 2
type: Transform
- - uid: 31267
+ - uid: 31330
components:
- rot: -1.5707963267948966 rad
pos: 28.5,29.5
parent: 2
type: Transform
- - uid: 31268
+ - uid: 31331
components:
- rot: 3.141592653589793 rad
pos: 26.5,30.5
parent: 2
type: Transform
- - uid: 31269
+ - uid: 31332
components:
- rot: 3.141592653589793 rad
pos: -17.5,-78.5
parent: 2
type: Transform
- - uid: 31270
+ - uid: 31333
components:
- rot: -1.5707963267948966 rad
pos: -17.5,-76.5
parent: 2
type: Transform
- - uid: 31271
+ - uid: 31334
components:
- rot: -1.5707963267948966 rad
pos: -16.5,-79.5
parent: 2
type: Transform
- - uid: 31272
+ - uid: 31335
components:
- rot: 1.5707963267948966 rad
pos: -28.5,-78.5
parent: 2
type: Transform
- - uid: 31273
+ - uid: 31336
components:
- rot: 3.141592653589793 rad
pos: -26.5,-88.5
parent: 2
type: Transform
- - uid: 31274
+ - uid: 31337
components:
- rot: 3.141592653589793 rad
pos: -23.5,-88.5
parent: 2
type: Transform
- - uid: 31275
+ - uid: 31338
components:
- rot: 3.141592653589793 rad
pos: -21.5,-88.5
parent: 2
type: Transform
- - uid: 31276
+ - uid: 31339
components:
- pos: 26.5,-23.5
parent: 2
type: Transform
- - uid: 31277
+ - uid: 31340
components:
- rot: 3.141592653589793 rad
pos: -24.5,-88.5
parent: 2
type: Transform
- - uid: 31278
+ - uid: 31341
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-90.5
parent: 2
type: Transform
- - uid: 31279
+ - uid: 31342
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-88.5
parent: 2
type: Transform
- - uid: 31280
+ - uid: 31343
components:
- rot: -1.5707963267948966 rad
pos: 28.5,27.5
parent: 2
type: Transform
- - uid: 31281
+ - uid: 31344
components:
- pos: -9.5,-81.5
parent: 2
type: Transform
- - uid: 31282
+ - uid: 31345
components:
- rot: 3.141592653589793 rad
pos: 31.5,30.5
parent: 2
type: Transform
- - uid: 31283
+ - uid: 31346
components:
- rot: 3.141592653589793 rad
pos: 27.5,30.5
parent: 2
type: Transform
- - uid: 31284
+ - uid: 31347
components:
- rot: 3.141592653589793 rad
pos: -8.5,21.5
parent: 2
type: Transform
- - uid: 31285
+ - uid: 31348
components:
- rot: 3.141592653589793 rad
pos: 32.5,30.5
parent: 2
type: Transform
- - uid: 31286
+ - uid: 31349
components:
- rot: 1.5707963267948966 rad
pos: 23.5,-24.5
parent: 2
type: Transform
- - uid: 31287
+ - uid: 31350
components:
- rot: 3.141592653589793 rad
pos: 31.5,28.5
parent: 2
type: Transform
- - uid: 31288
+ - uid: 31351
components:
- rot: -1.5707963267948966 rad
pos: -22.5,-89.5
parent: 2
type: Transform
- - uid: 31289
+ - uid: 31352
components:
- rot: 1.5707963267948966 rad
pos: -23.5,-89.5
parent: 2
type: Transform
- - uid: 31290
+ - uid: 31353
components:
- pos: -29.5,-78.5
parent: 2
type: Transform
- - uid: 31291
+ - uid: 31354
components:
- rot: 1.5707963267948966 rad
pos: 30.5,27.5
parent: 2
type: Transform
- - uid: 31292
+ - uid: 31355
components:
- rot: -1.5707963267948966 rad
pos: 24.5,-21.5
parent: 2
type: Transform
- - uid: 31293
+ - uid: 31356
components:
- rot: 1.5707963267948966 rad
pos: 28.5,-21.5
parent: 2
type: Transform
- - uid: 31294
+ - uid: 31357
components:
- pos: -3.5,4.5
parent: 2
type: Transform
- - uid: 31295
+ - uid: 31358
components:
- rot: 1.5707963267948966 rad
pos: 22.5,-21.5
parent: 2
type: Transform
- - uid: 31296
+ - uid: 31359
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-82.5
parent: 2
type: Transform
- - uid: 31297
+ - uid: 31360
components:
- rot: -1.5707963267948966 rad
pos: 27.5,-24.5
parent: 2
type: Transform
- - uid: 31298
+ - uid: 31361
components:
- pos: 24.5,-23.5
parent: 2
type: Transform
- - uid: 31299
+ - uid: 31362
components:
- pos: 18.5,-53.5
parent: 2
type: Transform
- - uid: 31300
+ - uid: 31363
components:
- pos: -14.5,-9.5
parent: 2
type: Transform
- - uid: 31301
+ - uid: 31364
components:
- rot: 3.141592653589793 rad
pos: -22.5,-88.5
parent: 2
type: Transform
- - uid: 31302
+ - uid: 31365
components:
- rot: 3.141592653589793 rad
pos: -19.5,-88.5
parent: 2
type: Transform
- - uid: 31303
+ - uid: 31366
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-10.5
parent: 2
type: Transform
- - uid: 31304
+ - uid: 31367
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-10.5
parent: 2
type: Transform
- - uid: 31305
+ - uid: 31368
components:
- pos: -10.5,29.5
parent: 2
type: Transform
- - uid: 31306
+ - uid: 31369
components:
- pos: -9.5,29.5
parent: 2
type: Transform
- - uid: 31307
+ - uid: 31370
components:
- pos: 46.5,22.5
parent: 2
type: Transform
- - uid: 31308
+ - uid: 31371
components:
- rot: -1.5707963267948966 rad
pos: 60.5,19.5
parent: 2
type: Transform
- - uid: 31309
+ - uid: 31372
components:
- rot: -1.5707963267948966 rad
pos: 60.5,16.5
parent: 2
type: Transform
- - uid: 31310
+ - uid: 31373
components:
- pos: -10.5,-82.5
parent: 2
type: Transform
- - uid: 31311
+ - uid: 31374
components:
- pos: 30.5,-52.5
parent: 2
type: Transform
- - uid: 31312
+ - uid: 31375
components:
- pos: 29.5,-52.5
parent: 2
type: Transform
- - uid: 31313
+ - uid: 31376
components:
- pos: 28.5,-52.5
parent: 2
type: Transform
- - uid: 31314
+ - uid: 31377
components:
- pos: 32.5,-52.5
parent: 2
type: Transform
- - uid: 31315
+ - uid: 31378
components:
- pos: 33.5,-52.5
parent: 2
type: Transform
- - uid: 31316
+ - uid: 31379
components:
- pos: 34.5,-52.5
parent: 2
type: Transform
- - uid: 31317
+ - uid: 31380
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-47.5
parent: 2
type: Transform
- - uid: 31318
+ - uid: 31381
components:
- rot: 1.5707963267948966 rad
pos: 32.5,-48.5
parent: 2
type: Transform
- - uid: 31319
+ - uid: 31382
components:
- pos: 33.5,-48.5
parent: 2
type: Transform
- - uid: 31320
+ - uid: 31383
components:
- pos: 34.5,-48.5
parent: 2
type: Transform
- - uid: 31321
+ - uid: 31384
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-48.5
parent: 2
type: Transform
- - uid: 31322
+ - uid: 31385
components:
- rot: 1.5707963267948966 rad
pos: 34.5,-47.5
parent: 2
type: Transform
- - uid: 31323
+ - uid: 31386
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-47.5
parent: 2
type: Transform
- - uid: 31324
+ - uid: 31387
components:
- rot: 1.5707963267948966 rad
pos: 29.5,-48.5
parent: 2
type: Transform
- - uid: 31325
+ - uid: 31388
components:
- pos: 29.5,-48.5
parent: 2
type: Transform
- - uid: 31326
+ - uid: 31389
components:
- pos: 28.5,-48.5
parent: 2
type: Transform
- - uid: 31327
+ - uid: 31390
components:
- rot: 3.141592653589793 rad
pos: 62.5,-48.5
parent: 2
type: Transform
- - uid: 31328
+ - uid: 31391
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-47.5
parent: 2
type: Transform
- - uid: 31329
+ - uid: 31392
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-47.5
parent: 2
type: Transform
- - uid: 31330
+ - uid: 31393
components:
- rot: 3.141592653589793 rad
pos: 63.5,-47.5
parent: 2
type: Transform
- - uid: 31331
+ - uid: 31394
components:
- rot: -1.5707963267948966 rad
pos: 64.5,-46.5
parent: 2
type: Transform
- - uid: 31332
+ - uid: 31395
components:
- pos: 63.5,-45.5
parent: 2
type: Transform
- - uid: 31333
+ - uid: 31396
components:
- pos: 62.5,-44.5
parent: 2
type: Transform
- - uid: 31334
+ - uid: 31397
components:
- rot: -1.5707963267948966 rad
pos: 63.5,-45.5
parent: 2
type: Transform
- - uid: 31335
+ - uid: 31398
components:
- rot: 1.5707963267948966 rad
pos: 61.5,-45.5
parent: 2
type: Transform
- - uid: 31336
+ - uid: 31399
components:
- pos: 61.5,-45.5
parent: 2
type: Transform
- - uid: 31337
+ - uid: 31400
components:
- rot: 1.5707963267948966 rad
pos: 60.5,-46.5
parent: 2
type: Transform
- - uid: 31338
+ - uid: 31401
components:
- rot: 3.141592653589793 rad
pos: 61.5,-47.5
parent: 2
type: Transform
- - uid: 31339
+ - uid: 31402
components:
- rot: 1.5707963267948966 rad
pos: -44.5,-13.5
parent: 2
type: Transform
- - uid: 31340
+ - uid: 31403
components:
- rot: 3.141592653589793 rad
pos: -46.5,-8.5
parent: 2
type: Transform
- - uid: 31341
+ - uid: 31404
components:
- rot: -1.5707963267948966 rad
pos: -8.5,27.5
parent: 2
type: Transform
- - uid: 31342
+ - uid: 31405
components:
- rot: 1.5707963267948966 rad
pos: -11.5,28.5
parent: 2
type: Transform
- - uid: 31343
+ - uid: 31406
components:
- rot: -1.5707963267948966 rad
pos: -8.5,28.5
parent: 2
type: Transform
- - uid: 31344
+ - uid: 31407
components:
- rot: -1.5707963267948966 rad
pos: -34.5,13.5
parent: 2
type: Transform
- - uid: 31345
+ - uid: 31408
components:
- rot: -1.5707963267948966 rad
pos: -34.5,15.5
parent: 2
type: Transform
- - uid: 31346
+ - uid: 31409
components:
- rot: 3.141592653589793 rad
pos: -3.5,4.5
parent: 2
type: Transform
- - uid: 31347
+ - uid: 31410
components:
- rot: 3.141592653589793 rad
pos: -4.5,4.5
parent: 2
type: Transform
- - uid: 31348
+ - uid: 31411
components:
- rot: 1.5707963267948966 rad
pos: -3.5,4.5
parent: 2
type: Transform
- - uid: 31349
+ - uid: 31412
components:
- rot: -1.5707963267948966 rad
pos: -4.5,4.5
parent: 2
type: Transform
- - uid: 31350
+ - uid: 31413
components:
- pos: -12.5,-9.5
parent: 2
type: Transform
- - uid: 31351
+ - uid: 31414
components:
- rot: 3.141592653589793 rad
pos: 30.5,30.5
parent: 2
type: Transform
- - uid: 31352
+ - uid: 31415
components:
- pos: -8.5,-81.5
parent: 2
type: Transform
- - uid: 31353
+ - uid: 31416
components:
- rot: 3.141592653589793 rad
pos: -10.5,-84.5
parent: 2
type: Transform
- - uid: 31354
+ - uid: 31417
components:
- rot: 3.141592653589793 rad
pos: -9.5,-84.5
parent: 2
type: Transform
- - uid: 31355
+ - uid: 31418
components:
- pos: 45.5,38.5
parent: 2
type: Transform
- - uid: 31356
+ - uid: 31419
components:
- pos: 46.5,38.5
parent: 2
type: Transform
- - uid: 31357
+ - uid: 31420
components:
- pos: 47.5,38.5
parent: 2
type: Transform
- - uid: 31358
+ - uid: 31421
components:
- rot: -1.5707963267948966 rad
pos: 49.5,37.5
parent: 2
type: Transform
- - uid: 31359
+ - uid: 31422
components:
- rot: -1.5707963267948966 rad
pos: 49.5,36.5
parent: 2
type: Transform
- - uid: 31360
+ - uid: 31423
components:
- rot: 3.141592653589793 rad
pos: 48.5,35.5
parent: 2
type: Transform
- - uid: 31361
+ - uid: 31424
components:
- rot: 3.141592653589793 rad
pos: 47.5,35.5
parent: 2
type: Transform
- - uid: 31362
+ - uid: 31425
components:
- rot: 3.141592653589793 rad
pos: 46.5,35.5
parent: 2
type: Transform
- - uid: 31363
+ - uid: 31426
components:
- rot: 1.5707963267948966 rad
pos: 45.5,36.5
parent: 2
type: Transform
- - uid: 31364
+ - uid: 31427
components:
- rot: 3.141592653589793 rad
pos: 45.5,36.5
parent: 2
type: Transform
- - uid: 31365
+ - uid: 31428
components:
- pos: -2.5,71.5
parent: 2
type: Transform
- - uid: 31366
+ - uid: 31429
components:
- pos: -1.5,71.5
parent: 2
type: Transform
- - uid: 31367
+ - uid: 31430
components:
- pos: -0.5,71.5
parent: 2
type: Transform
- - uid: 31368
+ - uid: 31431
components:
- rot: 1.5707963267948966 rad
pos: -3.5,70.5
parent: 2
type: Transform
- - uid: 31369
+ - uid: 31432
components:
- rot: 1.5707963267948966 rad
pos: -3.5,69.5
parent: 2
type: Transform
- - uid: 31370
+ - uid: 31433
components:
- rot: 1.5707963267948966 rad
pos: -3.5,68.5
parent: 2
type: Transform
- - uid: 31371
+ - uid: 31434
components:
- rot: 3.141592653589793 rad
pos: -2.5,67.5
parent: 2
type: Transform
- - uid: 31372
+ - uid: 31435
components:
- rot: 3.141592653589793 rad
pos: -1.5,67.5
parent: 2
type: Transform
- - uid: 31373
+ - uid: 31436
components:
- rot: 3.141592653589793 rad
pos: -0.5,67.5
parent: 2
type: Transform
- - uid: 31374
+ - uid: 31437
components:
- rot: -1.5707963267948966 rad
pos: 0.5,68.5
parent: 2
type: Transform
- - uid: 31375
+ - uid: 31438
components:
- rot: -1.5707963267948966 rad
pos: 0.5,69.5
parent: 2
type: Transform
- - uid: 31376
+ - uid: 31439
components:
- rot: -1.5707963267948966 rad
pos: 0.5,70.5
parent: 2
type: Transform
- - uid: 31377
+ - uid: 31440
components:
- pos: -10.5,24.5
parent: 2
type: Transform
- - uid: 31378
+ - uid: 31441
components:
- rot: 3.141592653589793 rad
pos: -10.5,21.5
parent: 2
type: Transform
- - uid: 31379
+ - uid: 31442
components:
- rot: 3.141592653589793 rad
pos: -9.5,21.5
parent: 2
type: Transform
- - uid: 31380
+ - uid: 31443
components:
- rot: 1.5707963267948966 rad
pos: -10.5,24.5
parent: 2
type: Transform
- - uid: 31381
+ - uid: 31444
components:
- pos: -11.5,28.5
parent: 2
type: Transform
- - uid: 31382
+ - uid: 31445
components:
- rot: -1.5707963267948966 rad
pos: -8.5,26.5
parent: 2
type: Transform
- - uid: 31383
+ - uid: 31446
components:
- rot: -1.5707963267948966 rad
pos: -8.5,24.5
parent: 2
type: Transform
- - uid: 31384
+ - uid: 31447
components:
- rot: -1.5707963267948966 rad
pos: -8.5,23.5
parent: 2
type: Transform
- - uid: 31385
+ - uid: 31448
components:
- pos: -8.5,23.5
parent: 2
type: Transform
- - uid: 31386
+ - uid: 31449
components:
- rot: 3.141592653589793 rad
pos: -8.5,-84.5
parent: 2
type: Transform
- - uid: 31387
+ - uid: 31450
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-83.5
parent: 2
type: Transform
- - uid: 31388
+ - uid: 31451
components:
- rot: -1.5707963267948966 rad
pos: -7.5,-82.5
parent: 2
type: Transform
- - uid: 31389
+ - uid: 31452
components:
- rot: 3.141592653589793 rad
pos: -10.5,26.5
parent: 2
type: Transform
- - uid: 31390
+ - uid: 31453
components:
- rot: 1.5707963267948966 rad
pos: -10.5,26.5
parent: 2
type: Transform
- - uid: 31391
+ - uid: 31454
components:
- rot: 3.141592653589793 rad
pos: -11.5,26.5
parent: 2
type: Transform
- - uid: 31392
+ - uid: 31455
components:
- rot: 3.141592653589793 rad
pos: -12.5,26.5
parent: 2
type: Transform
- - uid: 31393
+ - uid: 31456
components:
- pos: -11.5,-81.5
parent: 2
type: Transform
- - uid: 31394
+ - uid: 31457
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-82.5
parent: 2
type: Transform
- - uid: 31395
+ - uid: 31458
components:
- rot: 3.141592653589793 rad
pos: -11.5,-84.5
parent: 2
type: Transform
- - uid: 31396
+ - uid: 31459
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-83.5
parent: 2
type: Transform
- - uid: 31397
+ - uid: 31460
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-82.5
parent: 2
type: Transform
- - uid: 31398
+ - uid: 31461
components:
- rot: 3.141592653589793 rad
pos: -12.5,-84.5
parent: 2
type: Transform
- - uid: 31399
+ - uid: 31462
components:
- rot: 3.141592653589793 rad
pos: -12.5,-81.5
parent: 2
type: Transform
- - uid: 31400
+ - uid: 31463
components:
- rot: -1.5707963267948966 rad
pos: -11.5,-81.5
parent: 2
type: Transform
- - uid: 31401
+ - uid: 31464
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-81.5
parent: 2
type: Transform
- - uid: 31402
+ - uid: 31465
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-80.5
parent: 2
type: Transform
- - uid: 31403
+ - uid: 31466
components:
- rot: 3.141592653589793 rad
pos: -10.5,-79.5
parent: 2
type: Transform
- - uid: 31404
+ - uid: 31467
components:
- rot: 3.141592653589793 rad
pos: -11.5,-79.5
parent: 2
type: Transform
- - uid: 31405
+ - uid: 31468
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-80.5
parent: 2
type: Transform
- - uid: 31406
+ - uid: 31469
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-79.5
parent: 2
type: Transform
- - uid: 31407
+ - uid: 31470
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-81.5
parent: 2
type: Transform
- - uid: 31408
+ - uid: 31471
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-80.5
parent: 2
type: Transform
- - uid: 31409
+ - uid: 31472
components:
- rot: 3.141592653589793 rad
pos: -9.5,-79.5
parent: 2
type: Transform
- - uid: 31410
+ - uid: 31473
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-79.5
parent: 2
type: Transform
- - uid: 31411
+ - uid: 31474
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-80.5
parent: 2
type: Transform
- - uid: 31412
+ - uid: 31475
components:
- pos: -8.5,-80.5
parent: 2
type: Transform
- - uid: 31413
+ - uid: 31476
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-80.5
parent: 2
type: Transform
- - uid: 31414
+ - uid: 31477
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-79.5
parent: 2
type: Transform
- - uid: 31415
+ - uid: 31478
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-79.5
parent: 2
type: Transform
- - uid: 31416
+ - uid: 31479
components:
- rot: 1.5707963267948966 rad
pos: -7.5,-80.5
parent: 2
type: Transform
- - uid: 31417
+ - uid: 31480
components:
- pos: -7.5,-81.5
parent: 2
type: Transform
- - uid: 31418
+ - uid: 31481
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-81.5
parent: 2
type: Transform
- - uid: 31419
+ - uid: 31482
components:
- rot: 3.141592653589793 rad
pos: -6.5,-81.5
parent: 2
type: Transform
- - uid: 31420
+ - uid: 31483
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-82.5
parent: 2
type: Transform
- - uid: 31421
+ - uid: 31484
components:
- rot: 3.141592653589793 rad
pos: -6.5,-83.5
parent: 2
type: Transform
- - uid: 31422
+ - uid: 31485
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-83.5
parent: 2
type: Transform
- - uid: 31423
+ - uid: 31486
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-84.5
parent: 2
type: Transform
- - uid: 31424
+ - uid: 31487
components:
- rot: 3.141592653589793 rad
pos: -7.5,-85.5
parent: 2
type: Transform
- - uid: 31425
+ - uid: 31488
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-84.5
parent: 2
type: Transform
- - uid: 31426
+ - uid: 31489
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-85.5
parent: 2
type: Transform
- - uid: 31427
+ - uid: 31490
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-85.5
parent: 2
type: Transform
- - uid: 31428
+ - uid: 31491
components:
- rot: 1.5707963267948966 rad
pos: -9.5,-77.5
parent: 2
type: Transform
- - uid: 31429
+ - uid: 31492
components:
- rot: 3.141592653589793 rad
pos: -8.5,-78.5
parent: 2
type: Transform
- - uid: 31430
+ - uid: 31493
components:
- rot: 3.141592653589793 rad
pos: -7.5,-78.5
parent: 2
type: Transform
- - uid: 31431
+ - uid: 31494
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-78.5
parent: 2
type: Transform
- - uid: 31432
+ - uid: 31495
components:
- rot: -1.5707963267948966 rad
pos: -9.5,-77.5
parent: 2
type: Transform
- - uid: 31433
+ - uid: 31496
components:
- pos: -6.5,-79.5
parent: 2
type: Transform
- - uid: 31434
+ - uid: 31497
components:
- pos: -5.5,-79.5
parent: 2
type: Transform
- - uid: 31435
+ - uid: 31498
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-80.5
parent: 2
type: Transform
- - uid: 31436
+ - uid: 31499
components:
- rot: 3.141592653589793 rad
pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 31437
+ - uid: 31500
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-82.5
parent: 2
type: Transform
- - uid: 31438
+ - uid: 31501
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-83.5
parent: 2
type: Transform
- - uid: 31439
+ - uid: 31502
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-83.5
parent: 2
type: Transform
- - uid: 31440
+ - uid: 31503
components:
- rot: 1.5707963267948966 rad
pos: -6.5,-84.5
parent: 2
type: Transform
- - uid: 31441
+ - uid: 31504
components:
- rot: 3.141592653589793 rad
pos: -5.5,-85.5
parent: 2
type: Transform
- - uid: 31442
+ - uid: 31505
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-83.5
parent: 2
type: Transform
- - uid: 31443
+ - uid: 31506
components:
- rot: 1.5707963267948966 rad
pos: -4.5,-82.5
parent: 2
type: Transform
- - uid: 31444
+ - uid: 31507
components:
- rot: 3.141592653589793 rad
pos: -5.5,-87.5
parent: 2
type: Transform
- - uid: 31445
+ - uid: 31508
components:
- rot: 3.141592653589793 rad
pos: -6.5,-87.5
parent: 2
type: Transform
- - uid: 31446
+ - uid: 31509
components:
- rot: 3.141592653589793 rad
pos: -7.5,-87.5
parent: 2
type: Transform
- - uid: 31447
+ - uid: 31510
components:
- rot: 3.141592653589793 rad
pos: -8.5,-87.5
parent: 2
type: Transform
- - uid: 31448
+ - uid: 31511
components:
- rot: 3.141592653589793 rad
pos: -9.5,-87.5
parent: 2
type: Transform
- - uid: 31449
+ - uid: 31512
components:
- rot: 3.141592653589793 rad
pos: -10.5,-88.5
parent: 2
type: Transform
- - uid: 31450
+ - uid: 31513
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-86.5
parent: 2
type: Transform
- - uid: 31451
+ - uid: 31514
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-85.5
parent: 2
type: Transform
- - uid: 31452
+ - uid: 31515
components:
- rot: 3.141592653589793 rad
pos: -9.5,-86.5
parent: 2
type: Transform
- - uid: 31453
+ - uid: 31516
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-85.5
parent: 2
type: Transform
- - uid: 31454
+ - uid: 31517
components:
- rot: 3.141592653589793 rad
pos: -11.5,-85.5
parent: 2
type: Transform
- - uid: 31455
+ - uid: 31518
components:
- rot: 3.141592653589793 rad
pos: -12.5,-85.5
parent: 2
type: Transform
- - uid: 31456
+ - uid: 31519
components:
- rot: 3.141592653589793 rad
pos: -7.5,-86.5
parent: 2
type: Transform
- - uid: 31457
+ - uid: 31520
components:
- rot: 3.141592653589793 rad
pos: -6.5,-86.5
parent: 2
type: Transform
- - uid: 31458
+ - uid: 31521
components:
- rot: 1.5707963267948966 rad
pos: -5.5,-85.5
parent: 2
type: Transform
- - uid: 31459
+ - uid: 31522
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-85.5
parent: 2
type: Transform
- - uid: 31460
+ - uid: 31523
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-85.5
parent: 2
type: Transform
- - uid: 31461
+ - uid: 31524
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-84.5
parent: 2
type: Transform
- - uid: 31462
+ - uid: 31525
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-83.5
parent: 2
type: Transform
- - uid: 31463
+ - uid: 31526
components:
- rot: 3.141592653589793 rad
pos: -13.5,-87.5
parent: 2
type: Transform
- - uid: 31464
+ - uid: 31527
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-86.5
parent: 2
type: Transform
- - uid: 31465
+ - uid: 31528
components:
- rot: 3.141592653589793 rad
pos: -12.5,-86.5
parent: 2
type: Transform
- - uid: 31466
+ - uid: 31529
components:
- rot: 1.5707963267948966 rad
pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 31467
+ - uid: 31530
components:
- rot: 3.141592653589793 rad
pos: -14.5,-82.5
parent: 2
type: Transform
- - uid: 31468
+ - uid: 31531
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-82.5
parent: 2
type: Transform
- - uid: 31469
+ - uid: 31532
components:
- pos: -15.5,-83.5
parent: 2
type: Transform
- - uid: 31470
+ - uid: 31533
components:
- rot: 3.141592653589793 rad
pos: -14.5,-85.5
parent: 2
type: Transform
- - uid: 31471
+ - uid: 31534
components:
- rot: 1.5707963267948966 rad
pos: -12.5,-87.5
parent: 2
type: Transform
- - uid: 31472
+ - uid: 31535
components:
- rot: 3.141592653589793 rad
pos: -11.5,-88.5
parent: 2
type: Transform
- - uid: 31473
+ - uid: 31536
components:
- rot: 1.5707963267948966 rad
pos: -11.5,-87.5
parent: 2
type: Transform
- - uid: 31474
+ - uid: 31537
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-87.5
parent: 2
type: Transform
- - uid: 31475
+ - uid: 31538
components:
- rot: 3.141592653589793 rad
pos: -8.5,-88.5
parent: 2
type: Transform
- - uid: 31476
+ - uid: 31539
components:
- rot: 1.5707963267948966 rad
pos: -8.5,-88.5
parent: 2
type: Transform
- - uid: 31477
+ - uid: 31540
components:
- rot: -1.5707963267948966 rad
pos: -6.5,-88.5
parent: 2
type: Transform
- - uid: 31478
+ - uid: 31541
components:
- pos: -6.5,-87.5
parent: 2
type: Transform
- - uid: 31479
+ - uid: 31542
components:
- pos: -5.5,-87.5
parent: 2
type: Transform
- - uid: 31480
+ - uid: 31543
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-87.5
parent: 2
type: Transform
- - uid: 31481
+ - uid: 31544
components:
- rot: -1.5707963267948966 rad
pos: -12.5,-87.5
parent: 2
type: Transform
- - uid: 31482
+ - uid: 31545
components:
- rot: 3.141592653589793 rad
pos: -13.5,-88.5
parent: 2
type: Transform
- - uid: 31483
+ - uid: 31546
components:
- rot: 3.141592653589793 rad
pos: -14.5,-88.5
parent: 2
type: Transform
- - uid: 31484
+ - uid: 31547
components:
- rot: 1.5707963267948966 rad
pos: -15.5,-87.5
parent: 2
type: Transform
- - uid: 31485
+ - uid: 31548
components:
- pos: -15.5,-85.5
parent: 2
type: Transform
- - uid: 31486
+ - uid: 31549
components:
- rot: 1.5707963267948966 rad
pos: -13.5,-86.5
parent: 2
type: Transform
- - uid: 31487
+ - uid: 31550
components:
- rot: 1.5707963267948966 rad
pos: -10.5,-86.5
parent: 2
type: Transform
- - uid: 31488
+ - uid: 31551
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-77.5
parent: 2
type: Transform
- - uid: 31489
+ - uid: 31552
components:
- rot: -1.5707963267948966 rad
pos: -5.5,-78.5
parent: 2
type: Transform
- - uid: 31490
+ - uid: 31553
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-79.5
parent: 2
type: Transform
- - uid: 31491
+ - uid: 31554
components:
- rot: -1.5707963267948966 rad
pos: -4.5,-78.5
parent: 2
type: Transform
- - uid: 31492
+ - uid: 31555
components:
- rot: -1.5707963267948966 rad
pos: -10.5,-78.5
parent: 2
type: Transform
- - uid: 31493
+ - uid: 31556
components:
- rot: 3.141592653589793 rad
pos: -11.5,-78.5
parent: 2
type: Transform
- - uid: 31494
+ - uid: 31557
components:
- rot: 3.141592653589793 rad
pos: 28.5,30.5
parent: 2
type: Transform
- - uid: 31495
+ - uid: 31558
components:
- pos: 16.5,37.5
parent: 2
type: Transform
- - uid: 31496
+ - uid: 31559
components:
- rot: 3.141592653589793 rad
pos: -55.5,-63.5
parent: 2
type: Transform
- - uid: 31497
+ - uid: 31560
components:
- rot: 3.141592653589793 rad
pos: -54.5,-63.5
parent: 2
type: Transform
- - uid: 31498
+ - uid: 31561
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-63.5
parent: 2
type: Transform
- - uid: 31499
+ - uid: 31562
components:
- rot: -1.5707963267948966 rad
pos: -53.5,-64.5
parent: 2
type: Transform
- - uid: 31500
+ - uid: 31563
components:
- rot: 1.5707963267948966 rad
pos: 42.5,5.5
parent: 2
type: Transform
- - uid: 31501
+ - uid: 31564
components:
- rot: 1.5707963267948966 rad
pos: 42.5,7.5
parent: 2
type: Transform
- - uid: 31502
+ - uid: 31565
+ components:
+ - pos: -6.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 31566
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-48.5
+ parent: 2
+ type: Transform
+ - uid: 31567
+ components:
+ - pos: -2.5,-47.5
+ parent: 2
+ type: Transform
+ - uid: 31568
components:
- rot: -1.5707963267948966 rad
- pos: -23.5,-24.5
+ pos: -6.5,-49.5
+ parent: 2
+ type: Transform
+ - uid: 31569
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-48.5
+ parent: 2
+ type: Transform
+ - uid: 31570
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-49.5
parent: 2
type: Transform
- proto: WoodblockInstrument
entities:
- - uid: 31503
+ - uid: 31571
components:
- pos: -47.491924,-64.51194
parent: 2
type: Transform
- proto: WoodDoor
entities:
- - uid: 31504
+ - uid: 31572
components:
- pos: -31.5,-5.5
parent: 2
type: Transform
- - uid: 31505
+ - uid: 31573
components:
- pos: -31.5,-7.5
parent: 2
type: Transform
- - uid: 31506
+ - uid: 31574
components:
- pos: -38.5,7.5
parent: 2
type: Transform
- - uid: 31507
+ - uid: 31575
components:
- rot: 3.141592653589793 rad
pos: -37.5,7.5
parent: 2
type: Transform
- - uid: 31508
+ - uid: 31576
components:
- rot: 3.141592653589793 rad
pos: -29.5,-5.5
parent: 2
type: Transform
- - uid: 31509
+ - uid: 31577
components:
- pos: 41.5,49.5
parent: 2
type: Transform
- - uid: 31510
+ - uid: 31578
components:
- pos: 40.5,51.5
parent: 2
type: Transform
- - uid: 31511
+ - uid: 31579
components:
- pos: -39.5,-95.5
parent: 2
type: Transform
- - uid: 31512
+ - uid: 31580
components:
- pos: -39.5,-96.5
parent: 2
type: Transform
- - uid: 31513
+ - uid: 31581
components:
- pos: 61.5,23.5
parent: 2
type: Transform
- - uid: 31514
+ - uid: 31582
components:
- pos: 63.5,23.5
parent: 2
type: Transform
- - uid: 31515
+ - uid: 31583
components:
- rot: 3.141592653589793 rad
pos: -29.5,-7.5
@@ -201034,118 +201766,118 @@ entities:
type: Transform
- proto: Wrench
entities:
- - uid: 31516
+ - uid: 31584
components:
- rot: -1.5707963267948966 rad
pos: 13.451823,-46.425587
parent: 2
type: Transform
- - uid: 31517
+ - uid: 31585
components:
- pos: -65.606735,-34.373695
parent: 2
type: Transform
- - uid: 31518
+ - uid: 31586
components:
- pos: 19.497053,-52.46946
parent: 2
type: Transform
- - uid: 31519
+ - uid: 31587
components:
- pos: 43.41047,-49.384262
parent: 2
type: Transform
- - uid: 31520
+ - uid: 31588
components:
- pos: 40.515266,-53.36736
parent: 2
type: Transform
- - uid: 31521
+ - uid: 31589
components:
- pos: 53.570477,-52.25876
parent: 2
type: Transform
- - uid: 31522
+ - uid: 31590
components:
- pos: -52.48202,-14.116064
parent: 2
type: Transform
- - uid: 31523
+ - uid: 31591
components:
- pos: -43.931065,-77.41935
parent: 2
type: Transform
- - uid: 31524
+ - uid: 31592
components:
- pos: -3.6165767,31.44955
parent: 2
type: Transform
- - uid: 31525
+ - uid: 31593
components:
- pos: -52.52865,13.566981
parent: 2
type: Transform
- - uid: 31526
+ - uid: 31594
components:
- pos: -56.484455,-4.5012527
parent: 2
type: Transform
- - uid: 31527
+ - uid: 31595
components:
- pos: -31.403458,-56.573048
parent: 2
type: Transform
- - uid: 31528
+ - uid: 31596
components:
- pos: 56.276398,42.55694
parent: 2
type: Transform
- - uid: 31529
+ - uid: 31597
components:
- pos: 30.53096,47.374912
parent: 2
type: Transform
- - uid: 31530
+ - uid: 31598
components:
- pos: 63.43439,-33.411366
parent: 2
type: Transform
- - uid: 31531
+ - uid: 31599
components:
- pos: 73.54562,-44.324593
parent: 2
type: Transform
- - uid: 31532
+ - uid: 31600
components:
- rot: 1.5707963267948966 rad
pos: -37.345474,18.574602
parent: 2
type: Transform
- - uid: 31533
+ - uid: 31601
components:
- pos: -8.112096,-15.394987
parent: 2
type: Transform
- - uid: 31534
+ - uid: 31602
components:
- pos: -66.48501,-43.492954
parent: 2
type: Transform
- proto: YellowOxygenTankFilled
entities:
- - uid: 31535
+ - uid: 31603
components:
- pos: 64.41901,29.545698
parent: 2
type: Transform
- - uid: 31536
+ - uid: 31604
components:
- pos: 67.49378,-65.34203
parent: 2
type: Transform
- proto: Zipties
entities:
- - uid: 31537
+ - uid: 31605
components:
- pos: 22.565756,-47.432816
parent: 2
diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml
index 8c944332ab6..fc257adfde0 100644
--- a/Resources/Prototypes/Atmospherics/gases.yml
+++ b/Resources/Prototypes/Atmospherics/gases.yml
@@ -99,4 +99,4 @@
gasMolesVisible: 0.6
color: 3a758c
reagent: Frezon
- pricePerMole: 7.5
+ pricePerMole: 0.3
diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml b/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml
index 14d5f81e132..5a801e50ab0 100644
--- a/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml
+++ b/Resources/Prototypes/Catalog/Cargo/cargo_engineering.yml
@@ -87,3 +87,23 @@
cost: 5000
category: Engineering
group: market
+
+- type: cargoProduct
+ id: EngineeringRCDAmmo
+ icon:
+ sprite: Objects/Tools/rcd.rsi
+ state: icon
+ product: CrateRCDAmmo
+ cost: 2500
+ category: Engineering
+ group: market
+
+- type: cargoProduct
+ id: EngineeringRCD
+ icon:
+ sprite: Objects/Tools/rcd.rsi
+ state: ammo
+ product: CrateRCD
+ cost: 800
+ category: Engineering
+ group: market
diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml
index a6c3ca0d6aa..0f1bd0f4652 100644
--- a/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml
+++ b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml
@@ -10,3 +10,24 @@
amount: 3
- id: EmpImplanter
amount: 1
+
+- type: entity
+ parent: BoxVial
+ id: ChemicalSynthesisKit
+ name: chemical synthesis kit
+ description: A starter kit for the aspiring chemist, includes toxin and vestine for all your criminal needs!
+ components:
+ - type: Storage
+ grid:
+ - 0,0,3,2
+ - type: StorageFill
+ contents:
+ - id: Beaker
+ amount: 2
+ - id: Dropper
+ # It would be cool to have special "syndicate" chemical analysis goggles
+ - id: ClothingEyesGlassesChemical
+ - id: VestineChemistryVial
+ amount: 2
+ - id: BaseChemistryEmptyVial
+ - id: SyringeStimulants
diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
index b8e07143288..c0982e035b0 100644
--- a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
+++ b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
@@ -127,3 +127,20 @@
amount: 2
- id: ClothingOuterHardsuitEVA
amount: 2
+
+- type: entity
+ id: CrateRCDAmmo
+ parent: CrateEngineering
+ components:
+ - type: StorageFill
+ contents:
+ - id: RCDAmmo
+ amount: 3
+
+- type: entity
+ id: CrateRCD
+ parent: CrateEngineeringSecure
+ components:
+ - type: StorageFill
+ contents:
+ - id: RCD
diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml
index 215ce59856f..e5ac193fa23 100644
--- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml
+++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml
@@ -42,9 +42,9 @@
amount: 3
- id: ReagentContainerRice
amount: 3
- - id: ReagentContainerMilk
+ - id: DrinkMilkCarton
amount: 4
- - id: ReagentContainerMilkSoy
+ - id: DrinkSoyMilkCarton
amount: 2
- id: ReagentContainerSugar
amount: 2
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml
index 468692fd62b..8c6e7031685 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml
@@ -90,6 +90,8 @@
- id: MedkitOxygenFilled
- id: HolofanProjector
- id: DoorRemoteFirefight
+ - id: RCD
+ - id: RCDAmmo
- type: entity
id: LockerAtmosphericsFilled
@@ -105,6 +107,8 @@
- id: MedkitOxygenFilled
- id: HolofanProjector
- id: DoorRemoteFirefight
+ - id: RCD
+ - id: RCDAmmo
- type: entity
id: LockerEngineerFilledHardsuit
@@ -119,6 +123,8 @@
- id: OxygenTankFilled
- id: NitrogenTankFilled
- id: ClothingShoesBootsMag
+ - id: RCD
+ - id: RCDAmmo
- type: entity
id: LockerEngineerFilled
@@ -130,6 +136,8 @@
- id: ClothingHandsGlovesColorYellow
- id: ClothingMaskGas
- id: trayScanner
+ - id: RCD
+ - id: RCDAmmo
- type: entity
id: ClosetRadiationSuitFilled
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
index 09ec17338de..8ad0a67f9eb 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
@@ -152,6 +152,8 @@
- id: ClothingHeadsetAltEngineering
- id: BoxEncryptionKeyEngineering
- id: AccessConfigurator
+ - id: RCD
+ - id: RCDAmmo
- type: entity
id: LockerChiefEngineerFilled
@@ -174,6 +176,8 @@
- id: ClothingHeadsetAltEngineering
- id: BoxEncryptionKeyEngineering
- id: AccessConfigurator
+ - id: RCD
+ - id: RCDAmmo
- type: entity
id: LockerChiefMedicalOfficerFilledHardsuit
@@ -291,7 +295,7 @@
prob: 0.8
- id: ClothingBeltSecurityFilled
- id: ClothingHeadsetAltSecurity
- - id: ClothingEyesGlassesSecurity
+ - id: ClothingEyesGlassesSunglasses
- id: ClothingShoesBootsJack
- id: CigarGoldCase
prob: 0.50
@@ -338,7 +342,7 @@
prob: 0.8
- id: ClothingBeltSecurityFilled
- id: ClothingHeadsetAltSecurity
- - id: ClothingEyesGlassesSecurity
+ - id: ClothingEyesGlassesSunglasses
- id: ClothingShoesBootsJack
- id: CigarGoldCase
prob: 0.50
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml
index 149d5ac007e..21be8b6e340 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml
@@ -12,7 +12,7 @@
- id: ClothingHeadHatBeretWarden
- id: ClothingBeltSecurityFilled
- id: Flash
- - id: ClothingEyesGlassesSecurity
+ - id: ClothingEyesGlassesSunglasses
- id: ClothingHeadsetAltSecurity
- id: ClothingHandsGlovesCombat
- id: ClothingShoesBootsJack
@@ -39,7 +39,7 @@
- id: ClothingHeadHatCapWardenAlt # Corvax-SecFashion
- id: ClothingBeltSecurityFilled
- id: Flash
- - id: ClothingEyesGlassesSecurity
+ - id: ClothingEyesGlassesSunglasses
- id: ClothingHeadsetAltSecurity
- id: ClothingHandsGlovesCombat
- id: ClothingShoesBootsJack
@@ -67,7 +67,7 @@
- id: ClothingBeltSecurityFilled
- id: Flash
prob: 0.5
- - id: ClothingEyesGlassesSecurity
+ - id: ClothingEyesGlassesSunglasses
- id: ClothingHeadsetSecurity
- id: ClothingHandsGlovesColorBlack
- id: ClothingShoesBootsJack
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml
index b345fe4adb6..fa7f47997f0 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml
@@ -47,9 +47,9 @@
- id: FoodCondimentBottleEnzyme
# really, milk should go in the fridge. Unfortunately saltern only has freezers.
# yes, I'm using this as an excuse to not have to do extra work.
- - id: ReagentContainerMilk
+ - id: DrinkMilkCarton
amount: 2
- - id: ReagentContainerMilkSoy
+ - id: DrinkSoyMilkCarton
- type: entity
id: ClosetJanitorFilled
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml
index a44ec69a8e9..49601980f30 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml
@@ -158,7 +158,7 @@
- id: ClothingUniformJumpsuitSec
- id: ClothingBackpackSecurity
- id: ClothingShoesBootsJack
- - id: ClothingEyesGlassesSecurity
+ - id: ClothingEyesGlassesSunglasses
- id: ClothingHeadHelmetBasic
- id: ClothingOuterArmorBasic
- id: ClothingUniformJumpskirtSec
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml
index f60485c7db9..b317b98507e 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/centdrobe.yml
@@ -7,6 +7,7 @@
ClothingEyesGlassesSunglasses: 3
ClothingUniformJumpsuitCentcomOfficer: 3
ClothingUniformJumpsuitCentcomOfficial: 3
+ ClothingUniformJumpsuitCentcomAgent: 3
ClothingUniformJumpsuitCentcomFormal: 3
ClothingUniformJumpskirtCentcomFormalDress: 3
ClothingHeadHatCentcom: 3
@@ -15,4 +16,3 @@
ClothingHeadsetCentCom: 3
ClothingOuterWinterCentcom: 3
ClothingNeckScarfStripedCentcom: 3
-
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml
index ab6ac3295c1..f76b640ec75 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml
@@ -14,8 +14,8 @@
ReagentContainerOliveoil: 2
MonkeyCubeBox: 1
FoodContainerEgg: 1
- ReagentContainerMilk: 2
- ReagentContainerMilkSoy: 1
+ DrinkMilkCarton: 2
+ DrinkSoyMilkCarton: 1
FoodButter: 4
FoodCheese: 1
FoodMeat: 6
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
index 9e867e91b66..0a3dc6a3a62 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
@@ -3,6 +3,7 @@
startingInventory:
ClothingUniformJumpsuitJanitor: 2
ClothingUniformJumpskirtJanitor: 2
+ ClothingHandsGlovesJanitor: 2
ClothingShoesColorBlack: 2
ClothingShoesGaloshes: 2 # Corvax-MRP
ClothingHeadHatPurplesoft: 2
diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml
index 274b5a47738..ab92f56bc0d 100644
--- a/Resources/Prototypes/Catalog/uplink_catalog.yml
+++ b/Resources/Prototypes/Catalog/uplink_catalog.yml
@@ -65,16 +65,6 @@
categories:
- UplinkWeapons
-- type: listing
- id: UplinkFireAxeFlaming
- name: uplink-fire-axe-flaming-name
- description: uplink-fire-axe-flaming-desc
- productEntity: FireAxeFlaming
- cost:
- Telecrystal: 10
- categories:
- - UplinkWeapons
-
- type: listing
id: UplinkGlovesNorthStar
name: uplink-gloves-north-star-name
@@ -85,22 +75,6 @@
categories:
- UplinkWeapons
-- type: listing
- id: UplinkEswordDouble
- name: uplink-esword-double-name
- description: uplink-esword-double-desc
- icon: { sprite: /Textures/Objects/Weapons/Melee/e_sword_double.rsi, state: icon }
- productEntity: EnergySwordDouble
- cost:
- Telecrystal: 20 #(Originally 16)
- categories:
- - UplinkWeapons
- conditions:
- - !type:StoreWhitelistCondition
- blacklist:
- tags:
- - NukeOpsUplink
-
- type: listing
id: UplinkDisposableTurret
name: uplink-disposable-turret-name
@@ -551,7 +525,7 @@
Telecrystal: 2
categories:
- UplinkUtility
-
+
# Implants
- type: listing
@@ -720,6 +694,17 @@
components:
- SurplusBundle
+- type: listing
+ id: UplinkChemistryKitBundle
+ name: uplink-chemistry-kit-name
+ description: uplink-chemistry-kit-desc
+ icon: { sprite: /Textures/Objects/Storage/boxicons.rsi, state: vials }
+ productEntity: ChemicalSynthesisKit
+ cost:
+ Telecrystal: 4
+ categories:
+ - UplinkBundles
+
- type: listing
id: UplinkMedsBundle
name: uplink-meds-bundle-name
@@ -1287,7 +1272,7 @@
description: uplink-nocturine-chemistry-bottle-desc
productEntity: NocturineChemistryBottle
cost:
- Telecrystal: 5
+ Telecrystal: 6
categories:
- UplinkMisc
diff --git a/Resources/Prototypes/Corvax/Maps/avrite.yml b/Resources/Prototypes/Corvax/Maps/avrite.yml
index e43aca8c3fe..ee368a2ebf0 100644
--- a/Resources/Prototypes/Corvax/Maps/avrite.yml
+++ b/Resources/Prototypes/Corvax/Maps/avrite.yml
@@ -56,3 +56,4 @@
Detective: [ 1, 1 ]
Boxer: [ 2, 2]
Paramedic: [ 1, 1 ]
+ Borg: [ 2, 2 ]
diff --git a/Resources/Prototypes/Damage/containers.yml b/Resources/Prototypes/Damage/containers.yml
index 5c731c40175..87168b48187 100644
--- a/Resources/Prototypes/Damage/containers.yml
+++ b/Resources/Prototypes/Damage/containers.yml
@@ -14,7 +14,15 @@
supportedTypes:
- Heat
- Shock
- - Structural # this probably should be in separate container
+
+- type: damageContainer
+ id: StructuralInorganic
+ supportedGroups:
+ - Brute
+ supportedTypes:
+ - Heat
+ - Shock
+ - Structural
- type: damageContainer
id: Silicon
diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml
index e4ad8517815..b316469721d 100644
--- a/Resources/Prototypes/Damage/modifier_sets.yml
+++ b/Resources/Prototypes/Damage/modifier_sets.yml
@@ -9,6 +9,17 @@
Blunt: 5
Heat: 5
+- type: damageModifierSet
+ id: StructuralMetallic
+ coefficients:
+ Shock: 1.2
+ flatReductions:
+ Blunt: 25
+ Slash: 25
+ Piercing: 25
+ Heat: 25
+ Structural: 40
+
- type: damageModifierSet
id: PerforatedMetallic
coefficients:
@@ -64,22 +75,25 @@
Heat: 0.8
Shock: 0 #glass is an insulator!
flatReductions:
- Blunt: 5
Slash: 5
+ Piercing: 5
+ Heat: 5
+ Structural: 10
- type: damageModifierSet
id: RGlass
coefficients:
- Blunt: 1.0
+ Blunt: 0.5
Slash: 0.3
Piercing: 0.6
Heat: 0.5
Shock: 0
flatReductions:
Blunt: 5
- Slash: 7
+ Slash: 5
Piercing: 5
Heat: 5
+ Structural: 12.5
- type: damageModifierSet
id: Wood
diff --git a/Resources/Prototypes/Device/devicenet_frequencies.yml b/Resources/Prototypes/Device/devicenet_frequencies.yml
index 0667cd0170f..db48d117e0b 100644
--- a/Resources/Prototypes/Device/devicenet_frequencies.yml
+++ b/Resources/Prototypes/Device/devicenet_frequencies.yml
@@ -1,3 +1,13 @@
+- type: deviceFrequency
+ id: ShuttleTimer
+ name: device-frequency-prototype-name-shuttle-timer
+ frequency: 2450
+
+- type: deviceFrequency
+ id: ArrivalsShuttleTimer
+ name: device-frequency-prototype-name-arrivals-shuttle-timer
+ frequency: 2451
+
- type: deviceFrequency
id: SurveillanceCamera
name: device-frequency-prototype-name-surveillance-camera
diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml
index c7779184e23..70b84b31562 100644
--- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml
+++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml
@@ -149,8 +149,8 @@
- type: entity
parent: ClothingEyesBase
id: ClothingEyesGlassesSecurity
- name: security sunglasses
- description: Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes. Often worn by budget security officers.
+ name: security glasses
+ description: Upgraded sunglasses that provide flash immunity and a security HUD.
components:
- type: Sprite
sprite: Clothing/Eyes/Glasses/secglasses.rsi
@@ -166,6 +166,7 @@
- type: GuideHelp
guides:
- Security
+ - type: ShowSecurityIcons
- type: entity
parent: ClothingEyesBase
diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml
index 3d534fb3fec..bfd6e61fa5a 100644
--- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml
+++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml
@@ -395,3 +395,19 @@
- type: GuideHelp
guides:
- DNA
+
+# TODO Make lubed items not slip in hands
+- type: entity
+ parent: ClothingHandsBase
+ id: ClothingHandsGlovesJanitor
+ name: rubber gloves
+ description: High-quality rubber gloves, squeaky to do some cleaning!
+ components:
+ - type: Sprite
+ sprite: Clothing/Hands/Gloves/janitor.rsi
+ - type: Clothing
+ sprite: Clothing/Hands/Gloves/janitor.rsi
+ - type: Fiber
+ fiberMaterial: fibers-rubber
+ fiberColor: fibers-yellow
+ - type: FingerprintMask
diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml
index 5e2de359554..86043f50f77 100644
--- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml
+++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml
@@ -5,6 +5,7 @@
name: EVA helmet
description: An old-but-gold helmet designed for extravehicular activites. Infamous for making security officers paranoid.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Helmets/eva.rsi
- type: Clothing
@@ -21,6 +22,7 @@
name: EVA helmet
description: An old-but-gold helmet designed for extravehicular activites.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Helmets/eva_large.rsi
- type: Clothing
@@ -33,6 +35,7 @@
name: syndicate EVA helmet
description: A simple, stylish EVA helmet. Designed for maximum humble space-badassery.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Helmets/eva_syndicate.rsi
- type: Clothing
@@ -45,6 +48,7 @@
name: cosmonaut helmet
description: Ancient design, but advanced manufacturing. #Description here originally started with " A deceptively well armored space helmet." Potentially had armor values in SS13 that weren't brought over?
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Helmets/cosmonaut.rsi
- type: Clothing
@@ -57,6 +61,7 @@
name: Paramedic Void Helmet
description: A void helmet made for paramedics.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Helmets/paramedhelm.rsi
- type: Clothing
@@ -77,6 +82,7 @@
name: NTSRA void helmet
description: An ancient space helmet, designed by the NTSRA branch of CentCom.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi
- type: Clothing
diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
index 6a0727b1a54..454f1944232 100644
--- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
+++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
@@ -12,6 +12,7 @@
name: basic hardsuit helmet
description: A basic-looking hardsuit helmet that provides minor protection against most sources of damage.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/basic.rsi
- type: Clothing
@@ -24,6 +25,7 @@
name: atmos hardsuit helmet
description: A special hardsuit helmet designed for working in low-pressure, high thermal environments.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/atmospherics.rsi
layers:
@@ -63,6 +65,7 @@
name: engineering hardsuit helmet
description: An engineering hardsuit helmet designed for working in low-pressure, high radioactive environments.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/engineering.rsi
- type: Clothing
@@ -80,6 +83,7 @@
name: spationaut hardsuit helmet
description: A sturdy helmet designed for complex industrial operations in space.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/spatiohelm.rsi
layers:
@@ -114,6 +118,7 @@
name: salvage hardsuit helmet
description: A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating for wildlife encounters and dual floodlights.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/salvage.rsi
- type: Clothing
@@ -132,6 +137,7 @@
name: security hardsuit helmet
description: Armored hardsuit helmet for security needs.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/security.rsi
- type: Clothing
@@ -156,6 +162,7 @@
name: brigmedic hardsuit helmet
description: The lightweight helmet of the brigmedic hardsuit. Protects against viruses, and clowns.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/brigmedic.rsi
- type: Clothing
@@ -182,6 +189,7 @@
name: warden's hardsuit helmet
description: A modified riot helmet. Oddly comfortable.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/security-warden.rsi
- type: Clothing
@@ -206,6 +214,7 @@
name: captain's hardsuit helmet
description: Special hardsuit helmet, made for the captain of the station.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/capspace.rsi
- type: Clothing
@@ -221,6 +230,7 @@
name: chief engineer's hardsuit helmet
description: Special hardsuit helmet, made for the chief engineer of the station.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/engineering-white.rsi
- type: Clothing
@@ -238,6 +248,7 @@
name: chief medical officer's hardsuit helmet
description: Lightweight medical hardsuit helmet that doesn't restrict your head movements.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/medical.rsi
- type: Clothing
@@ -255,6 +266,7 @@
name: experimental research hardsuit helmet
description: Lightweight hardsuit helmet that doesn't restrict your head movements.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/rd.rsi
- type: Clothing
@@ -272,6 +284,7 @@
name: head of security's hardsuit helmet
description: Security hardsuit helmet with the latest top secret NT-HUD software. Belongs to the HoS.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/security-red.rsi
- type: Clothing
@@ -296,6 +309,7 @@
name: luxury mining hardsuit helmet
description: A refurbished mining hardsuit helmet, fitted with satin cushioning and an extra (non-functioning) antenna, because you're that extra.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/luxury.rsi
- type: Clothing
@@ -315,6 +329,7 @@
name: blood-red hardsuit helmet
description: A heavily armored helmet designed for work in special operations. Property of Gorlex Marauders.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/syndicate.rsi
- type: Clothing
@@ -339,6 +354,7 @@
name: blood-red medic hardsuit helmet
description: An advanced red hardsuit helmet specifically designed for field medic operations.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/syndiemedic.rsi
- type: Clothing
@@ -363,6 +379,7 @@
name: syndicate elite helmet
description: An elite version of the blood-red hardsuit's helmet, with improved armor and fireproofing. Property of Gorlex Marauders.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/syndieelite.rsi
- type: Clothing
@@ -389,6 +406,7 @@
name: syndicate commander helmet
description: A bulked up version of the blood-red hardsuit's helmet, purpose-built for the commander of a syndicate operative squad. Has significantly improved armor for those deadly front-lines firefights.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/syndiecommander.rsi
- type: Clothing
@@ -413,6 +431,7 @@
name: cybersun juggernaut helmet
description: Made of compressed red matter, this helmet was designed in the Tau chromosphere facility.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/cybersun.rsi
- type: Clothing
@@ -437,6 +456,7 @@
name: wizard hardsuit helmet
description: A bizarre gem-encrusted helmet that radiates magical energies.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/wizard.rsi
- type: Clothing
@@ -461,6 +481,7 @@
name: organic space helmet
description: A spaceworthy biomass of pressure and temperature resistant tissue.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/lingspacehelmet.rsi
- type: Clothing
@@ -477,6 +498,7 @@
suffix: Pirate
description: A deep space EVA helmet, very heavy but provides good protection.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/pirateeva.rsi
- type: Clothing
@@ -493,6 +515,7 @@
suffix: Pirate
description: A special hardsuit helmet, made for the captain of a pirate ship.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi
- type: Clothing
@@ -509,6 +532,7 @@
name: ERT leader hardsuit helmet
description: A special hardsuit helmet worn by members of an emergency response team.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi
- type: Clothing
@@ -530,6 +554,7 @@
name: ERT engineer hardsuit helmet
description: A special hardsuit helmet worn by members of an emergency response team.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi
- type: Clothing
@@ -551,6 +576,7 @@
name: ERT medic hardsuit helmet
description: A special hardsuit helmet worn by members of an emergency response team.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi
- type: Clothing
@@ -565,6 +591,7 @@
name: ERT security hardsuit helmet
description: A special hardsuit helmet worn by members of an emergency response team.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi
- type: Clothing
@@ -586,6 +613,7 @@
name: ERT janitor hardsuit helmet
description: A special hardsuit helmet worn by members of an emergency response team.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi
- type: Clothing
@@ -600,6 +628,7 @@
name: CBURN exosuit helmet
description: A pressure resistant and fireproof hood worn by special cleanup units.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/cburn.rsi
layers:
@@ -638,6 +667,7 @@
name: deathsquad hardsuit helmet
description: A robust helmet for special operations.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/deathsquad.rsi
- type: Clothing
@@ -665,6 +695,7 @@
name: clown hardsuit helmet
description: A clown hardsuit helmet.
components:
+ - type: BreathMask
- type: Sprite
sprite: Clothing/Head/Hardsuits/clown.rsi
- type: Clothing
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
index 1a93a18e194..f572bb9f8cd 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
@@ -264,7 +264,7 @@
coefficients:
Blunt: 0.8
Slash: 0.8
- Piercing: 0.8
+ Piercing: 0.6
Heat: 0.5
Radiation: 0.5
Caustic: 0.6
diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml
index d3fe135d150..267e33928c8 100644
--- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml
+++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml
@@ -58,6 +58,21 @@
- type: Clothing
sprite: Clothing/Shoes/Boots/combatboots.rsi
+- type: entity
+ parent: ClothingShoesMilitaryBase
+ id: ClothingShoesHighheelBoots
+ name: high-heeled boots
+ description: Snazy boots for when you want to be stylish, yet prepared.
+ components:
+ - type: MeleeWeapon
+ damage:
+ types:
+ Piercing: 6
+ - type: Sprite
+ sprite: Clothing/Shoes/Boots/highheelboots.rsi
+ - type: Clothing
+ sprite: Clothing/Shoes/Boots/highheelboots.rsi
+
- type: entity
parent: ClothingShoesMilitaryBase
id: ClothingShoesBootsMerc
diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml
index fd7856f852d..a964c13684e 100644
--- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml
@@ -123,6 +123,17 @@
- type: Clothing
sprite: Clothing/Uniforms/Jumpsuit/chaplain.rsi
+- type: entity
+ parent: ClothingUniformBase
+ id: ClothingUniformJumpsuitCentcomAgent
+ name: CentCom agent's jumpsuit
+ description: A suit worn by CentCom's legal team. Smells of burnt coffee.
+ components:
+ - type: Sprite
+ sprite: Clothing/Uniforms/Jumpsuit/centcom_agent.rsi
+ - type: Clothing
+ sprite: Clothing/Uniforms/Jumpsuit/centcom_agent.rsi
+
- type: entity
parent: ClothingUniformBase
id: ClothingUniformJumpsuitCentcomOfficial
diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml
index c68de3490f2..9a84208942c 100644
--- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml
+++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml
@@ -118,6 +118,7 @@
- ClothingOuterFlannelGreen
- ClothingOuterVestHazard
- ClothingShoesBootsJack
+ - ClothingShoesHighheelBoots
- ClothingShoesBootsLaceup
- ClothingShoesLeather
- ClothingShoesBootsSalvage
diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml
index cb737d5048d..d4ecb343d4b 100644
--- a/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml
+++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/pottedplants.yml
@@ -42,6 +42,7 @@
- PottedPlant22
- PottedPlant23
- PottedPlant24
+ - PottedPlant26
chance: 1
- type: entity
@@ -53,12 +54,12 @@
layers:
- state: red
- sprite: Structures/Furniture/potted_plants.rsi
- state: plant-26
+ state: plant-27
- type: RandomSpawner
offset: 0
prototypes:
- - PottedPlant26
- PottedPlant27
- PottedPlant28
- PottedPlant29
+ - PottedPlant30
chance: 1
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml
index 08ad0ffbd04..83f1dea1d4b 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml
@@ -126,3 +126,19 @@
Quantity: 100
- type: Sprite
sprite: Objects/Consumable/Drinks/soymilk.rsi
+
+- type: entity
+ parent: DrinkCartonBaseFull
+ id: DrinkOatMilkCarton
+ name: oat milk
+ description: It's oat milk. Tan and nutritious goodness!
+ components:
+ - type: SolutionContainerManager
+ solutions:
+ drink:
+ maxVol: 100
+ reagents:
+ - ReagentId: MilkOat
+ Quantity: 100
+ - type: Sprite
+ sprite: Objects/Consumable/Drinks/oatmilk.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml
index 538ef6790a8..99aa925c44c 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml
@@ -344,3 +344,15 @@
solutions:
drink:
maxVol: 100
+
+- type: entity
+ name: oat milk carton
+ parent: DrinkCartonBaseEmpty
+ id: DrinkCartonOatMilk
+ components:
+ - type: Sprite
+ sprite: Objects/Consumable/Drinks/oatmilk.rsi
+ - type: SolutionContainerManager
+ solutions:
+ drink:
+ maxVol: 100
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml
index 75c2bb17f58..8657b64b42c 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml
@@ -203,56 +203,6 @@
- ReagentId: Sugar
Quantity: 20
-# Milk
-
-- type: entity
- parent: ReagentPacketBase
- id: ReagentContainerMilk
- name: milk
- description: It's milk. White and nutritious goodness!
- components:
- - type: Sprite
- state: milk
- - type: SolutionContainerManager
- solutions:
- food:
- maxVol: 50 # at least enough for one cheese
- reagents:
- - ReagentId: Milk
- Quantity: 50
-
-- type: entity
- parent: ReagentPacketBase
- id: ReagentContainerMilkSoy
- name: soy milk
- description: It's soy milk. White and nutritious goodness!
- components:
- - type: Sprite
- state: milk-soy
- - type: SolutionContainerManager
- solutions:
- food:
- maxVol: 50
- reagents:
- - ReagentId: MilkSoy
- Quantity: 50
-
-- type: entity
- parent: ReagentPacketBase
- id: ReagentContainerMilkOat
- name: oat milk
- description: It's oat milk. Tan and nutritious goodness!
- components:
- - type: Sprite
- state: milk-oat
- - type: SolutionContainerManager
- solutions:
- food:
- maxVol: 50
- reagents:
- - ReagentId: MilkOat
- Quantity: 50
-
# Misc
- type: entity
diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml
index e7dfdc234f4..eb5b5d14d5b 100644
--- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml
+++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml
@@ -330,6 +330,8 @@
orGroup: GiftPool
- id: Ash
orGroup: GiftPool
+ - id: Coal1
+ orGroup: GiftPool
- id: MiningDrill
orGroup: GiftPool
- id: CowToolboxFilled
diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml
index 789ba04e96a..450fc4dfe73 100644
--- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml
+++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml
@@ -843,6 +843,7 @@
modifier: 0.001
- type: entity
+ parent: BaseItem
id: ToySword
name: toy sword
description: New Sandy-Cat plastic sword! Comes with realistic sound and full color! Looks almost like the real thing!
diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml
index 2b6fec873b8..aa3ebfaaf28 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml
@@ -195,3 +195,42 @@
components:
- type: Stack
count: 1
+
+- type: entity
+ parent: OreBase
+ id: Coal
+ name: coal
+ suffix: Full
+ components:
+ - type: Stack
+ stackType: Coal
+ - type: Sprite
+ state: coal
+ - type: Material
+ - type: Extractable
+ grindableSolutionName: coal
+ - type: SolutionContainerManager
+ solutions:
+ coal:
+ reagents:
+ - ReagentId: Carbon
+ Quantity: 8.4
+ - ReagentId: Ammonia
+ Quantity: 0.8
+ - ReagentId: Hydrogen
+ Quantity: 0.5
+ - ReagentId: Sulfur
+ Quantity: 0.2
+ - ReagentId: Mercury
+ Quantity: 0.1
+ - type: PhysicalComposition
+ materialComposition:
+ Coal: 500
+
+- type: entity
+ parent: Coal
+ id: Coal1
+ suffix: Single
+ components:
+ - type: Stack
+ count: 1
diff --git a/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml b/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml
index a0c010352f4..f2fbab04a0e 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/handcuffs.yml
@@ -63,6 +63,9 @@
id: Zipties
parent: Handcuffs
components:
+ - type: Item
+ size: Tiny
+ storedRotation: 0
- type: Handcuff
breakoutTime: 20 # halfway between improvised cablecuffs and metal ones
cuffedRSI: Objects/Misc/cablecuffs.rsi # cablecuffs will look fine
diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml
index e0eff43fc53..f51420c9a5a 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml
@@ -357,6 +357,7 @@
# white: "#e6e6e6"
# grey: "#999999"
# black: "#3f3f3f"
+# green: "#43bc38"
- type: Item
sprite: Objects/Misc/bureaucracy.rsi
size: Small
@@ -462,6 +463,31 @@
color: "#3f3f3f"
- state: folder-base
+- type: entity
+ id: BoxFolderGreen
+ parent: BoxFolderBase
+ suffix: Green
+ components:
+ - type: Sprite
+ sprite: Objects/Misc/bureaucracy.rsi
+ layers:
+ - state: folder-colormap
+ color: "#43bc38"
+ - state: folder-base
+
+- type: entity
+ id: BoxFolderCentCom
+ name: centcom folder
+ parent: BoxFolderBase
+ suffix: DO NOT MAP
+ description: CentCom's miserable little pile of secrets!
+ components:
+ - type: Sprite
+ sprite: Objects/Misc/bureaucracy.rsi
+ layers:
+ - state: folder-centcom
+ - state: folder-base
+
- type: entity
id: BoxFolderClipboard
parent: BoxFolderBase
@@ -521,6 +547,31 @@
types:
Blunt: 6
+- type: entity
+ id: BoxFolderCentComClipboard
+ parent: BoxFolderClipboard
+ name: centcom clipboard
+ description: A luxurious clipboard upholstered with green velvet. Often seen carried by CentCom officials, seldom seen actually used.
+ components:
+ - type: Sprite
+ sprite: Objects/Misc/cc-clipboard.rsi
+ layers:
+ - state: clipboard
+ - state: clipboard_paper
+ map: ["clipboard_paper"]
+ visible: false
+ - state: clipboard_pen
+ map: ["clipboard_pen"]
+ visible: false
+ - state: clipboard_over
+ - type: Item
+ sprite: Objects/Misc/cc-clipboard.rsi
+ size: Small
+ - type: Clothing
+ slots: [belt]
+ quickEquip: false
+ sprite: Objects/Misc/cc-clipboard.rsi
+
- type: entity
id: BoxFolderQmClipboard
parent: BoxFolderBase
diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml
index 361ee1e8082..e399c662626 100644
--- a/Resources/Prototypes/Entities/Objects/Power/lights.yml
+++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml
@@ -136,6 +136,19 @@
startingState: Broken
bulb: Bulb
+- type: entity
+ parent: BaseLightbulb
+ name: service light bulb
+ id: ServiceLightBulb
+ description: A low-brightness green lightbulb used in janitorial service lights.
+ components:
+ - type: LightBulb
+ bulb: Bulb
+ color: "#CCFF60"
+ lightEnergy: 1.0
+ lightRadius: 2
+ lightSoftness: 3
+
- type: entity
parent: BaseLightTube
name: fluorescent light tube
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml
index 4670f5fea31..97f88536047 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml
@@ -770,3 +770,16 @@
reagents:
- ReagentId: Romerol
Quantity: 15
+
+- type: entity
+ name: stimulants syringe
+ parent: BaseSyringe
+ id: SyringeStimulants
+ components:
+ - type: SolutionContainerManager
+ solutions:
+ injector:
+ maxVol: 15
+ reagents:
+ - ReagentId: Stimulants
+ Quantity: 15
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml
index 2809388353e..ccb4f6ca4e6 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/randompill.yml
@@ -41,7 +41,10 @@
weight: 5
reagents:
- SpaceDrugs
- - Toxin
+ - quantity: 10
+ weight: 5
+ reagents:
+ - Amatoxin
- type: entity
name: strange pill
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag_holding.yml b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag_holding.yml
new file mode 100644
index 00000000000..e8c7fa37dd4
--- /dev/null
+++ b/Resources/Prototypes/Entities/Objects/Specific/Salvage/ore_bag_holding.yml
@@ -0,0 +1,16 @@
+- type: entity
+ name: ore bag of holding
+ id: OreBagOfHolding
+ parent: OreBag
+ description: A robust bag of holding for salvage billionaires and rich miners alike to carry large amounts of ore. Magnetises any nearby ores when attached to a belt.
+ components:
+ - type: MagnetPickup
+ range: 2
+ - type: Sprite
+ sprite: Objects/Specific/Mining/ore_bag_holding.rsi
+ state: icon
+ - type: Clothing
+ sprite: Objects/Specific/Mining/ore_bag_holding.rsi
+ - type: Storage
+ grid:
+ - 0,0,19,9
diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml
index 35ac6bcad29..1091fadaa40 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml
@@ -93,3 +93,18 @@
acts: [ "Destruction" ]
- type: Spillable
solution: drink
+
+- type: entity
+ id: VestineChemistryVial
+ name: vestine vial
+ parent: BaseChemistryEmptyVial
+ components:
+ - type: SolutionContainerManager
+ solutions:
+ drink:
+ maxVol: 30
+ reagents:
+ - ReagentId: Vestine
+ Quantity: 30
+ - type: Tag
+ tags: []
diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
index 54200f10e8e..9eeefa29b39 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
@@ -155,7 +155,6 @@
damage:
types:
Blunt: 8
- Structural: 3
- type: Tool
qualities:
- Prying
@@ -337,7 +336,7 @@
attackRate: 1.5
damage:
types:
- Piercing: 8
+ Piercing: 10
soundHit:
path: "/Audio/Items/drill_hit.ogg"
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml
index a1a4f484faa..a02efc13f55 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml
@@ -12,11 +12,13 @@
damage:
types:
Blunt: 10
+ Structural: 5
- type: Wieldable
- type: IncreaseDamageOnWield
damage:
types:
- Blunt: 8
+ Blunt: 5
+ Structural: 10
- type: Item
size: Normal
- type: Tool
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml
index bfddd764ca2..dcead72ce64 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml
@@ -27,9 +27,8 @@
- type: IncreaseDamageOnWield
damage:
types:
- Slash: 5
- Blunt: 5
- Structural: 20
+ Slash: 10
+ Structural: 10
- type: Item
size: Normal
sprite: Objects/Weapons/Melee/chainsaw.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml
index d6622d93323..db24d3e2cd0 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml
@@ -37,7 +37,7 @@
attackRate: 0.75
damage:
types:
- Slash: 33
+ Slash: 16
- type: Item
size: Normal
- type: Clothing
@@ -65,15 +65,15 @@
damage:
types:
Blunt: 10
- Slash: 20
- Structural: 3
+ Slash: 10
+ Structural: 5
- type: Wieldable
- type: IncreaseDamageOnWield
damage:
types:
- Blunt: 4
- Slash: 12
- Structural: 30
+ Blunt: 5
+ Slash: 5
+ Structural: 10
- type: Item
size: Ginormous
- type: Clothing
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml
index 50e7b86d0d9..5b06f09946c 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml
@@ -9,7 +9,7 @@
types:
Slash: 15
Heat: 15
- Structural: 4
+ Structural: 20
Blunt: -4.5
litDisarmMalus: 0.6
- type: Sprite
@@ -66,8 +66,8 @@
secret: true
litDamageBonus:
types:
- Slash: 9
- Heat: 9
+ Slash: 10
+ Heat: 10
Blunt: -1
litDisarmMalus: 0.4
activateSound: !type:SoundPathSpecifier
@@ -149,8 +149,8 @@
secret: true
litDamageBonus:
types:
- Slash: 7.5
- Heat: 7.5
+ Slash: 10
+ Heat: 12
Blunt: -1
litDisarmMalus: 0.6
- type: Sprite
@@ -176,9 +176,9 @@
- type: EnergySword
litDamageBonus:
types:
- Slash: 17
- Heat: 17
- Structural: 20
+ Slash: 12
+ Heat: 12
+ Structural: 15
Blunt: -4.5
litDisarmMalus: 0.7
- type: MeleeWeapon
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml
index efb85ec35e7..1a96d7d17b5 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml
@@ -19,15 +19,14 @@
types:
# axes are kinda like sharp hammers, you know?
Blunt: 5
- Slash: 13
- Structural: 7
+ Slash: 10
+ Structural: 10
- type: Wieldable
- type: IncreaseDamageOnWield
damage:
types:
- Blunt: 2.5
- Slash: 10.5
- Structural: 60
+ Slash: 10
+ Structural: 40
- type: Item
size: Ginormous
- type: Clothing
@@ -43,6 +42,8 @@
- type: Prying
- type: UseDelay
delay: 1
+ - type: IgniteOnMeleeHit
+ fireStacks: -4
- type: entity
id: FireAxeFlaming
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml
index ec9717ea22b..2380e19d79f 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml
@@ -11,7 +11,7 @@
wideAnimationRotation: -150
damage:
types:
- Blunt: 3 #You'd be better off punching people
+ Blunt: 0
- type: Item
size: Small
sprite: Objects/Weapons/Melee/gohei.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml
index 5ab16c67124..2bb1cfdd2ba 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml
@@ -15,7 +15,7 @@
wideAnimationRotation: -135
damage:
types:
- Slash: 12
+ Slash: 10
soundHit:
path: /Audio/Weapons/bladeslice.ogg
- type: Sprite
@@ -62,7 +62,7 @@
attackRate: 1.5
damage:
types:
- Slash: 10
+ Slash: 13
- type: Item
size: Normal
sprite: Objects/Weapons/Melee/cleaver.rsi
@@ -88,7 +88,7 @@
attackRate: 1.5
damage:
types:
- Slash: 10
+ Slash: 12
- type: EmbeddableProjectile
sound: /Audio/Weapons/star_hit.ogg
- type: DamageOtherOnHit
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
index 731c1911dda..ec4cd929d99 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
@@ -77,7 +77,7 @@
attackRate: 1.5
damage:
types:
- Slash: 6.5
+ Slash: 12
- type: Tag
tags:
- Knife
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml
index b4b13accf06..265e05061ac 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml
@@ -16,8 +16,6 @@
damage:
groups:
Brute: 5
- types:
- Structural: 10
- type: Wieldable
- type: IncreaseDamageOnWield
damage:
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml
index 3a0eb0ab2c0..51025f16456 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml
@@ -10,13 +10,13 @@
- type: MeleeWeapon
damage:
types:
- Blunt: 14
- Structural: 15
+ Blunt: 10
+ Structural: 10
- type: Wieldable
- type: IncreaseDamageOnWield
damage:
types:
Blunt: 10
- Structural: 60
+ Structural: 10
- type: Item
size: Large
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml
index 9bd9d6c12fe..35fc33ec664 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml
@@ -45,7 +45,7 @@
wideAnimationRotation: -135
damage:
types:
- Slash: 25
+ Slash: 15
soundHit:
path: /Audio/Weapons/bladeslice.ogg
- type: Item
@@ -101,7 +101,7 @@
wideAnimationRotation: -135
damage:
types:
- Slash: 20
+ Slash: 15
soundHit:
path: /Audio/Weapons/bladeslice.ogg
- type: Item
@@ -124,7 +124,7 @@
attackRate: 0.75
damage:
types:
- Slash: 33
+ Slash: 20
soundHit:
path: /Audio/Weapons/bladeslice.ogg
- type: Item
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
index 0f72bf6fd29..c5b22ef1dca 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
@@ -108,8 +108,8 @@
resistance: 3
- type: Occluder
- type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
+ damageContainer: StructuralInorganic
+ damageModifierSet: StrongMetallic
- type: Destructible
thresholds:
- trigger:
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml
index 233e0201938..5e2eb5689fb 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml
@@ -2,10 +2,9 @@
parent: Airlock
id: AirlockExternal
suffix: External
- description: It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated.
+ description: It opens, it closes, it might crush you, and there might be only space behind it.
components:
- type: Door
- bumpOpen: false
crushDamage:
types:
Blunt: 15
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml
index 9054be67d0f..2ed1c60d37b 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml
@@ -82,8 +82,8 @@
fixVacuum: true
- type: Occluder
- type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
+ damageContainer: StructuralInorganic
+ damageModifierSet: StrongMetallic
- type: Destructible
thresholds:
- trigger:
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml
index 03f023975bc..8c5aa49b8e7 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml
@@ -45,7 +45,6 @@
- type: Wires
layoutId: Docking
- type: Door
- bumpOpen: false
closeTimeTwo: 0.4
openTimeTwo: 0.4
crushDamage:
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
index 37ad6e3aede..1673ccd0cb2 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
@@ -25,7 +25,7 @@
- type: RadiationBlocker
resistance: 8
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: StrongMetallic
- type: entity
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
index a93e224d1f2..876e4d0ef4d 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
@@ -62,8 +62,8 @@
- type: RadiationBlocker
resistance: 2
- type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
+ damageContainer: StructuralInorganic
+ damageModifierSet: StrongMetallic
- type: Destructible
thresholds:
- trigger:
diff --git a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml
index 70be1c0dc41..86bedadaac5 100644
--- a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml
+++ b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml
@@ -235,34 +235,42 @@
- type: Sprite
state: plant-25
-#these are all the plastic plants. They inherit from the first one because they don't have
-#enough differences to warrant getting a unique abstract prototype. It's just the name and description.
- type: entity
id: PottedPlant26
parent: PottedPlantBase
- name: plastic potted plant
- description: A fake, cheap looking, plastic tree. Perfect for people who kill every plant they touch.
+ description: Is it just me, or is it blinking?
components:
- type: Sprite
state: plant-26
+#these are all the plastic plants. They inherit from the first one because they don't have
+#enough differences to warrant getting a unique abstract prototype. It's just the name and description.
- type: entity
id: PottedPlant27
- parent: PottedPlant26
+ parent: PottedPlantBase
+ name: plastic potted plant
+ description: A fake, cheap looking, plastic tree. Perfect for people who kill every plant they touch.
components:
- type: Sprite
state: plant-27
- type: entity
id: PottedPlant28
- parent: PottedPlant26
+ parent: PottedPlant27
components:
- type: Sprite
state: plant-28
- type: entity
id: PottedPlant29
- parent: PottedPlant26
+ parent: PottedPlant27
components:
- type: Sprite
state: plant-29
+
+- type: entity
+ id: PottedPlant30
+ parent: PottedPlant27
+ components:
+ - type: Sprite
+ state: plant-30
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
index b9f3155dbe3..b1c439f8c83 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
@@ -210,8 +210,6 @@
- AnomalyScanner
- AnomalyLocator
- AnomalyLocatorWide
- - RCD
- - RCDAmmo
- HandheldCrewMonitor
- Scalpel
- Retractor
@@ -279,6 +277,7 @@
- ClothingEyesGlassesChemical
- FauxTileAstroGrass
- FauxTileAstroIce
+ - OreBagOfHolding
- type: EmagLatheRecipes
emagDynamicRecipes:
- ExplosivePayload
@@ -541,7 +540,6 @@
- Zipties
- Stunbaton
- ForensicPad
- - ClothingEyesGlassesSecurity
- RiotShield
- ShellShotgun
- ShellShotgunFlare
@@ -568,6 +566,7 @@
- CartridgeMagnumRubber
- CartridgePistolRubber
- CartridgeRifleRubber
+ - ClothingEyesGlassesSecurity
- ExplosivePayload
- FlashPayload
- HoloprojectorSecurity
@@ -767,6 +766,8 @@
- ClothingUniformJumpskirtHoS
- ClothingUniformJumpsuitHoSAlt
- ClothingUniformJumpskirtHoSAlt
+ - ClothingUniformJumpsuitHoSParadeMale
+ - ClothingUniformJumpskirtHoSParadeMale
- ClothingUniformJumpsuitHydroponics
- ClothingUniformJumpskirtHydroponics
- ClothingUniformJumpsuitJanitor
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
index cf1482b8af6..935fedc219e 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml
@@ -56,8 +56,8 @@
placeCentered: true
isPlaceable: false
- type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
+ damageContainer: StructuralInorganic
+ damageModifierSet: StructuralMetallic
- type: Destructible
thresholds:
- trigger:
@@ -88,6 +88,17 @@
stateDoorOpen: generic_open
stateDoorClosed: generic_door
+# steel closet base (that can be constructed/deconstructed)
+- type: entity
+ id: ClosetSteelBase
+ parent: ClosetBase
+ components:
+ - type: Construction
+ graph: ClosetSteel
+ node: done
+ containers:
+ - entity_storage
+
#Wall Closet
- type: entity
id: BaseWallCloset
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml
index d734d618321..d5d74c973ae 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml
@@ -2,7 +2,7 @@
- type: entity
id: ClosetTool
name: tool closet
- parent: ClosetBase
+ parent: ClosetSteelBase
description: It's a storage unit for tools.
components:
- type: Appearance
@@ -15,7 +15,7 @@
- type: entity
id: ClosetRadiationSuit
name: radiation suit closet
- parent: ClosetBase
+ parent: ClosetSteelBase
description: "More comfortable than radiation poisioning."
components:
- type: Appearance
@@ -28,7 +28,7 @@
- type: entity
id: ClosetEmergency
name: emergency closet
- parent: ClosetBase
+ parent: ClosetSteelBase
description: It's a storage unit for emergency breath masks and O2 tanks.
components:
- type: Appearance
@@ -41,7 +41,7 @@
- type: entity
id: ClosetFire
name: fire-safety closet
- parent: ClosetBase
+ parent: ClosetSteelBase
description: It's a storage unit for fire-fighting supplies.
components:
- type: Appearance
@@ -54,7 +54,7 @@
- type: entity
id: ClosetBomb
name: EOD closet
- parent: ClosetBase
+ parent: ClosetSteelBase
description: It's a storage unit for explosion-protective suits.
components:
- type: Appearance
@@ -82,7 +82,7 @@
# Base level 3 bio hazard closet
- type: entity
id: ClosetL3
- parent: ClosetBase
+ parent: ClosetSteelBase
name: level 3 biohazard gear closet
description: It's a storage unit for level 3 biohazard gear.
components:
@@ -129,7 +129,7 @@
- type: entity
id: ClosetMaintenance
name: maintenance closet
- parent: ClosetBase
+ parent: ClosetSteelBase
description: It's a storage unit.
components:
- type: Appearance
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml
index 35fd16bac47..39912d5deb2 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/cursed.yml
@@ -1,6 +1,6 @@
- type: entity
id: ClosetCursed
- parent: ClosetBase
+ parent: ClosetSteelBase
name: closet
suffix: cursed
description: A standard-issue Nanotrasen storage unit.
@@ -8,4 +8,4 @@
- type: CursedEntityStorage
- type: EntityStorage
closeSound:
- path: /Audio/Effects/teleport_arrival.ogg
\ No newline at end of file
+ path: /Audio/Effects/teleport_arrival.ogg
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml
index bf8003255f2..4a101aab733 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml
@@ -101,8 +101,8 @@
map: ["enum.StorageVisualLayers.Lock"]
shader: unshaded
- type: Damageable
- damageContainer: Inorganic
- damageModifierSet: StrongMetallic
+ damageContainer: StructuralInorganic
+ damageModifierSet: StructuralMetallic
- type: Destructible
thresholds:
- trigger:
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/screen.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/screen.yml
new file mode 100644
index 00000000000..c0f1b56b0d4
--- /dev/null
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/screen.yml
@@ -0,0 +1,41 @@
+- type: entity
+ id: Screen
+ name: screen
+ description: Displays text or time.
+ components:
+ - type: Transform
+ anchored: true
+ - type: WallMount
+ arc: 360
+ - type: InteractionOutline
+ - type: Appearance
+ - type: Rotatable
+ - type: TextScreenVisuals
+ textOffset: 0,3
+ timerOffset: 0,-4
+ rows: 2
+ - type: Sprite
+ drawdepth: WallMountedItems
+ sprite: Structures/Wallmounts/screen.rsi
+ state: screen
+ noRot: true
+ - type: Construction
+ graph: Timer
+ node: screen
+ - type: ApcPowerReceiver
+ powerLoad: 100
+ - type: Electrified
+ enabled: false
+ usesApcPower: true
+ - type: ExtensionCableReceiver
+ - type: ShuttleTimer
+ - type: DeviceNetwork
+ receiveFrequencyId: ShuttleTimer
+
+- type: entity
+ id: ArrivalsShuttleTimer
+ parent: Screen
+ name: arrivals screen
+ components:
+ - type: DeviceNetwork
+ receiveFrequencyId: ArrivalsShuttleTimer
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/service_light.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/service_light.yml
new file mode 100644
index 00000000000..80b92b94fdb
--- /dev/null
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/service_light.yml
@@ -0,0 +1,25 @@
+- type: entity
+ parent: Poweredlight
+ id: JanitorServiceLight
+ name: janitorial service light
+ description: A wall-mounted janitorial sign. If the light is blinking, a janitor's service is required.
+ components:
+ - type: Sprite
+ sprite: Structures/Wallmounts/service_light.rsi
+ drawdepth: WallMountedItems
+ layers:
+ - state: off
+ map: ["enum.PoweredLightLayers.Base"]
+ state: off
+ - type: PointLight
+ radius: 1
+ energy: 1
+ softness: 1
+ enabled: false
+ - type: PoweredLight
+ bulb: Bulb
+ on: false
+ hasLampOnSpawn: ServiceLightBulb
+ damage:
+ types:
+ Heat: 5
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml
index f880a85d9e9..c0e40d3b75f 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml
@@ -51,10 +51,14 @@
- type: SignalTimer
canEditLabel: true
- type: TextScreenVisuals
+ color: FloralWhite
+ textOffset: 0,8
+ timerOffset: 0,8
+ textLength: 5
- type: Sprite
drawdepth: WallMountedItems
- sprite: Structures/Wallmounts/textscreen.rsi
- state: textscreen
+ sprite: Structures/Wallmounts/signalscreen.rsi
+ state: signalscreen
noRot: true
- type: Construction
graph: Timer
@@ -88,8 +92,8 @@
anchored: true
- type: Sprite
drawdepth: WallMountedItems
- sprite: Structures/Wallmounts/textscreen.rsi
- state: textscreen
+ sprite: Structures/Wallmounts/signalscreen.rsi
+ state: signalscreen
- type: Construction
graph: Timer
node: frame
diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml
index 0e57907e91c..4dbc096a2fd 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml
@@ -204,6 +204,28 @@
resistance: 2
# Ore veins
+- type: entity
+ id: WallRockCoal
+ parent: WallRock
+ description: An ore vein rich with coal.
+ suffix: Coal
+ components:
+ - type: OreVein
+ oreChance: 1.0
+ currentOre: OreCoal
+ - type: Sprite
+ layers:
+ - state: rock
+ - map: [ "enum.EdgeLayer.South" ]
+ state: rock_south
+ - map: [ "enum.EdgeLayer.East" ]
+ state: rock_east
+ - map: [ "enum.EdgeLayer.North" ]
+ state: rock_north
+ - map: [ "enum.EdgeLayer.West" ]
+ state: rock_west
+ - state: rock_coal
+
- type: entity
id: WallRockGold
parent: WallRock
@@ -401,6 +423,28 @@
- map: [ "enum.EdgeLayer.West" ]
state: rock_wall_west
+- type: entity
+ id: WallRockBasaltCoal
+ parent: WallRockBasalt
+ description: An ore vein rich with coal.
+ suffix: Coal
+ components:
+ - type: OreVein
+ oreChance: 1.0
+ currentOre: OreCoal
+ - type: Sprite
+ layers:
+ - state: rock_wall
+ - map: [ "enum.EdgeLayer.South" ]
+ state: rock_wall_south
+ - map: [ "enum.EdgeLayer.East" ]
+ state: rock_wall_east
+ - map: [ "enum.EdgeLayer.North" ]
+ state: rock_wall_north
+ - map: [ "enum.EdgeLayer.West" ]
+ state: rock_wall_west
+ - state: rock_coal
+
- type: entity
id: WallRockBasaltGold
parent: WallRockBasalt
@@ -597,6 +641,28 @@
- map: [ "enum.EdgeLayer.West" ]
state: rock_snow_west
+- type: entity
+ id: WallRockSnowCoal
+ parent: WallRockSnow
+ description: An ore vein rich with coal.
+ suffix: Coal
+ components:
+ - type: OreVein
+ oreChance: 1.0
+ currentOre: OreCoal
+ - type: Sprite
+ layers:
+ - state: rock_snow
+ - map: [ "enum.EdgeLayer.South" ]
+ state: rock_snow_south
+ - map: [ "enum.EdgeLayer.East" ]
+ state: rock_snow_east
+ - map: [ "enum.EdgeLayer.North" ]
+ state: rock_snow_north
+ - map: [ "enum.EdgeLayer.West" ]
+ state: rock_snow_west
+ - state: rock_coal
+
- type: entity
id: WallRockSnowGold
parent: WallRockSnow
@@ -794,6 +860,28 @@
- map: [ "enum.EdgeLayer.West" ]
state: rock_sand_west
+- type: entity
+ id: WallRockSandCoal
+ parent: WallRockSand
+ description: An ore vein rich with coal.
+ suffix: Coal
+ components:
+ - type: OreVein
+ oreChance: 1.0
+ currentOre: OreCoal
+ - type: Sprite
+ layers:
+ - state: rock_sand
+ - map: [ "enum.EdgeLayer.South" ]
+ state: rock_sand_south
+ - map: [ "enum.EdgeLayer.East" ]
+ state: rock_sand_east
+ - map: [ "enum.EdgeLayer.North" ]
+ state: rock_sand_north
+ - map: [ "enum.EdgeLayer.West" ]
+ state: rock_sand_west
+ - state: rock_coal
+
- type: entity
id: WallRockSandGold
parent: WallRockSand
@@ -990,6 +1078,28 @@
- map: [ "enum.EdgeLayer.West" ]
state: rock_chromite_west
+- type: entity
+ id: WallRockChromiteCoal
+ parent: WallRockChromite
+ description: An ore vein rich with coal.
+ suffix: Coal
+ components:
+ - type: OreVein
+ oreChance: 1.0
+ currentOre: OreCoal
+ - type: Sprite
+ layers:
+ - state: rock_chromite
+ - map: [ "enum.EdgeLayer.South" ]
+ state: rock_chromite_south
+ - map: [ "enum.EdgeLayer.East" ]
+ state: rock_chromite_east
+ - map: [ "enum.EdgeLayer.North" ]
+ state: rock_chromite_north
+ - map: [ "enum.EdgeLayer.West" ]
+ state: rock_chromite_west
+ - state: rock_coal
+
- type: entity
id: WallRockChromiteGold
parent: WallRockChromite
@@ -1186,6 +1296,28 @@
- map: [ "enum.EdgeLayer.West" ]
state: rock_andesite_west
+- type: entity
+ id: WallRockAndesiteCoal
+ parent: WallRockAndesite
+ description: An ore vein rich with coal.
+ suffix: Coal
+ components:
+ - type: OreVein
+ oreChance: 1.0
+ currentOre: OreCoal
+ - type: Sprite
+ layers:
+ - state: rock_andesite
+ - map: [ "enum.EdgeLayer.South" ]
+ state: rock_andesite_south
+ - map: [ "enum.EdgeLayer.East" ]
+ state: rock_andesite_east
+ - map: [ "enum.EdgeLayer.North" ]
+ state: rock_andesite_north
+ - map: [ "enum.EdgeLayer.West" ]
+ state: rock_andesite_west
+ - state: rock_coal
+
- type: entity
id: WallRockAndesiteGold
parent: WallRockAndesite
diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
index 96bc6bee19f..7df55f31136 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
@@ -28,8 +28,8 @@
- type: PlacementReplacement
key: walls
- type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
+ damageContainer: StructuralInorganic
+ damageModifierSet: StructuralMetallic
- type: Physics
bodyType: Static
- type: Fixtures
@@ -506,13 +506,13 @@
thresholds:
- trigger:
!type:DamageTrigger
- damage: 1200 #excess damage (nuke?). avoid computational cost of spawning entities.
+ damage: 600
behaviors:
- !type:DoActsBehavior
acts: ["Destruction"]
- trigger:
!type:DamageTrigger
- damage: 600
+ damage: 400
behaviors:
- !type:PlaySoundBehavior
sound:
@@ -677,7 +677,7 @@
state: state0
- type: Damageable
damageContainer: Inorganic
- damageModifierSet: StrongMetallic
+ damageModifierSet: StructuralMetallic
- type: Physics
bodyType: Static
- type: Reflect
@@ -795,13 +795,13 @@
thresholds:
- trigger:
!type:DamageTrigger
- damage: 600
+ damage: 400
behaviors:
- !type:DoActsBehavior
acts: ["Destruction"]
- trigger:
!type:DamageTrigger
- damage: 300
+ damage: 200
behaviors:
- !type:PlaySoundBehavior
sound:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml
index 4dcc1c5fcc8..286cb895daa 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml
@@ -12,19 +12,19 @@
fuelCost: 15
doAfterDelay: 3
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: RGlass
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
- damage: 1000
+ damage: 200
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
- damage: 500
+ damage: 100
behaviors:
- !type:PlaySoundBehavior
sound:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
index 6f973ac9a0d..44c1c9b6b95 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
@@ -9,13 +9,19 @@
- type: Icon
sprite: Structures/Windows/plasma_window.rsi
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: RGlass
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
- damage: 200
+ damage: 120
+ behaviors:
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - trigger:
+ !type:DamageTrigger
+ damage: 60
behaviors:
- !type:PlaySoundBehavior
sound:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
index 65010bdcbe2..2704aa2242b 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
@@ -12,19 +12,19 @@
fuelCost: 10
doAfterDelay: 2
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: RGlass
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
- damage: 300 #excess damage (nuke?). Avoid computational cost of spawning entities.
+ damage: 150
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
- damage: 150
+ damage: 75
behaviors:
- !type:PlaySoundBehavior
sound:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
index aa4e7c5cdbb..cbf46683b1a 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
@@ -9,7 +9,7 @@
- type: Icon
sprite: Structures/Windows/reinforced_plasma_window.rsi
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: RGlass
- type: RadiationBlocker
resistance: 4
@@ -17,13 +17,13 @@
thresholds:
- trigger:
!type:DamageTrigger
- damage: 1000
+ damage: 200
behaviors: #excess damage, don't spawn entities.
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
- damage: 600
+ damage: 100
behaviors:
- !type:PlaySoundBehavior
sound:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
index 654143b0b78..e8dc44a965b 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
@@ -9,19 +9,19 @@
- type: Icon
sprite: Structures/Windows/reinforced_uranium_window.rsi
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: RGlass
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
- damage: 1500
- behaviors: #excess damage, don't spawn entities.
+ damage: 200
+ behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
- damage: 850
+ damage: 100
behaviors:
- !type:PlaySoundBehavior
sound:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
index c798d5c63d7..ac6e9e08034 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
@@ -12,7 +12,7 @@
fuelCost: 15
doAfterDelay: 3
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: RGlass
- type: Destructible
thresholds:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
index 1511b163040..2511fc565e0 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
@@ -10,13 +10,19 @@
sprite: Structures/Windows/uranium_window.rsi
state: full
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: RGlass
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
- damage: 400
+ damage: 100
+ behaviors:
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - trigger:
+ !type:DamageTrigger
+ damage: 50
behaviors:
- !type:PlaySoundBehavior
sound:
diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml
index aeb5bf76476..b324a2eaabc 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/window.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml
@@ -38,7 +38,7 @@
layer:
- GlassLayer
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: Glass
- type: ExaminableDamage
messages: WindowMessages
@@ -47,7 +47,7 @@
thresholds:
- trigger:
!type:DamageTrigger
- damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities.
+ damage: 100
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
diff --git a/Resources/Prototypes/Entities/Structures/barricades.yml b/Resources/Prototypes/Entities/Structures/barricades.yml
index 8cdd1c47860..050498cdaa2 100644
--- a/Resources/Prototypes/Entities/Structures/barricades.yml
+++ b/Resources/Prototypes/Entities/Structures/barricades.yml
@@ -28,7 +28,7 @@
- WallLayer
- type: Damageable
damageModifierSet: Wood
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
- type: Destructible
thresholds:
- trigger:
@@ -43,7 +43,7 @@
- !type:DoActsBehavior
acts: [ "Destruction" ]
- type: AtmosExposed
-
+
#Regular Barricade
- type: entity
id: Barricade
@@ -108,4 +108,4 @@
- type: Appearance
- type: FireVisuals
sprite: Effects/fire.rsi
- normalState: 1
\ No newline at end of file
+ normalState: 1
diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml
index 1f2aaa216f9..8c53daf3b60 100644
--- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml
+++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml
@@ -27,7 +27,7 @@
layer:
- MidImpassable
- type: Damageable
- damageContainer: Inorganic
+ damageContainer: StructuralInorganic
damageModifierSet: Metallic
- type: Destructible
thresholds:
diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml
index f662953edb8..6cb0c35ef54 100644
--- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml
+++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml
@@ -17,6 +17,9 @@
- id: WallRock
prob: 0.5
orGroup: rock
+ - id: WallRockCoal
+ prob: 0.15
+ orGroup: rock
- id: WallRockTin
prob: 0.15
orGroup: rock
diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml
index 4318edc85aa..6f9740d9651 100644
--- a/Resources/Prototypes/Maps/fland.yml
+++ b/Resources/Prototypes/Maps/fland.yml
@@ -13,7 +13,7 @@
!type:NanotrasenNameGenerator
prefixCreator: 'B'
- type: StationEmergencyShuttle
- emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml
+ emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml
- type: StationJobs
overflowJobs:
- Passenger
diff --git a/Resources/Prototypes/Procedural/biome_ore_templates.yml b/Resources/Prototypes/Procedural/biome_ore_templates.yml
index 9dc3fef286a..517d52de8a1 100644
--- a/Resources/Prototypes/Procedural/biome_ore_templates.yml
+++ b/Resources/Prototypes/Procedural/biome_ore_templates.yml
@@ -24,6 +24,19 @@
maxGroupSize: 20
radius: 4
+- type: biomeMarkerLayer
+ id: OreCoal
+ entityMask:
+ WallRock: WallRockCoal
+ WallRockBasalt: WallRockBasaltCoal
+ WallRockChromite: WallRockChromiteCoal
+ WallRockSand: WallRockSandCoal
+ WallRockSnow: WallRockSnowCoal
+ maxCount: 30
+ minGroupSize: 10
+ maxGroupSize: 20
+ radius: 4
+
# Medium value
# Gold
- type: biomeMarkerLayer
diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml
index 523fab44252..8c3b2c697f9 100644
--- a/Resources/Prototypes/Procedural/salvage_loot.yml
+++ b/Resources/Prototypes/Procedural/salvage_loot.yml
@@ -125,6 +125,13 @@
- !type:BiomeMarkerLoot
proto: OreTin
+- type: salvageLoot
+ id: OreCoal
+ guaranteed: true
+ loots:
+ - !type:BiomeMarkerLoot
+ proto: OreCoal
+
- type: salvageLoot
id: OreQuartz
guaranteed: true
diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml
index a8fc1744b3b..7d7d3ae905a 100644
--- a/Resources/Prototypes/Reagents/Materials/materials.yml
+++ b/Resources/Prototypes/Reagents/Materials/materials.yml
@@ -107,3 +107,11 @@
icon: { sprite: Objects/Materials/materials.rsi, state: bones }
color: "#896f5e"
price: 0
+
+- type: material
+ id: Coal
+ name: materials-coal
+ unit: materials-unit-piece
+ icon: { sprite: Objects/Materials/ore.rsi, state: coal }
+ color: "#404040"
+ price: 0
diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml
index f22dfc1b8a1..fe6a5f6f81a 100644
--- a/Resources/Prototypes/Reagents/fun.yml
+++ b/Resources/Prototypes/Reagents/fun.yml
@@ -1,4 +1,4 @@
-- type: reagent
+- type: reagent
id: Carpetium
name: reagent-name-carpetium
group: Special
@@ -165,7 +165,7 @@
Poison:
effects:
- !type:Electrocute
- probability: 0.5
+ probability: 0.35
- type: reagent
id: Razorium
diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml
index a305486830c..6c294d556ad 100644
--- a/Resources/Prototypes/Reagents/medicine.yml
+++ b/Resources/Prototypes/Reagents/medicine.yml
@@ -101,7 +101,7 @@
effects:
- !type:GenericStatusEffect
key: Drunk
- time: 2.0
+ time: 6.0
type: Remove
- !type:HealthChange
damage:
@@ -285,9 +285,9 @@
- !type:AdjustReagent
conditions:
- !type:ReagentThreshold
- reagent: Lexorin
+ reagent: HeartbreakerToxin
min: 1
- reagent: Lexorin
+ reagent: HeartbreakerToxin
amount: -3
- !type:HealthChange
conditions:
@@ -334,12 +334,12 @@
Asphyxiation: 1
Poison: 1
- !type:AdjustReagent
- reagent: Lexorin
+ reagent: HeartbreakerToxin
amount: -2
- !type:AdjustReagent
conditions:
- !type:ReagentThreshold
- reagent: Lexorin
+ reagent:
min: 1
reagent: Epinephrine
amount: -1
@@ -347,7 +347,7 @@
probability: 0.1
conditions:
- !type:ReagentThreshold
- reagent: Lexorin
+ reagent: HeartbreakerToxin
min: 1
reagent: Histamine
amount: 4
diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml
index 57ea867efad..ea0446523f1 100644
--- a/Resources/Prototypes/Reagents/toxins.yml
+++ b/Resources/Prototypes/Reagents/toxins.yml
@@ -285,7 +285,7 @@
- !type:HealthChange
damage:
types:
- Asphyxiation: 2
+ Asphyxiation: 5
plantMetabolism:
- !type:PlantAdjustToxins
amount: 10
@@ -303,7 +303,7 @@
- !type:HealthChange
damage:
groups:
- Airloss: 7
+ Airloss: 10
- type: reagent
id: MindbreakerToxin
@@ -578,3 +578,41 @@
damage:
types:
Poison: 1.8
+
+- type: reagent
+ id: Vestine
+ name: reagent-name-vestine
+ group: Toxins
+ desc: reagent-desc-vestine
+ physicalDesc: reagent-physical-desc-shiny
+ flavor: medicine
+ color: "#435166"
+ metabolisms:
+ Poison:
+ effects:
+ - !type:Jitter
+ conditions:
+ - !type:ReagentThreshold
+ min: 5
+ - !type:MovespeedModifier
+ walkSpeedModifier: 0.8
+ sprintSpeedModifier: 0.8
+ - !type:HealthChange
+ damage:
+ groups:
+ Airloss: 2
+
+- type: reagent
+ id: Tazinide
+ name: reagent-name-tazinide
+ group: Toxins
+ desc: reagent-desc-tazinide
+ physicalDesc: reagent-physical-desc-metallic
+ flavor: shocking
+ color: "#FDD023"
+ metabolisms:
+ Poison:
+ effects:
+ - !type:Electrocute
+ probability: 0.8
+
diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml
index 5bd28f9b5bc..bdb0c814a4a 100644
--- a/Resources/Prototypes/Recipes/Construction/utilities.yml
+++ b/Resources/Prototypes/Recipes/Construction/utilities.yml
@@ -477,7 +477,7 @@
conditions:
- !type:TileNotBlocked {}
- !type:NoUnstackableInTile
-
+
- type: construction
name: passive vent
description: Unpowered vent that equalises gases on both sides.
@@ -499,7 +499,7 @@
conditions:
- !type:TileNotBlocked {}
- !type:NoUnstackableInTile
-
+
- type: construction
name: air scrubber
description: Sucks gas into connected pipes.
@@ -521,7 +521,7 @@
conditions:
- !type:TileNotBlocked {}
- !type:NoUnstackableInTile
-
+
- type: construction
name: air injector
description: Injects air into the atmosphere.
@@ -543,7 +543,7 @@
conditions:
- !type:TileNotBlocked {}
- !type:NoUnstackableInTile
-
+
# ATMOS BINARY
- type: construction
name: gas pump
@@ -852,8 +852,8 @@
category: construction-category-utilities
description: "A wallmounted timer for sending timed signals to things. This one has a screen for displaying text."
icon:
- sprite: Structures/Wallmounts/textscreen.rsi
- state: textscreen
+ sprite: Structures/Wallmounts/signalscreen.rsi
+ state: signalscreen
objectType: Structure
canRotate: false
placementMode: SnapgridCenter
@@ -870,8 +870,8 @@
category: construction-category-utilities
description: "A wallmounted timer for sending timed signals to things. This one has a screen for displaying text and requires security access to use."
icon:
- sprite: Structures/Wallmounts/textscreen.rsi
- state: textscreen
+ sprite: Structures/Wallmounts/signalscreen.rsi
+ state: signalscreen
objectType: Structure
canRotate: false
placementMode: SnapgridCenter
diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml
new file mode 100644
index 00000000000..5b0cc1f9a2e
--- /dev/null
+++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml
@@ -0,0 +1,27 @@
+- type: constructionGraph
+ id: ClosetSteel
+ start: start
+ graph:
+ - node: start
+ edges:
+ - to: done
+ steps:
+ - material: Steel
+ amount: 4
+ doAfter: 5
+ - node: done
+ entity: ClosetSteelBase
+ edges:
+ - to: start
+ steps:
+ - tool: Screwing
+ doAfter: 5
+ conditions:
+ - !type:StorageWelded
+ welded: false
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 4
+ - !type:EmptyAllContainers
+ - !type:DeleteEntity
diff --git a/Resources/Prototypes/Recipes/Crafting/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/tallbox.yml
new file mode 100644
index 00000000000..09469093f77
--- /dev/null
+++ b/Resources/Prototypes/Recipes/Crafting/tallbox.yml
@@ -0,0 +1,10 @@
+- type: construction
+ id: ClosetSteel
+ name: closet
+ graph: ClosetSteel
+ startNode: start
+ targetNode: done
+ category: construction-category-storage
+ description: A tall steel box that cannot be locked.
+ icon: { sprite: Structures/Storage/closet.rsi, state: generic_icon }
+ objectType: Structure
diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml
index 4a5eda4b253..ed421b65f4c 100644
--- a/Resources/Prototypes/Recipes/Lathes/clothing.yml
+++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml
@@ -220,6 +220,22 @@
Cloth: 300
Durathread: 100
+- type: latheRecipe
+ id: ClothingUniformJumpsuitHoSParadeMale
+ result: ClothingUniformJumpsuitHoSParadeMale
+ completetime: 5
+ materials:
+ Cloth: 300
+ Durathread: 100
+
+- type: latheRecipe
+ id: ClothingUniformJumpskirtHoSParadeMale
+ result: ClothingUniformJumpskirtHoSParadeMale
+ completetime: 5
+ materials:
+ Cloth: 300
+ Durathread: 100
+
- type: latheRecipe
id: ClothingUniformJumpsuitHoSAlt
result: ClothingUniformJumpsuitHoSAlt
diff --git a/Resources/Prototypes/Recipes/Lathes/devices.yml b/Resources/Prototypes/Recipes/Lathes/devices.yml
index 344f2c38d9c..1593f125978 100644
--- a/Resources/Prototypes/Recipes/Lathes/devices.yml
+++ b/Resources/Prototypes/Recipes/Lathes/devices.yml
@@ -131,6 +131,16 @@
Plasma: 1500
Uranium: 150
+- type: latheRecipe
+ id: OreBagOfHolding
+ result: OreBagOfHolding
+ completetime: 5
+ materials:
+ Steel: 2000
+ Silver: 750
+ Plasma: 1500
+ Uranium: 150
+
- type: latheRecipe
id: WeaponCrusher
result: WeaponCrusher
diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml
index f724b96bc08..cb31c55dda6 100644
--- a/Resources/Prototypes/Recipes/Lathes/sheet.yml
+++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml
@@ -12,6 +12,7 @@
completetime: 2
materials:
Steel: 3000
+ Coal: 1000
- type: latheRecipe
id: SheetGlass1
@@ -75,14 +76,14 @@
completetime: 2
materials:
Uranium: 3000
-
+
- type: latheRecipe
id: IngotGold30
result: IngotGold
completetime: 2
materials:
Gold: 3000
-
+
- type: latheRecipe
id: IngotSilver30
result: IngotSilver
@@ -96,7 +97,7 @@
completetime: 2
materials:
Bananium: 3000
-
+
- type: latheRecipe
id: SheetUranium1
result: SheetUranium1
diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml
index 38dc4ff0567..54d67ebc673 100644
--- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml
+++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml
@@ -296,6 +296,20 @@
products:
Desoxyephedrine: 4 #I kinda remember having to heat this up, and if you heated it up too much, it went boom, I can't remember the specific values tho.
+- type: reaction
+ id: Stimulants
+ impact: Medium
+ minTemp: 370
+ reactants:
+ Ephedrine:
+ amount: 1
+ Vestine:
+ amount: 1
+ Oxygen:
+ amount: 2
+ products:
+ Stimulants: 2
+
- type: reaction
id: Ephedrine
impact: Medium
@@ -314,13 +328,14 @@
- type: reaction
id: MuteToxin
impact: Medium
+ minTemp: 370
reactants:
Uranium:
- amount: 2
- Water:
- amount: 1
- Carbon:
amount: 1
+ Vestine:
+ amount: 2
+ SpaceGlue:
+ amount: 2
products:
MuteToxin: 2
@@ -424,3 +439,25 @@
amount: 1
products:
SodiumPolyacrylate: 4
+
+- type: reaction
+ id: Nocturine
+ impact: High
+ reactants:
+ Impedrezene:
+ amount: 2
+ Vestine:
+ amount: 1
+ products:
+ Nocturine: 1
+
+- type: reaction
+ id: Tazinide
+ impact: Medium
+ reactants:
+ Licoxide:
+ amount: 1
+ Vestine:
+ amount: 1
+ products:
+ Tazinide: 1
diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml
index eb895a31f2b..594518514e7 100644
--- a/Resources/Prototypes/Recipes/Reactions/fun.yml
+++ b/Resources/Prototypes/Recipes/Reactions/fun.yml
@@ -1,4 +1,4 @@
-- type: reaction
+- type: reaction
id: Carpetium
reactants:
SpaceDrugs:
diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml
index ff53c051153..4862f082f49 100644
--- a/Resources/Prototypes/Recipes/Reactions/medicine.yml
+++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml
@@ -284,6 +284,8 @@
amount: 1
Plasma:
amount: 1
+ Vestine:
+ amount: 1
products:
Lexorin: 2
diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml
index e092b5e54fd..cc27d6009a0 100644
--- a/Resources/Prototypes/Research/arsenal.yml
+++ b/Resources/Prototypes/Research/arsenal.yml
@@ -141,6 +141,7 @@
tier: 2
cost: 8000
recipeUnlocks:
+ - ClothingEyesGlassesSecurity
- Truncheon
- TelescopicShield
- HoloprojectorSecurity
diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml
index c59d0720e4a..e460957b80d 100644
--- a/Resources/Prototypes/Research/industrial.yml
+++ b/Resources/Prototypes/Research/industrial.yml
@@ -13,6 +13,7 @@
- MiningDrill
- BorgModuleMining
- OreProcessorMachineCircuitboard
+ - OreBagOfHolding
- type: technology
id: AdvancedPowercells
@@ -122,20 +123,6 @@
- WeaponGrapplingGun
- BorgModuleGrapplingGun
-- type: technology
- id: RapidConstruction
- name: research-technology-rapid-construction
- icon:
- sprite: Objects/Tools/rcd.rsi
- state: icon
- discipline: Industrial
- tier: 2
- cost: 10000
- recipeUnlocks:
- - RCD
- - RCDAmmo
- - BorgModuleRCD
-
- type: technology
id: Shuttlecraft
name: research-technology-shuttlecraft
@@ -193,6 +180,7 @@
- PowerDrill
- JawsOfLife
- BorgModuleAdvancedTool
+ - BorgModuleRCD
# Tier 3
diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml
index 2b778ee6c24..bf11532ddbf 100644
--- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml
+++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml
@@ -23,6 +23,7 @@
shoes: ClothingShoesGaloshes
head: ClothingHeadHatPurplesoft
id: JanitorPDA
+ gloves: ClothingHandsGlovesJanitor
ears: ClothingHeadsetService
belt: ClothingBeltJanitorFilled
innerClothingSkirt: ClothingUniformJumpskirtJanitor
@@ -35,6 +36,7 @@
jumpsuit: ClothingUniformJumpskirtJanimaid
back: ClothingBackpackFilled
id: JanitorPDA
+ gloves: ClothingHandsGlovesJanitor
head: ClothingHeadHatCatEars
ears: ClothingHeadsetService
belt: ClothingBeltJanitorFilled
diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml
index e9016f0fdd2..a78f220599f 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml
@@ -45,7 +45,7 @@
back: ClothingBackpackHOSFilled
shoes: ClothingShoesBootsJackSecFilled # Corvax-Resprite
outerClothing: ClothingOuterCoatHoSTrench
- eyes: ClothingEyesGlassesSecurity
+ eyes: ClothingEyesGlassesSunglasses
head: ClothingHeadHatBeretHoS
id: HoSPDA
gloves: ClothingHandsGlovesCombat
diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml
index 16f34be96d7..56d41823d33 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml
@@ -27,7 +27,7 @@
jumpsuit: ClothingUniformJumpsuitSec
back: ClothingBackpackSecurityFilled
shoes: ClothingShoesBootsJackSec # Corvax-Resprite-MRP
- eyes: ClothingEyesGlassesSecurity
+ eyes: ClothingEyesGlassesSunglasses
head: ClothingHeadHelmetBasic
outerClothing: ClothingOuterVestArmorSec # Corvax-Resprite
id: SecurityPDA
diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml
index 13da895b3c0..9f604f06635 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml
@@ -30,7 +30,7 @@
jumpsuit: ClothingUniformJumpsuitWarden
back: ClothingBackpackSecurityFilled
shoes: ClothingShoesBootsJackSecFilled # Corvax-Resprite
- eyes: ClothingEyesGlassesSecurity
+ eyes: ClothingEyesGlassesSunglasses
outerClothing: ClothingOuterCoatWarden
id: WardenPDA
ears: ClothingHeadsetSecurity
diff --git a/Resources/Prototypes/Stacks/Materials/ore.yml b/Resources/Prototypes/Stacks/Materials/ore.yml
index 268c6b9a46c..087786ded88 100644
--- a/Resources/Prototypes/Stacks/Materials/ore.yml
+++ b/Resources/Prototypes/Stacks/Materials/ore.yml
@@ -54,3 +54,11 @@
spawn: BananiumOre1
maxCount: 30
itemSize: 2
+
+- type: stack
+ id: Coal
+ name: coal
+ icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: coal }
+ spawn: Coal1
+ maxCount: 30
+ itemSize: 2
diff --git a/Resources/Prototypes/explosion.yml b/Resources/Prototypes/explosion.yml
index 6af2b4a3988..ff0c78d86e7 100644
--- a/Resources/Prototypes/explosion.yml
+++ b/Resources/Prototypes/explosion.yml
@@ -93,7 +93,7 @@
Heat: 12
Blunt: 12
Piercing: 12
- Structural: 40
+ Structural: 30
tileBreakChance: [ 0, 0.5, 1 ]
tileBreakIntensity: [ 1, 5, 10 ]
tileBreakRerollReduction: 3
@@ -109,7 +109,7 @@
Heat: 15
Blunt: 15
Piercing: 6
- Structural: 15
+ Structural: 40
tileBreakChance: [ 0.75, 0.95, 1 ]
tileBreakIntensity: [ 1, 10, 15 ]
tileBreakRerollReduction: 30
diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml
index f8861af8342..c4c81e99cb8 100644
--- a/Resources/Prototypes/ore.yml
+++ b/Resources/Prototypes/ore.yml
@@ -14,6 +14,10 @@
id: OreSpaceQuartz
oreEntity: SpaceQuartz1
+- type: ore
+ id: OreCoal
+ oreEntity: Coal1
+
# Medium yields
- type: ore
id: OreGold
@@ -62,6 +66,7 @@
id: RandomOreDistributionStandard
weights:
OreSteel: 10
+ OreCoal: 10
OreSpaceQuartz: 8
OreGold: 2
OrePlasma: 4
diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml
index 69400c986f2..4a2843bf24d 100644
--- a/Resources/Prototypes/tags.yml
+++ b/Resources/Prototypes/tags.yml
@@ -1150,4 +1150,4 @@
id: boots
- type: Tag
- id: CleansForensics
\ No newline at end of file
+ id: CleansForensics
diff --git a/Resources/ServerInfo/Guidebook/Service/Chef.xml b/Resources/ServerInfo/Guidebook/Service/Chef.xml
index 9a91d5b7e3d..0f0f3c00861 100644
--- a/Resources/ServerInfo/Guidebook/Service/Chef.xml
+++ b/Resources/ServerInfo/Guidebook/Service/Chef.xml
@@ -58,7 +58,7 @@ Alt+ЛКМ на корове с контейнером в руке. (мензу
-
+
## Разделка туш:
В большинстве случаев, вы можете использовать нож на мёртвом существе. Лучше всего делать это в холодильнике, так как в результате будет... грязно.
diff --git a/Resources/ServerInfo/RP_Rules.txt b/Resources/ServerInfo/RP_Rules.txt
index edfe5632ac6..a6d4629631c 100644
--- a/Resources/ServerInfo/RP_Rules.txt
+++ b/Resources/ServerInfo/RP_Rules.txt
@@ -6,6 +6,7 @@ This is the "short" form of the rules, which has all the information any regular
Should you need it. Some RP-specific documents available on the wiki such as Space Law, the Standard Operating Procedure, and the Alert Procedure will be mentioned here and are expected to be followed.
[color=#ff0000]Recent Changes[/color]
+ - MRP silicon rules have been updated to add NLR to MMIs (#23)
- Revolutionary rules have been added (#12, #16)
- Silicon rules have been added (#23)
- Security/command rules have been updated to address forced borging (#22)
@@ -119,7 +120,7 @@ These rules also apply to any individual who is a silicon, including cyborgs and
- The order of your laws determines law priority. Law 1 takes priority over laws 2 and 3, and so on.
- Each individual silicon must remain consistent in their interpretations of laws through the round.
- Any silicon role not following their laws, or having laws that are a danger to the crew or station may be disabled or destroyed. Any silicon role posing a danger or disruption to the crew may be disabled or destroyed if there is no other reasonable and less severe way of dealing with them.
- - Characters who are turned into cyborgs can remember their former lives, however they are still bound to their laws.
+ - Players who are put into MMIs cannot remember anything leading to their death. With regard to anything that they are allowed to remember, they are still bound to their laws.
- Syndicate Agents and Revolutionaries are considered "crewmembers" for the purpose of laws that refer to crewmembers. Generally speaking, if the person appears on the crew manifest, they can be considered a crewmember. The captain or acting captain may hire or fire crewmembers by making it clear that they are no longer crew. Simply demoting someone to passenger is not sufficient to consider them fired.
- "Harm" is at minimum seen as physical violence or damage against someone or something. If the player wishes, they may choose to interpret psychological harm or similar aspects as harm as well. If two actions are likely to cause harm via action or inaction, silicons will be expected to try and pursue the option with the least potential for harm, however silicons instructed to prevent harm are still forbidden from directly causing harm. You can take an action or not act in cases that might result in eventual harm if it minimizes harm, but you cannot do so if it results in immediate harm. Silicons should default to inaction if neither action nor inaction can prevent harm.
- When receiving orders or directives from crewmembers and with a law that instructs you must obey, conflicting orders typically defer the choice to the silicon player of which directive you choose to obey if they conflict (taking into account the priorities of your other laws).
diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/equipped-HAND.png
new file mode 100644
index 00000000000..914ead60ecc
Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/equipped-HAND.png differ
diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/icon.png
new file mode 100644
index 00000000000..2330f3d39ab
Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-left.png
new file mode 100644
index 00000000000..21fe32a5c52
Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-right.png
new file mode 100644
index 00000000000..98bf0b33b5b
Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/meta.json
new file mode 100644
index 00000000000..14008ae27be
--- /dev/null
+++ b/Resources/Textures/Clothing/Hands/Gloves/janitor.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Drawn by Ubaser.",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-HAND",
+ "directions": 4
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png
index c8a357699ed..ec979f4b511 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png differ
diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png
new file mode 100644
index 00000000000..a27e43165c7
Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET.png differ
diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/icon.png
new file mode 100644
index 00000000000..2ef4c376a42
Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-left.png
new file mode 100644
index 00000000000..d4c867fdf74
Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-right.png
new file mode 100644
index 00000000000..30fd68d805e
Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json
new file mode 100644
index 00000000000..05e3d906824
--- /dev/null
+++ b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Made by IProduceWidgets",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-FEET",
+ "directions": 4
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-monkey.png
new file mode 100644
index 00000000000..e4ac1bdd06b
Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-monkey.png differ
diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING.png
new file mode 100644
index 00000000000..a85d2d2e610
Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING.png differ
diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/icon.png
new file mode 100644
index 00000000000..9338490aaef
Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-left.png
new file mode 100644
index 00000000000..e1e0a47d97b
Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-right.png
new file mode 100644
index 00000000000..32b49e37e42
Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json
new file mode 100644
index 00000000000..b1119f91221
--- /dev/null
+++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json
@@ -0,0 +1,30 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Recolor of lawyerblack.rsi joshepvodka",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-INNERCLOTHING",
+ "directions": 4
+ },
+ {
+ "name": "equipped-INNERCLOTHING-monkey",
+ "directions": 4
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png b/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png
index 0b4cc27750e..06ebd0dfb21 100644
Binary files a/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png and b/Resources/Textures/Interface/Alerts/human_alive.rsi/health4.png differ
diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-oat.png b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/icon.png
similarity index 100%
rename from Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-oat.png
rename to Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/icon.png
diff --git a/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json
new file mode 100644
index 00000000000..db0ac608ed0
--- /dev/null
+++ b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json
@@ -0,0 +1 @@
+{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
\ No newline at end of file
diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json
index 3c66005b04b..6633b0b0bd6 100644
--- a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json
+++ b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json
@@ -67,15 +67,6 @@
{
"name": "mayo"
},
- {
- "name": "milk"
- },
- {
- "name": "milk-soy"
- },
- {
- "name": "milk-oat"
- },
{
"name": "oliveoil"
},
diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-soy.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-soy.png
deleted file mode 100644
index b36cc5c740f..00000000000
Binary files a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk-soy.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk.png
deleted file mode 100644
index f6be66ead12..00000000000
Binary files a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/milk.png and /dev/null differ
diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/folder-centcom.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/folder-centcom.png
new file mode 100644
index 00000000000..cc9a33153f6
Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/folder-centcom.png differ
diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json
index 3b7a217a25e..d672decf95d 100644
--- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json
+++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json
@@ -31,6 +31,9 @@
{
"name": "folder-white"
},
+ {
+ "name": "folder-centcom"
+ },
{
"name": "folder-overlay-paper"
},
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard.png
new file mode 100644
index 00000000000..a5197be4bde
Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard.png differ
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_over.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_over.png
new file mode 100644
index 00000000000..675e1337369
Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_over.png differ
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_paper.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_paper.png
new file mode 100644
index 00000000000..d58b42b709d
Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_paper.png differ
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_pen.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_pen.png
new file mode 100644
index 00000000000..d56d62894ee
Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/clipboard_pen.png differ
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/equipped-BELT.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..ea71ac85c11
Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-left.png
new file mode 100644
index 00000000000..83135923f2d
Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-right.png
new file mode 100644
index 00000000000..5fc11d48ca0
Binary files /dev/null and b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Misc/cc-clipboard.rsi/meta.json b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/meta.json
new file mode 100644
index 00000000000..6cb81a227ad
--- /dev/null
+++ b/Resources/Textures/Objects/Misc/cc-clipboard.rsi/meta.json
@@ -0,0 +1,35 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Do over of clipboard.rsi sprites done by joshepvodka",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "clipboard"
+ },
+ {
+ "name": "clipboard_over"
+ },
+ {
+ "name": "clipboard_paper"
+ },
+ {
+ "name": "clipboard_pen"
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/equipped-BELT.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/equipped-BELT.png
new file mode 100644
index 00000000000..f9cde5ce9f7
Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/icon.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/icon.png
new file mode 100644
index 00000000000..cbf6749b58a
Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-left.png
new file mode 100644
index 00000000000..a0dc8287712
Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-right.png
new file mode 100644
index 00000000000..65683df20d1
Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json
new file mode 100644
index 00000000000..3b28912df0d
--- /dev/null
+++ b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json
@@ -0,0 +1,111 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/5ce5a66c814c4a60118d24885389357fd0240002/icons/obj/mining.dmi",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ }
+ ]
+}
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_open_unlit.png
new file mode 100644
index 00000000000..d3a7169b08e
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_open_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png
index cd5c6b4700c..c5419eb75a9 100644
Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_open_unlit.png
new file mode 100644
index 00000000000..f4b61b56fa0
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_open_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json
index f710aeb1adc..2699685fc29 100644
--- a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json
+++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json
@@ -13,12 +13,18 @@
{
"name": "bolted_unlit"
},
+ {
+ "name": "bolted_open_unlit"
+ },
{
"name": "closed"
},
{
"name": "closed_unlit"
},
+ {
+ "name": "open_unlit"
+ },
{
"name": "closing",
"delays": [
@@ -61,12 +67,7 @@
]
},
{
- "name": "open",
- "delays": [
- [
- 1
- ]
- ]
+ "name": "open"
},
{
"name": "opening",
@@ -111,12 +112,10 @@
]
},
{
- "name": "panel_open",
- "delays": [
- [
- 1
- ]
- ]
+ "name": "panel_open"
+ },
+ {
+ "name": "panel_closed"
},
{
"name": "panel_opening",
@@ -196,6 +195,9 @@
0.4
]
]
+ },
+ {
+ "name": "emergency_open_unlit"
}
]
}
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open_unlit.png
new file mode 100644
index 00000000000..53aae2f4d19
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closed.png
new file mode 100644
index 00000000000..7244b37f5c7
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closed.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_open_unlit.png
new file mode 100644
index 00000000000..d3a7169b08e
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_open_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png
index cd5c6b4700c..c5419eb75a9 100644
Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_open_unlit.png
new file mode 100644
index 00000000000..f4b61b56fa0
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_open_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json
index f710aeb1adc..0ab5a7ab6b9 100644
--- a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json
+++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json
@@ -1,201 +1,203 @@
{
- "version": 1,
- "license": "CC-BY-SA-3.0",
- "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d",
- "size": {
- "x": 32,
- "y": 32
- },
- "states": [
- {
- "name": "assembly"
- },
- {
- "name": "bolted_unlit"
- },
- {
- "name": "closed"
- },
- {
- "name": "closed_unlit"
- },
- {
- "name": "closing",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.05,
- 0.05,
- 0.1
- ]
- ]
- },
- {
- "name": "closing_unlit",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.05,
- 0.05,
- 0.1
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "assembly"
+ },
+ {
+ "name": "bolted_unlit"
+ },
+ {
+ "name": "bolted_open_unlit"
+ },
+ {
+ "name": "closed"
+ },
+ {
+ "name": "closed_unlit"
+ },
+ {
+ "name": "open_unlit"
+ },
+ {
+ "name": "closing",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.05,
+ 0.05,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "deny_unlit",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1
+ },
+ {
+ "name": "closing_unlit",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.05,
+ 0.05,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "open",
- "delays": [
- [
- 1
- ]
- ]
- },
- {
- "name": "opening",
- "delays": [
- [
- 0.1,
- 0.05,
- 0.05,
- 0.1,
- 0.1,
- 0.1,
- 0.1
+ },
+ {
+ "name": "deny_unlit",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "opening_unlit",
- "delays": [
- [
- 0.1,
- 0.05,
- 0.05,
- 0.1,
- 0.1,
- 0.1,
- 0.1
+ },
+ {
+ "name": "open"
+ },
+ {
+ "name": "opening",
+ "delays": [
+ [
+ 0.1,
+ 0.05,
+ 0.05,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "panel_closing",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.05,
- 0.05,
- 0.1
+ },
+ {
+ "name": "opening_unlit",
+ "delays": [
+ [
+ 0.1,
+ 0.05,
+ 0.05,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "panel_open",
- "delays": [
- [
- 1
+ },
+ {
+ "name": "panel_closing",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.05,
+ 0.05,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "panel_opening",
- "delays": [
- [
- 0.1,
- 0.05,
- 0.05,
- 0.1,
- 0.1,
- 0.1,
- 0.1
+ },
+ {
+ "name": "panel_open"
+ },
+ {
+ "name": "panel_closed"
+ },
+ {
+ "name": "panel_opening",
+ "delays": [
+ [
+ 0.1,
+ 0.05,
+ 0.05,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "sparks",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1
+ },
+ {
+ "name": "sparks",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "sparks_broken",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1
+ },
+ {
+ "name": "sparks_broken",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "sparks_damaged",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 1.7
+ },
+ {
+ "name": "sparks_damaged",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 1.7
+ ]
]
- ]
- },
- {
- "name": "sparks_open",
- "delays": [
- [
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1,
- 0.1
+ },
+ {
+ "name": "sparks_open",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
]
- ]
- },
- {
- "name": "welded"
- },
- {
- "name": "emergency_unlit",
- "delays": [
- [
- 0.4,
- 0.4
+ },
+ {
+ "name": "welded"
+ },
+ {
+ "name": "emergency_unlit",
+ "delays": [
+ [
+ 0.4,
+ 0.4
+ ]
]
- ]
- }
- ]
-}
+ },
+ {
+ "name": "emergency_open_unlit"
+ }
+ ]
+ }
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open_unlit.png
new file mode 100644
index 00000000000..53aae2f4d19
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open_unlit.png differ
diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closed.png
new file mode 100644
index 00000000000..7244b37f5c7
Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closed.png differ
diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json b/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json
index 72ae51dc545..19f57fd672a 100644
--- a/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json
+++ b/Resources/Textures/Structures/Furniture/potted_plants.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation",
+ "copyright": "Taken from tgstation, plant-26 made by Fazansen(https://github.com/Fazansen)",
"size": {
"x": 32,
"y": 32
@@ -227,7 +227,12 @@
"name": "plant-26",
"delays": [
[
- 1.0
+ 5,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2
]
]
},
@@ -254,6 +259,14 @@
1.0
]
]
+ },
+ {
+ "name": "plant-30",
+ "delays": [
+ [
+ 1.0
+ ]
+ ]
}
]
}
\ No newline at end of file
diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png
index a79b9e2da8c..10b4667d89d 100644
Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-26.png differ
diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png
index 1019885b91b..a79b9e2da8c 100644
Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-27.png differ
diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png
index d5cbefe63a2..1019885b91b 100644
Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-28.png differ
diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png
index c59c7e42776..d5cbefe63a2 100644
Binary files a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-29.png differ
diff --git a/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-30.png b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-30.png
new file mode 100644
index 00000000000..c59c7e42776
Binary files /dev/null and b/Resources/Textures/Structures/Furniture/potted_plants.rsi/plant-30.png differ
diff --git a/Resources/Textures/Structures/Storage/closet.rsi/generic_icon.png b/Resources/Textures/Structures/Storage/closet.rsi/generic_icon.png
new file mode 100644
index 00000000000..2487eae1fdd
Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/generic_icon.png differ
diff --git a/Resources/Textures/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/Structures/Storage/closet.rsi/meta.json
index 80c3273c6c7..98bbe8085a2 100644
--- a/Resources/Textures/Structures/Storage/closet.rsi/meta.json
+++ b/Resources/Textures/Structures/Storage/closet.rsi/meta.json
@@ -323,6 +323,9 @@
{
"name": "generic_open"
},
+ {
+ "name": "generic_icon"
+ },
{
"name": "green_door"
},
diff --git a/Resources/Textures/Structures/Wallmounts/screen.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/screen.rsi/meta.json
new file mode 100644
index 00000000000..a4c3148aa8e
--- /dev/null
+++ b/Resources/Textures/Structures/Wallmounts/screen.rsi/meta.json
@@ -0,0 +1,14 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "From vgstation: https://github.com/vgstation-coders/vgstation13/commit/a7290010020e541ed6b57817a07023ca6bef26fe#diff-20395160138bed693d15eee6f16d671531b5fa533ec52c50e8df6d52370dbecd",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "screen"
+ }
+ ]
+}
diff --git a/Resources/Textures/Structures/Wallmounts/screen.rsi/screen.png b/Resources/Textures/Structures/Wallmounts/screen.rsi/screen.png
new file mode 100644
index 00000000000..a3e7a3fe55a
Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/screen.rsi/screen.png differ
diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/broken.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/broken.png
new file mode 100644
index 00000000000..ea789b21915
Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/broken.png differ
diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/burned.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/burned.png
new file mode 100644
index 00000000000..c7eeb48e1b8
Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/burned.png differ
diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/empty.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/empty.png
new file mode 100644
index 00000000000..bcdc0ee0ff7
Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/empty.png differ
diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/service_light.rsi/meta.json
new file mode 100644
index 00000000000..cf91d5d1a52
--- /dev/null
+++ b/Resources/Textures/Structures/Wallmounts/service_light.rsi/meta.json
@@ -0,0 +1,49 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "On, off, broken, burned, empty sprites by RiceMar1244",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "broken",
+ "directions": 4
+ },
+ {
+ "name": "burned",
+ "directions": 4
+ },
+ {
+ "name": "empty",
+ "directions": 4
+ },
+ {
+ "name": "off",
+ "directions": 4
+ },
+ {
+ "name": "on",
+ "directions": 4,
+ "delays": [
+ [
+ 0.1,
+ 0.5
+ ],
+ [
+ 0.1,
+ 0.5
+ ],
+ [
+ 0.1,
+ 0.5
+ ],
+ [
+ 0.1,
+ 0.5
+ ]
+ ]
+ }
+ ]
+}
diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/off.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/off.png
new file mode 100644
index 00000000000..d54b01d1595
Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/off.png differ
diff --git a/Resources/Textures/Structures/Wallmounts/service_light.rsi/on.png b/Resources/Textures/Structures/Wallmounts/service_light.rsi/on.png
new file mode 100644
index 00000000000..3e52be44ec2
Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/service_light.rsi/on.png differ
diff --git a/Resources/Textures/Structures/Wallmounts/textscreen.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json
similarity index 86%
rename from Resources/Textures/Structures/Wallmounts/textscreen.rsi/meta.json
rename to Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json
index 8fb2e2d80f8..a5dfc0546bd 100644
--- a/Resources/Textures/Structures/Wallmounts/textscreen.rsi/meta.json
+++ b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json
@@ -8,7 +8,7 @@
},
"states": [
{
- "name": "textscreen"
+ "name": "signalscreen"
}
]
}
diff --git a/Resources/Textures/Structures/Wallmounts/textscreen.rsi/textscreen.png b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png
similarity index 100%
rename from Resources/Textures/Structures/Wallmounts/textscreen.rsi/textscreen.png
rename to Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png
diff --git a/Resources/Textures/Structures/Walls/rock.rsi/meta.json b/Resources/Textures/Structures/Walls/rock.rsi/meta.json
index d9e72a5055e..0cdbae89786 100644
--- a/Resources/Textures/Structures/Walls/rock.rsi/meta.json
+++ b/Resources/Textures/Structures/Walls/rock.rsi/meta.json
@@ -97,6 +97,9 @@
{
"name": "rock_carbon"
},
+ {
+ "name": "rock_coal"
+ },
{
"name": "rock_copper"
},
diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_coal.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_coal.png
new file mode 100644
index 00000000000..a6249ef0451
Binary files /dev/null and b/Resources/Textures/Structures/Walls/rock.rsi/rock_coal.png differ
diff --git a/Resources/migration.yml b/Resources/migration.yml
index c7f7d3ee9ab..900684d78b0 100644
--- a/Resources/migration.yml
+++ b/Resources/migration.yml
@@ -104,3 +104,8 @@ ClothingOuterHardsuitMedic: ClothingOuterHardsuitSyndieMedic
# 2023-12-13
VendingMachineSmartFridge: SmartFridge
+
+# 2023-12-18
+ReagentContainerMilk: DrinkMilkCarton
+ReagentContainerMilkSoy: DrinkSoyMilkCarton
+ReagentContainerMilkOat: DrinkOatMilkCarton
diff --git a/RobustToolbox b/RobustToolbox
index 1009dd3ea0e..2b4a428f9fe 160000
--- a/RobustToolbox
+++ b/RobustToolbox
@@ -1 +1 @@
-Subproject commit 1009dd3ea0e98b9d0715314fc4f5b14c11833398
+Subproject commit 2b4a428f9feeeb9f92658868fc70c6a5b842ea30
diff --git a/Secrets b/Secrets
index 59a2998fc8a..2d218b84205 160000
--- a/Secrets
+++ b/Secrets
@@ -1 +1 @@
-Subproject commit 59a2998fc8ad1e59ce7d18000b11ba5e04080f77
+Subproject commit 2d218b842051176d56aa24d25712a4aa4ff7d262
diff --git a/Tools/actions_changelogs_since_last_run.py b/Tools/actions_changelogs_since_last_run.py
index ae24bab7ffe..abf4b51b51f 100755
--- a/Tools/actions_changelogs_since_last_run.py
+++ b/Tools/actions_changelogs_since_last_run.py
@@ -118,8 +118,8 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None:
for entry in group:
for change in entry["changes"]:
emoji = TYPES_TO_EMOJI.get(change['type'], "❓")
- url = entry["url"]
message = change['message']
+ url = entry.get("url")
# Corvax-Localization-Start
TRANSLATION_API_URL = os.environ.get("TRANSLATION_API_URL")
if TRANSLATION_API_URL:
@@ -130,7 +130,10 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None:
})
message = resp.json()['data']
# Corvax-Localization-End
- content.write(f"{emoji} [-]({url}) {message}\n")
+ if url and url.strip():
+ content.write(f"{emoji} [-]({url}) {message}\n")
+ else:
+ content.write(f"{emoji} - {message}\n")
content.write(f"\n") # Corvax: Better formatting
content.seek(0) # Corvax
diff --git a/Tools/update_changelog.py b/Tools/update_changelog.py
index a42479908b8..53f6d887546 100755
--- a/Tools/update_changelog.py
+++ b/Tools/update_changelog.py
@@ -61,7 +61,7 @@ def main():
"time", datetime.datetime.now(datetime.timezone.utc).isoformat()
)
changes = partyaml["changes"]
- url = partyaml["url"]
+ url = partyaml.get("url")
if not isinstance(changes, list):
changes = [changes]